/* ============================================================
   ANDARAYA GROUP — DESIGN SYSTEM v2
   Direction: fluid, dynamic, fresher — the register/ledger content
   model stays (it's the real differentiator: a group of licensed
   entities), but the execution now leans toward the energy of a
   modern travel/CRM platform: rounded surfaces, a bright secondary
   accent, fluid type/spacing, and motion that responds to scroll
   and interaction rather than sitting static.
   ============================================================ */

/* ---------- Tokens ---------- */
/* Palette sampled directly from the Andaraya logo (navy oval, four
   worker figures in silver, leaf-green, gold and white). Gold is the
   one interactive/action accent (buttons, links, focus states) — it's
   the most vivid of the logo colors and reads clearly as "do this."
   Silver and leaf-green are NOT used as a second interactive accent
   (two competing accents is how the site ended up cycling through
   teal, then plain green); instead they rotate alongside gold across
   multi-item rows — stat cards, feature icons, ledger rows — the way
   Monday.com cycles a small fixed set of brand colors across icons
   rather than tinting the whole UI one color.
   --green / --green-bright stay separate and are reserved strictly
   for status/live indicators, so "is-active" never gets confused with
   a decorative brand color. */
:root {
  /* Navy — sampled from logo fill/outline/text (#2A397E) */
  --navy:         #2A397E;
  --navy-deep:    #10173F;
  --navy-mid:     #3D4FA6;

  /* Status green — functional only, not a brand accent */
  --green:        #4CAF50;
  --green-bright: #56C75A;

  /* Gold — sampled from logo's yellow figure, the single action accent */
  --gold:         #F2C94C;
  --gold-deep:    #A67C22;
  --gold-soft:    #FDF3D9;
  --gold-bright:  #F4E92D;

  /* Silver — sampled from logo's blue-grey figure, rotation accent only */
  --silver:       #AAB2D4;
  --silver-deep:  #6E7BA8;
  --silver-soft:  #EEF0F8;

  /* Leaf — sampled from logo's green figure, rotation accent only */
  --leaf:         #A0C73E;
  --leaf-deep:    #6B8F26;
  --leaf-soft:    #EFF7DF;

  --grad-gold:   linear-gradient(135deg, #F9E27A 0%, #F2C94C 55%, #A67C22 100%);
  --grad-navy:   linear-gradient(135deg, #3D4FA6 0%, #2A397E 55%, #10173F 100%);
  --grad-silver: linear-gradient(135deg, #C7CEE6 0%, #AAB2D4 55%, #6E7BA8 100%);
  --grad-leaf:   linear-gradient(135deg, #C3E086 0%, #A0C73E 55%, #6B8F26 100%);
  --grad-mesh:
      radial-gradient(circle at 15% 20%, rgba(160,199,62,0.16), transparent 42%),
      radial-gradient(circle at 85% 0%, rgba(242,201,76,0.16), transparent 40%),
      radial-gradient(circle at 55% 100%, rgba(61,79,166,0.32), transparent 55%);

  /* Neutrals */
  --paper:      #F7F8FA;
  --paper-dim:  #EEF1F4;
  --ink:        #101826;
  --steel:      #56677D;
  --steel-dim:  #8B97A6;
  --line:       rgba(16,35,58,0.10);
  --line-light: rgba(245,242,234,0.14);

  /* Type — bold geometric sans instead of serif/italic accents */
  --font-display: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Fluid layout */
  --container: 1280px;
  --section-pad: clamp(56px, 9vw, 116px);
  --gutter: clamp(20px, 4.5vw, 32px);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  font-size: clamp(15px, 0.95vw + 10px, 16.5px);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
[id] { scroll-margin-top: 92px; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-deep);
  padding: 10px 16px; z-index: 999; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; top: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ---------- Scroll reveal (single, consistent motion language) ----------
   Elements marked [data-reveal] rise + fade in once, on entry. Staggered
   via [data-reveal-group] children using a CSS custom property for delay,
   set inline per-item so the timing reads as one orchestrated sequence
   rather than scattered per-section triggers. */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Eyebrow / section furniture ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--gold-deep);
  margin: 0 0 14px;
  background: var(--gold-soft);
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex: none; }
.eyebrow-on-dark { color: var(--gold); background: rgba(242,201,76,0.18); }
.eyebrow-on-dark::before { background: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2, .biz-section h2, .stats-section h2, .leadership-section h2, .about-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--navy);
}
.section-lede { margin-top: 16px; color: var(--steel); font-size: clamp(15px, 1vw + 10px, 17px); max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  padding: clamp(12px, 1vw, 15px) clamp(20px, 2.4vw, 28px);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.btn i { font-size: 13px; transition: transform 0.25s var(--ease); }
.btn:hover { transform: translateY(-2px) scale(1.015); }
.btn:hover i.fa-arrow-right { transform: translateX(3px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ripple */
.btn .ripple {
  position: absolute; border-radius: 50%; background: rgba(255,255,255,0.55);
  transform: scale(0); animation: rippleAnim 0.6s ease-out forwards; pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(2.6); opacity: 0; } }

.btn-primary { background: var(--grad-gold); color: var(--navy-deep); box-shadow: 0 10px 24px -8px rgba(201,151,43,0.45); }
.btn-primary:hover { box-shadow: 0 14px 30px -8px rgba(201,151,43,0.55); }
.btn-primary .ripple { background: rgba(7,15,28,0.18); }

.btn-ghost-light { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.28); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost-navy { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost-navy:hover { border-color: var(--navy); }

.btn-whatsapp { background: #1FAE53; color: #fff; }
.btn-whatsapp:hover { background: #189244; }

p + .btn {
  margin-top: 20px; /* adjust spacing */
}
/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,15,28,0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-light);
  transition: box-shadow 0.3s var(--ease);
}
.header-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: auto; display: block; flex: none;
  object-fit: contain;
}
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; }
.brand-text em { font-style: normal; font-weight: 400; color: var(--gold); margin-left: 4px; }

.main-nav { display: flex; }
.nav-list { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,0.75); font-size: 14.5px; font-weight: 600; font-family: inherit;
  background: none; border: none; padding: 0; cursor: pointer;
  transition: color 0.2s; position: relative;
}
.nav-link:hover { color: #fff; }
.nav-trigger[aria-expanded="true"] { color: #fff; }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -24px; height: 2px; border-radius: 2px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s var(--ease-spring);
}
.nav-link:hover::after, .nav-item.is-open > .nav-link::after { transform: scaleX(1); }
.nav-chevron { font-size: 9px; transition: transform 0.25s var(--ease); }
.nav-trigger[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  min-width: 230px; box-shadow: 0 24px 48px -14px rgba(7,15,28,0.4);
  flex-direction: column; padding: 8px; z-index: 50;
}
.nav-item:hover > .nav-dropdown,
.nav-item.is-open > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  display: flex;
  pointer-events: auto;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px; /* overlap the gap */
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown a {
  padding: 11px 14px; border-radius: 10px; color: var(--navy); font-size: 14px; font-weight: 600;
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}
.nav-dropdown a:hover { background: var(--gold-soft); color: var(--gold-deep); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-whatsapp { padding: 10px 12px; font-size: 17px; border-radius: 50%; }
.header-whatsapp i { font-size: 17px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: 1px solid var(--line-light); border-radius: 50%; cursor: pointer;
}
.nav-toggle span { width: 16px; height: 2px; background: #fff; margin: 0 auto; border-radius: 2px; transition: all 0.25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--grad-navy);
  overflow: hidden;
  padding: clamp(56px, 9vw, 100px) 0 clamp(40px, 6vw, 64px);
}
.hero-blueprint {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at 30% 30%, black 0%, transparent 72%);
}
.hero-glow { position: absolute; inset: 0; background: var(--grad-mesh); pointer-events: none; }

/* ---------- Hero background photo ----------
   .hero-photo carries a per-page background-image (set inline via
   style="background-image:url(...)") and sits behind everything else;
   .hero-scrim is a navy gradient over it so hero text stays readable.
   If a page-hero has no photo, the section's own --grad-navy background
   shows through unchanged — this never depends on the image loading. */
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(16,23,63,0.96) 0%, rgba(16,23,63,0.9) 38%, rgba(42,57,126,0.68) 70%, rgba(42,57,126,0.42) 100%);
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; pointer-events: none; }
.blob-teal { width: 420px; height: 420px; background: var(--gold); top: -120px; right: 8%; animation: floatBlob 14s ease-in-out infinite; }
.blob-gold { width: 320px; height: 320px; background: var(--gold); bottom: -140px; left: 4%; opacity: 0.28; animation: floatBlob 18s ease-in-out infinite reverse; }
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-24px, 30px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .blob { animation: none; } }

