/* ============================================================
   AURA · Fútbol Personalizado — Editorial Sport-Luxury
   ============================================================ */

:root {
  /* Palette — Profe Lucho brand: paper white, royal navy, sky blue accent */
  --ivory: #FAFBFD;
  --ivory-2: #F1F4FA;
  --ivory-3: #E5EAF3;
  --navy: #002E6C;
  --navy-2: #15387A;
  --navy-3: #2A4F95;
  --sky: #4996DE;
  --royal: #214D94;
  --sky-light: #7DB7E8;
  --line: rgba(0, 46, 108, 0.10);
  --line-strong: rgba(0, 46, 108, 0.22);
  --line-sky: rgba(73, 150, 222, 0.40);

  /* Typography */
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1340px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
  background: var(--ivory);
  font-feature-settings: "ss01", "cv01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper grain — atmosphere over flat ivory */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img, svg { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--sky); color: var(--navy); }

/* ============================================================
   Typography
   ============================================================ */

.serif { font-family: var(--display); font-style: normal; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.eyebrow .dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sky);
  margin: 0 0.6em;
  vertical-align: middle;
  transform: translateY(-2px);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--navy);
}

h1 { font-size: clamp(3rem, 7.5vw, 7rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); letter-spacing: -0.015em; line-height: 1.1; }

p { color: var(--navy-2); }

.lede {
  font-family: var(--body);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--navy-2);
  max-width: 56ch;
}

/* Numerical / metric type — editorial */
.num {
  font-family: var(--display);
  font-variation-settings: "opsz" 144;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--navy);
}

/* ============================================================
   Container
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Section number — editorial micro-detail */
.section-no {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--royal);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-no::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--sky);
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 1.05rem 1.75rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sky);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: 0;
}
.btn-primary:hover { color: var(--navy); border-color: var(--sky); }
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; transition: transform 0.4s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--navy);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--royal); border-bottom-color: var(--sky); }
.btn-ghost svg { transition: transform 0.4s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all 0.45s var(--ease);
  background: rgba(250, 248, 244, 0.0);
}
.site-header.is-scrolled {
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 144;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.brand-prefix {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.62em;
  letter-spacing: 0.02em;
  color: var(--navy-3);
  margin-right: 0.32em;
  font-variation-settings: "opsz" 9, "SOFT" 100;
  transform: translateY(-0.05em);
}
.brand-name {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.025em;
}
.brand-mark {
  color: var(--sky);
  font-style: italic;
  font-size: 0.7em;
  margin-left: 0.18em;
  transform: translateY(-0.4em);
  display: inline-block;
}
/* Footer brand can run a touch larger */
.footer-brand .brand { font-size: 2rem; color: var(--ivory); }
.footer-brand .brand-prefix { color: rgba(250, 251, 253, 0.55); }
.footer-brand .brand-name { color: var(--ivory); }

/* Header logo image — uses mix-blend-mode to remove white background of PNG */
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
  transition: height 0.4s var(--ease), opacity 0.3s var(--ease);
}
.site-header.is-scrolled .brand-logo {
  height: 46px;
}
.brand-logo-link:hover .brand-logo { opacity: 0.82; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--sky);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.7rem 1.2rem;
  background: var(--navy);
  color: var(--ivory);
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--sky); color: var(--navy); }

/* Cause/donation prominent button — sky blue with pulsing dot */
.nav-cause {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.7rem 1.1rem 0.7rem 0.9rem;
  background: var(--sky);
  color: var(--navy);
  position: relative;
  transition: all 0.3s var(--ease);
  box-shadow: 0 0 0 0 rgba(73, 150, 222, 0.55);
  animation: cause-glow 2.6s var(--ease) infinite;
  margin-right: 0.5rem;
}
.nav-cause:hover {
  background: var(--royal);
  color: var(--ivory);
  transform: translateY(-1px);
}
.nav-cause .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory);
  position: relative;
  display: inline-block;
}
.nav-cause .pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--ivory);
  animation: pulse-ring 1.8s var(--ease) infinite;
  opacity: 0.6;
}
@keyframes cause-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(73, 150, 222, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(73, 150, 222, 0); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.4); opacity: 0; }
}
@media (max-width: 960px) {
  .nav-cause { padding: 0.55rem 0.8rem; font-size: 11.5px; }
  .nav-cause .pulse-dot { width: 6px; height: 6px; }
}

