:root {
  color-scheme: light;
  --ink: #14110e;
  --muted: #625a51;
  --soft: #8a8176;
  --paper: #f6f1e9;
  --paper-2: #eee6da;
  --paper-3: #ded2c1;
  --line: rgba(39, 31, 24, 0.16);
  --dark: #16130f;
  --dark-2: #211d18;
  --cream: #f8efe2;
  --gold: #a8865c;
  --shadow: 0 24px 80px rgba(48, 38, 28, 0.13);
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32), transparent 38%),
    var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 28px clamp(20px, 4vw, 72px);
  color: var(--ink);
  transition:
    background 240ms ease,
    box-shadow 240ms ease,
    padding 240ms ease,
    backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 18px;
  background: rgba(246, 241, 233, 0.82);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.desktop-nav a,
.reserve-link,
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand {
  justify-self: start;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 46px);
}

.desktop-nav a,
.reserve-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: -14px -12px;
  padding: 14px 12px;
  color: rgba(20, 17, 14, 0.76);
  transition: color 180ms ease;
}

.desktop-nav a::after,
.reserve-link::after,
.button-quiet::after,
.button-dark-quiet::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.desktop-nav a::after,
.reserve-link::after {
  right: 12px;
  bottom: 6px;
  left: 12px;
}

.desktop-nav a:hover,
.reserve-link:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after,
.reserve-link:hover::after,
.button-quiet:hover::after,
.button-dark-quiet:hover::after {
  transform: scaleX(1);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 18;
  inset: 0 0 auto 0;
  display: none;
  padding: 96px 24px 28px;
  background: rgba(246, 241, 233, 0.96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  transform: translateY(-105%);
  transition: transform 220ms ease;
}

.mobile-menu a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
}

.menu-open .mobile-menu {
  transform: translateY(0);
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(740px, 78vh, 900px);
  align-items: center;
  overflow: hidden;
  background: var(--paper-2);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(246, 241, 233, 0.92) 0%, rgba(246, 241, 233, 0.74) 28%, rgba(246, 241, 233, 0.18) 54%, rgba(246, 241, 233, 0) 76%),
    linear-gradient(180deg, rgba(246, 241, 233, 0.18), rgba(246, 241, 233, 0) 42%);
  pointer-events: none;
}

.hero-copy {
  z-index: 2;
  width: min(42vw, 620px);
  padding: 150px 0 110px clamp(28px, 6vw, 86px);
  max-width: 620px;
}

.eyebrow {
  position: relative;
  margin: 0 0 28px;
  color: var(--gold);
}

.hero .eyebrow,
.craft-intro .eyebrow {
  padding-left: 18px;
}

.hero .eyebrow::before,
.craft-intro .eyebrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 28px;
  content: "";
  background: var(--gold);
  transform: translateY(-50%);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 30px;
  font-size: clamp(56px, 7vw, 106px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.hero-deck {
  max-width: 390px;
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--cream);
  background: var(--dark);
}

.button-dark:hover {
  background: #29231d;
}

.button-quiet {
  min-height: 42px;
  padding: 0 2px;
  color: var(--ink);
}

.button-light {
  color: var(--dark);
  background: var(--cream);
}

.button-light:hover {
  background: #fff8ee;
}

.button-dark-quiet {
  min-height: 42px;
  padding: 0 2px;
  color: var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 clamp(20px, 5.5vw, 78px);
  background: var(--dark);
}

.metric {
  min-height: 132px;
  padding: 34px clamp(18px, 3vw, 44px);
  color: var(--cream);
  background: var(--dark);
}

.metric span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 300;
}

