/* =========================================================================
   GOLD HOUSE PARTY — Design System & Styles
   Structural language inspired by the Wise Style reference (spacing rhythm,
   pill controls, alternating section cadence, large tracked type) reinterpreted
   entirely in a warm ivory / champagne gold / deep charcoal palette.
   ========================================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Color palette */
  --color-ivory: #FBF7EF;
  --color-cream: #F3EADA;
  --color-white: #FFFFFF;
  --color-champagne-wash: #F1E4C8;

  --color-charcoal: #2A241C;
  --color-charcoal-soft: #3B342A;
  --color-black: #14110C;

  --color-gold: #A9812F;
  --color-gold-deep: #8A6423;
  --color-gold-light: #D4B679;
  --color-gold-pale: #E7D5A9;

  --color-taupe: #A6957C;
  --color-taupe-line: #E4D9C4;
  --color-slate: #6E6252;
  --color-pebble: #948669;

  --color-success-wash: #EEF3E5;

  /* Text */
  --text-primary: var(--color-charcoal);
  --text-secondary: var(--color-slate);
  --text-muted: var(--color-pebble);
  --text-on-dark: #F6EFDF;
  --text-on-gold: #2A241C;

  /* Fonts */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Type scale */
  --text-display-lg: clamp(2.75rem, 6vw, 5.5rem);
  --text-display: clamp(2.25rem, 4.6vw, 4rem);
  --text-heading: clamp(1.9rem, 3.2vw, 2.75rem);
  --text-subheading: clamp(1.4rem, 2vw, 1.75rem);
  --text-body-lg: 1.25rem;
  --text-body: 1.0625rem;
  --text-body-sm: 0.9375rem;
  --text-caption: 0.8125rem;
  --text-micro: 0.75rem;

  /* Spacing */
  --space-4: 4px;
  --space-8: 8px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-28: 28px;
  --space-32: 32px;
  --space-40: 40px;
  --space-48: 48px;
  --space-56: 56px;
  --space-64: 64px;
  --space-80: 80px;
  --space-96: 96px;
  --space-120: 120px;

  /* Radius */
  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-card-lg: 28px;
  --radius-input: 12px;
  --radius-sm: 10px;

  /* Shadow */
  --shadow-soft: 0 1px 2px rgba(42, 36, 28, 0.06), 0 12px 28px rgba(42, 36, 28, 0.08);
  --shadow-lift: 0 8px 20px rgba(42, 36, 28, 0.10), 0 24px 48px rgba(42, 36, 28, 0.10);
  --shadow-hairline: 0 0 0 1px rgba(42, 36, 28, 0.10);
  --shadow-gold-glow: 0 10px 30px rgba(169, 129, 47, 0.28);

  /* Layout */
  --page-max: 1200px;
  --nav-height: 76px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-weight: inherit; }

body {
  font-family: var(--font-body);
  background: var(--color-ivory);
  color: var(--text-primary);
  font-size: var(--text-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-charcoal);
  color: var(--text-on-dark);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--color-gold-deep);
  outline-offset: 3px;
}

.container {
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--space-24);
}

section { position: relative; }

.section-pad { padding-block: var(--space-96); }
@media (max-width: 720px) {
  .section-pad { padding-block: var(--space-64); }
}

.band-ivory { background: var(--color-ivory); }
.band-cream { background: var(--color-cream); }
.band-white { background: var(--color-white); }
.band-charcoal { background: var(--color-charcoal); color: var(--text-on-dark); }
.band-charcoal .eyebrow { color: var(--color-gold-light); }
.band-charcoal .section-heading { color: var(--text-on-dark); }
.band-charcoal .section-sub { color: #D8CDB8; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-16);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1.5px;
  background: var(--color-gold);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section-sub {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.5;
  margin-top: var(--space-16);
}

.section-head {
  max-width: 760px;
  margin-bottom: var(--space-56);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-body-sm);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color .2s ease, color .2s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold) 60%, var(--color-gold-deep));
  color: var(--text-on-gold);
  box-shadow: var(--shadow-gold-glow);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(169, 129, 47, 0.38); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-charcoal);
  color: var(--text-primary);
}
.btn-outline:hover { background: var(--color-charcoal); color: var(--text-on-dark); }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(246, 239, 223, 0.5);
  color: var(--text-on-dark);
}
.btn-outline-light:hover { background: rgba(246, 239, 223, 0.12); border-color: var(--text-on-dark); }

