/* ============================================================
   ASAP STRATEGIC VENTURES — Main Stylesheet
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --teal:          #6BA8A0;
  --teal-dark:     #4A8A82;
  --teal-deep:     #3A7268;
  --gold:          #C9A84C;
  --gold-light:    #D9BC72;
  --off-white:     #F9F7F3;
  --light-sage:    #EAF2F1;
  --charcoal:      #1C1C1C;
  --white:         #FFFFFF;
  --text-muted:    #6B7280;
  --border-light:  #E5E7EB;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;
  --font-accent:  'Montserrat', sans-serif;

  --max-width: 1160px;
  --section-pad: 100px 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);

  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold-light); }

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.body-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.85;
  margin-bottom: 20px;
}
.body-text.light { color: rgba(255,255,255,0.82); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  line-height: 1.2;
  max-width: 160px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
}
.nav-link.nav-cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}
.nav-link.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: var(--transition);
  border-radius: 2px;
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  overflow: hidden;
}

.hero-bg-animation {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.infinity-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 900px);
  height: auto;
  opacity: 1;
}
.inf-path {
  animation: drawPath 6s ease-in-out infinite alternate;
}
.inf-path-2 {
  animation: drawPath 8s ease-in-out infinite alternate-reverse;
}
@keyframes drawPath {
  0%   { opacity: 0.08; stroke-dashoffset: 0; }
  100% { opacity: 0.18; stroke-dashoffset: 40; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107,168,160,0.10) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: floatOrb 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
  animation: floatOrb 16s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 780px;
}

.hero-logo { margin-bottom: 36px; }
.hero-logo-img {
  width: min(300px, 70vw);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(107,168,160,0.15));
}
.hero-logo-fallback {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.fallback-infinity {
  font-size: 6rem;
  color: var(--teal);
  line-height: 1;
  font-weight: 300;
}
.fallback-text {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal-dark);
  text-align: center;
  line-height: 1.4;
}
.fallback-text span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-scroll-hint {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.hero-scroll-hint span {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-arrow {
  animation: bounceArrow 2s ease-in-out infinite;
  color: var(--teal);
}
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ---------- Hero Animations ---------- */
.animate-hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.9s; }

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION 2: ABOUT
   ============================================================ */
.section-about {
  background: var(--off-white);
  padding: var(--section-pad);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon-large {
  width: 200px;
  height: 200px;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 20px rgba(107,168,160,0.06), 0 0 0 40px rgba(107,168,160,0.03);
}

.about-acronym {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--light-sage);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1rem;
}
.acronym-list {
  display: block;
  margin-top: 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--teal-dark);
}
.acronym-list em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid var(--teal);
  transition: var(--transition);
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.card-icon { font-size: 2rem; margin-bottom: 16px; }
.about-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.about-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   SECTION 3: SERVICES
   ============================================================ */
.section-services {
  background: var(--white);
  padding: var(--section-pad);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-left: 4px solid var(--teal);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--light-sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--teal-dark);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SECTION 4: PHILOSOPHY
   ============================================================ */
.section-philosophy {
  background: var(--teal-dark);
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.philosophy-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.philosophy-quote { position: relative; margin-bottom: 36px; }
.quote-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.4;
  display: block;
}
.quote-mark-close { text-align: right; }

.philosophy-statement {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin: -20px 0;
}

.philosophy-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 56px;
}

.philosophy-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 40px;
}
.stat-icon {
  font-size: 1.5rem;
  color: var(--gold);
}
.stat-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-align: center;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   SECTION 5: PARTNERS
   ============================================================ */
.section-partners {
  background: var(--light-sage);
  padding: var(--section-pad);
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--gold);
}

.partner-avatar { flex-shrink: 0; }
.avatar-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light-sage);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-initials {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal-dark);
  letter-spacing: 0.05em;
}

.partner-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.partner-role {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.partner-location {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.partner-location i { margin-right: 4px; font-size: 0.75rem; color: var(--teal); }

.partner-bio {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.partner-focus { display: flex; flex-wrap: wrap; gap: 6px; }
.focus-tag {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--light-sage);
  border: 1px solid rgba(107,168,160,0.3);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ============================================================
   SECTION 6: VALUES / PILLARS
   ============================================================ */
.section-values {
  background: var(--white);
  padding: var(--section-pad);
}

.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pillar {
  text-align: center;
  padding: 48px 28px;
  position: relative;
  transition: var(--transition);
}
.pillar:hover {
  background: var(--off-white);
}
.pillar + .pillar { border-left: 1px solid var(--border-light); }

.pillar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(107,168,160,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.pillar-icon {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 16px;
  transition: var(--transition);
}
.pillar:hover .pillar-icon { color: var(--gold); transform: scale(1.15); }

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.pillar-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.pillar-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.pillar.is-visible .pillar-line { transform: scaleX(1); }

/* ============================================================
   SECTION 7: TRUST SIGNALS
   ============================================================ */
.section-trust {
  background: var(--off-white);
  padding: var(--section-pad);
}

.trust-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.trust-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.trust-icon {
  width: 64px;
  height: 64px;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal-dark);
  margin: 0 auto 24px;
  transition: var(--transition);
}
.trust-block:hover .trust-icon {
  background: var(--teal-dark);
  color: var(--white);
}
.trust-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.trust-block p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   SECTION 8: CONTACT
   ============================================================ */
.section-contact {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details { margin: 36px 0; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.contact-item i {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item a,
.contact-item span {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s;
}
.contact-item a:hover { color: var(--gold); }

.contact-logo-wrap { margin-top: 48px; }
.contact-logo {
  height: 52px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}
.contact-logo-fallback {
  align-items: center;
  gap: 10px;
}
.contact-inf {
  font-size: 2.5rem;
  color: var(--teal);
  line-height: 1;
}
.contact-logo-text {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* Contact Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 44px 40px;
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--teal);
  text-align: center;
}

/* Contact CTA card (email link) */
.contact-cta-card {
  text-align: center;
  padding: 8px 4px;
}
.contact-cta-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 22px;
}
.contact-cta-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--white);
  margin-bottom: 14px;
}
.contact-cta-text {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 auto 30px;
  max-width: 340px;
}
.contact-cta-address {
  margin-top: 18px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #141414;
  padding: 56px 24px;
  text-align: center;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 28px;
}
.footer-nav a {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.6;
  font-style: italic;
}

.footer-copy {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-0 { transition-delay: 0.05s; }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.45s; }
.delay-5 { transition-delay: 0.55s; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px 24px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars-row { grid-template-columns: 1fr 1fr; gap: 0; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--border-light); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-graphic { display: none; }

  .partners-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .nav-link.nav-cta { text-align: center; margin-top: 8px; }

  /* Hero */
  .hero-tagline { font-size: clamp(2rem, 8vw, 3rem); }

  /* About */
  .about-cards { grid-template-columns: 1fr; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Values */
  .pillars-row { grid-template-columns: 1fr