:root {
  color-scheme: dark;
  --ink: #090909;
  --ink-soft: #151311;
  --ivory: #f7f1e6;
  --muted: #b9b0a2;
  --gold: #c59a45;
  --steel: #cfd4d6;
  --line: rgba(247, 241, 230, 0.16);
  --glass: rgba(9, 9, 9, 0.54);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--ivory);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

.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: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(4, 4, 4, 0.76), rgba(4, 4, 4, 0));
}

.brand,
.nav-links,
.header-action,
.hero-actions a,
.reserve-form button {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(247, 241, 230, 0.48);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 42px);
  color: rgba(247, 241, 230, 0.76);
}

.nav-links a,
.header-action,
.hero-actions a {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.header-action:hover,
.secondary-action:hover {
  color: var(--ivory);
}

.header-action {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(247, 241, 230, 0.36);
  border-radius: 999px;
}

.header-action:hover,
.secondary-action:hover {
  border-color: rgba(247, 241, 230, 0.7);
}

.sequence-section {
  position: relative;
  height: 430vh;
  background: var(--ink);
}

.sequence-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

#watch-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0b0a09;
}

.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.86), rgba(3, 3, 3, 0.28) 42%, rgba(3, 3, 3, 0.08) 65%),
    linear-gradient(0deg, rgba(3, 3, 3, 0.8), rgba(3, 3, 3, 0.08) 42%, rgba(3, 3, 3, 0.64));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(620px, calc(100% - 36px));
  height: calc(100vh - 28px);
  min-height: 592px;
  padding: 0 0 clamp(62px, 10vh, 108px) clamp(18px, 8vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: balance;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 11vw, 9.5rem);
  line-height: 0.9;
}

.hero-copy {
  max-width: 510px;
  margin: 24px 0 0;
  color: rgba(247, 241, 230, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions a,
.reserve-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
}

.primary-action,
.reserve-form button {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #100d08;
}

.primary-action:hover,
.reserve-form button:hover {
  background: #d7ac58;
}

.secondary-action {
  border: 1px solid rgba(247, 241, 230, 0.36);
  background: rgba(247, 241, 230, 0.06);
  color: var(--ivory);
}

.scroll-meter {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(26px, 5vh, 46px);
  width: min(220px, 32vw);
  height: 2px;
  overflow: hidden;
  background: rgba(247, 241, 230, 0.22);
}

.scroll-meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--gold);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.intro-band,
.feature-band,
.atelier-band,
.reserve-band {
  position: relative;
  background: var(--ink);
}

.intro-band {
  padding: clamp(78px, 12vw, 150px) 0;
  border-top: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1.25fr) minmax(240px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.intro-grid h2,
.atelier-layout h2,
.reserve-layout h2 {
  font-size: clamp(2.3rem, 5vw, 5.1rem);
  line-height: 1.02;
}

.intro-grid p:last-child,
.feature p,
.spec-list dd,
.reserve-layout > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.75;
}

.feature-band {
  padding: 0 0 clamp(84px, 12vw, 150px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature {
  min-height: 310px;
  padding: clamp(24px, 4vw, 46px);
  border-right: 1px solid var(--line);
}

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

.feature span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature h3 {
  margin-top: 72px;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
}

.feature p {
  max-width: 28ch;
  margin: 18px 0 0;
}

.atelier-band {
  padding: clamp(84px, 11vw, 142px) 0;
  background: linear-gradient(180deg, #100f0d, #090909);
}

.atelier-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

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

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

.spec-list dt {
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
}

.reserve-band {
  padding: clamp(84px, 12vw, 150px) 0;
}

.reserve-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(32px, 8vw, 110px);
  align-items: end;
}

.reserve-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 14px;
  align-items: end;
}

.reserve-form label {
  display: grid;
  gap: 10px;
}

.reserve-form span {
  color: rgba(247, 241, 230, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reserve-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 15px;
  background: rgba(247, 241, 230, 0.04);
  color: var(--ivory);
  font: inherit;
  outline: none;
}

.reserve-form input:focus {
  border-color: rgba(197, 154, 69, 0.78);
}

.reserve-form button {
  min-width: 190px;
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

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

  .nav-links {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.24) 54%, rgba(3, 3, 3, 0.5)),
      linear-gradient(90deg, rgba(3, 3, 3, 0.44), rgba(3, 3, 3, 0.04));
  }

  .hero-content {
    padding-left: 18px;
  }

  .intro-grid,
  .feature-grid,
  .atelier-layout,
  .reserve-layout,
  .reserve-form {
    grid-template-columns: 1fr;
  }

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

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

  .feature h3 {
    margin-top: 42px;
  }

  .reserve-form button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 64px;
    padding: 12px 16px;
  }

  .brand {
    font-size: 0.7rem;
  }

  .header-action {
    padding: 10px 13px;
    font-size: 0.68rem;
  }

  .sequence-sticky,
  .hero-content {
    min-height: 600px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(310px, 100%);
  }

  .scroll-meter {
    left: 18px;
    right: 18px;
    width: auto;
  }

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

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