.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}

.hero-kicker {
  font-size: 13px; font-weight: 700; color: var(--gold);
  padding: 8px 16px; margin-bottom: 22px; border: 1px solid rgba(242,201,76,0.35);
  background: rgba(242,201,76,0.12); border-radius: var(--radius-pill); display: inline-block;
}
.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(34px, 5.2vw, 60px);
  color: var(--paper); letter-spacing: -0.025em;text-transform: uppercase;
}

.hero-title .accent  {
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .outline { -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.28); color: transparent; }
.hero-subtitle {
  margin-top: clamp(18px, 2vw, 26px); max-width: 46ch; font-size: clamp(15px, 1vw + 10px, 17px); color: rgba(255,255,255,0.68);
}
.hero-ctas { display: flex; gap: 14px; margin-top: clamp(24px, 3vw, 34px); flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(18px, 3vw, 36px); margin: clamp(36px, 5vw, 56px) 0 0; padding-top: 26px; border-top: 1px solid var(--line-light); }
.hero-stats dt { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); color: #fff; font-weight: 700; }
.hero-stats dt span { color: var(--gold); }
.hero-stats dd { margin: 4px 0 0; font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* Ledger — the register preview in the hero, now a rounded floating card */
.ledger {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.ledger-head {
  display: flex; justify-content: space-between;
  padding: 16px 22px; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--steel-dim); border-bottom: 1px solid var(--line-light);
}
.ledger-row {
  display: grid; grid-template-columns: 40px 1fr auto 18px; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--line-light);
  transition: background 0.25s var(--ease);
}
.ledger-row:last-child { border-bottom: none; }
.ledger-row:hover { background: rgba(242,201,76,0.12); }
.ledger-icon {
  width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(242,201,76,0.2); color: var(--gold); font-size: 13px;
  transition: transform 0.3s var(--ease-spring);
}
/* Rotate the logo's three accent colors across ledger rows — echoes the
   four-figure logo instead of tinting every row the same single accent. */