.metric p {
  margin: 0;
  color: rgba(248, 239, 226, 0.68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section {
  padding: clamp(88px, 12vw, 170px) clamp(22px, 5.5vw, 78px);
  scroll-margin-top: 92px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 8vw, 120px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 92px);
}

.section-intro h2 {
  max-width: 760px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.highlight {
  min-height: 240px;
  padding: 34px clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
}

.highlight:last-child {
  border-right: 0;
}

.highlight span {
  display: block;
  margin-bottom: 44px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.highlight p,
.photo-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

.sound {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(160, 135, 98, 0.08), transparent 42%),
    #f3ece1;
}

.sound-copy {
  max-width: 450px;
}

.listen-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  margin-top: 22px;
  min-height: 48px;
  min-width: 174px;
  padding: 0 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.listen-button-label {
  display: block;
  grid-area: 1 / 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 220ms ease;
  white-space: nowrap;
}

.listen-button-label-active {
  opacity: 0;
  transform: translateY(6px);
  filter: blur(2px);
}

.listen-button.is-playing .listen-button-label-default {
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(2px);
}

.listen-button.is-playing .listen-button-label-active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.listen-button:hover,
.listen-button.is-playing {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
}

.sound-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  min-height: clamp(270px, 27vw, 380px);
  align-items: stretch;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.mode {
  position: relative;
  display: flex;
  min-height: clamp(270px, 27vw, 380px);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 3.4vw, 46px) clamp(22px, 3vw, 42px);
  appearance: none;
  border: 0;
  color: var(--cream);
  background: #050605;
  cursor: pointer;
  font: inherit;
  text-align: left;
  overflow: hidden;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.mode:hover {
  background: #070806;
}

.mode-toggle {
  position: absolute;
  z-index: 2;
  inset: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mode-toggle:focus-visible {
  z-index: 1;
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.mode-copy {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(30px, 3.2vw, 44px);
  left: clamp(22px, 3vw, 42px);
  z-index: 3;
  pointer-events: none;
}

.mode small {
  display: block;
  margin-bottom: 28px;
  color: rgba(248, 239, 226, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mode strong {
  display: block;
  margin-bottom: 6px;
  color: var(--cream);
  font-weight: 700;
}

.mode p {
  margin: 0;
  color: rgba(248, 239, 226, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.mode-volume {
  position: absolute;
  z-index: 4;
  top: clamp(22px, 2.5vw, 32px);
  right: clamp(22px, 3vw, 42px);
  left: clamp(22px, 3vw, 42px);
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mode.is-playing .mode-volume {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mode-volume input {
  width: 100%;
  accent-color: var(--gold);
  cursor: pointer;
}

.mode.is-active {
  background: #070806;
}

.mode.is-playing {
  background:
    radial-gradient(circle at 50% 18%, rgba(168, 134, 92, 0.1), transparent 42%),
    #070806;
}

.mode.is-beating {
  transform: translateY(-3px);
}

.mode-visual {
  position: absolute;
  z-index: 0;
  inset: 0;
  height: auto;
  margin: 0;
  background: linear-gradient(180deg, #020202 0%, #060405 48%, #020202 100%);
  overflow: hidden;
}

.mode::after {
  position: absolute;
  z-index: 1;
  inset: 48% 0 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(4, 5, 4, 0.64) 44%, rgba(4, 5, 4, 0.92));
  pointer-events: none;
}

.mode-visual::before {
  position: absolute;
  inset: -10% -8% 34%;
  content: "";
  background:
    radial-gradient(circle at 38% 32%, rgba(101, 67, 255, 0.28), transparent 28%),
    radial-gradient(circle at 68% 38%, rgba(255, 158, 48, 0.22), transparent 30%),
    radial-gradient(circle at 50% 54%, rgba(255, 54, 147, 0.16), transparent 34%);
  filter: blur(24px);
  opacity: 0.92;
}

.mode-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at center, transparent 0 32%, rgba(2, 2, 2, 0.4) 64%, rgba(2, 2, 2, 0.94) 100%),
    linear-gradient(180deg, transparent 0 56%, rgba(2, 2, 2, 0.54) 78%, rgba(2, 2, 2, 0.92) 100%);
  opacity: 0.9;
}

.mode-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 240ms ease;
}

.mode.is-playing .mode-visual canvas {
  opacity: 0.98;
}

.mode-note-art {
  position: absolute;
  z-index: 1;
  inset: 10% 10% 42%;
  opacity: 0.92;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.mode.is-playing .mode-note-art {
  opacity: 0;
  transform: scale(0.96);
}

.mode-note-art span {
  position: absolute;
  display: block;
  color: rgba(248, 239, 226, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  text-shadow:
    0 0 18px rgba(255, 198, 92, 0.42),
    0 0 42px rgba(121, 73, 255, 0.34);
  transform: rotate(-12deg);
}

.mode-note-art span:nth-child(1) {
  top: 32%;
  left: 18%;
  color: rgba(255, 207, 112, 0.76);
}

.mode-note-art span:nth-child(2) {
  top: 18%;
  left: 46%;
  color: rgba(197, 122, 255, 0.7);
  font-size: clamp(34px, 5vw, 66px);
  transform: rotate(10deg);
}

.mode-note-art span:nth-child(3) {
  top: 48%;
  left: 62%;
  color: rgba(255, 92, 154, 0.58);
  transform: rotate(18deg);
}

.mode-note-art span:nth-child(4) {
  top: 56%;
  left: 34%;
  color: rgba(248, 239, 226, 0.46);
  font-size: clamp(20px, 3vw, 40px);
  transform: rotate(-22deg);
}

.mode-reference .mode-visual {
  background:
    radial-gradient(circle at 50% 38%, rgba(91, 58, 255, 0.22), transparent 30%),
    radial-gradient(circle at 64% 26%, rgba(255, 174, 42, 0.16), transparent 22%),
    linear-gradient(180deg, #020202 0%, #070409 56%, #020202 100%);
}

.mode-immersive .mode-visual {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 112, 35, 0.2), transparent 32%),
    radial-gradient(circle at 48% 48%, rgba(111, 54, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #020202 0%, #090503 58%, #020202 100%);
}

.mode-focus .mode-visual {
  background:
    radial-gradient(circle at 54% 42%, rgba(255, 198, 57, 0.22), transparent 28%),
    radial-gradient(circle at 44% 56%, rgba(232, 47, 136, 0.18), transparent 28%),
    linear-gradient(180deg, #020202 0%, #080602 58%, #020202 100%);
}

.craft {
  padding-top: clamp(108px, 13vw, 190px);
}

.craft-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  column-gap: clamp(34px, 7vw, 104px);
  row-gap: 24px;
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 96px);
}

.craft-intro h2 {
  max-width: 560px;
}

.craft-intro p:not(.eyebrow) {
  grid-column: 2;
  max-width: 420px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 36px);
}

.photo-trigger {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-trigger img {
  aspect-ratio: 1 / 1.14;
  object-fit: cover;
  transition:
    filter 260ms ease,
    transform 420ms ease;
}

.photo-trigger:hover img {
  filter: brightness(1.05);
  transform: scale(1.035);
}

.photo-trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.photo-card h3 {
  margin-bottom: 8px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    linear-gradient(180deg, rgba(15, 12, 9, 0.72), rgba(15, 12, 9, 0.9)),
    rgba(15, 12, 9, 0.8);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  color: var(--cream);
}

.lightbox figure {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.32fr);
  margin: 0;
  background: rgba(246, 241, 233, 0.08);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
}

.lightbox img {
  width: 100%;
  height: min(74vh, 760px);
  object-fit: cover;
  background: #15120f;
}

.lightbox figcaption {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 280px;
  padding: clamp(26px, 4vw, 48px);
  background: rgba(22, 19, 15, 0.72);
}

.lightbox figcaption span {
  margin-bottom: 22px;
  color: rgba(248, 239, 226, 0.54);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lightbox h2 {
  margin-bottom: 12px;
  color: var(--cream);
  font-size: clamp(30px, 4vw, 54px);
}

.lightbox p {
  margin: 0;
  color: rgba(248, 239, 226, 0.72);
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  min-height: 46px;
  border: 1px solid rgba(248, 239, 226, 0.28);
  color: var(--cream);
  background: rgba(22, 19, 15, 0.42);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.lightbox-nav:hover {
  border-color: rgba(248, 239, 226, 0.56);
  background: rgba(22, 19, 15, 0.72);
}

.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  position: absolute;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--cream);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.lightbox-close:hover {
  color: #fff8ee;
  transform: scale(1.08);
}

.lightbox-nav {
  top: 50%;
  width: 112px;
  transform: translateY(-50%);
}

.lightbox-nav:hover {
  transform: translateY(calc(-50% - 2px));
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.specs {
  background: #f1e9dd;
}

.spec-list {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 8vw, 120px);
}

.spec-list dl {
  grid-column: 2;
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(260px, 0.65fr);
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

dt,
dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

dt {
  font-weight: 700;
}

dd {
  color: var(--muted);
}

.testimonials {
  background: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 4vw, 58px);
}

blockquote {
  margin: 0;
  padding-left: clamp(18px, 2.4vw, 34px);
  border-left: 1px solid var(--line);
}

blockquote p {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.1vw, 28px);
  font-style: italic;
  line-height: 1.35;
}

cite {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: clamp(560px, 68vh, 760px);
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--dark);
  scroll-margin-top: 92px;
}

.final-cta::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(10, 8, 6, 0.1) 0%, rgba(10, 8, 6, 0.24) 42%, rgba(10, 8, 6, 0.72) 72%, rgba(10, 8, 6, 0.86) 100%),
    linear-gradient(180deg, rgba(10, 8, 6, 0.1), rgba(10, 8, 6, 0.44));
  pointer-events: none;
}

.final-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

.final-copy {
  position: relative;
  z-index: 2;
  width: 50vw;
  max-width: none;
  margin-left: auto;
  padding: clamp(62px, 8vw, 110px) clamp(26px, 7vw, 104px);
}

.final-copy .eyebrow {
  color: rgba(248, 239, 226, 0.58);
}

.final-copy h2 {
  margin-bottom: 22px;
}

.final-copy p {
  max-width: 540px;
  color: rgba(248, 239, 226, 0.74);
}

.final-copy small {
  display: block;
  margin-top: 26px;
  color: rgba(248, 239, 226, 0.52);
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: rise-in 720ms ease both;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: clamp(700px, 76vh, 820px);
  }

  .hero-copy {
    width: min(48vw, 560px);
    padding-left: clamp(24px, 4vw, 54px);
  }

  .highlight-grid,
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight:nth-child(2) {
    border-right: 0;
  }

  .highlight:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding-inline: 22px;
  }

  .desktop-nav {
    display: none;
  }

  .reserve-link {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: 920px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
    padding: 500px 24px 72px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(246, 241, 233, 0.38) 0%, rgba(246, 241, 233, 0.12) 48%, rgba(246, 241, 233, 0) 78%),
      linear-gradient(180deg, rgba(246, 241, 233, 0.02) 0%, rgba(246, 241, 233, 0.04) 42%, rgba(246, 241, 233, 0.92) 61%, rgba(246, 241, 233, 0.98) 100%);
  }

  .hero-image {
    inset: 0 0 auto;
    height: clamp(470px, 56vh, 590px);
  }

  .hero-image img {
    object-position: 70% center;
  }

  .metrics,
  .photo-grid,
  .sound,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .metrics {
    padding: 0;
  }

  .metric {
    min-height: 108px;
  }

  .section-intro,
  .craft-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .craft-intro p:not(.eyebrow) {
    grid-column: auto;
  }

  .spec-list {
    display: block;
  }

  .section {
    padding: 86px 24px;
  }

  .sound-panel {
    grid-template-columns: 1fr;
  }

  .mode {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mode small {
    margin-bottom: 22px;
  }

  .mode:last-child {
    border-bottom: 0;
  }

  .photo-trigger img {
    aspect-ratio: 1.2 / 1;
  }

  .lightbox figure {
    grid-template-columns: 1fr;
  }

  .lightbox img {
    height: min(58vh, 620px);
  }

  .lightbox figcaption {
    min-height: 0;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:hover {
    transform: translateY(-2px);
  }

  .final-cta {
    min-height: 720px;
    align-items: flex-end;
  }

  .final-cta::before {
    background:
      linear-gradient(90deg, rgba(10, 8, 6, 0.08), rgba(10, 8, 6, 0.46)),
      linear-gradient(180deg, rgba(10, 8, 6, 0.04) 0%, rgba(10, 8, 6, 0.28) 46%, rgba(10, 8, 6, 0.84) 100%);
  }

  .final-cta img {
    object-position: 35% center;
  }

  .final-copy {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .brand {
    max-width: 150px;
    line-height: 1.25;
  }

  h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  p {
    font-size: 15px;
  }

  .hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
  }

  .hero {
    min-height: 900px;
  }

  .hero-copy {
    padding: 470px 24px 58px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-quiet,
  .button-dark-quiet {
    width: max-content;
  }

  .highlight-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .highlight {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight:last-child {
    border-bottom: 0;
  }

  .highlight span {
    margin-bottom: 30px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .final-copy {
    padding: 58px 24px 70px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox img {
    height: 54vh;
  }

  .lightbox figcaption {
    padding: 22px 20px 82px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
