/* ============================================================
   My Lives Global Holding Berhad — Design System
   Premium ASEAN–China executive. Dark base, warm gold, off-white.
   ============================================================ */

:root {
  /* Color */
  --black:        #0A0A0A;
  --ink:          #0E0E0E;
  --charcoal:     #141312;
  --charcoal-2:   #1B1A18;
  --line:         rgba(201,169,97,0.16);
  --line-soft:    rgba(245,241,232,0.08);
  --gold:         #C9A961;
  --gold-bright:  #D9BE7E;
  --gold-deep:    #A8884A;
  --cream:        #F5F1E8;
  --cream-dim:    rgba(245,241,232,0.66);
  --cream-faint:  rgba(245,241,232,0.42);
  --red:          #9E2B25;     /* restrained Chinese auspicious red — Programs CTA only */
  --red-bright:   #C0392B;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  /* Fluid scale */
  --text-xs:   0.78rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   clamp(1.12rem, 0.5vw + 1rem, 1.25rem);
  --text-xl:   clamp(1.5rem, 1.4vw + 1rem, 2rem);
  --text-2xl:  clamp(2rem, 3vw + 1rem, 3.25rem);
  --text-hero: clamp(2.9rem, 6.2vw + 0.5rem, 6.4rem);

  /* Spacing */
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --maxw: 1200px;
  --maxw-narrow: 760px;
  --radius:    2px;
  --radius-lg: 4px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--cream);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography helpers ---------- */
.display { font-family: var(--font-display); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.lede { font-size: var(--text-lg); color: var(--cream-dim); line-height: 1.65; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }

p { color: var(--cream-dim); }
strong { color: var(--cream); font-weight: 600; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.narrow { max-width: var(--maxw-narrow); }
section { position: relative; }
.section-pad { padding-block: clamp(4rem, 9vw, 8rem); }
.section-pad-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.divider { border: 0; border-top: 1px solid var(--line-soft); margin: 0; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--black); padding: 0.75rem 1.25rem; font-weight: 600;
}
.skip:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(10,10,10,0.92); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: var(--space-8);
}
.brand { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .brand-name { font-family: var(--font-display); font-size: 1.18rem; color: var(--cream); letter-spacing: 0.01em; }
.brand .brand-sub { font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; flex-wrap: nowrap; }
.nav-links li { white-space: nowrap; }
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--cream-dim);
  letter-spacing: 0.02em; padding: 0.4rem 0; position: relative; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--cream); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important; padding: 0.55rem 1.1rem !important;
  border-radius: var(--radius); font-weight: 600; transition: all 0.25s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--cream); cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.02em; padding: 0.9rem 1.7rem; border-radius: var(--radius);
  cursor: pointer; transition: all 0.28s var(--ease); border: 1px solid transparent;
  text-align: center; line-height: 1;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-outline { border-color: var(--line); color: var(--cream); background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: var(--red-bright); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.28s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: clamp(620px, 92vh, 920px);
  display: flex; align-items: center; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.40) 40%, rgba(10,10,10,0.90) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.30) 60%, rgba(10,10,10,0.10) 100%);
}
.hero-watermark {
  position: absolute; z-index: 1; right: -3vw; top: 48%; transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 600; font-size: 30rem; line-height: 0.8;
  color: var(--gold); opacity: 0.08; pointer-events: none; user-select: none;
  text-shadow: 0 0 60px rgba(201,169,97,0.2);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(5rem, 12vh, 9rem); max-width: 880px; }
.hero h1 {
  font-size: var(--text-hero); margin-top: 1.3rem; margin-bottom: 1.6rem; color: var(--cream);
  max-width: 14ch;
}
/* Gold sweep on load */
.hero h1 .sweep {
  background: linear-gradient(100deg, var(--cream) 0%, var(--cream) 38%, var(--gold-bright) 50%, var(--cream) 62%, var(--cream) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sweep 1.3s var(--ease) 0.25s both;
}
@keyframes sweep { from { background-position: 130% 0; } to { background-position: 0 0; } }
.hero .lede { max-width: 56ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

/* ============================================================
   Stat strip
   ============================================================ */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--ink), var(--black));
}
.stat { padding: clamp(2rem, 4vw, 3.2rem) clamp(1rem,2vw,2rem); text-align: left; position: relative; }
.stat + .stat { border-left: 1px solid var(--line-soft); }
.stat .num {
  font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--gold); line-height: 1; letter-spacing: -0.01em;
}
.stat .num .unit { font-size: 0.55em; color: var(--gold-deep); }
.stat .label { font-size: var(--text-sm); color: var(--cream-dim); margin-top: 0.6rem; letter-spacing: 0.04em; }