.ledger-row:nth-child(3) .ledger-icon { background: rgba(160,199,62,0.2); color: var(--leaf); }
.ledger-row:nth-child(4) .ledger-icon { background: rgba(170,178,212,0.25); color: var(--silver); }
.ledger-row.is-featured .ledger-icon { background: rgba(244,233,45,0.22); color: var(--gold-bright); }
.ledger-row:hover .ledger-icon { transform: rotate(-8deg) scale(1.08); }
.ledger-name { color: #fff; font-size: 14.5px; font-weight: 600; }
.ledger-tag { font-size: 12px; color: var(--steel-dim); white-space: nowrap; }
.ledger-arrow { color: var(--steel-dim); font-size: 12px; opacity: 0; transform: translateX(-4px); transition: all 0.25s var(--ease); }
.ledger-row:hover .ledger-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }

.scroll-hint {
  position: relative; z-index: 1; max-width: var(--container); margin: clamp(32px, 5vw, 56px) auto 0; padding: 0 var(--gutter);
  display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.04em;
}
.scroll-line { width: 64px; height: 1px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: 0; left: -30%; width: 30%; height: 100%; background: var(--gold);
  animation: scrollLine 2.6s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -30%; } 50% { left: 100%; } 100% { left: 100%; } }

/* ============================================================
   MANIFEST TAPE (ticker)
   ============================================================ */
