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

:root {
  --maroon:    #7D1F35;
  --maroon-lt: #A0304A;
  --gold:      #C9A84C;
  --cream:     #FAF6F0;
  --cream-dk:  #F0E8DC;
  --ink:       #1A0E12;
  --muted:     #6B4E5C;
  --green:     #2E7D52;
  --amber:     #C97B1A;
  --red:       #B53A3A;
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

/* ── Navbar ── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dk);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brand-mark { color: var(--maroon); font-size: 20px; }
.brand-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 38% 62%;
  min-height: 88vh;
  background: var(--cream);
}

.hero-left {
  background: var(--maroon);
  display: flex;
  align-items: flex-end;
  padding: 48px 40px 56px;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: var(--gold);
}

.hero-accent-block {
  border-top: 1px solid rgba(201,168,76,0.35);
  padding-top: 28px;
}

.accent-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
  margin-bottom: 16px;
}

.accent-stat { display: flex; flex-direction: column; gap: 6px; }

.stat-num {
  font-family: var(--ff-head);
  font-size: 64px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  max-width: 200px;
  line-height: 1.5;
}

.hero-right {
  padding: 72px 72px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.hero-headline {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 2px;
  background: var(--maroon);
  color: white;
  letter-spacing: 0.04em;
}

/* ── Shared section stuff ── */
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.section-eyebrow.light { color: var(--gold); }

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

/* ── Rituals ── */
.rituals-section {
  background: var(--cream-dk);
  padding: 96px 64px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 52px;
}

.ritual-item { padding: 0; }

.ritual-icon {
  font-size: 22px;
  color: var(--maroon);
  margin-bottom: 12px;
}

.ritual-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.ritual-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Vendors ── */
.vendors-section {
  background: var(--ink);
  padding: 96px 64px;
  color: white;
}

.vendors-inner {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 72px;
  align-items: center;
}

.vendors-title {
  font-family: var(--ff-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.vendors-body {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vendor-features { display: flex; flex-direction: column; gap: 14px; }

.vf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.vf-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* vendor card stack */
.vendor-card-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.vendor-card {
  background: #241820;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vc-label { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.vc-name { font-family: var(--ff-head); font-size: 16px; font-weight: 600; color: white; }

.vc-status { font-size: 12px; font-weight: 500; margin-top: 2px; }
.vc-status.green { color: #4CAF88; }
.vc-status.amber { color: var(--amber); }
.vc-status.red   { color: #E57373; }

.vc-meta { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ── Guests ── */
.guests-section {
  background: var(--cream);
  padding: 96px 64px;
}

.guests-header { margin-bottom: 52px; }

.guest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--cream-dk);
  margin-bottom: 48px;
  border: 1px solid var(--cream-dk);
}

.guest-card {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gc-num {
  font-family: var(--ff-head);
  font-size: 44px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
  letter-spacing: -0.03em;
}

.gc-label { font-size: 13px; color: var(--muted); }

.guest-features { display: flex; flex-direction: column; gap: 18px; }

.gf-row { display: flex; align-items: flex-start; gap: 14px; }

.gf-check {
  width: 22px; height: 22px;
  background: var(--maroon);
  color: white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

.gf-text { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ── Budget ── */
.budget-section {
  background: var(--cream-dk);
  padding: 96px 64px;
}

.budget-header { margin-bottom: 52px; }

.budget-split {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 72px;
  align-items: start;
}

.bs-total { margin-bottom: 32px; }

.bs-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }

.bs-amount {
  font-family: var(--ff-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bs-allocated {}

.bs-bar-label { font-size: 12px; color: var(--muted); margin-bottom: 8px; }

.bs-bar-track {
  height: 8px;
  background: rgba(125,31,53,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.bs-bar-fill {
  height: 100%;
  background: var(--maroon);
  border-radius: 2px;
}

.bs-bar-numbers { font-size: 13px; color: var(--muted); display: flex; gap: 4px; }
.bs-bar-numbers span:first-child { font-weight: 600; color: var(--ink); }

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

.bb-item { display: grid; grid-template-columns: 140px 1fr 80px; align-items: center; gap: 16px; }

.bb-name { font-size: 14px; color: var(--muted); }

.bb-bar-wrap { height: 6px; background: rgba(125,31,53,0.1); border-radius: 2px; overflow: hidden; }

.bb-bar { height: 100%; background: var(--maroon); border-radius: 2px; }

.bb-amount { font-family: var(--ff-head); font-size: 15px; font-weight: 600; color: var(--ink); text-align: right; }

.budget-note {
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--cream-dk);
  padding-top: 24px;
}

/* ── Closing ── */
.closing-section {
  background: var(--maroon);
  padding: 120px 64px;
  text-align: center;
}

.closing-deco {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  padding: 36px 64px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-brand .brand-mark { color: var(--gold); }
.footer-brand .brand-name { color: white; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { min-height: 260px; }
  .hero-right { padding: 48px 32px; }
  .rituals-section, .vendors-section, .guests-section, .budget-section, .closing-section { padding: 64px 32px; }
  .ritual-grid { grid-template-columns: 1fr; }
  .vendors-inner { grid-template-columns: 1fr; }
  .guest-grid { grid-template-columns: 1fr 1fr; }
  .budget-split { grid-template-columns: 1fr; }
  .bb-item { grid-template-columns: 100px 1fr 70px; }
  .navbar { padding: 18px 24px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 600px) {
  .guest-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 48px; }
  .bs-amount { font-size: 40px; }
}