.btn-text {
  padding: 0;
  border-radius: 0;
  text-transform: none;
  font-weight: 600;
  font-size: var(--text-body);
  letter-spacing: normal;
  color: var(--text-primary);
  border-bottom: 1.5px solid var(--color-gold);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--color-gold-deep); }

.btn-sm { padding: 11px 22px; font-size: var(--text-caption); }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(251, 247, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-taupe-line);
  transition: box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: 0 6px 20px rgba(42,36,28,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-24);
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  flex: none;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 220deg, var(--color-gold-light), var(--color-gold), var(--color-gold-deep), var(--color-gold-light));
  display: grid;
  place-items: center;
  flex: none;
}
.logo-mark svg { width: 18px; height: 18px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-24);
}
.nav-links a {
  font-size: var(--text-body-sm);
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding-block: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--space-16); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .btn-primary.nav-only { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--color-ivory);
  z-index: 490;
  padding: var(--space-32) var(--space-24);
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.mobile-menu .btn { align-self: flex-start; margin-top: var(--space-16); }

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 480;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-taupe-line);
}
@media (max-width: 720px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(var(--space-56), 8vw, var(--space-96));
  padding-bottom: var(--space-80);
  overflow: hidden;
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 85% 8%, rgba(212,182,121,0.35), transparent 60%),
    radial-gradient(45% 40% at 8% 25%, rgba(169,129,47,0.14), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-64);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-grid .eyebrow { justify-content: center; }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-display-lg);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(100deg, var(--color-gold-deep), var(--color-gold) 45%, var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  margin-top: var(--space-24);
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 540px;
}
@media (max-width: 980px) { .hero-copy { margin-inline: auto; } }

.hero-ctas {
  margin-top: var(--space-40);
  display: flex;
  align-items: center;
  gap: var(--space-24);
  flex-wrap: wrap;
}
@media (max-width: 980px) { .hero-ctas { justify-content: center; } }

.trust-line {
  margin-top: var(--space-40);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 980px) { .trust-line { justify-content: center; } }
.trust-line span { display: inline-flex; align-items: center; gap: 8px; }
.trust-line span::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--color-gold);
}

/* Hero visual: real photography, warm gold color-wash to keep the palette cohesive */
.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: var(--radius-card-lg);
  background: var(--color-champagne-wash);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(190deg, rgba(169,129,47,0.28) 0%, rgba(42,36,28,0.05) 35%, rgba(42,36,28,0.35) 100%);
  z-index: 1;
}
.hero-visual-caption {
  position: absolute;
  left: var(--space-24);
  bottom: var(--space-24);
  right: var(--space-24);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-hairline);
}
.hero-visual-caption .label { font-size: var(--text-caption); color: var(--text-secondary); }
.hero-visual-caption .value { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--text-primary); }

/* ---------- Calculator ---------- */
.calc-card {
  background: var(--color-charcoal);
  border-radius: var(--radius-card-lg);
  padding: clamp(var(--space-32), 5vw, var(--space-64));
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lift);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-56);
  align-items: center;
}
@media (max-width: 900px) {
  .calc-card { grid-template-columns: 1fr; padding: var(--space-32) var(--space-24); }
}

.calc-label {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-16);
}

.calc-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  margin-bottom: var(--space-16);
}
.calc-amount-row .currency { font-size: 1.5rem; color: var(--color-gold-light); }
#calcInputDisplay { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; }