.manifest-tape {
  background: var(--navy-deep); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light);
  overflow: hidden; white-space: nowrap; padding: 14px 0;
}
.manifest-track { display: inline-flex; align-items: center; animation: manifestScroll 38s linear infinite; }
.manifest-track:hover { animation-play-state: paused; }
.manifest-item { color: rgba(255,255,255,0.62); font-size: 13px; font-weight: 600; letter-spacing: 0.01em; padding: 0 22px; }
.manifest-sep { color: var(--gold); font-size: 13px; }
@keyframes manifestScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   REGISTER GRID (business cards) — rounded, elevated, dynamic
   ============================================================ */
.biz-section { padding: var(--section-pad) 0; background: var(--paper); }
.biz-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; gap: clamp(16px, 2vw, 22px); }
.biz-card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease);
}
.biz-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(16,35,58,0.22); }
.biz-card.is-featured { grid-column: span 2; grid-row: span 2; }
.biz-card.is-featured .biz-card-media { aspect-ratio: 16/9; }
.biz-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.biz-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.biz-card:hover .biz-card-media img { transform: scale(1.06); }
.biz-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,15,28,0.55) 100%); }
.biz-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px); color: #fff; font-size: 15px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.35s var(--ease-spring);
}
.biz-card:hover .biz-badge { transform: rotate(-8deg) scale(1.1); background: var(--grad-gold); color: var(--navy-deep); }
/* Rotate the logo's three accent colors across the nine-entity register
   grid so it doesn't read as nine identical gold chips. */
.biz-card:nth-child(3n+2):hover .biz-badge { background: var(--grad-leaf); }
.biz-card:nth-child(3n+3):hover .biz-badge { background: var(--grad-silver); }
.biz-card-body { padding: clamp(18px, 2vw, 26px) clamp(18px, 2vw, 26px) clamp(20px, 2.2vw, 28px); flex: 1; display: flex; flex-direction: column; }
.biz-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.biz-code { font-family: var(--font-display); font-size: 12.5px; color: var(--gold-deep); font-weight: 700; }
.biz-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; color: var(--steel); background: var(--paper-dim); padding: 5px 11px; border-radius: var(--radius-pill); }
.biz-card h3 { font-size: 18.5px; color: var(--navy); margin-bottom: 8px; font-family: var(--font-display); font-weight: 700; }
.biz-card.is-featured h3 { font-size: clamp(20px, 2vw, 26px); }
.biz-card p { color: var(--steel); font-size: 14.5px; flex: 1; }
.biz-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 700; font-size: 14px; color: var(--navy); }
.biz-link i { font-size: 11px; transition: transform 0.25s var(--ease-spring); color: var(--gold-deep); }
.biz-card:hover .biz-link i { transform: translateX(5px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: var(--section-pad) 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--navy); color: #fff;
  padding: 18px 22px; border-radius: var(--radius-md); display: flex; align-items: center; gap: 14px;
  box-shadow: 0 20px 44px rgba(7,15,28,0.28);
}
.about-badge-num { font-family: var(--font-display); font-size: 32px; color: var(--gold); font-weight: 700; }
.about-badge-text { font-size: 12px; line-height: 1.3; color: rgba(255,255,255,0.75); }

.about-content .lede { font-size: clamp(16px, 1.4vw + 8px, 18px); color: var(--navy); margin: 22px 0 16px; font-weight: 600; }
.about-content p { color: var(--steel); font-size: 15.5px; margin-bottom: 16px; }
/* Generic fallback so .lede reads correctly even without the .about-content
   wrapper (used standalone on service/about pages). */