.menu-toggle {
  display: none;
  background: var(--navy);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 102;
  transition: background 0.3s var(--ease);
}
.menu-toggle:hover { background: var(--royal); }
.menu-toggle .bar {
  position: absolute;
  left: 12px; right: 12px;
  height: 2px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), top 0.4s var(--ease);
}
.menu-toggle .bar-1 { top: 15px; }
.menu-toggle .bar-2 { top: 21px; }
.menu-toggle .bar-3 { top: 27px; }
body.menu-open .menu-toggle .bar-1 { top: 21px; transform: rotate(45deg); }
body.menu-open .menu-toggle .bar-2 { opacity: 0; }
body.menu-open .menu-toggle .bar-3 { top: 21px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(440px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: var(--navy);
  color: var(--ivory);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.55s var(--ease);
  padding: 6rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; }

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(73, 150, 222, 0.12), transparent 50%);
  pointer-events: none;
}
.mobile-menu > * { position: relative; }

.mobile-menu-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(250, 251, 253, 0.15);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.mobile-nav-list li { margin: 0; }
.mobile-nav-list a {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--ivory);
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(250, 251, 253, 0.10);
  transition: padding-left 0.35s var(--ease), color 0.35s var(--ease);
}
.mobile-nav-list a::before {
  content: "›";
  opacity: 0;
  margin-right: 0;
  color: var(--sky);
  transition: opacity 0.35s var(--ease), margin-right 0.35s var(--ease);
}
.mobile-nav-list a:hover,
.mobile-nav-list a[aria-current="page"] { color: var(--sky-light); padding-left: 0.4rem; }
.mobile-nav-list a:hover::before,
.mobile-nav-list a[aria-current="page"]::before { opacity: 1; margin-right: 0.6rem; }

.mobile-menu-actions {
  margin-top: auto;
  padding-top: 2rem;
  display: grid;
  gap: 0.8rem;
}
.mobile-menu-actions .m-cause,
.mobile-menu-actions .m-cta {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 1rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
}
.mobile-menu-actions .m-cause {
  background: var(--sky);
  color: var(--navy);
  position: relative;
}
.mobile-menu-actions .m-cause .pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy);
}
.mobile-menu-actions .m-cta {
  background: var(--ivory);
  color: var(--navy);
}
.mobile-menu-actions .m-cta:hover { background: var(--sky-light); }

.mobile-menu-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 251, 253, 0.15);
  display: grid;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(250, 251, 253, 0.6);
  text-transform: uppercase;
}
.mobile-menu-contact a { color: rgba(250, 251, 253, 0.8); transition: color 0.3s var(--ease); }
.mobile-menu-contact a:hover { color: var(--sky); }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 46, 108, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
  z-index: 98;
  backdrop-filter: blur(4px);
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

body.menu-open { overflow: hidden; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding-top: 12rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.hero-text { position: relative; z-index: 2; }

.hero h1 {
  margin-top: 1.4rem;
  margin-bottom: 2rem;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--navy-2);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .sky-stroke {
  position: relative;
  display: inline-block;
}
.hero h1 .sky-stroke::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.18em;
  background: var(--sky);
  opacity: 0.55;
  z-index: -1;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta div { flex: 1; }
.hero-meta .num { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.hero-meta .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-3);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* Hero image — luxury photo treatment */
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.05) saturate(1.05);
  z-index: 0;
}
/* Editorial gradient overlay — adds depth + readability for floating text */
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.10) 0%, transparent 35%, transparent 55%, rgba(10, 22, 40, 0.85) 100%);
  pointer-events: none;
}
/* Subtle sky-blue corner mark — luxe editorial framing */
.hero-image::after {
  content: "";
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 64px; height: 64px;
  z-index: 2;
  border-top: 1px solid var(--sky);
  border-right: 1px solid var(--sky);
  pointer-events: none;
  opacity: 0.85;
}
.hero-image .placeholder-tag {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--sky);
  text-transform: uppercase;
  z-index: 3;
  background: rgba(10, 22, 40, 0.55);
  padding: 0.4rem 0.7rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-image .floating-mark {
  position: absolute;
  bottom: 2rem; left: 2rem; right: 2rem;
  z-index: 3;
  color: var(--ivory);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  max-width: 70%;
  line-height: 1.4;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}