.calc-slider {
  width: 100%;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold) var(--fill, 40%), rgba(246,239,223,0.18) var(--fill, 40%));
  outline: none;
  margin-top: var(--space-8);
}
.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-gold-light);
  border: 3px solid var(--color-charcoal);
  box-shadow: 0 0 0 2px var(--color-gold-light);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--color-gold-light);
  border: 3px solid var(--color-charcoal);
  box-shadow: 0 0 0 2px var(--color-gold-light);
  cursor: pointer;
  border: none;
}

.calc-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--space-20);
}
.calc-preset {
  border: 1px solid rgba(246,239,223,0.25);
  color: var(--text-on-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: var(--text-caption);
  font-weight: 500;
  transition: background .2s ease, border-color .2s ease;
}
.calc-preset:hover, .calc-preset.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--text-on-gold);
}

.calc-result {
  background: rgba(246,239,223,0.06);
  border: 1px solid rgba(246,239,223,0.14);
  border-radius: var(--radius-card);
  padding: var(--space-32);
  text-align: center;
}
.calc-result .calc-label { color: var(--color-gold-light); }
.calc-result-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4rem);
  line-height: 1;
  background: linear-gradient(100deg, var(--color-gold-light), #F3E5C0 50%, var(--color-gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-block: var(--space-16);
}
.calc-note {
  font-size: var(--text-caption);
  color: #C9BC9E;
  margin-top: var(--space-16);
  line-height: 1.5;
}

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-24);
}
@media (max-width: 1080px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

.step-card {
  background: var(--color-white);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius-card);
  padding: var(--space-28) var(--space-24);
  transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.step-card .benefit-icon { position: relative; }
.step-number {
  font-family: var(--font-body);
  font-size: var(--text-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin-bottom: var(--space-8);
}
.step-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: var(--space-8);
}
.step-card p { color: var(--text-secondary); font-size: var(--text-body-sm); }

.center-cta { display: flex; justify-content: center; margin-top: var(--space-56); }

/* ---------- Card grids (What We Buy / Why Host / Perfect For) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .card-grid { grid-template-columns: 1fr; } }

.item-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-taupe-line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.item-visual {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--color-champagne-wash);
}
.item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.item-card:hover .item-visual img { transform: scale(1.05); }
.item-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,36,28,0) 60%, rgba(42,36,28,0.22) 100%);
  pointer-events: none;
}
.item-body { padding: var(--space-20) var(--space-24) var(--space-24); }
.item-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin-bottom: 6px; }
.item-body p { font-size: var(--text-body-sm); color: var(--text-secondary); }

.buy-note {
  margin-top: var(--space-40);
  text-align: center;
  font-size: var(--text-body-sm);
  color: var(--text-secondary);
  font-style: italic;
}

/* Benefit cards (Why Host / Perfect For use variants) */
.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius-card);
  padding: var(--space-28);
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-champagne-wash);
  display: grid; place-items: center;
  margin-bottom: var(--space-20);
}
.benefit-icon svg { width: 22px; height: 22px; color: var(--color-gold-deep); }
.benefit-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.benefit-card p { color: var(--text-secondary); font-size: var(--text-body-sm); }

/* ---------- Host cost section ---------- */
.cost-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}
@media (max-width: 900px) { .cost-wrap { grid-template-columns: 1fr; } }

.cost-example {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  padding: var(--space-32);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-taupe-line);
}
.cost-example h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: var(--space-24);
}
.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--space-16);
  border-bottom: 1px solid var(--color-taupe-line);
  font-size: var(--text-body-sm);
}
.cost-row:last-of-type { border-bottom: none; }
.cost-row .label { color: var(--text-secondary); }
.cost-row .value { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; }
.cost-row.total .value { color: var(--color-gold-deep); font-size: 1.4rem; }
.cost-fineprint {
  margin-top: var(--space-20);
  font-size: var(--text-caption);
  color: var(--text-muted);
}

