/* ================================================================
   FAHMID NURSERY & PRIMARY SCHOOL — DESIGN SYSTEM v3.0
   Architecture: Mobile-first, token-driven, editorial aesthetic
   Typefaces: DM Serif Display + DM Sans
   ================================================================ */

/* ----------------------------------------------------------------
   GOOGLE FONTS IMPORT
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  /* --- Color: Ink Scale --- */
  --ink-900:   #0D0F14;
  --ink-800:   #1C1F2A;
  --ink-700:   #2E3347;
  --ink-600:   #4B5268;
  --ink-500:   #6B7490;
  --ink-400:   #9299AD;
  --ink-300:   #B8BCC9;
  --ink-200:   #D8DAE4;
  --ink-100:   #EDEEF3;
  --ink-50:    #F6F7FA;

  /* --- Color: Surface --- */
  --surface:        #FFFFFF;
  --surface-warm:   #FAFAF8;
  --surface-alt:    #F3F4F8;
  --surface-border: #E2E4EC;

  /* --- Color: Accent (Deep Navy) --- */
  --accent:         #1B3A7A;
  --accent-mid:     #2451A8;
  --accent-light:   #3A68C8;
  --accent-pale:    #EAF0FD;
  --accent-hover:   #132C60;

  /* --- Color: Gold (Selective Use) --- */
  --gold:           #C89F4D;
  --gold-light:     #F5E9CC;
  --gold-dark:      #9E7A2E;

  /* --- Color: Semantic --- */
  --green:          #0E7A4F;
  --green-pale:     #E6F6EE;
  --red:            #B91C1C;
  --red-pale:       #FEF2F2;
  --amber:          #B45309;
  --amber-pale:     #FEF3C7;

  /* --- Typography --- */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* --- Type Scale --- */
  --text-xs:    0.6875rem;  /* 11px */
  --text-sm:    0.8125rem;  /* 13px */
  --text-base:  1rem;       /* 16px */
  --text-md:    1.0625rem;  /* 17px */
  --text-lg:    1.1875rem;  /* 19px */
  --text-xl:    1.375rem;   /* 22px */
  --text-2xl:   1.625rem;   /* 26px */
  --text-3xl:   2rem;       /* 32px */
  --text-4xl:   2.5rem;     /* 40px */
  --text-5xl:   3.25rem;    /* 52px */
  --text-6xl:   4.25rem;    /* 68px */
  --text-display: clamp(3rem, 7vw, 5.5rem);

  /* --- Font Weights --- */
  --w-light:    300;
  --w-regular:  400;
  --w-medium:   500;
  --w-semibold: 600;
  --w-bold:     700;

  /* --- Spacing (8pt grid) --- */
  --s-1:   0.25rem;   /*  4px */
  --s-2:   0.5rem;    /*  8px */
  --s-3:   0.75rem;   /* 12px */
  --s-4:   1rem;      /* 16px */
  --s-5:   1.25rem;   /* 20px */
  --s-6:   1.5rem;    /* 24px */
  --s-8:   2rem;      /* 32px */
  --s-10:  2.5rem;    /* 40px */
  --s-12:  3rem;      /* 48px */
  --s-16:  4rem;      /* 64px */
  --s-20:  5rem;      /* 80px */
  --s-24:  6rem;      /* 96px */
  --s-32:  8rem;      /* 128px */

  /* --- Borders --- */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-pill: 9999px;

  /* --- Shadows --- */
  --shadow-xs:  0 1px 2px rgba(13, 15, 20, 0.04);
  --shadow-sm:  0 2px 6px rgba(13, 15, 20, 0.06), 0 1px 2px rgba(13, 15, 20, 0.04);
  --shadow-md:  0 4px 16px rgba(13, 15, 20, 0.08), 0 2px 4px rgba(13, 15, 20, 0.04);
  --shadow-lg:  0 8px 32px rgba(13, 15, 20, 0.10), 0 2px 8px rgba(13, 15, 20, 0.06);
  --shadow-xl:  0 16px 48px rgba(13, 15, 20, 0.12), 0 4px 12px rgba(13, 15, 20, 0.06);
  --shadow-focus: 0 0 0 3px rgba(36, 81, 168, 0.3);

  /* --- Transitions --- */
  --ease-out:    cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   150ms;
  --t-base:   250ms;
  --t-slow:   400ms;

  /* --- Layout --- */
  --max-width:    1260px;
  --content-width: 760px;
  --nav-height:    72px;

  /* --- Z-index --- */
  --z-base:     1;
  --z-above:    10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  500;
  --z-nav:      700;
  --z-modal:    900;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--w-regular);
  line-height: 1.7;
  color: var(--ink-800);
  background: var(--surface);
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font: inherit;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--w-regular);
  line-height: 1.2;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

