:root {
  --plum: #5c1a3a;
  --plum-2: #7a2450;
  --gold: #e3b23c;
  --cream: #f7efe6;
  --ink: #1f1220;
  --white: #fff;
  --muted: #6d4d5c;
  --max: 1120px;
  --header-h: 70px;
  --radius: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }
.site-header { background: var(--plum); color: white; position: sticky; top: 0; z-index: 50; }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.brand { text-decoration: none; flex: 1; }
.brand-kicker { display: block; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 800; }
.brand-name { font-size: 1.1rem; font-weight: 800; }
.btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border: 0; font-family: inherit; font-weight: 800; border-radius: 999px; padding: 12px 18px; line-height: 1; cursor: pointer; }
.btn-call { background: var(--gold); color: var(--ink); min-height: 44px; }
.btn-dark { background: var(--plum); color: white; }
.btn-ghost { background: transparent; color: white; border: 2px solid rgba(255,255,255,.65); }
.btn-lg { min-height: 52px; width: 100%; }
.menu-toggle { width: 44px; height: 44px; border: 0; border-radius: 12px; background: var(--plum-2); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-toggle span { width: 18px; height: 2px; background: white; display: block; }
.nav-desk { display: none; }
.nav-panel { display: none; background: var(--plum-2); }
.nav-panel.open { display: block; }
.nav-panel a { display: block; color: white; text-decoration: none; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 700; }
.hero { position: relative; color: white; min-height: min(88vh, 720px); display: flex; align-items: flex-end; overflow: hidden; background: var(--plum); }
.hero-bg, .hero-bg picture, .hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg img { object-fit: cover; object-position: center 22%; }
.hero-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(92,26,58,.2) 0%, rgba(92,26,58,.5) 48%, rgba(92,26,58,.9) 100%); }
.hero-copy { position: relative; z-index: 1; padding: 24px 0 32px; }
.hero h1 { font-size: clamp(1.75rem, 7vw, 2.7rem); line-height: 1.08; margin: 0 0 10px; }
.hero .lede { margin: 0 0 16px; color: #f6e4c8; }
.hero-ctas { display: grid; gap: 10px; }
.band { background: var(--plum-2); color: white; text-align: center; padding: 16px; font-weight: 800; }
.section { padding: 32px 0; }
.section h2 { margin: 0 0 8px; font-size: 1.5rem; }
.muted { color: var(--muted); }
.card-grid { display: grid; gap: 14px; }
.card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 24px rgba(92,26,58,.1); }
.card-media { aspect-ratio: 16/9; background: #c9a36a; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 16px; }
.card h3 { margin: 0 0 8px; }
.how { display: grid; gap: 10px; padding: 0; margin: 16px 0 0; counter-reset: s; }
.how li { list-style: none; background: white; border-radius: 14px; padding: 14px 14px 14px 58px; position: relative; }
.how li::before { counter-increment: s; content: counter(s); position: absolute; left: 12px; top: 12px; width: 32px; height: 32px; border-radius: 50%; background: var(--plum); color: var(--gold); display: grid; place-items: center; font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip { background: #f3d6e4; color: var(--plum); border-radius: 999px; padding: 8px 12px; font-weight: 700; font-size: 14px; }
.cta-box { background: var(--plum); color: white; border-radius: 20px; padding: 28px 20px; text-align: center; }
.faq details { background: white; border-radius: 12px; padding: 12px 14px; margin-bottom: 8px; }
.faq summary { font-weight: 800; cursor: pointer; }
.site-footer { background: var(--plum); color: #f3d6e4; padding: 28px 0 96px; font-size: 14px; }
.site-footer a { color: var(--gold); }
.foot-grid { display: grid; gap: 18px; }
.sticky-call { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(92,26,58,.95); }
@media (min-width: 880px) {
  .menu-toggle { display: none; }
  .nav-panel { display: none !important; }
  .nav-desk { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-desk a { color: #f3d6e4; text-decoration: none; font-size: 13px; font-weight: 700; }
  .header-inner { display: grid; grid-template-columns: 220px 1fr auto; gap: 16px; }
  .hero { min-height: min(72vh, 640px); align-items: center; }
  .hero-shade { background: linear-gradient(90deg, rgba(92,26,58,.86) 0%, rgba(92,26,58,.42) 50%, rgba(92,26,58,.12) 100%); }
  .hero-bg img { object-position: 72% center; }
  .hero-copy { max-width: 560px; padding: 64px 0; }
  .hero-ctas { grid-template-columns: auto auto; width: max-content; }
  .btn-lg { width: auto; }
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .sticky-call { display: none; }
  .site-footer { padding-bottom: 36px; }
}
