/* ==========================================================
   TDI Studio — The Digital Invite
   theme.css (Cache-Busted Edition)
   ========================================================== */

:root {
  /* ── 60/30/10 Pastel Palette ──────────────────────────────
     60%  Blush White  #FDF6F7  — page backgrounds, hero, sections
     30%  Petal Card   #F2E9E9  — card fills, secondary sections, nav bg
     10%  Rose Accent  #D4B4B4  — buttons, borders, highlights, accents
  ────────────────────────────────────────────────────────── */
  --ivory:          #FDF6F7;   /* 60% — primary background              */
  --ivory-mid:      #F2E9E9;   /* 30% — cards, secondary sections        */
  --charcoal:       #3A2E2E;   /* text — warm dark instead of cold black */
  --charcoal-soft:  #6A5555;   /* secondary text                         */
  --gold:           #D4B4B4;   /* 10% — accent / buttons / borders       */
  --gold-light:     #E2C8C8;   /* lighter accent for gradients           */
  --gold-pale:      #F7EDED;   /* very pale tint for hover states        */
  --white:          #FFFFFF;

  --font-sans:    'Lato', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-elegant: 'Cormorant Garamond', serif;

  --section-pad: 7rem 2rem;
  --container:   1100px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: 70px; /* Protects the hero section from the navbar */
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; }

.container { max-width: var(--container); margin-inline: auto; }

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
}

.section-title em { font-style: italic; }
.section-title.light { color: var(--ivory); }
.section-header { margin-bottom: 3.5rem; }

.section-intro {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  max-width: 500px;
  margin: 1.2rem auto 0;
  line-height: 1.9;
}

.link-gold { color: var(--gold); }
.link-gold:hover { text-decoration: underline; }

.btn-primary {
  display: inline-block;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(212, 180, 180, 0.25);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--charcoal);
  padding: 1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--charcoal);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--ivory);
}

.btn-block { display: block; text-align: center; width: 100%; margin-top: 2rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 247, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 180, 180, 0.18);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 0; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-left: 2.2rem;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--charcoal) !important; color: var(--ivory) !important; padding: 0.6rem 1.4rem !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--charcoal); padding: 0.3rem; }

#hero {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  z-index: 1;
}

.hero-bg-line { position: absolute; background: var(--gold); opacity: 0.08; }
.hero-bg-line.v1 { width: 1px; height: 100%; left: 18%; top: 0; }
.hero-bg-line.v2 { width: 1px; height: 100%; right: 18%; top: 0; }
.hero-bg-line.h1 { height: 1px; width: 100%; top: 30%; }
.hero-bg-line.h2 { height: 1px; width: 100%; bottom: 30%; }

.hero-ornament {
  position: absolute;
  font-family: var(--font-elegant);
  font-size: 18rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-ornament.left  { left: -4rem; top: 50%; transform: translateY(-50%); }
.hero-ornament.right { right: -4rem; top: 50%; transform: translateY(-50%); }

.hero-inner {
  text-align: center;
  z-index: 2;
  padding: 4rem 2rem;
  animation: fadeUp 1.2s ease both;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-subtitle {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-soft);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.hero-divider {
  width: 60px; height: 1px; background: var(--gold); margin: 2rem auto; position: relative;
}
.hero-divider::before, .hero-divider::after {
  content: '◇'; position: absolute; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 0.5rem;
}
.hero-divider::before { left: -1rem; }
.hero-divider::after  { right: -1rem; }

.hero-desc {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}

.hero-ctas { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

#how {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--section-pad);
  position: relative;
  z-index: 2;
  width: 100%;
}

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.step-card {
  border: 1px solid rgba(212, 180, 180, 0.2);
  padding: 2.5rem;
  transition: all var(--transition);
}
.step-card:hover { border-color: rgba(212, 180, 180, 0.6); transform: translateY(-3px); }
.step-num { font-family: var(--font-elegant); font-size: 4rem; font-weight: 300; color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--ivory); margin-bottom: 0.8rem; }
.step-desc { font-size: 0.88rem; color: rgba(248, 244, 238, 0.6); line-height: 1.85; }

#features { padding: var(--section-pad); background: var(--ivory); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.features-intro { font-size: 0.88rem; color: var(--charcoal-soft); line-height: 1.9; margin: 1.2rem 0 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2rem 0; border-bottom: 1px solid rgba(212, 180, 180, 0.15); }
.feature-item.last { border-bottom: none; }
.feature-icon { width: 2.5rem; height: 2.5rem; flex-shrink: 0; color: var(--gold); margin-top: 0.2rem; }
.feature-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.4rem; }
.feature-desc { font-size: 0.87rem; color: var(--charcoal-soft); line-height: 1.8; }

