/* ================= BASE ================= */
:root {
  --bg: #0c0e0b;
  --bg-2: #12140f;
  --ink: #e9e4d8;
  --ink-dim: #9a968a;
  --gold: #c5a572;
  --gold-dim: #8f7a53;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }

em { font-style: italic; }

/* ================= LOADER ================= */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1s ease, visibility 1s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-brand-top {
  font-size: .68rem; letter-spacing: .6em; margin-left: .6em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0; animation: loaderFade 1s ease .15s forwards;
}
.loader-brand {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 3.6rem); color: var(--ink);
  letter-spacing: .32em; margin-left: .32em;
  margin-bottom: 1.8rem;
  display: flex; justify-content: center;
}
.loader-brand span {
  opacity: 0; transform: translateY(.35em); filter: blur(8px);
  animation: loaderLetter .7s cubic-bezier(.19,1,.22,1) forwards;
}
.loader-brand span:nth-child(1) { animation-delay: .35s; }
.loader-brand span:nth-child(2) { animation-delay: .46s; }
.loader-brand span:nth-child(3) { animation-delay: .57s; }
.loader-brand span:nth-child(4) { animation-delay: .68s; }
.loader-brand span:nth-child(5) { animation-delay: .79s; }
.loader-brand span:nth-child(6) { animation-delay: .90s; }
.loader-brand span:nth-child(7) { animation-delay: 1.01s; }
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderLetter {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.loader-line {
  width: 160px; height: 1px; background: rgba(233,228,216,.15);
  margin: 0 auto; overflow: hidden;
}
.loader-line span {
  display: block; height: 100%; width: 0%;
  background: var(--gold);
  transition: width .4s ease;
}

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 1.4rem 3rem;
  transition: background .6s ease, padding .6s ease, border-color .6s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,14,11,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .9rem 3rem;
  border-bottom-color: rgba(197,165,114,.14);
}
.nav-left { display: flex; gap: 2.2rem; }
.nav-right { display: flex; gap: 2.2rem; justify-content: flex-end; align-items: center; }
.nav-link {
  color: var(--ink-dim); text-decoration: none;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  transition: color .4s;
}
.nav-link:hover { color: var(--gold); }
.nav-brand { text-decoration: none; text-align: center; line-height: 1.1; }
.nav-brand-top {
  display: block; font-size: .6rem; letter-spacing: .5em; margin-left: .5em;
  color: var(--gold); text-transform: uppercase;
}
.nav-brand-main {
  display: block; font-family: var(--serif); font-size: 1.5rem;
  letter-spacing: .3em; margin-left: .3em; color: var(--ink); font-weight: 500;
}
.nav-cta {
  color: var(--gold); text-decoration: none;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  border: 1px solid var(--gold-dim); padding: .65em 1.4em;
  transition: background .4s, color .4s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* ================= HERO ================= */
.hero { height: 1040vh; position: relative; }
.hero-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 65% center;
  opacity: 0;
}
#video0 { opacity: 1; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(12,14,11,.78) 0%, rgba(12,14,11,.25) 42%, transparent 65%),
    linear-gradient(180deg, rgba(12,14,11,.55) 0%, transparent 22%, transparent 75%, rgba(12,14,11,.6) 100%);
}

/* Chapters */
.chapter {
  position: absolute; z-index: 5;
  left: clamp(2rem, 7vw, 8rem); top: 50%;
  transform: translateY(calc(-50% + 40px));
  max-width: 560px;
  opacity: 0; visibility: hidden;
  transition: opacity 1.25s ease, transform 1.25s ease, visibility 1.25s;
  pointer-events: none;
}
.chapter.active {
  opacity: 1; visibility: visible;
  transform: translateY(-50%);
  pointer-events: auto;
}
.chapter-eyebrow {
  display: flex; align-items: center; gap: 1rem;
  font-size: .7rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.6rem;
}
.chapter-eyebrow .rule { width: 3rem; height: 1px; background: var(--gold-dim); }
.chapter-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.8rem, 5.6vw, 5.2rem);
  line-height: 1.02; letter-spacing: .01em;
  margin-bottom: 1.6rem;
}
.chapter-title em { color: var(--gold); font-weight: 400; }
.chapter-desc {
  font-size: 1rem; line-height: 1.75; color: var(--ink-dim);
  max-width: 40ch; margin-bottom: 2.2rem;
}
.chapter-meta { display: flex; gap: 2.8rem; }
.chapter-meta div {
  font-family: var(--serif); font-size: 1.05rem; color: var(--ink);
}
.chapter-meta span {
  display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: .5em;
}

