/* ═══════════════════════════════════════════════════
   JOHANE MASOWE THE 5TH — GLOBAL STYLESHEET
   Palette: deep burgundy, sacred gold, ivory, forest green
   Type: Cinzel (display/sacred) + EB Garamond (body) + Inter (UI)
═══════════════════════════════════════════════════ */

:root {
  /* Brand colours */
  --burgundy:   #5B1A2E;   /* deep sacred wine */
  --burgundy-dk:#3D0F1E;
  --gold:       #C9A84C;   /* sacred gold */
  --gold-light: #E4C97A;
  --ivory:      #FAF6EE;
  --parchment:  #F3EDE0;
  --bark:       #2E1A0E;
  --ash:        #6A6058;
  --cream:      #FAF4E8;
  --green:      #2D5A3D;   /* forest/growth green */
  --green-lt:   #4A7C5C;
  --sienna:     #A0522D;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body:    'EB Garamond', Georgia, serif;
  --font-ui:      'Inter', sans-serif;

  /* Radii & shadows */
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.13);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--bark);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
  padding: 0;
}
.site-nav.scrolled {
  background: var(--burgundy-dk);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.brand-emblem {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--burgundy-dk); letter-spacing: -1px;
}
.brand-emblem span { font-size: 0.85rem; }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: #fff; letter-spacing: 0.03em; }
.brand-sub  { font-family: var(--font-body); font-size: 0.72rem; color: var(--gold-light); font-style: italic; }

.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.82); letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600;
  background: var(--gold); color: var(--burgundy-dk);
  padding: 9px 20px; border-radius: 4px;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, var(--burgundy-dk) 0%, var(--burgundy) 40%, #7a2040 70%, var(--bark) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 100px 24px 60px;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700; color: #fff; line-height: 1.05; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--gold); font-style: italic; font-weight: 400; }
.hero-verse {
  font-family: var(--font-body); font-size: 1.25rem;
  color: rgba(255,255,255,0.75); font-style: italic; margin-bottom: 10px;
}
.hero-sub {
  font-family: var(--font-body); font-size: 1.05rem;
  color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 36px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.45); font-family: var(--font-ui); font-size: 0.7rem; letter-spacing: 0.12em;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,0.3); animation: scrollPulse 1.8s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.2)} }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 28px; border-radius: 4px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.22s ease;
}
.btn-gold { background: var(--gold); color: var(--burgundy-dk); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-ghost:hover { border-color: #fff; }
.btn-earth { background: var(--green); color: #fff; border-color: var(--green); }
.btn-earth:hover { background: var(--green-lt); border-color: var(--green-lt); }
.btn-full { width: 100%; }
.btn-large { padding: 16px 36px; font-size: 0.9rem; }

/* ══════════════════════════════════
   STATS BAR
══════════════════════════════════ */
.stats-bar {
  background: var(--burgundy-dk); padding: 28px 24px;
  display: flex; justify-content: center; gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 160px; text-align: center;
  padding: 16px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700;
  color: var(--gold); line-height: 1;
}
.stat-label {
  display: block; font-family: var(--font-ui); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-top: 6px;
}

/* ══════════════════════════════════
   SECTION HEADERS & TYPOGRAPHY
══════════════════════════════════ */
.eyebrow {
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--bark); line-height: 1.2; margin-bottom: 18px;
}
.section-title em { color: var(--burgundy); font-style: italic; font-weight: 400; }
.section-subtitle {
  font-family: var(--font-body); font-size: 1.05rem;
  color: var(--ash); max-width: 620px; line-height: 1.75; margin-bottom: 40px;
}
.section-header { margin-bottom: 52px; }
.section-header.light .section-title { color: #fff; }
.section-header.light .section-title em { color: var(--gold); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════
   ABOUT SECTION
══════════════════════════════════ */
.about-section { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-visual { position: relative; }
.about-img-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-frame img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--gold); color: var(--burgundy-dk);
  font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
}
.about-text p { color: var(--ash); line-height: 1.8; margin-bottom: 1rem; }
.about-text .btn { margin-top: 0.5rem; }

/* ══════════════════════════════════
   PILLARS
══════════════════════════════════ */
.pillars-section { padding: 100px 0; background: var(--parchment); }
.philosophy-pillars {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 52px;
}
.pillar-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow-sm); border-top: 4px solid var(--gold);
}
.pillar-icon { font-size: 2.2rem; margin-bottom: 14px; }
.pillar-tag {
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ash); margin-bottom: 8px;
}
.pillar-card h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  color: var(--burgundy); margin-bottom: 12px;
}
.pillar-card p { color: var(--ash); font-size: 0.95rem; line-height: 1.75; margin-bottom: 10px; }
.pillar-card em { color: var(--burgundy); font-style: italic; }
.pillar-list { list-style: none; padding: 0; margin: 10px 0 0; }
.pillar-list li {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ash);
  padding: 5px 0 5px 18px; border-bottom: 1px solid var(--parchment);
  position: relative;
}
.pillar-list li::before { content: "›"; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* ══════════════════════════════════
   HOW / STEPS
══════════════════════════════════ */
.how-section { padding: 100px 0; }
.steps-track { display: flex; align-items: stretch; gap: 0; margin-top: 52px; }
.step-card {
  flex: 1; background: #fff; border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow-sm); border-bottom: 4px solid var(--gold);
  display: flex; flex-direction: column; gap: 12px;
}
.step-connector { width: 28px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.step-connector::before { content: "→"; color: var(--gold); font-size: 1.4rem; }
.step-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--parchment); line-height: 1; }
.step-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--burgundy); }
.step-card p { font-size: 0.92rem; color: var(--ash); line-height: 1.7; }