.hero-image .floating-mark .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  display: block;
  margin-bottom: 0.5rem;
}

/* Hero side ticker — vertical jersey numeral, pure decoration */
.hero-numeral {
  position: absolute;
  right: -2vw;
  top: 8rem;
  font-family: var(--display);
  font-weight: 300;
  font-variation-settings: "opsz" 144;
  font-size: clamp(14rem, 26vw, 28rem);
  line-height: 1;
  color: var(--ivory-3);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0.5;
}

/* ============================================================
   Sections — generic
   ============================================================ */

section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 6vw, 6rem);
  margin-bottom: 5rem;
  align-items: end;
}
.section-head .meta { padding-top: 0.8rem; }
.section-head h2 { max-width: 14ch; }

/* ============================================================
   Services (3-column)
   ============================================================ */

.services { background: var(--ivory); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}
.service {
  padding: 3rem 2rem 3rem 0;
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease);
}
.service:last-child { border-right: none; padding-right: 0; }
.service:not(:first-child) { padding-left: 2rem; }
.service:hover { background: var(--ivory-2); }

.service-no {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--royal);
  margin-bottom: 1.5rem;
}
.service h3 { margin-bottom: 1rem; }
.service p { font-size: 15px; line-height: 1.6; max-width: 36ch; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s var(--ease);
}
.service-link:hover { color: var(--royal); border-bottom-color: var(--sky); }
.service-link svg { transition: transform 0.3s var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

/* ============================================================
   Method (4-step)
   ============================================================ */

.method { background: var(--navy); color: var(--ivory); position: relative; overflow: hidden; }
.method h2, .method .section-no, .method .num { color: var(--ivory); }
.method .section-no::before { background: var(--sky); }
.method .section-no { color: var(--sky); }
.method p { color: rgba(250, 248, 244, 0.72); }
.method .lede { color: rgba(250, 248, 244, 0.85); }

/* Atmospheric mesh on dark */
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(73, 150, 222, 0.10), transparent 50%),
    radial-gradient(circle at 90% 100%, rgba(73, 150, 222, 0.06), transparent 60%);
  pointer-events: none;
}

.method .container { position: relative; z-index: 1; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  border-top: 1px solid rgba(250, 248, 244, 0.15);
}
.step {
  padding: 2.5rem 1.5rem 0 0;
  border-right: 1px solid rgba(250, 248, 244, 0.15);
  position: relative;
}
.step:last-child { border-right: none; padding-right: 0; }
.step:not(:first-child) { padding-left: 1.5rem; }

.step .num { font-size: clamp(3.5rem, 6vw, 5rem); color: var(--sky); margin-bottom: 1.5rem; }
.step h3 {
  color: var(--ivory);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.step p { font-size: 14px; line-height: 1.65; }

/* ============================================================
   Stats — editorial big numerals
   ============================================================ */

.stats { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--ivory-2); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.stat {
  padding: 3rem 1.5rem 1rem 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat:not(:first-child) { padding-left: 1.5rem; }

.stat .num {
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}
.stat .unit {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
}
.stat .label {
  margin-top: 1.2rem;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy-3);
  font-weight: 500;
  max-width: 22ch;
}

/* ============================================================
   For-whom (audience)
   ============================================================ */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.audience-card {
  padding: 2.5rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--sky);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.audience-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.audience-card:hover::before { transform: scaleY(1); }

.audience-card .icon {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border: 1px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--ivory);
}
.audience-card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.audience-card p { font-size: 15px; line-height: 1.6; }

