/* ============================================================
   RED TOP CREATIVE GROUP — Clone Stylesheet
   Recreated from the original site's design system
   ============================================================ */

:root {
  --radius: .25rem;
  --ink: oklch(13% .018 265);
  --navy: oklch(19% .035 262);
  --gold: oklch(79% .13 85);
  --gold-soft: oklch(88% .07 88);
  --brand: oklch(55% .19 25);
  --brand-soft: oklch(66% .17 27);
  --background: oklch(13% .018 265);
  --foreground: oklch(96% .006 90);
  --card: oklch(18% .028 262);
  --card-foreground: oklch(96% .006 90);
  --popover: oklch(18% .028 262);
  --popover-foreground: oklch(96% .006 90);
  --primary: oklch(79% .13 85);
  --primary-foreground: oklch(13% .018 265);
  --secondary: oklch(22% .03 262);
  --secondary-foreground: oklch(96% .006 90);
  --muted: oklch(22% .03 262);
  --muted-foreground: oklch(72% .015 90);
  --accent: oklch(79% .13 85);
  --accent-foreground: oklch(13% .018 265);
  --destructive: oklch(60% .21 25);
  --destructive-foreground: oklch(97% .01 90);
  --border: oklch(99% 0 0/.12);
  --input: oklch(99% 0 0/.16);
  --ring: oklch(79% .13 85);
  --gradient-gold: linear-gradient(100deg, var(--gold-soft) 0%, var(--gold) 42%, oklch(62% .1 78) 100%);
  --gradient-veil: linear-gradient(180deg, oklch(13% .018 265/.15) 0%, oklch(13% .018 265/.72) 55%, oklch(13% .018 265) 100%);
  --gradient-brand: linear-gradient(100deg, var(--brand-soft) 0%, var(--brand) 100%);
  --shadow-lux: 0 30px 80px -40px oklch(0% 0 0/.9);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1,h2,h3,h4 { margin: 0; font-weight: inherit; }

/* ---------- Typography helpers ---------- */
.display {
  font-family: var(--font-display);
  letter-spacing: -.015em;
  font-weight: 300;
  line-height: .98;
}
.eyebrow {
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .6875rem;
}
.gold-text {
  background: var(--gradient-gold);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.gold-rule {
  background: linear-gradient(90deg, var(--gold) 0%, oklch(79% .13 85/.25) 40%, transparent 100%);
  width: 100%;
  height: 1px;
}
.brand-rule {
  background: linear-gradient(90deg, var(--brand-soft) 0%, oklch(55% .19 25/.25) 40%, transparent 100%);
  width: 100%;
  height: 1px;
}
.text-gold { color: var(--gold); }
.text-brand { color: var(--brand); }
.text-brand-soft { color: var(--brand-soft); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-primary-foreground { color: var(--primary-foreground); }

/* ---------- Surfaces ---------- */
.grain { position: relative; }
.glass {
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  background: linear-gradient(145deg, oklch(100% 0 0/.07) 0%, oklch(100% 0 0/.02) 100%);
  border: 1px solid oklch(100% 0 0/.09);
  transition: border-color .5s, transform .5s, background .5s;
}
.card-lift { transition: transform .5s, border-color .5s, box-shadow .5s; }
.card-lift:hover {
  transform: translateY(-6px);
  border-color: oklch(79% .13 85/.4);
  box-shadow: var(--shadow-lux);
}

/* ---------- Layout helpers ---------- */
.section {
  scroll-margin-top: 6rem;
  padding: 6rem 1.5rem;
}
@media (min-width: 768px) {
  .section { padding: 6rem 3rem; }
}
@media (min-width: 1024px) {
  .section { padding: 9rem 3rem; }
}
.container { margin: 0 auto; max-width: 80rem; }
.bg-card-40 { background: oklch(18% .028 262/.4); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 0 1rem;
}
.header-inner {
  margin: 1rem auto 0;
  max-width: 80rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9999px;
  padding: .75rem 1.5rem;
  transition: all .5s;
}
.header-inner.scrolled {
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  backdrop-filter: blur(18px) saturate(130%);
  background: linear-gradient(145deg, oklch(100% 0 0/.07) 0%, oklch(100% 0 0/.02) 100%);
  border: 1px solid oklch(100% 0 0/.09);
}
.brand { display: flex; align-items: baseline; gap: .5rem; }
.brand .display { font-size: 1.25rem; letter-spacing: -.015em; color: var(--foreground); }
.brand .eyebrow { font-size: 9px; }
.nav { display: none; gap: 1.75rem; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--muted-foreground);
  transition: color .3s;
}
.nav a:hover { color: var(--gold); }
.header-cta {
  display: none;
  border-radius: 9999px;
  border: 1px solid oklch(79% .13 85/.5);
  padding: .5rem 1.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
  transition: all .3s;
}
@media (min-width: 640px) { .header-cta { display: inline-block; } }
.header-cta:hover { background: var(--gold); color: var(--primary-foreground); }
.menu-btn {
  background: none; border: none; color: oklch(96% .006 90/.8);
  cursor: pointer; transition: color .3s;
}
.menu-btn:hover { color: var(--gold); }
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 24s ease-out forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: var(--gradient-veil);
}
.hero-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 80rem;
  padding: 0 1.5rem 6rem;
}
@media (min-width: 768px) { .hero-content { padding: 0 3rem 8rem; } }
.hero h1 { margin-top: 2rem; max-width: 64rem; font-size: clamp(2.6rem, 7vw, 6.5rem); }
.hero .lead {
  margin-top: 2.5rem;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .hero .lead { font-size: 1.125rem; } }