/* ══════════════════════════════════
   FOOTPRINT / KIT GRID
══════════════════════════════════ */
.footprint-section { padding: 100px 0; background: var(--burgundy-dk); }
.kit-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}
.kit-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.25s, background 0.25s;
}
.kit-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.kit-card h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); margin-bottom: 10px; }
.kit-card p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.kit-card strong { color: #fff; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.stories-section { padding: 100px 0; background: var(--parchment); }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 52px; }
.testi-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 20px;
  border-left: 4px solid var(--gold);
}
.testi-large { grid-column: span 2; border-left-color: var(--burgundy); }
.testi-card blockquote {
  font-family: var(--font-body); font-size: 1.05rem; font-style: italic;
  color: var(--ash); line-height: 1.75;
}
.testi-large blockquote { font-size: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--burgundy); color: #fff;
  font-family: var(--font-ui); font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.testi-author strong { font-family: var(--font-ui); font-size: 0.88rem; font-weight: 600; color: var(--bark); display: block; }
.testi-author span { font-family: var(--font-ui); font-size: 0.75rem; color: var(--ash); }

/* ══════════════════════════════════
   CONNECT / ORDER FORM
══════════════════════════════════ */
.order-section { padding: 100px 0; background: var(--burgundy); }
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.order-text .section-title { color: #fff; }
.order-text .section-title em { color: var(--gold); }
.order-text p { color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 1.5rem; }
.order-includes { list-style: none; padding: 0; }
.order-includes li {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-size: 0.88rem;
  color: rgba(255,255,255,0.82); padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.check { color: var(--gold); font-weight: 700; }

.order-form-wrap { background: #fff; border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); }
.order-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600; color: var(--bark); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select {
  font-family: var(--font-ui); font-size: 0.9rem; color: var(--bark);
  padding: 11px 14px; border: 1.5px solid #ddd; border-radius: var(--radius);
  background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-note { font-size: 0.78rem; color: var(--ash); text-align: center; margin-top: 6px; }
.form-success {
  display: none; flex-direction: column; align-items: center;
  gap: 14px; text-align: center; padding: 40px 20px;
}
.success-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════
   SIGNUP
══════════════════════════════════ */
.signup-section { background: var(--bark); padding: 70px 0; }
.signup-inner { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; }
.signup-text h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin-bottom: 8px; }
.signup-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; max-width: 420px; }
.signup-form { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; min-width: 280px; }
.signup-form input {
  flex: 1; min-width: 160px; padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius);
  background: rgba(255,255,255,0.08); color: #fff;
  font-family: var(--font-ui); font-size: 0.9rem; outline: none;
}
.signup-form input::placeholder { color: rgba(255,255,255,0.4); }
.signup-form input:focus { border-color: var(--gold); }

/* ══════════════════════════════════
   PARTICIPATE
══════════════════════════════════ */
.lyn-participate {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 36px; box-shadow: var(--shadow-sm);
}
.lyn-participate h3 {
  font-family: var(--font-display); font-size: 1.4rem; color: var(--burgundy);
  margin-bottom: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--parchment);
}
.participate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.participate-item { display: flex; gap: 16px; align-items: flex-start; }
.participate-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: var(--gold); line-height: 1; flex-shrink: 0; width: 36px;
}
.participate-item strong { font-family: var(--font-ui); font-size: 0.9rem; font-weight: 600; color: var(--bark); display: block; margin-bottom: 4px; }
.participate-item p { font-size: 0.88rem; color: var(--ash); line-height: 1.65; }