p { max-width: 72ch; }
p:not(:last-child) { margin-bottom: 1em; }

/* ----------------------------------------------------------------
   ACCESSIBILITY
   ---------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--s-4);
  z-index: 99999;
  padding: var(--s-3) var(--s-6);
  background: var(--ink-900);
  color: var(--surface);
  border-radius: var(--radius-md);
  font-weight: var(--w-semibold);
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: var(--s-4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ----------------------------------------------------------------
   LAYOUT PRIMITIVES
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

@media (min-width: 640px) {
  .container { padding-inline: var(--s-8); }
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--s-12); }
}

.section {
  padding-block: var(--s-20);
}

.section--compact {
  padding-block: var(--s-12);
}

.section--large {
  padding-block: var(--s-32);
}

.section--alt {
  background: var(--surface-warm);
}

.section--dark {
  background: var(--ink-900);
  color: var(--ink-100);
}

.section--accent {
  background: var(--accent);
  color: white;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-3);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--ink-900);
  margin-bottom: var(--s-4);
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--ink-600);
  font-weight: var(--w-regular);
  line-height: 1.7;
  max-width: 60ch;
}

.section-header {
  margin-bottom: var(--s-12);
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-lead {
  margin-inline: auto;
}

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out);
}

.site-nav.scrolled {
  border-bottom-color: var(--surface-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--pp-r-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--ink-900);
  white-space: nowrap;
}

.nav-logo-tagline {
  font-size: var(--text-xs);
  color: var(--ink-500);
  font-weight: var(--w-medium);
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: none;
}

@media (min-width: 640px) {
  .nav-logo-name {
    font-size: var(--text-lg); /* ← restore original size on larger screens */
  }
  .nav-logo-tagline {
    display: block; /* ← bring it back on larger screens */
  }
}

/* Nav links (desktop) */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-1);
  list-style: none;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  display: block;
  padding: var(--s-2) var(--s-4);
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--ink-700);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

.nav-links a[aria-current="page"] {
  color: var(--accent);
  font-weight: var(--w-semibold);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-shrink: 0;
}

.nav-portal-link {
  display: none;
  font-size: var(--text-sm);
  font-weight: var(--w-medium);
  color: var(--ink-600);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-md);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav-portal-link:hover {
  color: var(--accent);
  background: var(--accent-pale);
}

@media (min-width: 768px) {
  .nav-portal-link { display: block; }
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
}

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

.nav-toggle:hover {
  background: var(--ink-50);
  border-color: var(--ink-300);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-800);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease-in-out),
              opacity var(--t-base) var(--ease-in-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(13, 15, 20, 0.5);
  z-index: calc(var(--z-nav) - 1);
  backdrop-filter: blur(4px);
}

.nav-mobile-overlay.open {
  display: block;
}

.nav-mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--surface-border);
  z-index: var(--z-nav);
  padding: var(--s-3);                      /* was var(--s-4) */
  display: flex;
  flex-direction: column;
  gap: 2px;                                 /* was var(--s-1) = 4px */
  transform: translateY(-100%);
  opacity: 0;
  transition: transform var(--t-slow) var(--ease-in-out),
              opacity var(--t-slow) var(--ease-in-out);
  pointer-events: none;
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
}

.nav-mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-menu a {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 10px var(--s-3);                /* was var(--s-4) var(--s-4) = 16px */
  font-size: 0.9375rem;                    /* was var(--text-md) = 1.0625rem */
  font-weight: var(--w-medium);
  color: var(--ink-800);
  border-radius: var(--radius-lg);
  transition: background var(--t-fast);
}

.nav-mobile-menu a svg,
.nav-mobile-menu a [data-lucide] {
  width: 17px !important;                  /* was 18px */
  height: 17px !important;
  opacity: 0.75;
}

