/* ============================================================
   EXCELLENCE GROUP OF INSTITUTES — Design System (Light)
   Bright, airy, professional. Gold highlights on warm white.
   Playfair Display + Outfit.
   ============================================================ */

:root {
  /* Gold */
  --gold: #f8cb21;            /* brand gold — fills, medallion, dark-section accents */
  --gold-soft: #edca4d;
  --gold-light: #ffe27a;
  --gold-pale: #fff1b8;
  --gold-deep: #b8860b;       /* legible gold for accents */
  --gold-ink: #9a6c08;        /* gold TEXT on light backgrounds */
  --gold-bronze: #b8860b;
  --gold-foil: linear-gradient(135deg, #8a6408 0%, #c9971a 26%, #f0c537 50%, #b8860b 74%, #8a6408 100%);
  --gold-sheen: linear-gradient(120deg, #c9a227, #ffe27a 45%, #fff7d6 52%, #f8cb21 60%, #c9a227);

  /* Light surfaces */
  --paper: #ffffff;
  --cream: #faf7f0;           /* warm off-white */
  --cream-2: #f3ecdd;
  --cream-line: rgba(40, 30, 10, 0.10);

  /* Dark accent (espresso) — used sparingly for punch */
  --ink: #18140d;
  --ink-1: #1f1a11;
  --ink-2: #261f14;
  --ink-line: rgba(248, 203, 33, 0.20);

  /* Text */
  --on-light: #1c1813;
  --on-light-dim: #6a6255;
  --on-light-faint: #9a917f;
  --on-dark: #f6f1e6;
  --on-dark-dim: #c3baa8;
  --on-dark-faint: #8b8270;

  --shadow-soft: 0 16px 44px rgba(46, 34, 10, 0.10);
  --shadow-card: 0 10px 30px rgba(46, 34, 10, 0.08);
  --shadow-gold: 0 24px 60px rgba(184, 134, 11, 0.26);
  --shadow-deep: 0 40px 90px rgba(20, 14, 4, 0.30);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
  --maxw: 1280px;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--on-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold); color: #1c1813; }

/* ---------- Typography ---------- */
.display { font-family: var(--font-display); font-weight: 800; line-height: 1.04; letter-spacing: -0.01em; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; }

.eyebrow {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-ink);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.eyebrow.solo::before { display: none; }

.gold-text {
  background: var(--gold-foil); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: foil 7s linear infinite;
}
@keyframes foil { to { background-position: 200% center; } }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-sm { padding: clamp(44px, 6vw, 76px) 0; }

.bg-paper { background: var(--paper); color: var(--on-light); }
.bg-cream { background: var(--cream); color: var(--on-light); }
.bg-cream-2 { background: var(--cream-2); color: var(--on-light); }
.bg-espresso { background: var(--ink); color: var(--on-dark);
  background-image: radial-gradient(circle at 80% 0%, rgba(248,203,33,0.12), transparent 55%); }

/* espresso-scoped element treatments */
.bg-espresso .eyebrow { color: var(--gold); }
.bg-espresso .eyebrow::before, .bg-espresso .eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold)); }
.bg-espresso .muted { color: var(--on-dark-dim); }
.bg-espresso .gold-text { background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; }

.center { text-align: center; }
.muted { color: var(--on-light-dim); }

.sec-head { max-width: 760px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.sec-head h2 { font-size: clamp(2.05rem, 5vw, 3.4rem); margin: 16px 0 16px; }
.sec-head p { font-size: 1.08rem; color: var(--on-light-dim); }
.bg-espresso .sec-head p { color: var(--on-dark-dim); }

/* texture overlays */
.grain::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image: radial-gradient(circle at 1px 1px, rgba(184,134,11,0.10) 1px, transparent 0);
  background-size: 26px 26px;
}
.bg-espresso.grain::before { background-image: radial-gradient(circle at 1px 1px, rgba(248,203,33,0.10) 1px, transparent 0); }
.glow-orb { position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(248,203,33,0.28), transparent 68%); filter: blur(20px); z-index: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 15px 30px; border-radius: 100px; font-weight: 600; font-size: 1rem; letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s, border-color .35s, color .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn-gold { background: var(--gold-sheen); background-size: 200% auto; color: #1a1405; box-shadow: 0 12px 30px rgba(184,134,11,0.32); }
.btn-gold:hover { transform: translateY(-3px); background-position: right center; box-shadow: 0 18px 40px rgba(184,134,11,0.45); }
.btn-dark { background: var(--ink); color: var(--gold); box-shadow: 0 10px 26px rgba(20,14,4,0.22); }
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(20,14,4,0.32); }
.btn-ghost { border: 1.5px solid rgba(40,30,10,0.22); color: var(--on-light); }
.btn-ghost:hover { background: rgba(40,30,10,0.04); border-color: var(--on-light); transform: translateY(-3px); }
.bg-espresso .btn-ghost { border-color: rgba(248,203,33,0.5); color: var(--gold); }
.bg-espresso .btn-ghost:hover { background: rgba(248,203,33,0.1); border-color: var(--gold); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Navbar (light) ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: var(--nav-h); display: flex; align-items: center;
  transition: background .4s, backdrop-filter .4s, height .4s, box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(255,255,255,0.86); backdrop-filter: blur(16px) saturate(140%); height: 70px; box-shadow: 0 6px 24px rgba(46,34,10,0.08); border-bottom: 1px solid var(--cream-line); }
