/* ---------- tokens ---------- */
:root {
  --blush: #DFBEBD;
  --ivory: #EFEBE1;
  --champagne: #F4EBDA;
  --champagne-dark: #E9DAB9;
  --black: #29292B;
  --gold: #C9A66B;
  --gold-deep: #AE8A50;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1120px;
  --pad: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--champagne);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
  font-weight: 600;
}

h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.body-lg { font-size: 1.15rem; line-height: 1.6; }
.body-sm { font-size: 0.95rem; }
.muted { color: #5b5b5e; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(174, 138, 80, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--champagne);
  border-color: rgba(233,218,185,0.5);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: rgba(233,218,185,0.12);
  border-color: var(--gold);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.brand-mark img {
  height: 20px;
  width: auto;
  display: block;
}

.header-cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 9px 20px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(41,41,43,0.25);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.header-cta:hover {
  background: rgba(41,41,43,0.45);
  border-color: #fff;
}

.site-header--solid {
  background: rgba(244,235,218,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(41,41,43,0.08);
}
.site-header--solid .header-cta {
  color: var(--black);
  border-color: rgba(41,41,43,0.3);
  background: transparent;
}
.site-header--solid .header-cta:hover {
  background: var(--black);
  color: #fff;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-fallback-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 100% at 15% 15%, rgba(223,190,189,0.55) 0%, transparent 55%),
    linear-gradient(160deg, var(--champagne) 0%, var(--champagne-dark) 45%, var(--black) 130%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  background: transparent;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(41,41,43,0.78) 0%,
    rgba(41,41,43,0.42) 38%,
    rgba(41,41,43,0.12) 62%,
    rgba(41,41,43,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(64px, 10vh, 120px);
  color: #fff;
}

.hero-content .eyebrow { color: var(--gold); }

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: #fff;
  max-width: 14ch;
}

.hero-subhead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 46ch;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 12px;
}
.scroll-cue span {
  position: absolute;
  top: 6px; left: 50%;
  width: 4px; height: 4px;
  margin-left: -2px;
  background: #fff;
  border-radius: 50%;
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translateY(0); }
  70% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- waitlist ---------- */
.waitlist {
  background: var(--black);
  color: var(--champagne);
  padding: clamp(64px, 10vw, 120px) 0;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.waitlist h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

.waitlist .eyebrow { color: var(--gold); }

.waitlist-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(233,218,185,0.25);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 40px);
}

#waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
#waitlist-form[hidden] { display: none; }

#waitlist-form input[type="email"] {
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(233,218,185,0.35);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
}
#waitlist-form input[type="email"]::placeholder { color: rgba(244,235,218,0.5); }
#waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

#waitlist-form .btn { width: 100%; text-align: center; border: none; }
#waitlist-form .btn[disabled] { opacity: 0.6; cursor: default; }

/* Honeypot — off-screen, not display:none (bots skip display:none less reliably). */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  font-size: 0.85rem;
  color: #e8a3a3;
  text-align: center;
}

.form-microcopy {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: rgba(244,235,218,0.6);
  text-align: center;
}

.waitlist-success {
  text-align: center;
  animation: success-in 0.4s ease;
}
.waitlist-success .eyebrow { color: var(--gold); }
.waitlist-success .success-position {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin: 0 0 10px;
}
.waitlist-success .success-position strong { color: var(--gold); }
.waitlist-success .muted { color: rgba(244,235,218,0.65); margin-bottom: 20px; }

.referral-link-row {
  display: flex;
  gap: 10px;
}
.referral-link-row input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(233,218,185,0.3);
  background: rgba(255,255,255,0.05);
  color: rgba(244,235,218,0.85);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}
.referral-link-row .btn {
  padding: 12px 22px;
  font-size: 0.85rem;
}

@keyframes success-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- about ---------- */
.about { padding: clamp(72px, 11vw, 140px) 0; }

.about-inner { max-width: 720px; }

.about h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }

.prose p {
  font-size: 1.05rem;
  color: #3c3c3e;
  margin: 0 0 20px;
}
.prose p:last-child { margin-bottom: 0; }

/* ---------- gallery ---------- */
.gallery {
  background: var(--ivory);
  padding: clamp(72px, 11vw, 140px) 0;
}

.gallery h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }

.colorway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin: 40px 0 56px;
}

.colorway {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(41,41,43,0.06);
  padding: clamp(28px, 5vw, 44px) 12px 0;
}

.colorway-swatch {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 50% / 42%;
  box-shadow: inset 0 -10px 24px rgba(41,41,43,0.14), 0 8px 18px rgba(41,41,43,0.08);
}

.swatch-ivory { background: linear-gradient(160deg, #FBF6EA 0%, var(--champagne-dark) 100%); }
.swatch-blush { background: linear-gradient(160deg, #F1DAD9 0%, var(--blush) 100%); }
.swatch-onyx  { background: linear-gradient(160deg, #46464a 0%, var(--black) 100%); }

.colorway figcaption {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  padding: 16px 0 20px;
}

.mirror-moment {
  margin: 0;
  padding: clamp(48px, 8vw, 88px) clamp(24px, 6vw, 10vw);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(41,41,43,0.06);
  text-align: center;
}

.mirror-moment p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.4;
  color: var(--black);
  max-width: 26ch;
  margin: 0 auto;
}

/* ---------- FAQ ---------- */
.faq { padding: clamp(72px, 11vw, 140px) 0; }

.faq-inner { max-width: 760px; }

.faq h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); }

.faq-item {
  border-top: 1px solid rgba(41,41,43,0.14);
  padding: 20px 0;
}
.faq-item:last-of-type { border-bottom: 1px solid rgba(41,41,43,0.14); }

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.4rem;
  color: var(--gold-deep);
  margin-left: 16px;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  margin: 14px 0 0;
  color: #4a4a4c;
  max-width: 60ch;
}

/* ---------- final CTA ---------- */
.final-cta {
  background: var(--blush);
  padding: clamp(72px, 12vw, 140px) 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(244,235,218,0.7);
  padding: 48px 0 32px;
}

.footer-inner { text-align: center; }

.footer-logo {
  height: 22px;
  margin: 0 auto 20px;
  opacity: 0.92;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-social a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(244,235,218,0.85);
}
.footer-social a:hover { color: var(--gold); }

.footer-legal {
  font-size: 0.72rem;
  max-width: 520px;
  margin: 0 auto 10px;
  color: rgba(244,235,218,0.45);
  line-height: 1.5;
}

.footer-copyright {
  font-size: 0.72rem;
  color: rgba(244,235,218,0.35);
  margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .waitlist-grid { grid-template-columns: 1fr; }
  .colorway-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 560px) {
  .colorway-grid { grid-template-columns: repeat(3, 1fr); }
  .colorway figcaption { font-size: 0.85rem; padding: 10px 4px 14px; }
  .header-cta { padding: 8px 14px; font-size: 0.78rem; }
  .referral-link-row { flex-direction: column; }
}