.invite-card {
  background: var(--white);
  border: 1px solid rgba(212, 180, 180, 0.2);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(58, 46, 46, 0.08);
  position: relative;
}
.invite-topbar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light)); }
.invite-intro { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.invite-together { font-family: var(--font-elegant); font-size: 1rem; color: var(--charcoal-soft); font-style: italic; margin-bottom: 0.3rem; }
.invite-name { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 400; color: var(--charcoal); line-height: 1.1; margin-bottom: 0.3rem; }
.invite-ampersand { font-family: var(--font-elegant); font-style: italic; color: var(--gold); font-size: 1.1rem; margin-bottom: 0.3rem; }
.invite-divider { width: 40px; height: 1px; background: var(--gold); margin: 1.2rem auto; }
.invite-detail { font-size: 0.78rem; letter-spacing: 0.15em; color: var(--charcoal-soft); text-transform: uppercase; margin-bottom: 0.3rem; }
.invite-venue { font-family: var(--font-elegant); font-style: italic; font-size: 0.95rem; color: var(--gold); margin-bottom: 2rem; }
.invite-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.2rem; }
.btn-invite-yes { background: var(--charcoal); color: var(--ivory); border: none; padding: 0.7rem 1.8rem; font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; transition: background var(--transition); }
.btn-invite-yes:hover { background: var(--gold); }
.btn-invite-no { background: transparent; color: var(--charcoal); border: 1px solid rgba(58, 46, 46, 0.3); padding: 0.7rem 1.8rem; font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; transition: all var(--transition); }
.btn-invite-no:hover { background: var(--charcoal); color: var(--ivory); }
.invite-rsvp-by { font-size: 0.65rem; color: rgba(106, 85, 85, 0.4); letter-spacing: 0.08em; }

#pricing { background: var(--ivory-mid); padding: var(--section-pad); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 0; }
.pricing-card { background: var(--white); border: 1px solid rgba(212, 180, 180, 0.15); padding: 3rem 2.5rem; position: relative; transition: all var(--transition); }
.pricing-card:hover { box-shadow: 0 20px 60px rgba(58, 46, 46, 0.1); transform: translateY(-4px); }
.pricing-card.featured { background: var(--charcoal); color: var(--ivory); border-color: var(--gold); }
.badge { position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 1.2rem; white-space: nowrap; }
.price-name { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; margin-bottom: 0.4rem; }
.price-desc { font-size: 0.82rem; color: var(--charcoal-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.pricing-card.featured .price-desc { color: rgba(248, 244, 238, 0.6); }
.price-tag { font-family: var(--font-elegant); font-size: 4rem; font-weight: 300; line-height: 1; color: var(--gold); }
.price-period { font-size: 0.8rem; color: var(--charcoal-soft); margin-top: 0.3rem; letter-spacing: 0.05em; margin-bottom: 1rem; }
.pricing-card.featured .price-period { color: rgba(248, 244, 238, 0.5); }
.pricing-divider { height: 1px; background: rgba(212, 180, 180, 0.2); margin: 1.5rem 0; }
.pricing-features { display: flex; flex-direction: column; gap: 0.1rem; }
.pricing-feature { font-size: 0.83rem; color: var(--charcoal-soft); line-height: 1.7; padding: 0.35rem 0; display: flex; align-items: flex-start; gap: 0.7rem; }
.pricing-feature svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--gold); }
.pricing-card.featured .pricing-feature { color: rgba(248, 244, 238, 0.65); }
.pricing-card.featured .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--white); }
.pricing-card.featured .btn-primary:hover { background: var(--ivory); border-color: var(--ivory); color: var(--charcoal); }