.lede { font-size: clamp(16px, 1.4vw + 8px, 18px); color: var(--navy); font-weight: 600; margin-bottom: 16px; }

.pillar-list { margin: 28px 0 30px; display: flex; flex-direction: column; gap: 4px; }
.pillar-list li { display: flex; gap: 16px; padding: 16px; border-radius: var(--radius-md); transition: background 0.25s var(--ease); }
.pillar-list li:hover { background: var(--paper); }
.pillar-list .pillar-icon { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); font-size: 16px; }
.pillar-list strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.pillar-list span { color: var(--steel); font-size: 13.5px; }

/* ============================================================
   STATS — icon-based metric cards
   ============================================================ */
.stats-section { background: var(--navy-deep); padding: var(--section-pad) 0; }
.stats-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.stats-head .eyebrow { margin-left: auto; margin-right: auto; }
.stats-head h2 { color: #fff; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 20px); }
.stat-card {
  background: rgba(255,255,255,0.04); border: 1px solid var(--line-light); border-radius: var(--radius-md);
  padding: clamp(20px, 2.4vw, 28px) clamp(16px, 2vw, 22px); text-align: left;
  transition: transform 0.35s var(--ease-spring), background 0.3s var(--ease);
}
.stat-card:hover { transform: translateY(-5px); background: rgba(242,201,76,0.12); }
.stat-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--navy-deep); font-size: 18px; margin-bottom: 18px;
  transition: transform 0.4s var(--ease-spring);
}
/* Same three-color rotation as the ledger — first stat stays gold (it's
   usually the headline figure), the rest cycle through the logo family. */
.stat-card:nth-child(2) .stat-icon { background: var(--grad-leaf); }
.stat-card:nth-child(3) .stat-icon { background: var(--grad-silver); }
.stat-card:nth-child(4) .stat-icon { background: var(--grad-gold); }
.stat-card:hover .stat-icon { transform: rotate(-10deg) scale(1.08); }
.stat-figure { display: flex; align-items: baseline; gap: 2px; }
.stat-num { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); color: #fff; font-weight: 700; }
.stat-unit { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px); color: var(--gold); font-weight: 700; }
.stat-card p { color: rgba(255,255,255,0.55); font-size: 13.5px; margin-top: 6px; }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.leadership-section { padding: var(--section-pad) 0; background: var(--paper); }
.leadership-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.leader-media { position: relative; }
.leader-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.leader-media blockquote {
  margin: 18px 0 0; padding: 20px 24px; background: var(--grad-navy); color: var(--gold);
  font-family: var(--font-display); font-weight: 500; font-size: 16px; border-radius: var(--radius-md); line-height: 1.5;
}
.leader-name { font-size: 20px; color: var(--navy); font-weight: 700; margin: 22px 0 4px; font-family: var(--font-display); }
.leader-title { color: var(--gold-deep); font-size: 13.5px; font-weight: 700; margin-bottom: 20px; }
.leader-content p:not(.eyebrow):not(.leader-title) { color: var(--steel); font-size: 15.5px; margin-bottom: 16px; }
.award-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 30px; }
.award-row span { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 16px; font-size: 12.5px; color: var(--navy); font-weight: 700; transition: transform 0.25s var(--ease-spring); }
.award-row span:hover { transform: translateY(-3px); border-color: var(--gold); }
.award-row i { color: var(--gold); font-size: 12px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: var(--grad-navy); padding: clamp(52px, 7vw, 84px) 0; position: relative; overflow: hidden; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.2vw, 38px); color: #fff; max-width: 15ch; }
.cta-inner > div:first-child p { color: rgba(255,255,255,0.65); margin-top: 14px; max-width: 44ch; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: clamp(48px, 6vw, 76px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 48px); padding-bottom: clamp(36px, 5vw, 56px); }
.footer-brand p { margin: 18px 0 22px; font-size: 14px; color: rgba(255,255,255,0.5); max-width: 34ch; }
.brand-footer .brand-text { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--line-light); border-radius: 50%; display: grid; place-items: center; transition: all 0.25s var(--ease-spring); }
.footer-social a:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); transform: translateY(-3px); }
.footer-col h3 { color: #fff; font-size: 13.5px; letter-spacing: 0.02em; margin-bottom: 20px; font-weight: 700; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; }
.footer-contact i { color: var(--gold); margin-top: 3px; width: 14px; }
.footer-bottom { border-top: 1px solid var(--line-light); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--gold); }

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; background: #1FAE53; color: #fff;
  display: grid; place-items: center; font-size: 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-spring);
}
.float-whatsapp:hover { transform: scale(1.08) rotate(-6deg); }