.nav-mobile-menu a:hover,
.nav-mobile-menu a[aria-current="page"] {
  background: var(--accent-pale);
  color: var(--accent);
}

.nav-mobile-divider {
  height: 1px;
  background: var(--surface-border);
  margin: var(--s-2) 0;
}

.nav-mobile-cta {
  margin-top: var(--s-2);
  padding-bottom: var(--s-2);
}

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  line-height: 1;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  box-shadow: var(--shadow-focus);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary */
.btn-primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover {
  background: var(--accent-pale);
  transform: translateY(-1px);
}
.btn-secondary:active {
  transform: translateY(0);
}

/* Ghost (for dark backgrounds) */
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* Small */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--text-xs);
}

/* Large */
.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--text-base);
}

/* Gold accent button */
.btn-gold {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   CARDS
   ---------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: var(--ink-200);
}

.card-body {
  padding: var(--s-6);
}

@media (min-width: 768px) {
  .card-body { padding: var(--s-8); }
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--surface-alt);
}

.card-meta {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: var(--s-3);
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--ink-900);
  margin-bottom: var(--s-3);
  line-height: 1.25;
}

.card-text {
  font-size: var(--text-base);
  color: var(--ink-600);
  line-height: 1.7;
}

/* Feature items — editorial list style, no cards */
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: var(--s-5);
  padding-block: var(--s-6);
  border-bottom: 1px solid var(--surface-border);
  transition: none;
}

/* Remove the bottom border from every 3rd item (right column) on desktop,
   and from the last row entirely */
.grid-3 .feature-card:nth-child(3n) {
  border-bottom: 1px solid var(--surface-border);
}

.grid-3 .feature-card:nth-last-child(-n+3) {
  border-bottom: none;
}

/* On mobile, only last item loses border */
@media (max-width: 767px) {
  .grid-3 .feature-card:nth-child(3n) {
    border-bottom: 1px solid var(--surface-border);
  }
  .grid-3 .feature-card:last-child {
    border-bottom: none;
  }
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
  transition: background var(--t-base);
}

.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--accent);
  color: white;
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--s-2);
  color: var(--ink-900);
  line-height: 1.3;
}

.feature-card p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.7;
  max-width: 42ch;
}

/* Stat card */
.stat-card {
  padding: var(--s-8);
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-5xl));
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: var(--s-2);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--ink-500);
  font-weight: var(--w-medium);
}

/* ----------------------------------------------------------------
   HERO — HOMEPAGE
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  background: var(--ink-900);
  z-index: var(--z-base);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 15, 20, 0.82) 0%,
    rgba(13, 15, 20, 0.60) 45%,
    rgba(13, 15, 20, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--s-24);
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(200, 159, 77, 0.08);        /* much more subtle */
  border: 1px solid rgba(200, 159, 77, 0.22);  /* softer edge */
  border-radius: var(--radius-pill);
  font-size: 0.625rem;                         /* 10px — one step smaller */
  font-weight: var(--w-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-5);                   /* slightly tighter gap below */
}
.hero-eyebrow svg {
  width: 10px;
  height: 10px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-display);
  color: white;
  line-height: 1.15;
  margin-bottom: var(--s-6);
  letter-spacing: -0.02em;
  /* Allow the h1 to take full available width */
  max-width: 100%;
}

/* Line 1: "Where Every Child" — shows immediately */
.hero h1 .hero-line-1 {
  display: block;
}

/* Line 2: "Discovers Their Best" — typed in */
.hero h1 .hero-line-2 {
  display: block;
  font-style: italic;
  color: white;
  clip-path: inset(0 100% 0 0);
  animation: hero-reveal 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

/* Optional: cursor effect on line 2 via a pseudo-element */
.hero h1 .hero-line-2::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: middle;
  border-radius: 1px;
  animation:
    hero-cursor-blink 0.65s step-end 0.8s 8,
    hero-cursor-hide 0s 6.2s forwards;
}

@keyframes hero-reveal {
  to { clip-path: inset(0 0% 0 0); }
}

@keyframes hero-cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes hero-cursor-hide {
  to { opacity: 0; }
}

