/* ─── Reset & Base ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --linen: #FAF7F1;
  --paper: #FFFFFF;
  --charcoal: #24211E;
  --taupe: #7A7066;
  --champagne: #C7A96B;
  --champagne-dark: #D8BF86;
  --border: #E8E0D5;
  --night: #141312;
  --night-paper: #1D1B19;
  --night-border: #39342E;

  --font-body: 'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  --radius: 10px;
  --radius-sm: 6px;

  --nav-h: 64px;
  --section-gap: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--charcoal);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s, border-color 0.18s, opacity 0.18s, transform 0.12s;
}

.btn:active {
  transform: scale(0.97);
}

.btn--filled {
  background: var(--charcoal);
  color: var(--paper);
  border-color: var(--charcoal);
}

.btn--filled:hover {
  background: #3a3530;
  border-color: #3a3530;
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border);
}

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

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: transparent;
}

.btn--ghost:hover {
  background: rgba(36, 33, 30, .07);
}

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--lg {
  font-size: 16px;
  padding: 16px 32px;
}

.btn--full {
  width: 100%;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 241, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(36, 33, 30, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
}

/* ─── Section shared ─── */
.section {
  padding-block: var(--section-gap);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--taupe);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ─── Hero ─── */
.hero {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(199, 169, 107, 0.13) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--taupe);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 32px;
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--champagne);
  border-radius: 50%;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: var(--champagne);
}

.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--taupe);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__note {
  font-size: 13px;
  color: var(--taupe);
}

/* ─── Store buttons ─── */
.hero__stores {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  color: var(--paper);
  border: 1.5px solid var(--charcoal);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s, transform 0.12s;
  position: relative;
}

.store-btn:not(.store-btn--soon):hover {
  background: #3a3530;
  border-color: #3a3530;
}

.store-btn:not(.store-btn--soon):active {
  transform: scale(0.97);
}

.store-btn--soon {
  opacity: 0.42;
  cursor: default;
  border-style: dashed;
}

.store-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-btn__sub {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.72;
  letter-spacing: 0.02em;
}

.store-btn__name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.store-btn__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 2px 6px;
  margin-left: 4px;
}

/* dark mode store buttons */
@media (prefers-color-scheme: dark) {
  .store-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border);
    color: var(--charcoal);
  }

  .store-btn:not(.store-btn--soon):hover {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.3);
  }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--border);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── Features ─── */
.features {
  background: var(--paper);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--paper);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #FDFCFA;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--linen);
  border-radius: 10px;
  color: var(--champagne);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.feature-card__body {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.65;
}

/* ─── How it works ─── */
.how {
  background: var(--linen);
}

.steps {
  list-style: none;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  position: relative;
  padding-bottom: 44px;
}

