/* ============================================
   TOKENS
============================================ */
:root {
  --ink:        #0f0b17;
  --purple:     #4B1F8C;
  --purple-mid: #6B35B8;
  --gold:       #C4922A;
  --gold-light: #E2B554;
  --cream:      #F7F2EA;
  --cream-dim:  #E3D9CA;
  --white:      #FFFFFF;
  --muted:      #8a7fa0;

  --f-display: 'Bricolage Grotesque', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  --dot-size: 1.5px;
  --dot-gap:  28px;
  --grid-gap: 60px;
}

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

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: default;
}

img { display:block; width:100%; height:100%; object-fit:cover; }
a { text-decoration:none; color:inherit; }

/* ============================================
   PATTERNS
============================================ */
.bg-dot {
  background-color: var(--cream);
  background-image: radial-gradient(circle, #c4b8d8 var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
}

.bg-dot-dark {
  background-color: var(--ink);
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
}

.bg-grid-purple {
  background-color: var(--purple);
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: var(--grid-gap) var(--grid-gap);
}

.bg-grid-cream {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(75,31,140,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,31,140,0.07) 1px, transparent 1px);
  background-size: var(--grid-gap) var(--grid-gap);
}

.bg-grid-dark {
  background-color: #0f0b17;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: var(--grid-gap) var(--grid-gap);
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity:1; transform:translateX(0); }

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ============================================
   NAV
============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: var(--cream);
  border-bottom: 1px solid rgba(75,31,140,0.12);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(15,11,23,0.08);
}

.nav-logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark svg { width:16px; height:16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.7;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  opacity: 1 !important;
  padding: 10px 22px;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--purple-mid) !important; }

/* ============================================
   HERO
============================================ */
#hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  background: var(--ink);
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px 80px 80px;
  position: relative;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-headline span {
  color: var(--gold);
  display: block;
}

.hero-body {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 420px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-ghost {
  color: rgba(255,255,255,0.6);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.stat-num sup { font-size: 18px; color: var(--gold); }
.stat-label {
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  background: var(--purple);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Floating card */
.hero-card {
  position: absolute;
  bottom: 52px;
  left: -52px;
  background: var(--white);
  padding: 28px 32px;
  width: 280px;
  z-index: 10;
  box-shadow: 0 20px 60px rgba(15,11,23,0.25);
}
.hero-card-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.hero-card-text {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}

/* Image placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.img-placeholder-icon {
  width: 48px;
  height: 48px;
  border: 1.5px dashed rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder-text {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ============================================
   MISSION STRIP
============================================ */
#mission-strip {
  background: var(--gold);
  padding: 22px 80px;
  overflow: hidden;
}
.strip-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  flex-shrink: 0;
}
.strip-dot {
  width: 6px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.4;
}

/* ============================================
   ABOUT
============================================ */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.about-img {
  position: relative;
  background: var(--purple);
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  min-height: 560px;
}

.about-img-inner {
  position: absolute;
  inset: 40px;
  overflow: hidden;
}

.about-img-inner .img-placeholder {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.15);
}