.nav-inner { width: 100%; max-width: 1340px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 46px; height: 46px; filter: drop-shadow(0 4px 10px rgba(184,134,11,0.28)); transition: transform .5s var(--ease); }
.nav-brand:hover img { transform: rotate(8deg) scale(1.05); }
.nav-brand .bt { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--on-light); line-height: 1; }
.nav-brand .bs { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-ink); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { position: relative; padding: 9px 15px; font-size: 0.96rem; font-weight: 500; color: var(--on-light-dim); transition: color .3s; border-radius: 8px; }
.nav-links a::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px; background: var(--gold-deep); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--on-light); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { padding: 11px 24px; font-size: 0.95rem; }
.nav-burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--cream-line); color: var(--gold-ink); align-items: center; justify-content: center; background: rgba(255,255,255,0.6); }
.nav-burger svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 300; pointer-events: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(28,20,8,0.45); opacity: 0; transition: opacity .4s; backdrop-filter: blur(3px); }
.drawer-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px); background: var(--paper); border-left: 1px solid var(--cream-line); padding: 28px 26px; transform: translateX(100%); transition: transform .45s var(--ease); display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow-deep); }
.drawer.open { pointer-events: auto; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.drawer-close { width: 42px; height: 42px; color: var(--gold-ink); display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--cream-line); }
.drawer a { padding: 14px 12px; font-size: 1.1rem; color: var(--on-light-dim); border-bottom: 1px solid var(--cream-line); transition: color .3s, padding-left .3s; }
.drawer a:hover, .drawer a.active { color: var(--gold-ink); padding-left: 20px; }
.drawer .btn { margin-top: 20px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; } .reveal.d6 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Tilt ---------- */
.tilt { transform-style: preserve-3d; transition: transform .4s var(--ease); will-change: transform; }

/* ---------- Cards ---------- */
.card { background: var(--paper); border: 1px solid var(--cream-line); border-radius: var(--r-lg); padding: 32px; position: relative; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.card:hover { border-color: rgba(184,134,11,0.4); box-shadow: var(--shadow-soft); transform: translateY(-6px); }
.bg-espresso .card { background: var(--ink-1); border-color: var(--ink-line); box-shadow: none; color: var(--on-dark); }

.icon-badge { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(248,203,33,0.20), rgba(248,203,33,0.06)); border: 1px solid rgba(184,134,11,0.32); color: var(--gold-ink); margin-bottom: 20px; }
.icon-badge svg { width: 27px; height: 27px; }
.bg-espresso .icon-badge { color: var(--gold); border-color: rgba(248,203,33,0.3); }

.chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  background: rgba(248,203,33,0.14); color: var(--gold-ink); border: 1px solid rgba(184,134,11,0.26); }
.bg-espresso .chip { background: rgba(248,203,33,0.1); color: var(--gold); border-color: rgba(248,203,33,0.24); }

/* ---------- Footer (espresso) ---------- */
.footer { background: var(--ink); color: var(--on-dark); border-top: 3px solid var(--gold); padding: 76px 0 30px; position: relative;
  background-image: radial-gradient(circle at 85% 0%, rgba(248,203,33,0.1), transparent 50%); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }
.footer h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 600; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer a, .footer li { color: var(--on-dark-dim); font-size: 0.96rem; transition: color .3s; }
.footer a:hover { color: var(--gold); }
.footer-brand img { width: 56px; margin-bottom: 18px; }
.footer-brand p { color: var(--on-dark-dim); font-size: 0.95rem; max-width: 300px; }
.footer-brand p b { color: var(--on-dark); }
.footer-bottom { margin-top: 56px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--on-dark-faint); font-size: 0.86rem; }
.social { display: flex; gap: 12px; }
.social a { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--ink-line); display: grid; place-items: center; color: var(--on-dark-dim); transition: all .35s; }
.social a:hover { color: #1c1813; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.social svg { width: 18px; height: 18px; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 180; width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,0.45); transition: transform .35s var(--ease); }
.wa-float:hover { transform: scale(1.1) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366; animation: waPing 2.2s ease-out infinite; }
@keyframes waPing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 400; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal.open { display: flex; }
.modal-scrim { position: absolute; inset: 0; background: rgba(20,14,4,0.55); backdrop-filter: blur(7px); opacity: 0; transition: opacity .35s; }
.modal.open .modal-scrim { opacity: 1; }
.modal-card { position: relative; width: min(680px, 100%); max-height: 88vh; overflow-y: auto; background: var(--paper); border: 1px solid var(--cream-line); border-radius: var(--r-xl); box-shadow: var(--shadow-deep); transform: translateY(28px) scale(.97); opacity: 0; transition: all .4s var(--ease); }
.modal.open .modal-card { transform: none; opacity: 1; }
.modal-card::-webkit-scrollbar { width: 8px; }
.modal-card::-webkit-scrollbar-thumb { background: rgba(184,134,11,0.3); border-radius: 8px; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 5; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.85); border: 1px solid var(--cream-line); color: var(--on-light); display: grid; place-items: center; font-size: 1.3rem; transition: all .3s; box-shadow: var(--shadow-card); }
.modal-close:hover { background: var(--gold); color: #1c1813; transform: rotate(90deg); }

/* form */
.field { position: relative; margin-bottom: 20px; }
.field label { display: block; font-size: 0.82rem; color: var(--gold-ink); margin-bottom: 8px; font-weight: 600; letter-spacing: 0.02em; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 16px; background: var(--cream); border: 1px solid var(--cream-line); border-radius: 12px; color: var(--on-light); font-family: inherit; font-size: 0.98rem; transition: border-color .3s, box-shadow .3s, background .3s; }
.field input::placeholder, .field textarea::placeholder { color: var(--on-light-faint); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-deep); background: #fff; box-shadow: 0 0 0 3px rgba(248,203,33,0.18); }
.field textarea { resize: vertical; min-height: 96px; }
.bg-espresso .field input, .bg-espresso .field textarea { background: var(--ink-2); border-color: var(--ink-line); color: var(--on-dark); }

/* ---------- Testimonials ---------- */
.tcard { background: var(--paper); border: 1px solid var(--cream-line); border-radius: var(--r-lg); padding: 34px 30px; position: relative; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.tcard:hover { transform: translateY(-6px); border-color: rgba(184,134,11,0.45); box-shadow: var(--shadow-soft); }
.tcard .quote { font-size: 3rem; font-family: var(--font-display); color: var(--gold-deep); line-height: .6; }
.tcard p { color: var(--on-light-dim); font-style: italic; margin: 14px 0 22px; line-height: 1.7; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-sheen); color: #1a1405; display: grid; place-items: center; font-weight: 700; }
.tcard .who h4 { font-family: var(--font-body); font-size: 1rem; }
.tcard .who span { font-size: 0.85rem; color: var(--gold-ink); }

/* ---------- Photo marquee ---------- */
.photo-marquee { overflow: hidden; padding: 6px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.photo-marquee .pm-track { display: flex; gap: 22px; width: max-content; animation: scrollX 48s linear infinite; }
.photo-marquee.rev .pm-track { animation-direction: reverse; animation-duration: 56s; }
.photo-marquee:hover .pm-track { animation-play-state: paused; }
.pm-track figure { position: relative; flex: 0 0 auto; width: 340px; height: 214px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--cream-line); margin: 0; }
.pm-track figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pm-track figure:hover img { transform: scale(1.06); }
.pm-track figure figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 14px 11px; font-size: 0.82rem; font-weight: 500; color: #fff; background: linear-gradient(transparent, rgba(20,14,4,0.82)); }
@media (max-width: 520px) { .pm-track figure { width: 260px; height: 168px; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scrollX 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollX { to { transform: translateX(-50%); } }
.marquee-item { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 1.4rem; color: var(--on-light-dim); white-space: nowrap; }
.bg-espresso .marquee-item { color: var(--on-dark-dim); }
.marquee-item .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep); }
.bg-espresso .marquee-item .dot { background: var(--gold); }

/* ---------- Page hero ---------- */
.page-hero { padding: calc(var(--nav-h) + 64px) 0 76px; position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.7rem); margin: 18px 0 18px; }
.page-hero p { font-size: 1.14rem; color: var(--on-light-dim); max-width: 640px; }
.breadcrumb { font-size: 0.85rem; color: var(--on-light-faint); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-ink); }

