:root {
  color-scheme: dark;
  --black: #080706;
  --panel: #100e0b;
  --ivory: #f1eadd;
  --muted: #bdb6aa;
  --gold: #c7a66a;
  --line: rgba(199,166,106,.3);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', Arial, sans-serif;
  --page-gutter: clamp(1.4rem, 5vw, 6.5rem);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin: 0; background: var(--black); color: var(--ivory); font: 400 1rem/1.7 var(--sans); -webkit-font-smoothing: antialiased; }
body, h1, h2, p, figure { margin: 0; }
a { color: inherit; text-underline-offset: .3em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
img, video { display: block; max-width: 100%; }
[hidden] { display: none !important; }
::selection { color: var(--black); background: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.skip-link { position: absolute; top: 1rem; left: 1rem; z-index: 10; padding: .7rem 1rem; color: var(--black); background: var(--ivory); transform: translateY(-180%); }
.skip-link:focus { transform: none; }
.site-header { position: absolute; inset: 0 0 auto; z-index: 3; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 2rem var(--page-gutter); }
.wordmark { display: inline-block; text-decoration: none; font: 400 clamp(1.7rem,2.45vw,2.45rem)/1 var(--serif); letter-spacing: .47em; padding-right: 0; }
.site-header nav { display: flex; align-items: center; gap: clamp(1.5rem,3.4vw,4rem); }
.site-header nav a { text-decoration: none; font-size: .875rem; text-transform: uppercase; letter-spacing: .15em; padding: .8rem 0; }
.site-header nav a:hover { color: var(--gold); }
.hero { position: relative; isolation: isolate; min-height: 48rem; min-height: max(48rem,100svh); display: flex; align-items: center; padding: 10rem var(--page-gutter) 8rem; overflow: hidden; }
.hero-media, .hero-shade { position: absolute; inset: 0; z-index: -2; }
.hero-media { background: var(--black) url('assets/hero-poster.jpg') center / cover no-repeat; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { z-index: -1; background: linear-gradient(90deg,rgba(8,7,6,.62) 0%,rgba(8,7,6,.25) 45%,rgba(8,7,6,0) 73%),linear-gradient(180deg,rgba(8,7,6,.28),transparent 24%,transparent 73%,rgba(8,7,6,.18)); }
.hero-copy { width: min(48%, 45rem); }
h1 { font: 300 clamp(3.2rem,5.25vw,6.5rem)/1.02 var(--serif); text-transform: uppercase; letter-spacing: -.035em; }
.hero-description { margin-top: 1.65rem; max-width: 31rem; font-weight: 300; font-size: clamp(1.05rem,1.3vw,1.3rem); line-height: 1.7; color: #d1cbc1; }
.development { margin-top: 3.5rem; font-size: .875rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.outline-button { min-height: 3.65rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--gold); color: var(--ivory); background: transparent; padding: 1rem 2.1rem; font: 400 .875rem/1.55 var(--sans); text-decoration: none; text-align: center; text-transform: uppercase; letter-spacing: .19em; transition: background .2s ease, color .2s ease; }
.hero-copy .outline-button { margin-top: 1.65rem; }
.outline-button:hover { background: var(--gold); color: var(--black); }
.outline-button:disabled { cursor: wait; opacity: .6; }
.scroll-link { position: absolute; bottom: 2.3rem; left: calc(50% - 1.5rem); width: 3rem; height: 3rem; display: grid; place-items: center; color: var(--gold); }
.scroll-link svg { width: 2rem; height: 1.125rem; }
.motion-toggle { position: absolute; right: var(--page-gutter); bottom: 2.3rem; width: 2.75rem; height: 2.75rem; display: grid; place-items: center; padding: .6rem; color: var(--ivory); background: rgba(8,7,6,.48); border: 1px solid rgba(241,234,221,.3); border-radius: 50%; }
.motion-toggle svg { width: 1.2rem; height: 1.2rem; }
.motion-toggle .play-icon { display: none; }
.motion-toggle.is-paused .play-icon { display: block; }
.motion-toggle.is-paused .pause-icon { display: none; }
.preview-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,10vw,12rem); padding: clamp(5rem,9vw,10rem) var(--page-gutter); border-top: 1px solid var(--line); background: var(--panel); }
.preview-intro, .form-panel { min-width: 0; }
.eyebrow { color: var(--gold); font-size: .875rem; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 1.3rem; }
h2 { font: 300 clamp(3rem,4.8vw,5rem)/1.03 var(--serif); letter-spacing: -.025em; }
h2 em { font-weight: 300; }
.preview-intro > p:not(.eyebrow) { margin-top: 1.5rem; max-width: 31rem; color: var(--muted); }
.fine-print { font-size: .875rem; line-height: 1.7; }
.detail-image { margin-top: 2.75rem; width: min(100%,31rem); overflow: hidden; }
.detail-image img { width: 100%; height: auto; }
.form-panel { align-self: start; padding-top: 1rem; }
.field { margin-bottom: 1.85rem; }
.field label { display: block; margin-bottom: .55rem; font-size: .9375rem; }
.optional { color: var(--muted); font-size: .875rem; }
.field input { display: block; width: 100%; color: var(--ivory); background: transparent; border: 0; border-bottom: 1px solid rgba(241,234,221,.35); border-radius: 0; padding: .5rem .1rem .8rem; min-height: 3rem; font-size: 1.0625rem; }
.field input:hover { border-color: var(--gold); }
.field input:focus { outline: none; border-bottom: 2px solid var(--gold); padding-bottom: calc(.8rem - 1px); }
.field input:-webkit-autofill { -webkit-text-fill-color: var(--ivory); box-shadow: 0 0 0 1000px var(--panel) inset; }
.consent { display: flex; align-items: start; gap: .8rem; color: var(--muted); font-size: .875rem; line-height: 1.7; cursor: pointer; }
.consent input { accent-color: var(--gold); width: 1.125rem; height: 1.125rem; flex: 0 0 1.125rem; margin: .18rem 0 0; }
.privacy-link { margin-top: .85rem; margin-left: 1.925rem; color: var(--muted); font-size: .875rem; }
.form-button { margin-top: 2rem; width: 100%; }
.form-status { margin-top: 1.2rem; font-size: .9375rem; color: var(--muted); }
.form-status:empty { display: none; }
.form-status.is-error { color: #f2c5b9; }
.site-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; padding: 2.6rem var(--page-gutter); border-top: 1px solid var(--line); }
.footer-wordmark { font-size: 1.65rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
.footer-links a { font-size: .875rem; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ivory); }
.site-footer > p { font-size: .8125rem; color: var(--muted); }
.document-header { position: static; border-bottom: 1px solid var(--line); }
.document { max-width: 56rem; padding: clamp(3rem,7vw,7rem) var(--page-gutter); margin-inline: auto; min-height: 65svh; }
.document h1 { font-size: clamp(2.75rem,5vw,4.5rem); text-transform: none; }
.document h2 { font: 400 1.5rem/1.3 var(--serif); letter-spacing: 0; margin: 2rem 0 .8rem; }
.document p { margin-top: 1.2rem; color: var(--muted); }
.document .outline-button { margin-top: 2.2rem; }
.document .eyebrow { color: var(--gold); margin: 0 0 1.25rem; }
@media (min-width: 1900px) { .hero { min-height: max(55rem,100svh); } }
@media (max-width: 1050px) {
  .hero-copy { width: 58%; }
  .hero-shade { background: linear-gradient(90deg,rgba(8,7,6,.8),rgba(8,7,6,.42) 50%,rgba(8,7,6,.06)); }
  .hero-media { background-position: 60% center; }
  .hero-video { object-position: 60% center; }
  .preview-section { gap: 4rem; }
}
@media (max-width: 700px) {
  .site-header { padding-top: 1.6rem; gap: 1rem; flex-wrap: wrap; }
  .wordmark { font-size: 1.8rem; letter-spacing: .35em; }
  .nav-house { display: none; }
  .site-header nav { margin-left: auto; }
  .site-header nav a { font-size: .875rem; letter-spacing: .07em; }
  .hero { min-height: max(47rem,100svh); padding-top: 12rem; padding-bottom: 7rem; align-items: center; }
  .hero-media { background-position: 64% center; }
  .hero-video { object-position: 64% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(8,7,6,.91),rgba(8,7,6,.62)),linear-gradient(0deg,rgba(8,7,6,.25),transparent); }
  .hero-copy { width: 100%; max-width: 32rem; }
  h1 { font-size: clamp(2.5rem,9.8vw,4.2rem); line-height: 1.04; }
  .hero-description { font-size: 1.0625rem; line-height: 1.7; max-width: 25rem; margin-top: 1.4rem; }
  .development { margin-top: 2.4rem; font-size: .875rem; letter-spacing: .12em; }
  .hero-copy .outline-button { font-size: .8125rem; letter-spacing: .11em; padding-inline: 1rem; width: 100%; max-width: 24rem; }
  .scroll-link { bottom: 1.5rem; }
  .motion-toggle { bottom: 1.5rem; }
  .preview-section { grid-template-columns: 1fr; gap: 2.6rem; padding-block: 4.5rem; }
  .preview-intro h2 br { display: none; }
  .detail-image { margin-top: 2rem; max-width: none; }
  .detail-image img { max-height: 12rem; object-fit: cover; }
  .form-panel { padding-top: 0; }
  .site-footer { padding-block: 2rem; }
  .footer-wordmark { width: 100%; }
  .footer-links { gap: 1rem 1.6rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .hero-video, .motion-toggle { display: none; }
}