.step:last-child {
  padding-bottom: 0;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.step__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.step__content {
  padding-top: 8px;
}

.step__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step__body {
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.65;
}

/* ─── Audience ─── */
.audience {
  background: var(--paper);
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience__card {
  border-radius: var(--radius);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.audience__card--couple {
  background: var(--charcoal);
  color: var(--paper);
}

.audience__card--couple .section-label {
  color: var(--champagne-dark);
}

.audience__card--couple .audience__body {
  color: rgba(255, 255, 255, 0.65);
}

.audience__card--guest {
  background: var(--linen);
  border: 1px solid var(--border);
}

.audience__card--guest .section-label {
  color: var(--champagne);
}

.audience__card--guest .audience__body {
  color: var(--taupe);
}

.audience__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.audience__card--couple .audience__title {
  color: var(--paper);
}

.audience__body {
  font-size: 15px;
  line-height: 1.65;
}

/* ─── Contact Modal ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 19, 18, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.modal-backdrop:not([hidden]) { opacity: 1; }
.modal-backdrop[hidden] { display: none; }

.modal {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px 40px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(16px);
  transition: transform 0.22s ease;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}
.modal-backdrop:not([hidden]) .modal { transform: translateY(0); }

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-top: 6px;
}

.modal__close {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--taupe);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-top: 2px;
}
.modal__close:hover { background: var(--linen); color: var(--charcoal); }

.modal__sub {
  font-size: 14px;
  color: var(--taupe);
  line-height: 1.65;
  margin-bottom: 28px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--linen);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--taupe); opacity: 0.7; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(199,169,107,0.15);
}
.form-field input.error,
.form-field textarea.error {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-status {
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}
.form-status.success { color: #2d7a4f; }
.form-status.error   { color: #c0392b; }

/* Submit button loading state */
#contactSubmit .btn-spinner { display: none; }
#contactSubmit.loading .btn-label { display: none; }
#contactSubmit.loading .btn-spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#contactSubmit:disabled { opacity: 0.65; cursor: default; }

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
  .modal { padding: 28px 24px 32px; }
}

/* dark mode modal */
@media (prefers-color-scheme: dark) {
  .modal {
    background: var(--paper);
    border-color: var(--border);
  }
  .form-field input,
  .form-field textarea {
    background: var(--linen);
    border-color: var(--border);
    color: var(--charcoal);
  }
  .form-field label { color: var(--charcoal); }
  .form-status.success { color: #52c98a; }
  .modal__close { border-color: var(--border); }
  .modal__close:hover { background: var(--linen); }
}

/* ─── CTA Band ─── */
.cta-band {
  background: linear-gradient(135deg, #2A261F 0%, var(--night) 100%);
  color: var(--paper);
}

.cta-band__inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #F2EEE8;
}

.cta-band__sub {
  font-size: 16px;
  color: rgba(242, 238, 232, 0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band .btn--filled {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--night);
}

.cta-band .btn--filled:hover {
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer .nav__logo {
  color: #FAF7F1;
}

.footer .nav__logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #FAF7F1;
}

.footer__tagline {
  font-size: 13px;
  margin-top: 6px;
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links a,
.footer__contact-btn {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 0;
}

.footer__links a:hover,
.footer__contact-btn:hover {
  color: #FAF7F1;
}

.footer__bottom {
  border-top: 1px solid var(--night-border);
  padding-block: 20px;
  font-size: 13px;
}

/* ─── Keyframes ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepPop {
  0%   { transform: scale(0.5); opacity: 0; }
  65%  { transform: scale(1.15); }
  100% { transform: scale(1);   opacity: 1; }
}
@keyframes shimmer {
  0%   { background-position: -250% center; }
  100% { background-position: 250% center; }
}

/* ─── Hero entrance (staggered on load) ─── */
.hero__badge,
.hero__headline,
.hero__sub,
.hero__cta,
.hero__note,
.hero__stores {
  opacity: 0;
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-play-state: paused;
}
body.loaded .hero__badge    { animation-play-state: running; animation-delay: 0.05s; }
body.loaded .hero__headline { animation-play-state: running; animation-delay: 0.18s; }
body.loaded .hero__sub      { animation-play-state: running; animation-delay: 0.30s; }
body.loaded .hero__cta      { animation-play-state: running; animation-delay: 0.40s; }
body.loaded .hero__note     { animation-play-state: running; animation-delay: 0.48s; }
body.loaded .hero__stores   { animation-play-state: running; animation-delay: 0.55s; }

/* ─── Scroll fade-up ─── */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger feature cards */
.features__grid .feature-card:nth-child(2) { transition-delay: 0.07s; }
.features__grid .feature-card:nth-child(3) { transition-delay: 0.14s; }
.features__grid .feature-card:nth-child(4) { transition-delay: 0.07s; }
.features__grid .feature-card:nth-child(5) { transition-delay: 0.14s; }
.features__grid .feature-card:nth-child(6) { transition-delay: 0.21s; }

/* Step number pop */
.step.visible .step__number {
  animation: stepPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.steps .step:nth-child(2).visible .step__number { animation-delay: 0.08s; }
.steps .step:nth-child(3).visible .step__number { animation-delay: 0.16s; }
.steps .step:nth-child(4).visible .step__number { animation-delay: 0.24s; }

/* ─── Feature card hover lift ─── */
.feature-card {
  transition: background 0.2s, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(36, 33, 30, 0.09);
  z-index: 1;
  position: relative;
}

/* Feature icon scale on card hover */
.feature-card__icon {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s;
}
.feature-card:hover .feature-card__icon {
  transform: scale(1.12);
  background: rgba(199, 169, 107, 0.15);
}

/* ─── Audience card lift on hover ─── */
.audience__card {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease;
}
.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(36, 33, 30, 0.1);
}

/* ─── Store button lift ─── */
.store-btn:not(.store-btn--soon) {
  transition: background 0.18s, border-color 0.18s, transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}
.store-btn:not(.store-btn--soon):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(36, 33, 30, 0.18);
}

/* ─── Shimmer sweep on filled buttons ─── */
.btn--filled {
  position: relative;
  overflow: hidden;
}
.btn--filled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.13) 50%, transparent 60%);
  background-size: 250% auto;
  background-position: -250% center;
}
.btn--filled:hover::after {
  animation: shimmer 0.55s ease forwards;
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  :root {
    --section-gap: 72px;
  }

  .nav__actions {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav__mobile.open {
    display: flex;
  }

  .features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .audience__grid {
    grid-template-columns: 1fr;
  }

  .audience__card {
    padding: 36px 28px;
  }
}

@media (max-width: 580px) {
  :root {
    --section-gap: 56px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .cta-band__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-band__actions .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── Dark mode ─── */
@media (prefers-color-scheme: dark) {
  :root {
    --linen: #141312;
    --paper: #1D1B19;
    --charcoal: #F2EEE8;
    --taupe: #B8AEA3;
    --border: #39342E;
    --champagne: #D8BF86;
  }

  body {
    background: var(--linen);
    color: var(--charcoal);
  }

  .nav {
    background: rgba(20, 19, 18, 0.92);
  }


  .features {
    background: var(--paper);
  }

  .feature-card {
    background: var(--paper);
  }

  .feature-card:hover {
    background: #242119;
  }

  .feature-card__icon {
    background: var(--linen);
  }

  .how {
    background: var(--linen);
  }

  .hero__badge {
    background: var(--paper);
    border-color: var(--border);
    color: var(--taupe);
  }

  .audience {
    background: var(--paper);
  }

  .audience__card--couple {
    background: #2A2723;
    color: var(--charcoal);
  }

  .audience__card--couple .audience__title {
    color: var(--charcoal);
  }

  .audience__card--couple .audience__body {
    color: var(--taupe);
  }

  .audience__card--guest {
    background: var(--linen);
  }

  .footer {
    background: #0E0D0C;
  }

  .btn--filled {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--night);
  }

  .btn--filled:hover {
    background: #e8d09b;
    border-color: #e8d09b;
  }

  .btn--outline {
    color: var(--charcoal);
    border-color: var(--border);
  }

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

  .btn--ghost {
    color: var(--charcoal);
  }

  .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .btn--ghost-light {
    color: #F2EEE8;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
  }

  .step__number {
    background: var(--champagne);
    color: var(--night);
  }

  .cta-band {
    background: linear-gradient(135deg, #2A261F 0%, #0E0D0C 100%);
  }

  .cta-band .btn--filled {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--night);
  }
}