/* The italic/typed portion — add class="typed-word" to the <em> tag */
.hero h1 .typed-word {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  vertical-align: bottom;
  animation:
    hero-type 1.3s steps(20, end) 0.5s forwards,
    hero-cursor 0.65s step-end 8;
  border-right: 3px solid var(--gold);
}

.hero h1 .typed-word.type-done {
  border-color: transparent;
}

@keyframes hero-type {
  to { width: 100%; }
}
@keyframes hero-cursor {
  50% { border-color: transparent; }
}

.hero-lead {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: var(--s-10);
  font-weight: var(--w-light);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--s-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  font-weight: var(--w-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  padding-top: var(--nav-height);
  background: var(--ink-900);
  overflow: hidden;
}

.page-hero-inner {
  padding-block: var(--s-20) var(--s-16);
  position: relative;
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: white;
  margin-bottom: var(--s-4);
}

.page-hero-lead {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  font-weight: var(--w-light);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: var(--w-medium);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: rgba(255,255,255,0.9);
}

.breadcrumb-sep {
  opacity: 0.4;
  font-size: 10px;
}

/* ----------------------------------------------------------------
   TRUST BAR
   ---------------------------------------------------------------- */
.trust-bar {
  background: var(--accent);
  padding-block: var(--s-8);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}

@media (min-width: 768px) {
  .trust-bar-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: white;
  display: block;
  line-height: 1;
  margin-bottom: var(--s-1);
}

.trust-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.72);
  font-weight: var(--w-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   GRIDS
   ---------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ----------------------------------------------------------------
   PROGRAM CARDS (HOMEPAGE)
   ---------------------------------------------------------------- */
.program-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}

@media (min-width: 768px) {
  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

.program-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.program-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.program-card:hover .program-card-bg img {
  transform: scale(1.04);
}

.program-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,15,20,0.88) 0%,
    rgba(13,15,20,0.20) 60%,
    transparent 100%
  );
}

.program-card-content {
  position: relative;
  z-index: 1;
  padding: var(--s-8);
}

.program-card-age {
  display: inline-block;
  padding: var(--s-1) var(--s-3);
  background: var(--gold);
  color: white;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.program-card-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: white;
  line-height: 1.2;
  margin-bottom: var(--s-3);
}

.program-card-desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: var(--s-5);
}

.program-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--gold);
  transition: gap var(--t-fast);
}

.program-card-link:hover {
  gap: var(--s-3);
}

.program-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

.program-card:hover .program-card-link svg {
  transform: translateX(3px);
}

/* ================================================================
   TESTIMONIAL MARQUEE 
   ================================================================ */

/* Outer viewport */
.testimonials-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 4%,
    black 96%,
    transparent 100%
  );
}

.testimonials-track {
  display: flex;
  align-items: flex-start;
  gap: var(--s-6);
  width: max-content;
  will-change: transform;
  transform: translateZ(0);
  animation: marquee-scroll var(--marquee-duration, 44s) linear infinite;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--set-width, 2000px))); }
}

.testimonial-card {
  flex: 0 0 360px;
  padding: var(--s-8);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  transition: box-shadow var(--t-base) var(--ease-out),
              transform var(--t-base) var(--ease-out);
  min-width: 0;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  fill: var(--gold);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--ink-800);
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--ink-900);
}

.testimonial-role {
  font-size: var(--text-xs);
  color: var(--ink-500);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }
  .testimonial-card-clone { display: none; }
  .testimonials-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ----------------------------------------------------------------
   NEWS — Editorial list layout, no cards
   ---------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--surface-border);
}

@media (min-width: 1024px) {
  /* Lead story left, two secondary stacked right */
  .news-grid {
    grid-template-columns: 1fr 1fr;
    border-top: none;
    gap: var(--s-10);
    align-items: start;
  }
}

/* First news item is the lead — larger treatment */
.news-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-block: var(--s-6);
  border-bottom: 1px solid var(--surface-border);
  background: none;
  border-radius: 0;
  transition: none;
}

@media (min-width: 640px) and (max-width: 1023px) {
  .news-card {
    grid-template-columns: 220px 1fr;
    gap: var(--s-6);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .news-card {
    border-bottom: none;
    padding-block: 0;
  }

  /* Lead item: first child spans full height, image on top */
  .news-card:first-child {
    grid-row: span 2;
    border-right: 1px solid var(--surface-border);
    padding-right: var(--s-10);
  }

  /* Secondary items: right column, stack with divider */
  .news-card:not(:first-child) {
    grid-template-columns: 120px 1fr;
    gap: var(--s-5);
    align-items: start;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: var(--s-6);
  }

  .news-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
    padding-top: var(--s-6);
    border-top: 1px solid var(--surface-border);
  }
}