.chapter-actions {
  display: flex; flex-wrap: wrap; gap: 1.1rem;
  margin-top: 1.4rem;
}
.chapter-actions a {
  text-decoration: none;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  padding: 1em 2.1em;
  transition: background .45s, color .45s, border-color .45s;
}
.btn-gold {
  background: var(--gold); color: var(--bg);
  border: 1px solid var(--gold);
}
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(233,228,216,.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Progress rail */
.rail {
  position: absolute; right: clamp(1.4rem, 4vw, 4rem); top: 50%;
  transform: translateY(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.rail-num {
  width: 7px; height: 7px; border-radius: 50%;
  border: 1px solid var(--ink-dim); background: transparent;
  transition: background .5s, border-color .5s, transform .5s;
}
.rail-num.active {
  background: var(--gold); border-color: var(--gold);
  transform: scale(1.45);
}
.rail-track {
  width: 1px; height: 130px; background: rgba(233,228,216,.15);
  position: relative; overflow: hidden; margin-top: .4rem;
}
.rail-track span {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: var(--gold);
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 2.6rem; left: 50%;
  transform: translateX(-50%); z-index: 6;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
  font-size: .64rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--ink-dim);
  transition: opacity .8s;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-hint-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: drip 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes drip {
  0% { transform: scaleY(0); opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ================= INTERLUDE ================= */
.interlude {
  height: 240vh;
  position: relative;
  background: var(--bg);
}
.interlude-sticky {
  position: sticky; top: 0; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 0 2rem;
}
.interlude p {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.5; text-align: center; max-width: 26ch;
  color: var(--ink);
}
.interlude p .iw { opacity: 0; }

/* ================= SECTIONS SHARED ================= */
.section-eyebrow {
  font-size: .7rem; letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.4rem;
}
.section-head { text-align: center; margin-bottom: 4.5rem; }
.collection h2, .craft h2, .footer h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem); line-height: 1.05;
}
.collection h2 em, .craft h2 em, .footer h2 em { color: var(--gold); }

/* ================= COLLECTION ================= */
.collection { padding: clamp(5rem, 10vh, 9rem) clamp(2rem, 6vw, 6rem); }
.collection-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
  max-width: 1560px; margin: 0 auto;
}
.card { text-decoration: none; color: inherit; display: block; }
.card-img {
  overflow: hidden; aspect-ratio: 3 / 4; margin-bottom: 1.6rem;
  border: 1px solid rgba(197,165,114,.16);
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% center;
  transition: transform 1.4s cubic-bezier(.19,1,.22,1), filter 1.4s;
  filter: saturate(.92) brightness(.96);
}
.card:hover .card-img img { transform: scale(1.06); filter: saturate(1) brightness(1.04); }
.card-num {
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: .6rem;
}
.card-info h3 {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 400;
  margin-bottom: .35rem;
}
.card-info p { color: var(--ink-dim); font-size: .85rem; letter-spacing: .06em; margin-bottom: .8rem; }
.card-price {
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color .4s;
}
.card:hover .card-price { border-bottom-color: var(--gold); }

@media (max-width: 1200px) and (min-width: 901px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
}

/* ================= CRAFT ================= */
.craft {
  background: var(--bg-2);
  border-top: 1px solid rgba(197,165,114,.1);
  border-bottom: 1px solid rgba(197,165,114,.1);
  padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 6rem);
}
.craft-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.craft-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 5rem;
}
.stat strong {
  display: block; font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 4.5vw, 4rem); color: var(--gold);
  margin-bottom: .6rem;
}
.stat span {
  font-size: .7rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-dim); line-height: 1.9;
}

/* ================= HISTORY ================= */
.history { padding: clamp(6rem, 12vh, 10rem) clamp(2rem, 6vw, 6rem); }
.history-lead {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem); line-height: 1.6;
  text-align: center; max-width: 34ch; margin: 0 auto clamp(5rem, 10vh, 8rem);
  color: var(--ink);
}