/* ============================================================
   ONE ORCHESTRATED HERO ENTRANCE (load, not scroll)
   ============================================================ */
.hero-kicker, .hero-title, .hero-subtitle, .hero-ctas, .hero-stats, .hero-right {
  opacity: 0; animation: heroRise 0.75s var(--ease) forwards;
}
.hero-kicker { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-subtitle { animation-delay: 0.25s; }
.hero-ctas { animation-delay: 0.35s; }
.hero-stats { animation-delay: 0.45s; }
.hero-right { animation-delay: 0.3s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .hero-kicker, .hero-title, .hero-subtitle, .hero-ctas, .hero-stats, .hero-right { opacity: 1; animation: none; }
}

/* ============================================================
   RESPONSIVE — fluid tokens already absorb most of this; the
   breakpoints below only handle structural reflow.
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .about-grid, .leadership-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 420px; margin: 0 auto 24px; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-card.is-featured { grid-column: span 2; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   SHARED SUB-PAGE COMPONENTS
   Used by about-us, worker-management, hostel-management,
   transportation-management and contact-us.
   ============================================================ */

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-current] { color: var(--gold); font-weight: 600; }

/* Compact page hero for service/about/contact pages */
.page-hero { position: relative; background: var(--grad-navy); overflow: hidden; padding: clamp(48px, 7vw, 84px) 0 clamp(40px, 6vw, 64px); }
.page-hero .hero-blueprint, .page-hero .hero-glow, .page-hero .blob { position: absolute; }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--gold);
  background: rgba(242,201,76,0.14); border: 1px solid rgba(242,201,76,0.35); padding: 7px 15px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 700; color: #fff; letter-spacing: -0.025em;
  font-size: clamp(32px, 4.6vw, 52px); max-width: 16ch;
}
.page-hero-lede { margin-top: 18px; max-width: 56ch; font-size: clamp(15px, 1vw + 10px, 17px); color: rgba(255,255,255,0.68); }
.page-hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 56px); align-items: center; }

.quick-stats { display: flex; gap: clamp(24px, 4vw, 48px); margin-top: 40px; flex-wrap: wrap; }
.quick-stats div dt { font-family: var(--font-display); font-size: clamp(24px, 2.6vw, 32px); color: #fff; font-weight: 700; }
.quick-stats div dt span { color: var(--gold); }
.quick-stats div dd { margin: 2px 0 0; font-size: 12.5px; color: rgba(255,255,255,0.5); }

/* Status panel — dashboard-style widget reused across hero rights */
.status-panel {
  background: rgba(255,255,255,0.045); border: 1px solid var(--line-light); border-radius: var(--radius-lg);
  overflow: hidden; backdrop-filter: blur(10px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.status-panel-head { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line-light); }
.status-panel-head span { font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--steel-dim); }
.status-live { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 700; color: var(--green-bright); }
.status-live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); animation: statusPulse 1.6s ease-in-out infinite; }
@keyframes statusPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.status-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 15px 22px; border-bottom: 1px solid var(--line-light); }
.status-row:last-child { border-bottom: none; }
.status-row-label { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 14px; font-weight: 600; }
.status-row-label i { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: rgba(242,201,76,0.2); color: var(--gold); font-size: 13px; }
.status-row-value { font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill); }
.status-row-value.is-active { background: rgba(76,175,80,0.15); color: var(--green-bright); }
.status-row-value.is-ready { background: rgba(201,151,43,0.16); color: var(--gold); }
.status-panel-foot { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; background: rgba(255,255,255,0.03); }
.status-panel-foot strong { color: var(--gold); font-family: var(--font-display); font-size: 18px; }