/* ============================================================
   Pull quote
   ============================================================ */

.quote-section { padding: clamp(6rem, 12vw, 10rem) 0; }
.quote {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-size: 6rem;
  line-height: 0;
  color: var(--sky);
  display: block;
  margin-bottom: -1rem;
  height: 2rem;
}
.quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.quote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-3);
  font-weight: 600;
}
.quote cite .author { color: var(--navy); }

/* ============================================================
   FAQ
   ============================================================ */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--royal); }
.faq-item .toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.faq-item .toggle::before,
.faq-item .toggle::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: all 0.3s var(--ease);
}
.faq-item .toggle::before { top: 11px; left: 0; width: 24px; height: 2px; }
.faq-item .toggle::after { top: 0; left: 11px; width: 2px; height: 24px; }
.faq-item[open] .toggle::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] .toggle::before { background: var(--royal); }
.faq-item .answer { padding-top: 1rem; max-width: 64ch; color: var(--navy-2); }

/* ============================================================
   Final CTA banner
   ============================================================ */

.cta-banner {
  background: var(--navy);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(73, 150, 222, 0.18), transparent 50%);
  pointer-events: none;
}
.cta-banner .container { position: relative; }
.cta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-banner h2 { color: var(--ivory); max-width: 16ch; }
.cta-banner h2 .italic { color: var(--sky-light); font-style: italic; }
.cta-banner .btn-primary { background: var(--sky); color: var(--navy); border-color: var(--sky); }
.cta-banner .btn-primary::after { background: var(--ivory); }
.cta-banner .btn-primary:hover { color: var(--navy); border-color: var(--ivory); }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--navy);
  color: var(--ivory);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(250, 248, 244, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .brand { color: var(--ivory); font-size: 2rem; }
.footer-brand p { color: rgba(250, 248, 244, 0.6); font-size: 14px; max-width: 32ch; margin-top: 1rem; }
.footer-col h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.7rem; }
.footer-col a { color: rgba(250, 248, 244, 0.75); font-size: 14px; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--sky); }
.footer-col address { font-style: normal; color: rgba(250, 248, 244, 0.75); font-size: 14px; line-height: 1.7; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 244, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(250, 248, 244, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   Animations — page-load stagger
   ============================================================ */

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal { opacity: 0; animation: rise 0.9s var(--ease-out) forwards; }
.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.18s; }
.delay-3 { animation-delay: 0.32s; }
.delay-4 { animation-delay: 0.46s; }
.delay-5 { animation-delay: 0.6s; }
.delay-6 { animation-delay: 0.74s; }

.fade-in { opacity: 0; animation: fadeIn 1.4s var(--ease-out) 0.5s forwards; }

/* Reveal-on-scroll wrapper */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 960px) {
  .hero { padding-top: 9rem; padding-bottom: 4rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-numeral { display: none; }
  .hero-image { aspect-ratio: 4 / 3; }

  .section-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: none; border-bottom: 1px solid var(--line); padding: 2.5rem 0; }
  .service:not(:first-child) { padding-left: 0; }
  .service:last-child { border-bottom: none; }

  .steps { grid-template-columns: 1fr 1fr; }
  .step { padding: 2rem 1rem 0 0; }
  .step:nth-child(2n) { border-right: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 2rem 1rem 0 0; }
  .stat:nth-child(2n) { border-right: none; }

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

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

  .cta-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .nav-links,
  .nav-cta,
  .nav-cause { display: none; }
  .menu-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .hero-meta { flex-wrap: wrap; gap: 1.5rem; }
  .hero-meta div { flex: 1 1 45%; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 2rem 0; }
  .stat:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(250, 248, 244, 0.15); padding: 1.8rem 0; }
  .step:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal, .reveal { opacity: 1; transform: none; }
}