/* ============================================================
   Pillars (home)
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border-block: 1px solid var(--line-soft); }
.pillar {
  background: var(--black); padding: clamp(2rem, 3.5vw, 3.4rem) clamp(1.5rem,2.5vw,2.4rem);
  display: flex; flex-direction: column; transition: background 0.4s var(--ease);
}
.pillar:hover { background: var(--charcoal); }
.pillar .pnum { font-family: var(--font-display); font-size: 1rem; color: var(--gold-deep); letter-spacing: 0.1em; }
.pillar h3 { margin: 0.9rem 0 0.2rem; color: var(--cream); }
.pillar .psub { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pillar p { font-size: var(--text-sm); flex: 1; }
.pillar .plink { margin-top: 1.4rem; font-size: var(--text-sm); font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; }
.pillar .plink .arrow { transition: transform 0.28s var(--ease); }
.pillar:hover .plink .arrow { transform: translateX(4px); }

/* ============================================================
   Generic section header
   ============================================================ */
.section-head { max-width: 60ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 { margin: 1rem 0 1.1rem; color: var(--cream); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.feature.reverse .feature-media { order: 2; }
.feature-media { position: relative; }
.feature-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.feature-media .tag {
  position: absolute; bottom: 1rem; left: 1rem; background: rgba(10,10,10,0.85); backdrop-filter: blur(6px);
  color: var(--gold); font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.5rem 0.9rem; border: 1px solid var(--line);
}
.feature-body h2, .feature-body h3 { color: var(--cream); margin-bottom: 1.1rem; }
.feature-body p + p { margin-top: 1rem; }

/* ============================================================
   Track record marquee / logos
   ============================================================ */
.track { background: var(--charcoal); border-block: 1px solid var(--line-soft); overflow: hidden; }
.track .wrap { padding-block: clamp(2.5rem,4vw,3.5rem); }
.track-label { text-align: center; color: var(--cream-faint); font-size: var(--text-xs); letter-spacing: 0.24em; text-transform: uppercase; margin-bottom: 2rem; }
.track-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1rem,3vw,2.8rem); }
.track-grid span {
  font-family: var(--font-display); font-size: clamp(1.05rem,1.6vw,1.4rem); color: var(--cream-dim);
  opacity: 0.7; transition: opacity 0.3s, color 0.3s; white-space: nowrap;
}
.track-grid span:hover { opacity: 1; color: var(--gold); }

/* ============================================================
   Service list (Capital / Holding)
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.svc {
  background: var(--black); padding: 1.7rem; transition: background 0.35s var(--ease);
  display: flex; gap: 1rem; align-items: flex-start;
}
.svc:hover { background: var(--charcoal); }
.svc .idx { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-deep); min-width: 2.2ch; }
.svc h4 { font-family: var(--font-body); font-size: var(--text-base); font-weight: 600; color: var(--cream); margin-bottom: 0.3rem; letter-spacing: 0.01em; }
.svc p { font-size: var(--text-sm); }

/* ---------- Methodology stages (Holding) ---------- */
.stages { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-6); counter-reset: stage; }
.stage {
  border-top: 2px solid var(--gold); padding-top: 1.4rem; position: relative;
}
.stage .snum { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stage h4 { font-family: var(--font-body); font-weight: 600; color: var(--cream); margin: 0.5rem 0 0.7rem; font-size: var(--text-lg); }
.stage ul { list-style: none; padding: 0; }
.stage li { font-size: var(--text-sm); color: var(--cream-dim); padding-left: 1.1rem; position: relative; margin-bottom: 0.5rem; }
.stage li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; background: var(--gold-deep); border-radius: 50%; }