.about-content {
  padding: 90px 80px;
  background: var(--cream);
  background-image: radial-gradient(circle, #c4b8d8 var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-tag {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--purple);
}

.section-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.section-headline em {
  font-style: normal;
  color: var(--purple);
}

.section-body {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(15,11,23,0.65);
  margin-bottom: 24px;
  max-width: 480px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.pillar {
  background: var(--white);
  padding: 22px 24px;
  border-left: 3px solid var(--purple);
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.pillar-title {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.pillar-desc {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
============================================ */
#testimonials {
  padding: 110px 0;
  background: var(--purple);
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  overflow: hidden;
}

.testi-header {
  padding: 0 80px;
  margin-bottom: 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.testi-headline {
  font-family: var(--f-display);
  font-size: clamp(38px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
}
.testi-headline em {
  font-style: normal;
  color: var(--gold);
}
.testi-nav {
  display: flex;
  gap: 10px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.testi-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.testi-track {
  display: flex;
  gap: 24px;
  padding: 0 80px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.testi-track::-webkit-scrollbar { display: none; }

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 44px 40px;
  min-width: 420px;
  max-width: 420px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.testi-card:hover { background: rgba(255,255,255,0.1); }

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}
.testi-star { color: var(--gold); font-size: 14px; }

.testi-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}
.testi-quote em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 500;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.testi-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.testi-loc {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* ============================================
   COMMUNITY
============================================ */
#community {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.community-content {
  padding: 90px 80px;
  background: var(--cream);
  background-image: radial-gradient(circle, #c4b8d8 var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.community-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.2vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}
.community-headline em {
  font-style: normal;
  color: var(--purple);
}

.community-body {
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(15,11,23,0.6);
  margin-bottom: 44px;
  max-width: 440px;
}

.email-form {
  display: flex;
  max-width: 440px;
}
.email-input {
  flex: 1;
  border: 1.5px solid rgba(75,31,140,0.25);
  background: var(--white);
  padding: 15px 20px;
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.email-input::placeholder { color: rgba(15,11,23,0.35); }
.email-input:focus { border-color: var(--purple); }
.email-submit {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.email-submit:hover { background: var(--purple-mid); }

.community-note {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(15,11,23,0.35);
  margin-top: 14px;
}

.community-img {
  background: var(--ink);
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.community-quote-block {
  position: absolute;
  bottom: 52px;
  right: 52px;
  left: 52px;
  background: var(--white);
  padding: 32px;
}
.community-quote-text {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 16px;
}
.community-quote-source {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================
   FOUNDERS NOTE
============================================ */
#founders {
  padding: 110px 80px;
  background: var(--ink);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
  height: 520px;
}
.founder-img-frame {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.founder-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--gold);
  z-index: -1;
}

.founder-label {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.founder-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.founder-quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.founder-quote em {
  font-style: normal;
  color: var(--gold);
}
.founder-body {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  margin-bottom: 44px;
}
.founder-sig {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.founder-name {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.founder-title {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================
   CTA BANNER
============================================ */
#cta {
  background: var(--gold);
  padding: 90px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-headline {
  font-family: var(--f-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 600px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 36px;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-dark:hover { background: var(--purple); }
.btn-outline-dark {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  display: inline-block;
  text-align: center;
  transition: background 0.2s;
}
.btn-outline-dark:hover { background: rgba(0,0,0,0.08); }

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--ink);
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) var(--dot-size), transparent var(--dot-size));
  background-size: var(--dot-gap) var(--dot-gap);
  padding: 80px 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}

.footer-brand {}
.footer-logo {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,146,42,0.08);
}

.footer-col-title {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-links a {
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}
.footer-copy span { color: var(--gold); opacity: 0.7; }

/* ============================================
   MOBILE NAV TOGGLE (simple)
============================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  nav { padding: 0 32px; }
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 80px 32px; }
  .hero-right { min-height: 420px; display: none; }
  .hero-card { display: none; }

  #about { grid-template-columns: 1fr; }
  .about-img { min-height: 360px; }
  .about-content { padding: 60px 32px; }

  #testimonials { padding: 80px 0; }
  .testi-header { padding: 0 32px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .testi-track { padding: 0 32px; }

  #community { grid-template-columns: 1fr; }
  .community-content { padding: 60px 32px; }
  .community-img { min-height: 380px; }
  .community-quote-block { bottom: 32px; right: 32px; left: 32px; }

  #founders { grid-template-columns: 1fr; padding: 80px 32px; gap: 52px; }
  .founder-img-wrap { height: 380px; }

  #cta { flex-direction: column; padding: 60px 32px; }

  footer { padding: 60px 32px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .pillars { grid-template-columns: 1fr; }
  #mission-strip { padding: 18px 32px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================
   UTILITY
============================================ */
.gold-text { color: var(--gold); }
.purple-text { color: var(--purple); }