.setup-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-champagne-wash);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-weight: 600;
  font-size: var(--text-body-sm);
  color: var(--color-gold-deep);
  margin-top: var(--space-24);
}

/* ---------- Private evaluations ---------- */
.evals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}
@media (max-width: 900px) { .evals { grid-template-columns: 1fr; } }
.eval-visual {
  position: relative;
  border-radius: var(--radius-card-lg);
  background: var(--color-charcoal);
  aspect-ratio: 4/4.4;
  overflow: hidden;
  padding: var(--space-32);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-16);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-lift);
}
.eval-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.eval-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,17,12,0.92) 0%, rgba(20,17,12,0.55) 45%, rgba(20,17,12,0.15) 75%);
  z-index: 1;
}
.eval-visual > * { position: relative; z-index: 2; }
.eval-visual .quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--color-gold-light); line-height: 1; }
.eval-visual .quote-text { font-family: var(--font-display); font-size: 1.4rem; line-height: 1.4; margin-top: -8px; }
.eval-visual .quote-sub { font-size: var(--text-caption); color: #C9BC9E; }

.eval-list { margin-top: var(--space-32); display: grid; gap: var(--space-16); }
.eval-list li { display: flex; gap: 14px; align-items: flex-start; font-size: var(--text-body-sm); color: var(--text-secondary); }
.eval-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--color-champagne-wash);
  color: var(--color-gold-deep);
  display: grid; place-items: center;
  margin-top: 2px;
}
.eval-list .check svg { width: 12px; height: 12px; }

/* ---------- Guest experience steps ---------- */
.guest-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-24);
}
@media (max-width: 900px) { .guest-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guest-steps { grid-template-columns: 1fr; } }

.guest-list {
  margin-top: var(--space-40);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  background: var(--color-white);
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  font-size: var(--text-caption);
  font-weight: 500;
  color: var(--text-secondary);
}

/* ---------- Party size ---------- */
.size-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-32);
  background: var(--color-champagne-wash);
  border-radius: var(--radius-card-lg);
  padding: var(--space-40);
  flex-wrap: wrap;
}
.size-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--color-gold-deep);
}
.size-banner p { max-width: 480px; color: var(--text-secondary); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-taupe-line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  padding: var(--space-24) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
}
.faq-icon {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-taupe-line);
  display: grid; place-items: center;
  position: relative;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-charcoal);
  transition: transform .3s ease, opacity .3s ease;
}
.faq-icon::before { width: 10px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 10px; }
.faq-item.open .faq-icon { background: var(--color-gold); border-color: var(--color-gold); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: var(--text-on-gold); }
.faq-item.open .faq-icon::after { opacity: 0; }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-answer-inner { overflow: hidden; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-answer p { padding-bottom: var(--space-24); color: var(--text-secondary); font-size: var(--text-body-sm); max-width: 640px; }

/* ---------- Host form ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-64);
  align-items: flex-start;
}
@media (max-width: 980px) { .form-wrap { grid-template-columns: 1fr; } }

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-card-lg);
  padding: clamp(var(--space-24), 4vw, var(--space-40));
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-taupe-line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: var(--text-caption); font-weight: 600; color: var(--text-secondary); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--color-taupe-line);
  border-radius: var(--radius-input);
  padding: 13px 16px;
  font-size: var(--text-body-sm);
  background: var(--color-ivory);
  transition: border-color .2s ease, background .2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--color-gold);
  background: var(--color-white);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-submit { margin-top: var(--space-24); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-40) var(--space-16);
}
.form-success.show { display: block; }
.form-success .check-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-champagne-wash);
  color: var(--color-gold-deep);
  display: grid; place-items: center;
  margin: 0 auto var(--space-20);
}
.form-success h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: var(--space-12); }
.form-success p { color: var(--text-secondary); max-width: 440px; margin-inline: auto; }

.form-side-list { margin-top: var(--space-32); display: grid; gap: var(--space-20); }
.form-side-item { display: flex; gap: 14px; }
.form-side-item .num {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid; place-items: center;
  font-size: 0.9rem;
}
.form-side-item p { font-size: var(--text-body-sm); color: var(--text-secondary); }
.form-side-item strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* ---------- Digital invitation mockup ---------- */
.invite-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-64);
  align-items: center;
}
@media (max-width: 980px) { .invite-wrap { grid-template-columns: 1fr; } }