/* ---------- Sector tags ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tags li { list-style: none; }
.tags span, .tag-chip {
  display: inline-block; font-size: var(--text-sm); color: var(--cream-dim);
  border: 1px solid var(--line); padding: 0.5rem 1rem; border-radius: 100px; transition: all 0.25s;
}
.tag-chip:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   Programs cards
   ============================================================ */
.prog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.2rem); }
.prog-grid .prog-card:first-child { grid-column: 1 / -1; }
.prog-card {
  border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--charcoal); display: flex; flex-direction: column; transition: border-color 0.35s, transform 0.35s var(--ease);
}
.prog-card:hover { border-color: var(--line); transform: translateY(-4px); }
.prog-card:first-child { flex-direction: row; }
.prog-card .pc-media { position: relative; overflow: hidden; }
.prog-card:first-child .pc-media { flex: 1.1; }
.prog-card .pc-media img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; transition: transform 0.6s var(--ease); }
.prog-card:hover .pc-media img { transform: scale(1.04); }
.prog-card .pc-body { padding: clamp(1.5rem,2.5vw,2.2rem); display: flex; flex-direction: column; flex: 1; }
.prog-card:first-child .pc-body { justify-content: center; }
.prog-card .pc-kicker { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.prog-card h3 { color: var(--cream); margin: 0.7rem 0 0.8rem; }
.prog-card p { font-size: var(--text-sm); flex: 1; }
.prog-card .pc-outcome {
  margin-top: 1.3rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
  font-size: var(--text-sm); color: var(--cream);
}
.prog-card .pc-outcome strong { color: var(--gold); }

/* ============================================================
   Gallery — magazine asymmetric grid
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: row dense;
  gap: 12px;
}
.gslot {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft); background: var(--charcoal-2);
}
.gslot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gslot:hover img { transform: scale(1.05); }
.gslot::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,10,0.85));
  opacity: 0.85; transition: opacity 0.35s;
}
.gslot:hover::after { opacity: 0.95; }
.gslot .cap {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1rem 1.1rem; width: 100%;
}
.gslot .cap .ctitle { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); line-height: 1.12; }
.gslot .cap .cmeta { display: block; font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 0.3rem; }
.gslot .swap-note {
  position: absolute; top: 0.7rem; right: 0.7rem; z-index: 3;
  font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(10,10,10,0.78); color: var(--gold); border: 1px solid var(--line);
  padding: 0.25rem 0.5rem; border-radius: 100px; opacity: 0; transition: opacity 0.3s;
}
.gslot:hover .swap-note { opacity: 1; }
/* size variants */
.g-2x2 { grid-column: span 2; grid-row: span 2; }
.g-2x1 { grid-column: span 2; grid-row: span 1; }
.g-1x2 { grid-column: span 1; grid-row: span 2; }
.g-1x1 { grid-column: span 1; grid-row: span 1; }

/* ============================================================
   Membership
   ============================================================ */
.mem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.mem-col { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--charcoal); overflow: hidden; }
.mem-col.featured { border-color: var(--gold); }
.mem-head { padding: clamp(1.8rem,3vw,2.5rem); border-bottom: 1px solid var(--line-soft); }
.mem-head .mtag { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.mem-head h3 { color: var(--cream); margin: 0.8rem 0 0.6rem; }
.mem-head .mrange { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); }
.mem-head p { font-size: var(--text-sm); margin-top: 0.8rem; }
.tier-list { list-style: none; padding: clamp(1.4rem,2.5vw,2rem); display: flex; flex-direction: column; gap: 0.85rem; }
.tier {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 1.1rem; border: 1px solid var(--line-soft); border-radius: var(--radius);
  background: var(--black); transition: border-color 0.3s;
}
.tier:hover { border-color: var(--line); }
.tier .tname { display: flex; flex-direction: column; }
.tier .tname b { color: var(--cream); font-weight: 600; }
.tier .tname small { color: var(--cream-faint); font-size: var(--text-xs); letter-spacing: 0.05em; }
.tier .tprice { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); white-space: nowrap; }
.tier.visionary { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,169,97,0.06), var(--black)); }
.mem-foot { padding: 0 clamp(1.4rem,2.5vw,2rem) clamp(1.8rem,3vw,2.4rem); }
.mem-foot .btn { width: 100%; justify-content: center; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.contact-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem,3vw,2.2rem); background: var(--charcoal); margin-bottom: 1.2rem; }
.contact-card.primary { border-color: var(--gold); }
.contact-card .ckicker { font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-card h3 { color: var(--cream); margin: 0.6rem 0 0.2rem; }
.contact-card .crole { font-size: var(--text-sm); color: var(--cream-dim); margin-bottom: 1rem; }
.contact-line { display: flex; align-items: center; gap: 0.7rem; font-size: var(--text-sm); color: var(--cream-dim); margin-bottom: 0.55rem; }
.contact-line a:hover { color: var(--gold); }
.contact-line svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; }