.hero-actions { margin-top: 3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn-gold {
  border-radius: 9999px;
  padding: 1rem 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--primary-foreground);
  background: var(--gradient-gold);
  transition: transform .3s;
}
.btn-gold:hover { transform: scale(1.03); }
.btn-outline {
  border-radius: 9999px;
  border: 1px solid oklch(55% .19 25/.6);
  padding: 1rem 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: oklch(96% .006 90/.85);
  transition: all .3s;
}
.btn-outline:hover { background: var(--brand); color: var(--foreground); }
.scroll-hint-wrap {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  height: 4rem;
  width: 1px;
  overflow: hidden;
  background: var(--border);
  display: none;
}
@media (min-width: 768px) { .scroll-hint-wrap { display: block; } }
.scroll-hint { height: 2rem; width: 1px; background: var(--gold); animation: scroll-hint 2.2s ease-in-out infinite; }

/* ---------- Section header ---------- */
.sec-head .eyebrow { margin: 0; }
.sec-head .gold-rule { margin-top: 1.25rem; max-width: 220px; }
.sec-head h2 { margin-top: 2rem; max-width: 48rem; font-size: 2.25rem; }
@media (min-width: 768px) { .sec-head h2 { font-size: 3.75rem; } }
.sec-body { margin-top: 3.5rem; }