/* ══════════════════════════════════
   UPCOMING EVENTS
══════════════════════════════════ */
.events-section { padding: 90px 0; background: var(--ivory); }
.events-list { display: flex; flex-direction: column; gap: 22px; margin-top: 10px; }
.event-card {
  position: relative;
  display: flex; align-items: stretch; gap: 0;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border-left: 4px solid var(--gold);
  transition: transform 0.25s, box-shadow 0.25s;
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--green); color: #fff;
  font-family: var(--font-ui); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
}
.event-date {
  flex-shrink: 0; width: 140px;
  background: var(--burgundy-dk);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 12px; text-align: center;
}
.event-date-day {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.event-date-month {
  font-family: var(--font-ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-top: 6px;
}
.event-date-year {
  font-family: var(--font-ui); font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 2px;
}
.event-info { padding: 26px 32px; flex: 1; }
.event-info h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--burgundy); line-height: 1.45; margin-bottom: 8px; padding-right: 90px;
}
.event-meta {
  font-family: var(--font-ui); font-size: 0.8rem; font-weight: 600;
  color: var(--sienna); margin-bottom: 10px;
}
.event-info p:not(.event-meta) { color: var(--ash); font-size: 0.92rem; line-height: 1.7; margin: 0; }

@media (max-width: 768px) {
  .event-card { flex-direction: column; }
  .event-date { width: 100%; flex-direction: row; gap: 10px; padding: 14px; }
  .event-date-day, .event-date-month, .event-date-year { margin-top: 0; }
  .event-info { padding: 22px; }
  .event-info h4 { padding-right: 0; margin-top: 6px; }
  .event-badge { position: static; align-self: flex-start; margin: 14px 14px 0; }
}

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('homepart.jpeg') center center/cover no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.08);
    }
}
.page-hero {
  position: relative;
  padding: 160px 0 70px;
  background: var(--ivory);
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 65%);
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { font-family: var(--font-ui); font-size: 0.75rem; color: var(--ash); margin-bottom: 16px; }
.breadcrumb a { color: var(--ash); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--burgundy); }
.page-hero .section-title { color: var(--bark); max-width: 700px; }
.page-hero .section-title em { color: var(--burgundy); font-style: italic; font-weight: 400; }
.page-hero-desc { color: var(--ash); font-size: 1.05rem; max-width: 600px; margin-top: 12px; }
.page-hero .eyebrow { color: var(--burgundy); }

/* ══════════════════════════════════
   FOOTER CTA STRIP
══════════════════════════════════ */
.footer-cta-strip {
  background: var(--green); padding: 70px 24px; text-align: center;
}
.footer-cta-strip h3 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; margin-bottom: 10px; }
.footer-cta-strip p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 28px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer { background: var(--burgundy-dk); padding: 70px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-mark { display: flex; }
.footer-emblem {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--burgundy-dk);
}
.footer-emblem span { font-size: 0.9rem; }
.footer-brand p { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.footer-brand em { color: var(--gold-light); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 { font-family: var(--font-ui); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-col a { font-family: var(--font-ui); font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px; max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-family: var(--font-ui); font-size: 0.75rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: var(--font-ui); font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: var(--gold); }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .philosophy-pillars { grid-template-columns: repeat(2, 1fr); }
  .kit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 14px; }
  .nav-links.open {
    display: flex; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--burgundy-dk); padding: 24px; z-index: 99;
  }
  .hamburger { display: flex; margin-left: auto; }
  .nav-cta { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid .about-visual { order: -1; }
  .testi-large { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-track { flex-direction: column; }
  .step-connector { transform: rotate(90deg); width: 100%; height: 28px; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .kit-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .participate-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }

  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
}

@media (max-width: 480px) {
  .kit-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .signup-inner { flex-direction: column; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
}

.nav-links a.nav-btn-gold {
  background: var(--gold);
  color: var(--burgundy-dk);
  border-radius: 4px;
  padding: 8px 16px;
  font-weight: 600;
  border: 1.5px solid var(--gold);
  transition: background 0.2s, border-color 0.2s;
}
.nav-links a.nav-btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--burgundy-dk);
}