.invite-card {
  background: linear-gradient(165deg, var(--color-charcoal), #221D15);
  border-radius: var(--radius-card-lg);
  padding: var(--space-40) var(--space-32);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.invite-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,182,121,0.35);
  border-radius: calc(var(--radius-card-lg) - 8px);
  pointer-events: none;
}
.invite-eyebrow {
  text-align: center;
  font-size: var(--text-caption);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-8);
}
.invite-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.invite-sub {
  text-align: center;
  font-size: var(--text-body-sm);
  color: #D8CDB8;
  margin-top: var(--space-16);
  max-width: 380px;
  margin-inline: auto;
}
.invite-divider {
  height: 1px;
  background: rgba(212,182,121,0.3);
  margin: var(--space-24) 0;
}
.invite-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
  text-align: center;
}
.invite-details .k { font-size: var(--text-micro); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gold-light); margin-bottom: 4px; }
.invite-details .v { font-size: var(--text-body-sm); color: var(--text-on-dark); }
.invite-footer {
  text-align: center;
  margin-top: var(--space-24);
  font-size: var(--text-caption);
  font-style: italic;
  color: #C9BC9E;
}
.invite-badge {
  position: absolute;
  top: var(--space-20);
  right: var(--space-20);
  font-size: var(--text-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(212,182,121,0.16);
  color: var(--color-gold-light);
  border: 1px solid rgba(212,182,121,0.35);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
}

/* ---------- Reviews ---------- */
.reviews-placeholder {
  text-align: center;
  padding: var(--space-64) var(--space-24);
  background: var(--color-white);
  border: 1px dashed var(--color-taupe-line);
  border-radius: var(--radius-card-lg);
  max-width: 640px;
  margin-inline: auto;
}
.reviews-placeholder .stars { color: var(--color-gold); font-size: 1.5rem; letter-spacing: 4px; margin-bottom: var(--space-16); }
.reviews-placeholder p { color: var(--text-secondary); }

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: center;
}
@media (max-width: 900px) { .about-wrap { grid-template-columns: 1fr; } }
.about-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card-lg);
  background: var(--color-champagne-wash);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-brandline {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  line-height: 1.1;
  text-transform: uppercase;
  margin-top: var(--space-24);
}
.about-brandline .accent { color: var(--color-gold-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-charcoal);
  color: #CFC3A9;
  padding-block: var(--space-64) var(--space-32);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--space-32);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .logo { color: var(--text-on-dark); }
.footer-brand p { margin-top: var(--space-16); font-size: var(--text-body-sm); color: #B7A984; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: var(--space-20); }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(207,195,169,0.3);
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: var(--text-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-16);
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col span { font-size: var(--text-body-sm); color: #CFC3A9; }
.footer-col a:hover { color: var(--text-on-dark); }

.footer-bottom {
  margin-top: var(--space-56);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(207,195,169,0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-16);
  font-size: var(--text-caption);
  color: #A5987A;
}

/* ---------- Reveal-on-scroll animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Misc ---------- */
.divider-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--color-gold);
  display: inline-block;
}

.legal-page {
  max-width: 760px;
  margin-inline: auto;
  padding-block: var(--space-96) var(--space-64);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: var(--text-heading);
  text-transform: uppercase;
  margin-bottom: var(--space-24);
}
.legal-page p { color: var(--text-secondary); margin-bottom: var(--space-16); }
.legal-page .back-link { display: inline-block; margin-bottom: var(--space-40); }