.timeline { position: relative; max-width: 1150px; margin: 0 auto; }
.timeline-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 1px; transform: translateX(-50%);
  background: rgba(197,165,114,.16);
  overflow: hidden;
}
.timeline-line span {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: linear-gradient(to bottom, var(--gold-dim), var(--gold));
}

.t-entry {
  display: grid;
  grid-template-columns: 1fr clamp(3.6rem, 9vw, 7rem) 1fr;
  align-items: center;
  margin-bottom: clamp(5rem, 12vh, 9rem);
}
.t-text { grid-column: 1; text-align: right; }
.t-media { grid-column: 3; }
.t-entry:nth-of-type(even) .t-text { grid-column: 3; grid-row: 1; text-align: left; }
.t-entry:nth-of-type(even) .t-media { grid-column: 1; grid-row: 1; }

.t-axis { grid-column: 2; grid-row: 1; align-self: center; justify-self: center; }
.t-dot {
  display: block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--gold);
  box-shadow: 0 0 0 5px var(--bg);
}

.t-year {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem); color: var(--gold);
  line-height: 1; margin-bottom: .9rem;
}
.t-text h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: .9rem;
}
.t-text p {
  color: var(--ink-dim); font-size: .95rem; line-height: 1.8;
  max-width: 42ch;
}
.t-text { display: flex; flex-direction: column; align-items: flex-end; }
.t-entry:nth-of-type(even) .t-text { align-items: flex-start; }

.t-media img {
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  object-position: 68% center;
  border: 1px solid rgba(197,165,114,.18);
}

.t-now {
  text-align: center; position: relative;
  padding-top: clamp(2rem, 5vh, 3.5rem);
}
.t-now-dot {
  display: block; width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); margin: 0 auto 2rem;
  box-shadow: 0 0 0 6px var(--bg), 0 0 24px rgba(197,165,114,.55);
}
.t-now .t-year { font-style: normal; margin-bottom: 1.2rem; }
.t-now p {
  color: var(--ink-dim); font-size: 1rem; line-height: 1.8;
  max-width: 44ch; margin: 0 auto 2.4rem;
}
.t-now-cta {
  display: inline-block; color: var(--gold); text-decoration: none;
  font-size: .72rem; letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--gold-dim); padding: .9em 2.2em;
  transition: background .5s, color .5s;
}
.t-now-cta:hover { background: var(--gold); color: var(--bg); }

/* Word-by-word reveal */
.words .w {
  display: inline-block;
  opacity: 0; transform: translateY(.45em); filter: blur(6px);
  transition: opacity .45s ease, transform .45s ease, filter .45s ease;
  transition-delay: var(--d, 0s);
}
.words.visible .w { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Slow photo fade */
.reveal-img {
  opacity: 0; transform: scale(1.045); filter: blur(12px);
  transition: opacity 1s ease, transform 1.3s cubic-bezier(.19,1,.22,1), filter 1s ease;
}
.reveal-img.visible { opacity: 1; transform: scale(1); filter: blur(0); }

/* ================= MARQUEE ================= */
.marquee { overflow: hidden; padding: 2.6rem 0; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee 30s linear infinite; }
.marquee-track span {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  font-style: italic; color: rgba(233,228,216,.28); letter-spacing: .08em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================= FOOTER ================= */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(197,165,114,.1);
  padding: clamp(6rem, 14vh, 11rem) clamp(2rem, 6vw, 6rem) 2.4rem;
  text-align: center;
}
.footer-cta {
  display: inline-block; margin-top: 2.8rem;
  color: var(--gold); text-decoration: none;
  font-size: .76rem; letter-spacing: .32em; text-transform: uppercase;
  border: 1px solid var(--gold-dim); padding: 1.1em 2.6em;
  transition: background .5s, color .5s;
}
.footer-cta:hover { background: var(--gold); color: var(--bg); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  margin-top: clamp(5rem, 10vh, 8rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(233,228,216,.08);
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-dim);
}

/* ================= BOOKING PAGE ================= */
.booking-page { min-height: 100vh; display: flex; flex-direction: column; }
.booking {
  flex: 1;
  padding: clamp(8rem, 16vh, 12rem) clamp(2rem, 6vw, 6rem) clamp(4rem, 8vh, 6rem);
  display: flex; justify-content: center;
}
.booking-inner { width: 100%; max-width: 760px; }
.booking h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 6vw, 5rem); line-height: 1.02;
  margin-bottom: 1.6rem;
}
.booking h1 em { color: var(--gold); }
.booking-note {
  color: var(--ink-dim); font-size: 1rem; line-height: 1.8;
  max-width: 52ch; margin-bottom: clamp(3rem, 6vh, 4.5rem);
}