.form { display: grid; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-size: var(--text-sm); color: var(--cream); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--text-base); color: var(--cream);
  background: var(--black); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.85rem 1rem; transition: border-color 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-note { font-size: var(--text-xs); color: var(--cream-faint); }
.form-success { display: none; padding: 1rem 1.2rem; border: 1px solid var(--gold); border-radius: var(--radius); color: var(--gold); font-size: var(--text-sm); background: rgba(201,169,97,0.06); }
.form-success.show { display: block; }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.page-hero { border-bottom: 1px solid var(--line); padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2.5rem,5vw,4rem); position: relative; overflow: hidden; }
.page-hero .ph-mark { position: absolute; right: -2vw; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-size: 22rem; color: var(--gold); opacity: 0.05; pointer-events: none; line-height: 0.8; }
.page-hero h1 { font-size: var(--text-2xl); color: var(--cream); margin: 1rem 0 1.2rem; max-width: 18ch; }
.page-hero .lede { max-width: 60ch; }
.page-hero .ph-logo { height: 56px; width: auto; margin-bottom: 1.4rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: linear-gradient(180deg, var(--charcoal), var(--ink)); border-block: 1px solid var(--line); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(3rem,5vw,4.5rem); }
.cta-band h2 { color: var(--cream); max-width: 18ch; }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem,5vw,4.5rem); }
.footer-brand img { height: 38px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: var(--text-sm); max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: var(--text-sm); color: var(--cream-dim); transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding-block: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-bottom .copy { font-size: var(--text-xs); color: var(--cream-faint); }
.footer-bottom .fb-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: var(--text-sm); color: var(--cream-dim); }
.footer-bottom .fb-link svg { width: 18px; height: 18px; }
.footer-bottom .fb-link:hover { color: var(--gold); }
.credit {
  font-size: var(--text-xs); color: var(--cream-faint); font-variant: small-caps;
  letter-spacing: 0.06em;
}
.credit a { color: var(--cream-dim); border-bottom: 1px solid transparent; transition: color 0.25s, border-color 0.25s; }
.credit a:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .sweep { animation: none; -webkit-text-fill-color: var(--cream); }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .stages { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(10,10,10,0.98); backdrop-filter: blur(14px); padding: 1.5rem clamp(1.25rem,4vw,2.5rem) 2rem;
    border-bottom: 1px solid var(--line); gap: 0.3rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: opacity 0.28s, transform 0.28s;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 0.6rem; }
  .nav-toggle { display: inline-flex; }

  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line-soft); }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line-soft); }

  .pillars { grid-template-columns: 1fr; }
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .mem-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .prog-grid .prog-card:first-child { grid-column: auto; }
  .prog-card:first-child { flex-direction: column; }

  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .g-2x2 { grid-column: span 2; grid-row: span 2; }
  .g-2x1 { grid-column: span 2; }
  .g-1x2 { grid-row: span 2; }

  .hero-watermark { font-size: 18rem; opacity: 0.06; }
}
@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stages { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .brand .brand-sub { display: none; }
  .hero-watermark { font-size: 13rem; }
}