/* Image wrapper */
.news-card-image {
  overflow: hidden;
  background: var(--surface-alt);
  border-radius: var(--radius-md);
  margin-bottom: var(--s-4);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease-out);
}

.news-card:hover .news-card-image img {
  transform: scale(1.03);
}

/* Lead image: taller aspect ratio */
.news-card:first-child .news-card-image {
  aspect-ratio: 3 / 2;
  margin-bottom: var(--s-5);
}

/* Secondary images: compact square */
.news-card:not(:first-child) .news-card-image {
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  flex-shrink: 0;
}

@media (max-width: 639px) {
  .news-card:not(:first-child) .news-card-image {
    aspect-ratio: 16 / 9;
    margin-bottom: var(--s-3);
  }
}

/* Body */
.news-card-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  flex: 1;
}

.news-card-date {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
}

/* Lead title: larger */
.news-card:first-child .news-card-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 2.5vw, var(--text-3xl));
  color: var(--ink-900);
  line-height: 1.25;
  margin-bottom: var(--s-3);
}

/* Secondary title: tighter */
.news-card:not(:first-child) .news-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--ink-900);
  line-height: 1.3;
  margin-bottom: var(--s-2);
}

.news-card-excerpt {
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.65;
  margin-bottom: var(--s-4);
}

/* Hide excerpt on secondary items at desktop to keep things tight */
@media (min-width: 1024px) {
  .news-card:not(:first-child) .news-card-excerpt {
    display: none;
  }
}

.news-card-link {
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  transition: gap var(--t-fast);
  margin-top: auto;
}

.news-card-link:hover { gap: var(--s-2); }

.news-card-link svg {
  width: 14px;
  height: 14px;
}

/* ----------------------------------------------------------------
   GALLERY
   ---------------------------------------------------------------- */
.gallery-grid-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}

@media (min-width: 640px) {
  .gallery-grid-home {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid-home {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-grid-home .gallery-item--featured {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  cursor: pointer;
}

.gallery-item::before {
  content: '';
  display: block;
  padding-bottom: 66.66%;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,15,20,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
  color: white;
}

/* Full gallery page */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}

@media (min-width: 640px) {
  .gallery-full-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-full-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,15,20,0.96);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--s-8);
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--s-6);
  right: var(--s-6);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast);
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-close svg { width: 20px; height: 20px; }

/* ----------------------------------------------------------------
   ADMISSIONS — STEPS
   ---------------------------------------------------------------- */
.steps-list {
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

@media (min-width: 768px) {
  .steps-list {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step-item {
  flex: 1;
  position: relative;
  padding-left: var(--s-16);
}

@media (min-width: 768px) {
  .step-item {
    padding-left: 0;
    padding-top: var(--s-16);
  }
}

.step-number {
  counter-increment: steps;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .step-number { top: 0; left: 50%; transform: translateX(-50%); }
}

.step-connector {
  display: none;
}

@media (min-width: 768px) {
  .step-item:not(:last-child) .step-connector {
    display: block;
    position: absolute;
    top: 24px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: var(--surface-border);
  }
  .step-item .step-content { text-align: center; }
}

.step-content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--s-2);
  color: var(--ink-900);
}

.step-content p {
  font-size: var(--text-sm);
  color: var(--ink-600);
  max-width: 24ch;
}

@media (max-width: 767px) {
  .step-content p { max-width: 100%; }
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--surface-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5) var(--s-6);
  background: var(--surface);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--w-semibold);
  color: var(--ink-900);
  transition: background var(--t-fast);
}

.faq-question:hover {
  background: var(--surface-warm);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--ink-500);
  transition: transform var(--t-base) var(--ease-in-out);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-in-out);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--s-6) var(--s-5);
  font-size: var(--text-sm);
  color: var(--ink-600);
  line-height: 1.7;
}