/* ---------- Stats ---------- */
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--gold); line-height: 1; }
.stat-label { color: var(--on-dark-dim); font-size: 0.95rem; margin-top: 8px; }

/* ---------- Accordion ---------- */
.acc-item { border: 1px solid var(--cream-line); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; background: var(--paper); transition: border-color .3s, box-shadow .3s; box-shadow: var(--shadow-card); }
.acc-item:hover { border-color: rgba(184,134,11,0.4); }
.acc-q { width: 100%; text-align: left; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 1.05rem; font-weight: 600; color: var(--on-light); }
.acc-ic { width: 34px; height: 34px; border-radius: 50%; background: rgba(248,203,33,0.16); color: var(--gold-ink); display: grid; place-items: center; flex-shrink: 0; transition: transform .35s; }
.acc-item.open .acc-ic { transform: rotate(180deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a-inner { padding: 0 24px 22px; color: var(--on-light-dim); line-height: 1.7; }

/* ---------- CTA band (dark, on light sections) ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); overflow: hidden; padding: clamp(48px, 7vw, 90px) clamp(30px, 6vw, 80px); text-align: center;
  background: linear-gradient(135deg, #221b10, #14100a); border: 1px solid var(--ink-line); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(248,203,33,0.24), transparent 60%); }
.cta-band h2 { font-size: clamp(2.1rem, 5vw, 3.6rem); margin-bottom: 18px; position: relative; color: var(--on-dark); }
.cta-band p { color: var(--on-dark-dim); max-width: 560px; margin: 0 auto 32px; position: relative; font-size: 1.1rem; }
.cta-band .hero-cta, .cta-band .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Utility ---------- */
.grid { display: grid; gap: 28px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-row { gap: clamp(36px, 6vw, 80px); }
.rounded-img { border-radius: var(--r-lg); overflow: hidden; }
.divider-stars { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold-deep); }
.divider-stars span { height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold-deep)); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
  .nav-links, .nav .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .g3, .g2 { grid-template-columns: 1fr; }
  .flex.gap-row { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .wrap { padding: 0 18px; }
  .g4 { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; width: 100%; }
}

/* ---------- Mobile optimisation ---------- */
html, body { max-width: 100%; overflow-x: hidden; }
img, iframe, video, svg { max-width: 100%; }
@media (hover: none) {
  * { -webkit-tap-highlight-color: rgba(248,203,33,0.18); }
  .tilt, [data-tilt] { transform: none !important; }
}
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .sec-head { margin-bottom: 34px; }
  /* service section labels wrap cleanly */
  .svc-section-label { flex-wrap: wrap; gap: 10px 14px; }
  .svc-section-label h3 { white-space: normal; }
  .svc-section-label .ln { min-width: 40px; }
  .svc-section-label .ct { display: none; }
  /* modal fits small screens */
  .modal { padding: 12px; align-items: flex-start; }
  .modal-card { max-height: 92vh; border-radius: 22px; }
  .svc-modal-head { padding: 60px 22px 22px; }
  .svc-modal-content { padding: 24px 22px 30px; }
  .svc-modal-head h3 { font-size: 1.5rem; }
  .modal-close { top: 12px; right: 12px; }
  /* accordion comfortable tap targets */
  .acc-q { font-size: 1rem; padding: 17px 18px; }
  .acc-a-inner { padding: 0 18px 18px; }
  /* tighten cards */
  .card { padding: 26px 22px; }
  .cta-band { padding: 44px 22px; }
  /* photo marquee smaller */
  .pm-track figure { width: 248px; height: 158px; }
  .pm-track { gap: 16px; }
}
@media (max-width: 420px) {
  .wrap { padding: 0 16px; }
  .nav-brand .bt { font-size: 1.05rem; }
  .nav-brand .bs { font-size: 0.56rem; letter-spacing: 0.22em; }
  .nav-brand img { width: 40px; height: 40px; }
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.24em; }
  .tcard { padding: 26px 22px; }
  .stat-num { font-size: 2.4rem; }
}