/* ---------- About pillars ---------- */
.about-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text p { margin-bottom: 1.5rem; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: .5rem;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 640px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar { background: var(--background); padding: 1.5rem; transition: background .3s; }
.pillar:hover { background: var(--card); }
.pillar svg { color: var(--gold); transition: color .3s; }
.pillar:hover svg { color: var(--brand-soft); }
.pillar h4 { margin-top: 1rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .18em; color: oklch(96% .006 90/.85); }
.pillar p { margin-top: .5rem; font-size: .75rem; font-weight: 300; line-height: 1.6; color: var(--muted-foreground); }
.about-img {
  position: relative;
  min-height: 26rem;
  height: 100%;
  overflow: hidden;
  border-radius: .5rem;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Ecosystem portals ---------- */
.portal-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .portal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .portal-grid { grid-template-columns: repeat(3, 1fr); } }
.portal-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1rem;
  padding: 2rem;
}
.portal-icon {
  display: inline-flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid oklch(79% .13 85/.4);
  color: var(--gold);
  transition: all .3s;
}
.portal-card:hover .portal-icon { border-color: var(--brand); color: var(--brand-soft); }
.portal-card h3 { margin-top: 1.75rem; font-size: 1.5rem; }
.portal-card p { margin-top: 1rem; flex: 1; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.portal-explore {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .28em;
  color: var(--gold);
}
.portal-explore svg { transition: transform .5s; }
.portal-card:hover .portal-explore svg { transform: translateX(4px); }

/* ---------- Projects ---------- */
.projects-intro { max-width: 48rem; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.project-grid { margin-top: 3rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .project-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card {
  position: relative;
  height: 32rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
}
.project-card.gold-ring { border-color: oklch(79% .13 85/.6); }
.project-card.brand-ring { border-color: oklch(55% .19 25/.6); }
.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s;
}
.project-card:hover img { transform: scale(1.05); }
.project-veil { position: absolute; inset: 0; background: var(--gradient-veil); }
.project-chip {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: oklch(13% .018 265/.4);
  padding: .25rem .75rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .24em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.project-chip.gold { border-color: oklch(79% .13 85/.5); color: var(--gold); }
.project-chip.brand { border-color: oklch(55% .19 25/.5); color: var(--brand-soft); }
.project-body { position: absolute; inset: auto 0 0 0; padding: 2rem; }
.project-body .eyebrow { margin: 0; }
.project-body h3 { margin-top: .75rem; font-size: 3rem; }
.project-body .full { margin-top: .5rem; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: oklch(96% .006 90/.7); }
.project-region {
  margin-top: .75rem;
  display: inline-block;
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: .25rem .75rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.project-region.gold { border-color: oklch(79% .13 85/.5); color: var(--gold); }
.project-region.brand { border-color: oklch(55% .19 25/.5); color: var(--brand-soft); }
.project-body .desc { margin-top: 1rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.project-learn {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  border: 1px solid oklch(79% .13 85/.5);
  padding: .625rem 1.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .26em;
  color: var(--gold);
  transition: all .3s;
}
.project-learn:hover { background: var(--gold); color: var(--primary-foreground); }

/* ---------- Team ---------- */
.team-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { display: flex; flex-direction: column; height: 100%; border-radius: 1rem; padding: 2.25rem; }
.team-avatar {
  display: flex;
  height: 5rem;
  width: 5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 1.5rem;
  color: var(--primary-foreground);
  background: var(--gradient-gold);
}
.team-avatar .display { font-size: 1.5rem; }
.team-card .eyebrow { margin-top: 1.75rem; }
.team-card h3 { margin-top: 1rem; font-size: 1.5rem; }
.team-card .note { margin-top: .5rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; color: var(--brand-soft); }
.team-card .gold-rule { margin: 1.5rem 0; }
.team-card .bio { font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.advisory-block { margin-top: 5rem; }
.advisory-block .gold-rule { margin-top: 1.25rem; max-width: 180px; }
.advisory-card { margin-top: 2.5rem; border-radius: 1rem; padding: 2.25rem; }
.advisory-card .eyebrow { color: var(--brand-soft); }
.advisory-card h3 { margin-top: 1rem; font-size: 1.5rem; }
.advisory-card p { margin-top: .75rem; max-width: 48rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.council-block { margin-top: 4rem; }
.council-block .gold-rule { margin-top: 1.25rem; max-width: 180px; }
.council-grid {
  margin-top: 2.5rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 640px) { .council-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .council-grid { grid-template-columns: repeat(3, 1fr); } }
.council-card { height: 100%; background: var(--background); padding: 2rem; }
.council-card .eyebrow { margin: 0; }
.council-card h4 { margin-top: 1rem; font-size: 1.25rem; }
.council-card p { margin-top: .75rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }

/* ---------- Twin ---------- */
.twin-intro { max-width: 48rem; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.twin-grid { margin-top: 3rem; display: grid; gap: 1.5rem; align-items: stretch; }
@media (min-width: 1024px) { .twin-grid { grid-template-columns: repeat(2, 1fr); } }
.twin-card { display: flex; flex-direction: column; height: 100%; border-radius: 1rem; padding: 2.25rem; }
.twin-card .eyebrow { margin: 0; }
.twin-card h3 { margin-top: 1rem; font-size: 2.25rem; }
.twin-card .full { margin-top: .5rem; font-size: 11px; text-transform: uppercase; line-height: 1.7; letter-spacing: .18em; color: oklch(96% .006 90/.7); }
.twin-card .brand-rule { margin: 1.5rem 0; max-width: 120px; }
.twin-focus { margin-bottom: 1.25rem; display: flex; flex-wrap: wrap; align-content: flex-start; gap: .5rem; min-height: 4.5rem; }
.twin-focus span {
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: .25rem .75rem;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: oklch(96% .006 90/.7);
}
.twin-card .desc { font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.twin-card .purpose { margin-top: auto; padding-top: 1rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--brand-soft); }
.twin-shared { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.twin-shared span {
  border-radius: 9999px;
  border: 1px solid oklch(79% .13 85/.4);
  padding: .5rem 1.25rem;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--gold);
}
.twin-note { margin-top: 2rem; max-width: 48rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }

/* ---------- Achievements ---------- */
.stats-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { height: 100%; background: var(--background); padding: 2.25rem; }
.stat .display { font-size: 3rem; color: var(--gold); }
@media (min-width: 768px) { .stat .display { font-size: 3.75rem; } }
.stat p { margin-top: 1rem; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-foreground); }
.achieve-grid { margin-top: 5rem; display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .achieve-grid { grid-template-columns: 1.1fr 1fr; } }
.timeline { position: relative; border-left: 1px solid var(--border); padding-left: 2rem; }
.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-item .dot {
  position: absolute;
  left: -2.15rem;
  top: .5rem;
  height: .625rem;
  width: .625rem;
  border-radius: 9999px;
  background: var(--gold);
}
.timeline-item .display { font-size: 1.875rem; color: var(--gold); }
.timeline-item h4 { margin-top: .5rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .2em; color: oklch(96% .006 90/.85); }
.timeline-item p { margin-top: .75rem; max-width: 36rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.recognition { display: flex; flex-direction: column; gap: 1.25rem; }
.recog-img { position: relative; height: 14rem; overflow: hidden; border-radius: 1rem; }
.recog-img img { width: 100%; height: 100%; object-fit: cover; }
.recog-card { border-radius: 1rem; padding: 1.75rem; }
.recog-card h4 { font-size: 1.25rem; }
.recog-card p { margin-top: .75rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }

/* ---------- Partners ---------- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--border);
}
@media (min-width: 1024px) { .partner-grid { grid-template-columns: repeat(7, 1fr); } }
.partner-cell {
  display: flex;
  height: 8rem;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 1rem;
  text-align: center;
  transition: background .5s;
}
.partner-cell:hover { background: var(--card); }
.partner-cell span { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-foreground); }
.partner-lower { margin-top: 5rem; display: grid; align-items: center; gap: 3rem; }
@media (min-width: 1024px) { .partner-lower { grid-template-columns: 1.3fr 1fr; } }
.map-wrap svg { height: auto; width: 100%; }
.partner-note { display: flex; flex-direction: column; gap: 1.25rem; }
.partner-note .recog-img { height: 14rem; }
.partner-note p { font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }

/* ---------- CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 7rem 1.5rem;
}
@media (min-width: 768px) { .cta { padding: 7rem 3rem; } }
@media (min-width: 1024px) { .cta { padding: 10rem 3rem; } }
.cta-bg { position: absolute; inset: 0; opacity: .25; background: var(--gradient-brand); }
.cta-inner { position: relative; margin: 0 auto; max-width: 56rem; text-align: center; }
.cta-inner .landmark { margin: 0 auto; color: var(--gold); }
.cta-inner .eyebrow { margin-top: 1.5rem; }
.cta-inner h2 { margin-top: 1.5rem; font-size: 2.25rem; }
@media (min-width: 768px) { .cta-inner h2 { font-size: 3.75rem; } }
.cta-inner .lead { margin: 1.75rem auto 0; max-width: 42rem; font-size: 1rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.cta-tagline { margin-top: 2.5rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .3em; color: var(--gold); }
@media (min-width: 768px) { .cta-tagline { font-size: 1rem; } }
.cta-btn {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border-radius: 9999px;
  padding: 1rem 2.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--primary-foreground);
  background: var(--gradient-gold);
  transition: transform .3s;
}
.cta-btn:hover { transform: scale(1.03); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: oklch(18% .028 262/.3); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .site-footer { padding: 5rem 3rem; } }
.footer-grid { margin: 0 auto; max-width: 80rem; display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand p { margin-top: 1rem; max-width: 20rem; font-size: .875rem; font-weight: 300; line-height: 1.7; color: var(--muted-foreground); }
.socials { margin-top: 1.75rem; display: flex; gap: .75rem; }
.socials a {
  border-radius: 9999px;
  border: 1px solid var(--border);
  padding: .625rem;
  color: var(--muted-foreground);
  transition: all .3s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col .eyebrow { margin: 0; }
.footer-links { margin-top: 1.5rem; display: grid; gap: .75rem; font-size: .875rem; font-weight: 300; color: var(--muted-foreground); }
.footer-links a { transition: color .3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  margin: 4rem auto 0;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}
.footer-bottom .legal { display: flex; gap: 1.5rem; }
.footer-bottom .legal a { transition: color .3s; }
.footer-bottom .legal a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  transition: all .9s cubic-bezier(.16,1,.32,1);
}
.reveal.hidden-state { opacity: 0; transform: translateY(2rem); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Keyframes ---------- */
@keyframes slow-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
@keyframes scroll-hint {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
@keyframes map-draw {
  from { stroke-dashoffset: 600; }
  to { stroke-dashoffset: 0; }
}
@keyframes map-ping {
  0%, 100% { transform: scale(1); opacity: .18; }
  50% { transform: scale(1.6); opacity: .05; }
}
.map-arc { animation: map-draw 2.6s ease-out forwards; }
.map-ping { transform-box: fill-box; transform-origin: 50%; animation: map-ping 3.4s ease-in-out infinite; }

/* ---------- Icons (inline SVG defaults) ---------- */
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
