/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F7F3ED;
  --fg: #1A1A1A;
  --accent: #C8603A;
  --accent-warm: #E8926A;
  --muted: #7A7068;
  --surface: #EFEBE4;
  --white: #FFFFFF;
  --border: #D9D3C8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 5rem 2.5rem 4rem;
  min-height: 88vh;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--white);
  font-weight: 500;
}

/* ===== HERO VISUAL — Event Cards ===== */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.event-card-dim {
  opacity: 0.65;
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.event-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.event-badge {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  background: #E6F5E8;
  color: #2D8A47;
  border-radius: 100px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.event-metrics {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-bar {
  height: 4px;
  background: var(--surface);
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

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

.event-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ===== WHAT WE DO ===== */
.whatwedo {
  background: var(--white);
  padding: 5rem 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.wwd-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wwd-icon {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.wwd-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
}

.wwd-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.howitworks {
  padding: 5rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.hiw-step {
  flex: 1;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.hiw-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hiw-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

.hiw-connector {
  width: 2rem;
  flex-shrink: 0;
  height: 2px;
  background: var(--border);
  align-self: center;
  margin: 0 0.25rem;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--fg);
  color: var(--white);
  padding: 5rem 2.5rem;
}

.pricing .section-label {
  color: var(--accent-warm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #2A2A2A;
  border: 1px solid #3A3A3A;
  border-radius: 12px;
  padding: 2rem;
}

.pricing-card-featured {
  background: var(--accent);
  border-color: var(--accent);
  position: relative;
}

.pricing-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.pricing-period {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pricing-features li {
  font-size: 0.82rem;
  opacity: 0.9;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.5;
}

.pricing-card-featured .pricing-features li::before {
  content: '✓';
  opacity: 1;
}

/* ===== CLOSING ===== */
.closing {
  padding: 5rem 2.5rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2.5rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links span {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-tagline { display: none; }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem 2.5rem;
    min-height: auto;
    gap: 2.5rem;
  }

  .hero-headline { font-size: 2.4rem; }
  .hero-sub { font-size: 1rem; }

  .whatwedo { padding: 3rem 1.25rem; }
  .wwd-grid { grid-template-columns: 1fr; gap: 2rem; }

  .howitworks { padding: 3rem 1.25rem; }
  .hiw-grid { flex-direction: column; }
  .hiw-connector { width: 2px; height: 1.5rem; margin: 0.25rem auto; }

  .pricing { padding: 3rem 1.25rem; }
  .pricing-grid { grid-template-columns: 1fr; }

  .closing { padding: 3rem 1.25rem 4rem; }

  .footer { padding: 2rem 1.25rem 1.5rem; }
  .footer-links { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 2.5rem 1rem 2rem; }
  .hero-headline { font-size: 2rem; }
  .event-metrics { gap: 1rem; }
  .metric-val { font-size: 1.2rem; }
  .pricing-amount { font-size: 1.8rem; }
}