/* Feature grid (services, amenities, etc.) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(22px, 2.4vw, 28px);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -18px rgba(16,35,58,0.2); }
.feature-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-deep); font-size: 19px; margin-bottom: 18px; transition: transform 0.35s var(--ease-spring); }
.feature-card:hover .feature-icon { transform: rotate(-8deg) scale(1.08); background: var(--grad-gold); color: var(--navy-deep); }
/* Same rotation across feature/service cards, wherever the grid is used. */
.feature-grid .feature-card:nth-child(3n+2) .feature-icon { background: var(--leaf-soft); color: var(--leaf-deep); }
.feature-grid .feature-card:nth-child(3n+2):hover .feature-icon { background: var(--grad-leaf); color: var(--navy-deep); }
.feature-grid .feature-card:nth-child(3n+3) .feature-icon { background: var(--silver-soft); color: var(--silver-deep); }
.feature-grid .feature-card:nth-child(3n+3):hover .feature-icon { background: var(--grad-silver); color: var(--navy-deep); }
.feature-card h3 { font-family: var(--font-display); font-size: 17.5px; color: var(--navy); margin-bottom: 8px; }
.feature-card p { color: var(--steel); font-size: 14px; margin-bottom: 14px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tags span { font-size: 11px; font-weight: 700; color: var(--gold-deep); background: var(--gold-soft); padding: 4px 10px; border-radius: var(--radius-pill); }
.feature-card ul { display: flex; flex-direction: column; gap: 8px; }
.feature-card ul li { font-size: 13.5px; color: var(--steel); display: flex; gap: 8px; }
.feature-card ul li i { color: var(--gold-deep); margin-top: 3px; font-size: 11px; }

/* Simpler icon+text amenity grid */
.amenity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.amenity-card { text-align: center; padding: clamp(20px, 2vw, 26px) 14px; background: var(--paper); border-radius: var(--radius-md); transition: transform 0.3s var(--ease-spring), background 0.3s var(--ease); }
.amenity-card:hover { transform: translateY(-4px); background: var(--gold-soft); }
.amenity-card i { font-size: 22px; color: var(--gold-deep); margin-bottom: 12px; display: block; }
.amenity-grid .amenity-card:nth-child(3n+2) i { color: var(--leaf-deep); }
.amenity-grid .amenity-card:nth-child(3n+2):hover { background: var(--leaf-soft); }
.amenity-grid .amenity-card:nth-child(3n+3) i { color: var(--silver-deep); }
.amenity-grid .amenity-card:nth-child(3n+3):hover { background: var(--silver-soft); }
.amenity-card h4 { font-family: var(--font-display); font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.amenity-card p { font-size: 12.5px; color: var(--steel); }

/* Standards / certification grid */
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 18px); }
.standard-card { background: var(--navy); color: #fff; border-radius: var(--radius-md); padding: clamp(20px, 2.2vw, 26px); position: relative; overflow: hidden; }
.standard-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); opacity: 0.6; }
.standard-card > * { position: relative; z-index: 1; }
.standard-card h3 { font-family: var(--font-display); font-size: 16.5px; margin-bottom: 8px; }
.standard-card p { font-size: 13.5px; color: rgba(255,255,255,0.62); margin-bottom: 14px; }
.standard-badge { display: inline-block; font-size: 11px; font-weight: 700; color: var(--gold-bright); background: rgba(244,233,45,0.12); border: 1px solid rgba(244,233,45,0.3); padding: 5px 12px; border-radius: var(--radius-pill); }