.field-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.4rem; margin-bottom: 2.4rem;
}
.field { display: block; }
.field-full { margin-bottom: 2.4rem; }
.field span {
  display: block; font-size: .64rem; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: .7rem;
}
.field span em { text-transform: none; letter-spacing: .1em; font-style: italic; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(197,165,114,.28);
  color: var(--ink); font-family: var(--serif); font-size: 1.15rem;
  padding: .5em 0; border-radius: 0;
  transition: border-color .4s;
  color-scheme: dark;
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(154,150,138,.45); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.field select option { background: var(--bg-2); color: var(--ink); }
.field .field-error { border-bottom-color: #a05252; }

.booking-submit {
  display: inline-block; margin-top: 1rem; cursor: pointer;
  background: transparent; color: var(--gold);
  font-family: var(--sans); font-size: .76rem; letter-spacing: .32em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dim); padding: 1.1em 2.6em;
  transition: background .5s, color .5s;
}
.booking-submit:hover { background: var(--gold); color: var(--bg); }
.booking-fineprint {
  margin-top: 1.6rem; font-size: .78rem; color: var(--ink-dim);
  letter-spacing: .04em;
}

.booking-done { text-align: center; padding-top: 2rem; }
.booking-done-mark {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 1.6rem; line-height: 64px; margin: 0 auto 2.2rem;
}
.booking-done h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.05;
  margin-bottom: 1.4rem;
}
.booking-done h2 em { color: var(--gold); }
.booking-done p {
  color: var(--ink-dim); line-height: 1.8; max-width: 46ch;
  margin: 0 auto 2.6rem;
}
.booking-footer { padding: 2rem clamp(2rem, 6vw, 6rem); margin-top: 0; }

@media (max-width: 700px) {
  .field-row { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ================= REVEAL ================= */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity 1.1s cubic-bezier(.19,1,.22,1), transform 1.1s cubic-bezier(.19,1,.22,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .nav { padding: 1.1rem 1.4rem; grid-template-columns: auto 1fr; }
  .nav.scrolled { padding: .8rem 1.4rem; }
  .nav-left { display: none; }
  .nav-brand { text-align: left; justify-self: start; }
  .nav-right { gap: 1.2rem; }
  .nav-right .nav-link { display: none; }

  .hero-video { object-position: 72% center; }
  .hero-vignette {
    background:
      linear-gradient(90deg, rgba(12,14,11,.72) 0%, rgba(12,14,11,.42) 55%, rgba(12,14,11,.18) 100%),
      linear-gradient(180deg, rgba(12,14,11,.6) 0%, transparent 25%, transparent 72%, rgba(12,14,11,.68) 100%);
  }
  .chapter { left: 1.6rem; right: 1.6rem; max-width: none; }
  .chapter-title, .chapter-desc, .chapter-meta div { text-shadow: 0 2px 24px rgba(0,0,0,.75); }
  .chapter-desc { font-size: .92rem; }
  .chapter-meta { gap: 1.6rem; flex-wrap: wrap; }
  .rail { display: none; }

  .collection-grid { grid-template-columns: 1fr; max-width: 480px; }
  .craft-stats { grid-template-columns: repeat(2, 1fr); gap: 3rem 1.4rem; }

  .timeline-line { left: 4px; transform: none; }
  .t-entry {
    grid-template-columns: 2.4rem 1fr;
    align-items: start;
  }
  .t-axis { grid-column: 1; grid-row: 1; justify-self: start; padding-top: .9rem; margin-left: 0; }
  .t-text, .t-entry:nth-of-type(even) .t-text {
    grid-column: 2; grid-row: 1; text-align: left; align-items: flex-start;
  }
  .t-media, .t-entry:nth-of-type(even) .t-media {
    grid-column: 2; grid-row: 2; margin-top: 1.6rem;
  }
  .t-dot { box-shadow: 0 0 0 4px var(--bg); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint-line, .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}