.addon-box { background: var(--white); border: 1px solid rgba(212, 180, 180, 0.25); padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; max-width: 900px; margin: 3rem auto 0; }
.addon-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 0.4rem; }
.addon-desc { font-size: 0.84rem; color: var(--charcoal-soft); line-height: 1.7; max-width: 520px; }
.addon-price { font-family: var(--font-elegant); font-size: 2.5rem; color: var(--gold); font-weight: 300; white-space: nowrap; text-align: right; line-height: 1.2; }
.addon-price small { display: block; font-family: var(--font-sans); font-size: 0.72rem; color: var(--charcoal-soft); letter-spacing: 0.08em; }
.addon-extra { display: block; font-family: var(--font-sans); font-size: 0.72rem; color: var(--charcoal-soft); text-align: right; margin-top: 0.3rem; }

#dashboard { padding: var(--section-pad); background: var(--ivory); }
.dashboard-mock { background: var(--white); border: 1px solid rgba(212, 180, 180, 0.2); overflow: hidden; box-shadow: 0 30px 80px rgba(58, 46, 46, 0.12); max-width: 860px; margin: 0 auto; }
.dash-bar { background: var(--charcoal); padding: 0.9rem 1.5rem; display: flex; align-items: center; gap: 0.5rem; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot.red   { background: #E86060; }
.dash-dot.amber { background: #E8B860; }
.dash-dot.green { background: #60C060; }
.dash-url { margin-left: auto; font-size: 0.7rem; color: rgba(248, 244, 238, 0.4); font-family: var(--font-sans); }
.dash-content { padding: 2rem; }
.dash-greeting { font-family: var(--font-elegant); font-size: 1.6rem; font-style: italic; color: var(--charcoal); margin-bottom: 1.5rem; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.dash-stat { border: 1px solid rgba(212, 180, 180, 0.2); padding: 1.2rem 1.5rem; text-align: center; }
.dash-stat-num { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 400; line-height: 1; }
.dash-stat-num.neutral { color: var(--charcoal); }
.dash-stat-num.yes     { color: #4A8C4A; }
.dash-stat-num.no      { color: #8C4A4A; }
.dash-stat-num.maybe   { color: var(--gold); }
.dash-stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal-soft); margin-top: 0.3rem; }
.dash-lower { display: grid; grid-template-columns: auto 1fr; gap: 1.5rem; }
.donut-wrap { display: flex; align-items: center; gap: 2rem; padding: 1.5rem; border: 1px solid rgba(212, 180, 180, 0.15); }
.donut-chart { position: relative; width: 120px; height: 120px; flex-shrink: 0; }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.donut-pct { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--charcoal); }
.donut-sub { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal-soft); }
.donut-legend { display: flex; flex-direction: column; gap: 0.6rem; }
.legend-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: var(--charcoal-soft); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.guest-list-heading { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 0.8rem; }
.guest-row { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid rgba(212, 180, 180, 0.1); font-size: 0.82rem; }
.guest-row.last { border-bottom: none; }
.guest-name { color: var(--charcoal); font-weight: 400; }
.guest-status { font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.8rem; flex-shrink: 0; }
.status-yes   { background: var(--status-yes-bg);   color: var(--status-yes-text); }
.status-no    { background: var(--status-no-bg);    color: var(--status-no-text); }
.status-maybe { background: var(--status-maybe-bg); color: var(--status-maybe-text); }

#quote { background: var(--charcoal); padding: 6rem 2rem; text-align: center; }
.quote-wrap { max-width: 760px; margin-inline: auto; }
.quote-mark { display: block; font-family: var(--font-elegant); font-size: 6rem; color: var(--gold); opacity: 0.3; line-height: 0.5; margin-bottom: 1.5rem; }
.quote-text { font-family: var(--font-elegant); font-size: clamp(1.4rem, 3vw, 2rem); font-style: italic; font-weight: 300; color: var(--ivory); margin: 0 auto 2rem; line-height: 1.6; }
.quote-attr { display: block; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }

#contact { padding: var(--section-pad); background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-intro { font-size: 0.88rem; color: var(--charcoal-soft); line-height: 1.9; margin: 1.2rem 0 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-details li { display: flex; align-items: center; gap: 1rem; font-size: 0.82rem; color: var(--charcoal-soft); }
.contact-details svg { color: var(--gold); flex-shrink: 0; }
.contact-details a { color: var(--charcoal-soft); }
.contact-details a:hover { color: var(--gold); }

.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; height: 0; overflow: hidden; }
.form-row { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row.two-col { flex-direction: row; }
.form-field { margin-bottom: 1.5rem; flex: 1; }
.form-label { display: block; font-family: var(--font-sans); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 0.5rem; }
.form-input { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(58, 46, 46, 0.25); padding: 0.7rem 0; font-family: var(--font-sans); font-size: 0.9rem; color: var(--charcoal); outline: none; transition: border-color var(--transition); appearance: none; -webkit-appearance: none; }
.form-input:focus { border-color: var(--gold); }
.form-input[aria-invalid="true"] { border-color: #C0392B; }
.form-input::placeholder { color: rgba(106, 85, 85, 0.35); }
.form-textarea { border: 1px solid rgba(58, 46, 46, 0.15); padding: 0.7rem; resize: vertical; }
select.form-input { cursor: pointer; }
.form-error { display: block; font-size: 0.72rem; color: #C0392B; margin-top: 0.3rem; min-height: 1rem; }
.form-consent { margin-top: 0.5rem; margin-bottom: 0; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.8rem; color: var(--charcoal-soft); cursor: pointer; line-height: 1.6; }
.checkbox-label input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--gold); }
.btn-submit { margin-top: 1.5rem; border: none; font-size: 0.72rem; padding: 1rem; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }
.form-success { display: flex; align-items: center; gap: 0.8rem; background: var(--status-yes-bg); color: var(--status-yes-text); padding: 1.2rem 1.5rem; font-size: 0.88rem; margin-top: 1rem; }
.form-success[hidden] { display: none; }

footer { background: var(--charcoal); color: rgba(248, 244, 238, 0.5); padding: 3rem 2rem; text-align: center; }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--ivory); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-family: var(--font-elegant); font-style: italic; font-size: 0.95rem; color: rgba(248, 244, 238, 0.4); margin-bottom: 1.2rem; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.3rem 0; margin-bottom: 1.5rem; }
.footer-links a { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248, 244, 238, 0.4); padding: 0.2rem 1rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.72rem; color: rgba(248, 244, 238, 0.25); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .features-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid   { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .dash-lower     { grid-template-columns: 1fr; }
  .dash-stats     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-pad: 5rem 1.5rem; }
  #navbar { padding: 1rem 1.5rem; }
  .nav-toggle { display: block; }
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(253, 246, 247, 0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2rem; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { margin-left: 0; font-size: 1rem; letter-spacing: 0.2em; }
  .hero-inner { padding: 7rem 1.5rem 3rem; }
  .hero-ornament { display: none; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-outline { margin-left: 0; }
  .form-row.two-col { flex-direction: column; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .donut-wrap { flex-direction: column; }
  .addon-box { flex-direction: column; }
  .addon-price { text-align: left; }
  .invite-buttons { flex-direction: column; align-items: center; }
}
/* ── Status token overrides for new palette ─────────────── */
:root {
  --status-yes-bg:    rgba(180, 212, 190, 0.18);
  --status-yes-text:  #3A6645;
  --status-no-bg:     rgba(212, 180, 180, 0.18);
  --status-no-text:   #7A3A3A;
  --status-maybe-bg:  rgba(212, 200, 180, 0.18);
  --status-maybe-text:#6A5530;
}