/* ----------------------------------------------------------------
   CONTACT FORM
   ---------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--s-5);
}

label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--w-semibold);
  color: var(--ink-800);
  margin-bottom: var(--s-2);
}

.required { color: var(--red); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.75rem var(--s-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-900);
  background: var(--surface);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: var(--ink-400);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(58, 104, 200, 0.12);
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select { cursor: pointer; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: repeat(2, 1fr); }
}

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.cta-banner::after {
  content: '';
  position: absolute;
  left: -40px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-6);
  padding-block: var(--s-20);
}

@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
}

.cta-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  color: white;
  margin-bottom: var(--s-2);
}

.cta-banner-text p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   INFO GRID (Contact page side)
   ---------------------------------------------------------------- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-label {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
  margin-bottom: var(--s-1);
}

.contact-info-value {
  font-size: var(--text-base);
  color: var(--ink-800);
  font-weight: var(--w-medium);
}

.contact-info-value a {
  transition: color var(--t-fast);
}

.contact-info-value a:hover {
  color: var(--accent);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--ink-900);
  color: var(--ink-300);
  padding-top: var(--s-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: white;
  margin-bottom: var(--s-3);
}

.footer-brand-desc {
  font-size: var(--text-sm);
  color: var(--ink-400);
  line-height: 1.7;
  max-width: 32ch;
  margin-bottom: var(--s-5);
}

.footer-social {
  display: flex;
  gap: var(--s-3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-400);
  transition: all var(--t-fast);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer-links-list a {
  font-size: var(--text-sm);
  color: var(--ink-400);
  transition: color var(--t-fast);
}

.footer-links-list a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--ink-400);
  margin-bottom: var(--s-3);
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--ink-500);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  padding-block: var(--s-6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--ink-600);
}

/* ----------------------------------------------------------------
   TOAST NOTIFICATIONS (preserved utility)
   ---------------------------------------------------------------- */
#toast-container {
  position: fixed;
  top: calc(var(--nav-height) + var(--s-4));
  right: var(--s-5);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  pointer-events: none;
  max-width: 380px;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  font-size: var(--text-sm);
  color: var(--ink-800);
  transform: translateX(calc(100% + 20px));
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(calc(100% + 20px));
  opacity: 0;
}

.toast-success { border-left: 3px solid var(--green); }
.toast-danger  { border-left: 3px solid var(--red); }
.toast-warning { border-left: 3px solid var(--amber); }
.toast-info    { border-left: 3px solid var(--accent-light); }

/* ----------------------------------------------------------------
   UTILITY BADGES / TAGS
   ---------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: var(--w-semibold);
  letter-spacing: 0.04em;
}

.badge-blue   { background: var(--accent-pale); color: var(--accent); }
.badge-gold   { background: var(--gold-light);  color: var(--gold-dark); }
.badge-green  { background: var(--green-pale);  color: var(--green); }
.badge-gray   { background: var(--ink-100);     color: var(--ink-600); }

/* ----------------------------------------------------------------
   MAP EMBED
   ---------------------------------------------------------------- */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  aspect-ratio: 16 / 9;
  background: var(--surface-alt);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----------------------------------------------------------------
   DIVIDERS
   ---------------------------------------------------------------- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: var(--radius-pill);
  margin-bottom: var(--s-5);
}

.divider--center { margin-inline: auto; }

/* ----------------------------------------------------------------
   SCROLL ANIMATIONS
   ---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out),
              transform 0.6s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ----------------------------------------------------------------
   INLINE ICON UTILITY
   ---------------------------------------------------------------- */
[data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   PRINT
   ---------------------------------------------------------------- */
@media print {
  .site-nav,
  .nav-mobile-menu,
  .nav-mobile-overlay,
  .site-footer,
  #toast-container,
  .cta-banner,
  .hero-scroll-indicator {
    display: none !important;
  }

  body {
    font-size: 11pt;
    color: black;
  }

  .page-hero {
    padding-top: 0;
    background: white !important;
  }

  .page-hero h1 { color: black; }
}

/* ----------------------------------------------------------------
   RESPONSIVE TYPOGRAPHY ADJUSTMENTS
   ---------------------------------------------------------------- */
@media (max-width: 640px) {
  .hero-lead { font-size: var(--text-base); }
  .trust-number { font-size: var(--text-3xl); }
  .section { padding-block: var(--s-16); }
}

/* ----------------------------------------------------------------
   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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