/* Numbered process timeline */
.timeline-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.6vw, 18px); counter-reset: step; }
.timeline-step { position: relative; padding-top: 20px; }
.timeline-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 3px; background: var(--line); }
.timeline-step.is-active::before, .timeline-step:not(:last-child)::before { background: var(--grad-gold); }
.timeline-num { font-family: var(--font-display); font-size: 26px; color: var(--gold-deep); font-weight: 700; }
.timeline-step h4 { font-family: var(--font-display); font-size: 15px; color: var(--navy); margin: 8px 0 6px; }
.timeline-step p { font-size: 13px; color: var(--steel); }

/* History timeline (about-us) */
.history-list { display: flex; flex-direction: column; }
.history-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.history-item:first-child { border-top: none; }
.history-year { font-family: var(--font-display); font-weight: 700; color: var(--gold-deep); font-size: 18px; }
.history-item h3 { font-family: var(--font-display); font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.history-item p { color: var(--steel); font-size: 14.5px; }

/* Values grid */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 20px); }
.value-card { background: var(--paper); border-radius: var(--radius-md); padding: clamp(22px, 2.4vw, 28px); }
.value-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.value-card p { color: var(--steel); font-size: 14.5px; }
.value-pill-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.value-pill-list li { display: flex; gap: 10px; font-size: 14px; color: var(--navy); font-weight: 600; align-items: flex-start; }
.value-pill-list i { color: var(--gold-deep); margin-top: 4px; font-size: 12px; }

/* FAQ (native details/summary — accessible, no JS required) */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--navy); font-size: 15px; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold-deep); font-size: 13px; flex: none;
  transition: transform 0.3s var(--ease-spring);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item-body { padding: 0 22px 20px; color: var(--steel); font-size: 14.5px; }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; inset: 0; background: var(--grad-mesh); }
.contact-info-card > * { position: relative; z-index: 1; }
.contact-info-row { display: flex; gap: 14px; padding: 16px 0; border-top: 1px solid var(--line-light); }
.contact-info-row:first-of-type { border-top: none; }
.contact-info-row i { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(242,201,76,0.22); color: var(--gold); font-size: 14px; flex: none; }
.contact-info-row strong { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.contact-info-row span, .contact-info-row a { color: #fff; font-size: 14.5px; font-weight: 600; }
.contact-status { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-size: 12.5px; font-weight: 700; color: var(--green-bright); background: rgba(76,175,80,0.12); padding: 8px 14px; border-radius: var(--radius-pill); }
.contact-status::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); animation: statusPulse 1.6s ease-in-out infinite; }

.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px; font-family: var(--font-sans);
  font-size: 14.5px; color: var(--ink); background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(242,201,76,0.2); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: clamp(28px, 4vw, 40px); }
.contact-map iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 980px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .standards-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .history-item { grid-template-columns: 76px 1fr; }
}
@media (max-width: 760px) {
  .feature-grid, .amenity-grid, .standards-grid { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .quick-stats { gap: 22px; }
}

/* ---- restored base mobile-nav / structural rules (760px) ---- */
@media (max-width: 760px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.is-open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--navy-deep); padding: 10px var(--gutter) 18px; border-bottom: 1px solid var(--line-light);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-item { width: 100%; border-bottom: 1px solid var(--line-light); }
  .nav-link { width: 100%; justify-content: space-between; padding: 15px 4px; }
  .nav-link::after { display: none; }
  .nav-dropdown {
    display: none; position: static; transform: none; background: transparent; box-shadow: none;
    padding: 0 0 12px 10px; min-width: 0; flex-direction: column;
  }
  .nav-item.is-open .nav-dropdown { display: flex; }
  .nav-dropdown a { color: rgba(255,255,255,0.65); padding: 11px 4px; font-weight: 500; }
  .nav-dropdown a:hover { background: transparent; color: var(--gold); }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 22px; }
  .biz-grid { grid-template-columns: 1fr; }
  .biz-card.is-featured { grid-column: span 1; }
  .biz-card-media { aspect-ratio: 16/10; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-media img, .leader-media img { aspect-ratio: 4/3; }
}

