:root {
  --forest: #1a2e22;
  --forest-mid: #243b2d;
  --forest-light: #2f4d3a;
  --cream: #f5f0e8;
  --cream-warm: #ede6d8;
  --gold: #c9a84c;
  --gold-light: #e0c278;
  --sage: #7a9e87;
  --text: #1a1a1a;
  --text-mid: #3a3a3a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --focus-ring: #c9a84c;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  font-size: 1rem;
  line-height: 1.6;
}

/* ACCESSIBILITY */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}
*:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26, 46, 34, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--forest);
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
}

/* HAMBURGER */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition:
    transform 0.3s,
    opacity 0.3s;
  border-radius: 2px;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: unset;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--forest);
  z-index: 300;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}
.mobile-drawer.open {
  right: 0;
}
.drawer-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  z-index: 400;
}
.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.drawer-nav li a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.2s;
}
.drawer-nav li a:hover {
  color: var(--gold);
}
.drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
}
.drawer-cta-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.drawer-cta-secondary {
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--gold);
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  text-align: center;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* HERO */
#hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.7) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.1) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
}
.hero-left h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-left h1 strong {
  font-weight: 600;
}
.hero-tagline {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 300;
  color: var(--sage);
  margin: 1.2rem 0 1.5rem;
}
.hero-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  max-width: 480px;
}
.hero-full-name {
  display: block;
  margin-top: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 232, 0.32);
  font-style: italic;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding-top: 0.8rem;
}

/* PATH CARDS */
.path-intro {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.path-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.path-card {
  display: block;
  text-decoration: none;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 2rem 2.2rem;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.path-card:hover {
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateX(4px);
}
.path-card:hover::before {
  transform: scaleY(1);
}
.card-tag {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: block;
}
.path-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.path-card h2 em {
  font-style: italic;
}
.path-card p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.52);
  line-height: 1.65;
}
.card-arrow {
  position: absolute;
  bottom: 1.8rem;
  right: 2rem;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.path-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* TICKER */
.ticker-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 0.9rem 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--forest);
  padding: 0 2.5rem;
}
.ticker-dot {
  opacity: 0.35;
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* QUOTE BAR */
.quote-bar {
  background: var(--forest-light);
  padding: 2.5rem 4rem;
}
.quote-bar blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.55;
}
.quote-bar blockquote strong {
  font-weight: 600;
  color: var(--gold);
}
.quote-bar cite {
  display: block;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 1rem;
}

/* SECTION HELPERS */
section {
  padding: 7rem 4rem;
}
.section-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-label.dark {
  color: var(--forest);
}
.section-label.dark::before {
  background: var(--forest);
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--forest);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-title strong {
  font-weight: 600;
}
.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ABOUT */
#what {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.ace-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ace-card {
  padding: 1.5rem 1.8rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-warm);
}
.ace-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.ace-card .acronym {
  color: var(--gold);
}
.ace-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* MISSION */
#mission {
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
#mission .section-title {
  color: var(--cream);
}
.mission-body {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
  margin-top: 1.2rem;
}
.mission-statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--sage);
  line-height: 1.45;
  margin: 1.5rem 0 1.2rem;
}
.mission-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.mission-pillar {
  padding: 1.6rem 1.8rem;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  position: relative;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.mission-pillar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.mission-pillar:hover {
  background: rgba(245, 240, 232, 0.07);
  border-color: rgba(201, 168, 76, 0.3);
}
.mission-pillar:hover::before {
  transform: scaleY(1);
}
.pillar-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--forest);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.mission-pillar h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.mission-pillar p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
}

/* VSP EXPLAINER */
#vsp-intro {
  background: var(--forest-mid);
}
#vsp-intro .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vsp-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.vsp-role-tag {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: rgba(245, 240, 232, 0.6);
  border-radius: 1px;
}
.vsp-panel {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2.5rem;
}
.vsp-panel-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}
.vsp-panel-body {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
}

/* VALUES */
#values {
  background: var(--cream-warm);
}
.values-header {
  margin-bottom: 4rem;
}
.dna-list {
  display: flex;
  flex-direction: column;
}
.dna-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(26, 46, 34, 0.1);
  transition: padding-left 0.3s;
}
.dna-item:first-child {
  border-top: 1px solid rgba(26, 46, 34, 0.1);
}
.dna-item:hover {
  padding-left: 0.5rem;
}
.dna-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.1rem;
}
.dna-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.dna-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* DUAL CTA HUB */
#cta-hub {
  background: var(--forest-mid);
  padding: 6rem 4rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.cta-hub-inner {
  max-width: 900px;
  margin: 0 auto;
}
.cta-hub-inner .section-label {
  justify-content: center;
}
.cta-hub-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.cta-hub-title em {
  font-style: italic;
  color: var(--gold);
}
.cta-hub-sub {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  text-align: center;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 3.5rem;
}
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cta-card {
  padding: 2.5rem 2.8rem;
  border: 1px solid rgba(201, 168, 76, 0.18);
  background: rgba(245, 240, 232, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.cta-card:hover {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(201, 168, 76, 0.35);
}
.cta-card-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.cta-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}
.cta-card h3 em {
  font-style: italic;
  color: var(--gold);
}
.cta-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  flex: 1;
}
.cta-card-btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition:
    background 0.2s,
    color 0.2s;
  text-align: center;
}
.cta-card-btn.primary {
  background: var(--gold);
  color: var(--forest);
}
.cta-card-btn.primary:hover {
  background: var(--gold-light);
}
.cta-card-btn.outline {
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
}
.cta-card-btn.outline:hover {
  background: var(--gold);
  color: var(--forest);
}

/* BRIDGE */
#bridge {
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#bridge::before {
  content: "ACE";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 22rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.04);
  letter-spacing: -0.05em;
  pointer-events: none;
  white-space: nowrap;
}
#bridge .section-label {
  justify-content: center;
}
.bridge-body {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.55);
  max-width: 440px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}
.bridge-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER */
footer {
  background: #111d15;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.25rem;
}
.f-logo span {
  color: var(--gold);
}
.f-full {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.3);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.footer-tagline {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: block;
}
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
footer h6 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.35);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
footer ul a {
  font-size: 0.875rem;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
footer ul a:hover {
  color: var(--gold);
}
.footer-bottom {
  background: #0d1710;
  padding: 1.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.04em;
}

/* ANIMATIONS */
/* fade-up: content visible by default; animation only applies once JS marks html.js-ready */
.fade-up {
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
html.js-ready .fade-up {
  opacity: 0;
  transform: translateY(28px);
}
html.js-ready .fade-up.visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* MOBILE */
@media (max-width: 960px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  section {
    padding: 5rem 1.5rem;
  }
  #hero {
    padding: 6rem 1.5rem 4rem;
    min-height: auto;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #what {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #mission {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  #vsp-intro .section-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .cta-cards {
    grid-template-columns: 1fr;
  }
  #cta-hub {
    padding: 4rem 1.5rem;
  }
  .quote-bar {
    padding: 2rem 1.5rem;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .dna-item {
    grid-template-columns: 3rem 1fr;
    gap: 1.2rem;
  }
}
