/* ============================================================
   Dreamz Oasis — v3 "Oasis" Redesign
   Warm, editorial, professional-agency aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root{
  --cream: #f6f2ea;
  --cream-deep: #efe8d9;
  --paper: #fffdf9;
  --ink: #211d17;
  --ink-soft: #5b564c;
  --ink-faint: #8b8578;
  --line: #e4dcc9;

  --charcoal: #211d17;
  --charcoal-800: #2c2720;

  --gold: #c8963e;
  --gold-dark: #a97a2c;
  --gold-100: #f6e9d0;
  --olive: #5c6b4f;
  --olive-100: #e8ecdf;

  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 16px rgba(33,29,23,.06);
  --shadow-md: 0 16px 40px rgba(33,29,23,.10);
  --shadow-lg: 0 30px 70px rgba(33,29,23,.16);

  --container: 1200px;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: 110px; overflow-x: hidden; }
body{
  margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--cream);
  line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 .5em; color: var(--ink); }
p{ margin: 0 0 1em; color: var(--ink-soft); }
button{ font-family: inherit; }

.container{ width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section{ padding: 100px 0; }
.section--tight{ padding: 64px 0; }
.section--dark{ background: var(--charcoal); color: rgba(255,255,255,.86); }
.section--dark h2, .section--dark h3{ color: #fff; }
.section--dark p{ color: rgba(255,255,255,.62); }
.section--panel{ background: var(--cream-deep); }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in{ opacity: 1; transform: none; }
.reveal-1{ transition-delay: .08s; }
.reveal-2{ transition-delay: .16s; }
.reveal-3{ transition-delay: .24s; }
.reveal-4{ transition-delay: .32s; }

/* ---------- eyebrow / heads ---------- */
.eyebrow{
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--gold-dark);
  background: var(--gold-100); padding: 7px 16px 7px 10px; border-radius: var(--radius-pill); margin-bottom: 20px;
}
.eyebrow i{ font-size: 8px; }
.eyebrow.on-dark{ background: rgba(255,255,255,.08); color: var(--gold); }

.section-head{ max-width: 640px; margin-bottom: 56px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2{ font-size: clamp(30px, 3.6vw, 44px); }
.section-head p{ font-size: 17px; margin-top: 14px; }

/* ---------- buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
  white-space: nowrap; font-family: var(--font-body);
}
.btn:hover{ transform: translateY(-2px); }
.btn-dark{ background: var(--charcoal); color: #fff; }
.btn-dark:hover{ background: #000; box-shadow: var(--shadow-md); }
.btn-gold{ background: var(--gold); color: #fff; }
.btn-gold:hover{ background: var(--gold-dark); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--ink); }
.btn-outline-dark{ background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-dark:hover{ border-color: #fff; background: rgba(255,255,255,.08); }
.btn-on-dark{ background: #fff; color: var(--charcoal); }
.btn-on-dark:hover{ background: var(--gold); color: #fff; }
.btn-sm{ padding: 11px 22px; font-size: 13.5px; }
.btn-link{ display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px; color: var(--ink); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }
.btn-link i{ transition: transform .2s ease; font-size: 12px; }
.btn-link:hover i{ transform: translateX(4px); }
.btn-circle{ width: 52px; height:52px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background: var(--charcoal); color:#fff; flex:none; transition: background .2s ease, transform .2s ease; }
.btn-circle:hover{ background: var(--gold); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav-wrap{ position: sticky; top: 0; z-index: 300; padding: 18px 20px 0; }
.navbar{
  max-width: var(--container); margin: 0 auto; background: rgba(33,29,23,.92); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-pill); box-shadow: var(--shadow-md);
  display:flex; align-items:center; justify-content:space-between; padding: 12px 12px 12px 22px;
}
.brand{ display:flex; align-items:center; gap: 12px; }
.brand img{ height: 48px; width:auto; }
.brand-text{ font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #fff; line-height:1; }
.brand-text span{ display:block; font-family: var(--font-body); font-weight: 500; font-size: 11px; letter-spacing:.12em; color: var(--gold); margin-top: 4px; }

.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{ font-weight: 500; font-size: 14.5px; color: rgba(255,255,255,.68); position: relative; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active{ color: #fff; }
.nav-links a.active{ font-weight: 600; }

.nav-right{ display:flex; align-items:center; gap: 10px; }
.nav-toggle{ display:none; background:none; border:none; font-size: 20px; color: #fff; cursor:pointer; width:42px; height:42px; border-radius:50%; align-items:center; justify-content:center; }
.nav-toggle:hover{ background: rgba(255,255,255,.08); }

/* ---------- Hero ---------- */
.hero{ padding: 44px 0 24px; }
.accent{ color: var(--gold); }
.hero h1{ font-size: clamp(36px, 4.6vw, 56px); margin-bottom: 20px; }
.hero-actions{ display:flex; align-items:center; gap: 22px; flex-wrap: wrap; margin-top: 8px; }
.hero .split-media{ position:relative; width:100%; aspect-ratio: 4/3.6; border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md); }
.hero .split-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition: opacity 1.4s ease; border-radius:0; box-shadow:none; }
.hero .split-media img.active{ opacity:1; }

.hero-avatars{ display:flex; align-items:center; }
.hero-avatars img{ width: 38px; height:38px; border-radius:50%; object-fit:cover; border: 2.5px solid rgba(255,255,255,.8); margin-left:-12px; }
.hero-avatars img:first-child{ margin-left:0; }
.hero-avatars-note{ font-size: 13px; color: rgba(255,255,255,.7); margin-left: 14px; }
.hero-note-row{ display:flex; align-items:center; margin-top: 32px; }

/* ---------- Marquee ---------- */
.marquee-wrap{ border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 26px 0; background: var(--paper); }
.marquee{ display:flex; width:max-content; animation: marquee 32s linear infinite; }
.marquee-track{ display:flex; align-items:center; gap: 64px; padding-right: 64px; }
.marquee-track span{ font-family: var(--font-display); font-size: 20px; color: var(--ink-faint); white-space:nowrap; display:flex; align-items:center; gap:12px; }
.marquee-track span i{ color: var(--gold); font-size: 12px; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Poster marquee ---------- */
.poster-marquee{ overflow: hidden; margin-top: 8px; }
.poster-scroll{ display:flex; width:max-content; animation: posterScroll 38s linear infinite; }
.poster-marquee:hover .poster-scroll{ animation-play-state: paused; }
.poster-track{ display:flex; gap: 24px; padding-right: 24px; }
.poster-card{
  flex:none; width: 240px; aspect-ratio: 3/4; border-radius: var(--radius-md); overflow:hidden;
  border:1px solid var(--line); box-shadow: var(--shadow-sm); cursor: pointer; transition: transform .3s ease, box-shadow .3s ease;
}
.poster-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.poster-card img{ width:100%; height:100%; object-fit: cover; display:block; }
@keyframes posterScroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ---------- Lightbox ---------- */
.lightbox{
  position: fixed; inset:0; z-index: 1000; background: rgba(20,17,13,.9);
  display:flex; align-items:center; justify-content:center; padding: 48px;
  opacity:0; visibility:hidden; transition: opacity .25s ease;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{ max-width:min(640px,90vw); max-height:88vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close{
  position:absolute; top:26px; right:30px; width:46px; height:46px; border-radius:50%;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.3); color:#fff;
  font-size:18px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition: background .2s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,.24); }

/* ---------- Stat row ---------- */
.stat-strip{ display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card{ background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 24px; }
.stat-card strong{ display:block; font-family: var(--font-display); font-size: 34px; color: var(--ink); }
.stat-card span{ font-size: 13.5px; color: var(--ink-faint); }

/* ---------- About / split ---------- */
.split{ display:grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items:center; }
.split.rev{ grid-template-columns: 1.08fr .92fr; }
.split.rev .split-media{ order: 2; }
.split-media{ position:relative; }
.split-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width:100%; aspect-ratio: 4/3.6; object-fit:cover; }
.split-media .float-card{
  position:absolute; bottom: -28px; right: -28px; background: var(--charcoal); color:#fff; border-radius: var(--radius-md);
  padding: 22px 24px; box-shadow: var(--shadow-lg); max-width: 220px;
}
.split-media .float-card strong{ display:block; font-family: var(--font-display); font-size: 26px; color: var(--gold); }
.split-media .float-card span{ font-size: 12.5px; color: rgba(255,255,255,.65); }

.check-list{ display:flex; flex-direction:column; gap: 14px; margin: 26px 0 32px; }
.check-list li{ display:flex; align-items:flex-start; gap: 12px; font-weight: 500; font-size: 15px; color: var(--ink); }
.check-list li i{ color: var(--gold); margin-top: 4px; font-size: 14px; }

/* ---------- Numbered service cards ---------- */
.grid-2{ display:grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3{ display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4{ display:grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.grid-5{ display:grid; grid-template-columns: repeat(5,1fr); gap: 20px; }

.num-card{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 34px 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; position:relative; overflow:hidden;
}
.num-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.num-card .num{ font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--gold); margin-bottom: 22px; display:block; }
.num-card .ic{ width:52px; height:52px; border-radius: 14px; background: var(--gold-100); color: var(--gold-dark); display:flex; align-items:center; justify-content:center; font-size:21px; margin-bottom:20px; }
.num-card h3{ font-size: 20px; margin-bottom: 10px; }
.num-card p{ font-size: 14.5px; margin-bottom: 16px; }

/* ---------- Industry chips ---------- */
.industry-card{
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 20px;
  text-align:center; transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.industry-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-sm); background: var(--gold-100); }
.industry-card .ic{ width:56px; height:56px; border-radius:50%; background: var(--olive-100); color: var(--olive); display:flex; align-items:center; justify-content:center; font-size:22px; margin: 0 auto 16px; }
.industry-card span{ font-weight: 600; font-size: 14px; color: var(--ink); }

/* ---------- Advantage rows ---------- */
.adv-row{ display:flex; gap: 24px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items:flex-start; }
.adv-row:first-child{ padding-top:0; }
.adv-row .num{ font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--gold-100); -webkit-text-stroke: 1.5px var(--gold); line-height:1; flex:none; width: 72px; }
.adv-row h3{ font-size: 20px; margin-bottom: 8px; }
.adv-row p{ margin: 0; font-size: 15px; }

/* ---------- Leadership ---------- */
.leader-card{ display:grid; grid-template-columns: .8fr 1.2fr; gap: 0; background: var(--charcoal); border-radius: var(--radius-lg); overflow:hidden; }
.leader-card .photo{ aspect-ratio: 3/3.6; overflow:hidden; }
.leader-card .photo img{ width:100%; height:100%; object-fit:cover; }
.leader-card .content{ padding: 48px 52px; color: #fff; display:flex; flex-direction:column; justify-content:center; }
.leader-card .content .role{ color: var(--gold); font-weight:600; font-size: 14.5px; margin-bottom: 6px; }
.leader-card .content h3{ color:#fff; font-size: 28px; margin-bottom: 18px; }
.leader-card .content p{ color: rgba(255,255,255,.7); font-size: 16px; font-style: italic; }
.leader-card .content .sign{ margin-top: 20px; font-family: var(--font-display); color: #fff; font-size: 15px; }

/* ---------- Testimonials ---------- */
.testi-card{ background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 32px; }
.testi-card .stars{ color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p{ color: var(--ink); font-size: 15.5px; }
.testi-who{ display:flex; align-items:center; gap: 12px; margin-top: 20px; }
.testi-who img{ width: 48px; height:48px; border-radius:50%; object-fit:cover; }
.testi-who strong{ display:block; font-size: 14.5px; }
.testi-who span{ font-size: 12.5px; color: var(--ink-faint); }

/* ---------- Country cards ---------- */
.country-card{ position:relative; border-radius: var(--radius-md); overflow:hidden; aspect-ratio: 4/3.2; box-shadow: var(--shadow-sm); }
.country-card img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.country-card:hover img{ transform: scale(1.08); }
.country-card .overlay{ position:absolute; inset:0; background: linear-gradient(0deg, rgba(33,29,23,.85), rgba(33,29,23,.05) 55%); display:flex; align-items:flex-end; padding: 18px; }
.country-card h3{ color:#fff; font-size: 17px; margin:0; }
.chip-row{ display:flex; flex-wrap:wrap; gap: 10px; }
.chip{ display:inline-flex; align-items:center; gap:8px; background: var(--paper); border:1px solid var(--line); padding: 10px 18px; border-radius: var(--radius-pill); font-weight:600; font-size:13.5px; }
.chip i{ color: var(--gold); }

/* ---------- News ---------- */
.post-card{ background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-md); overflow:hidden; transition: transform .3s ease, box-shadow .3s ease; }
.post-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-card .media{ aspect-ratio: 16/11; overflow:hidden; }
.post-card .media img{ width:100%; height:100%; object-fit:cover; }
.post-meta{ display:flex; gap:16px; font-size: 12px; color: var(--ink-faint); margin-bottom: 12px; }
.post-meta span{ display:inline-flex; align-items:center; gap:6px; }
.post-card .body{ padding: 24px; }
.post-card h3{ font-size: 18px; margin-bottom: 10px; }
details.post-more summary{ cursor:pointer; font-weight:600; color: var(--gold-dark); font-size: 13.5px; list-style: none; display:flex; align-items:center; gap:8px; }
details.post-more summary::-webkit-details-marker{ display:none; }
details.post-more summary i{ transition: transform .2s ease; font-size: 11px; }
details.post-more[open] summary i{ transform: rotate(90deg); }
details.post-more p{ margin-top: 12px; font-size: 14px; }

/* ---------- Contact ---------- */
.info-card{ display:flex; gap: 16px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }
.info-card .ic{ width:48px; height:48px; border-radius: 12px; background: var(--gold-100); color: var(--gold-dark); display:flex; align-items:center; justify-content:center; font-size:18px; flex:none; }
.info-card strong{ display:block; font-size: 14.5px; margin-bottom:4px; }
.info-card span, .info-card a{ font-size: 14px; color: var(--ink-soft); }
.map-frame{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); }
.map-frame iframe{ width:100%; height: 400px; border:0; display:block; }

/* ---------- CV form ---------- */
.cv-form{ max-width: 720px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field{ margin-bottom: 22px; }
.form-field label{ display:block; font-family: var(--font-display); font-size: 13px; font-weight:600; letter-spacing:.02em; color: var(--ink); margin-bottom: 8px; }
.form-field input[type="text"], .form-field input[type="tel"], .form-field input[type="email"], .form-field select{
  width:100%; padding: 13px 16px; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .2s ease;
}
.form-field input:focus, .form-field select:focus{ outline:none; border-color: var(--gold); }
.form-field select{ appearance:none; -webkit-appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b8578' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-field input[type="file"]{
  width:100%; padding: 12px 16px; font-family: var(--font-body); font-size: 14px; color: var(--ink-soft);
  background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius-sm); cursor:pointer;
}
.cv-form .form-note{ font-size: 12.5px; color: var(--ink-faint); margin: -10px 0 22px; }
.cv-form button[type="submit"]{ width:100%; justify-content:center; }
@media (max-width: 640px){
  .cv-form{ padding: 28px 22px; }
  .form-row{ grid-template-columns: 1fr; }
}

/* ---------- Gov badge ---------- */
.gov-badge{ display:flex; align-items:center; gap: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px 26px; }
.gov-badge .ic{ width:50px; height:50px; border-radius:50%; background: var(--olive-100); color:var(--olive); display:flex; align-items:center; justify-content:center; font-size:20px; flex:none; }
.gov-badge strong{ display:block; font-size:14.5px; }
.gov-badge span{ font-size: 12.5px; color: var(--ink-faint); }

/* ---------- CTA banner ---------- */
.cta-banner{ background: var(--charcoal); border-radius: var(--radius-lg); padding: 60px; color:#fff; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap: wrap; position:relative; overflow:hidden; }
.cta-banner::before{ content:''; position:absolute; width:340px; height:340px; background: var(--gold); opacity:.18; border-radius:50%; top:-140px; right:-100px; }
.cta-banner h2{ color:#fff; font-size: clamp(26px,3vw,36px); margin-bottom:8px; }
.cta-banner p{ color: rgba(255,255,255,.65); margin:0; }
.cta-banner > div, .cta-banner > a{ position:relative; z-index:1; }

/* ---------- WhatsApp float ---------- */
.wa-float{ position: fixed; right: 24px; bottom: 24px; width: 58px; height:58px; border-radius:50%; background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center; font-size: 26px; box-shadow: 0 12px 30px rgba(37,211,102,.4); z-index: 300; transition: transform .2s ease; }
.wa-float:hover{ transform: scale(1.08); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{ padding: 60px 0 0; }
.page-hero-inner{ background: var(--charcoal); border-radius: var(--radius-lg); padding: 70px 60px; color:#fff; position:relative; overflow:hidden; }
.page-hero-inner::before{ content:''; position:absolute; width:400px; height:400px; background: var(--gold); opacity:.14; border-radius:50%; bottom:-200px; left:-120px; }
.page-hero-inner h1{ color:#fff; font-size: clamp(32px, 4.2vw, 48px); margin-bottom: 14px; position:relative; }
.breadcrumb{ display:flex; align-items:center; gap:8px; font-size: 13.5px; color: rgba(255,255,255,.55); position:relative; }
.breadcrumb a{ color: rgba(255,255,255,.85); }
.breadcrumb a:hover{ color: var(--gold); }

/* ---------- Footer ---------- */
.footer{ background: var(--charcoal); color: rgba(255,255,255,.62); padding: 90px 0 34px; margin-top: 40px; }
.footer-top{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom: 18px; }
.footer-brand img{ height: 32px; }
.footer-brand strong{ color:#fff; font-family: var(--font-display); font-size: 17px; }
.footer p{ color: rgba(255,255,255,.55); font-size: 14px; }
.footer h4{ color:#fff; font-size: 13.5px; text-transform: uppercase; letter-spacing:.06em; margin-bottom: 22px; font-family: var(--font-display); }
.footer ul li{ margin-bottom: 13px; }
.footer ul a{ font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s ease; }
.footer ul a:hover{ color: var(--gold); }
.footer-social{ display:flex; gap: 10px; margin-top: 18px; }
.footer-social a{ width: 38px; height:38px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition: background .2s ease; }
.footer-social a:hover{ background: var(--gold); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top: 26px; font-size: 13px; flex-wrap: wrap; gap: 10px; }

/* ---------- Utilities ---------- */
.text-center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }
.mt-0{ margin-top:0 !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px){
  .split, .split.rev{ grid-template-columns: 1fr; }
  .split.rev .split-media{ order: 0; }
  .split-media{ max-width: 440px; margin: 0 auto; }
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-4, .grid-5{ grid-template-columns: 1fr 1fr 1fr; }
  .leader-card{ grid-template-columns: 1fr; }
  .leader-card .photo{ aspect-ratio: 16/10; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px){
  .nav-links{
    position: fixed; inset: 88px 16px auto 16px; background:#fff; flex-direction:column; align-items:flex-start;
    padding: 24px; gap: 18px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
    transform: translateY(-16px) scale(.98); opacity:0; visibility:hidden; transition: all .25s ease;
  }
  .nav-links.open{ transform: none; opacity:1; visibility:visible; }
  .nav-links a{ font-size: 16px; color: var(--ink-soft); }
  .nav-links a:hover, .nav-links a.active{ color: var(--ink); }
  .nav-toggle{ display:flex; }
  .nav-right .btn{ display:none; }
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .grid-4, .grid-5{ grid-template-columns: 1fr 1fr; }
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; text-align:left; padding: 40px; }
  .section{ padding: 70px 0; }
  .page-hero-inner{ padding: 48px 28px; }
  .adv-row{ flex-direction:column; gap: 10px; }
  .adv-row .num{ width:auto; }
  .hero{ padding: 24px 0 12px; }
  .hero-actions{ gap: 14px; }
  .poster-card{ width: 180px; }
}

@media (max-width: 560px){
  .grid-4, .grid-5{ grid-template-columns: 1fr 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 34px; }
  .stat-strip{ grid-template-columns: 1fr 1fr; }
  .cta-banner{ padding: 30px; }
  .nav-wrap{ padding: 10px 12px 0; }

  .hero{ padding: 10px 0 14px; }
  .hero .split{ gap: 14px; }
  .hero .eyebrow{ font-size: 11px; padding: 5px 12px 5px 8px; margin-bottom: 10px; }
  .hero h1{ font-size: 26px; line-height: 1.15; margin-bottom: 8px; }
  .hero .split > div:first-child p{ font-size: 13.5px; line-height: 1.5; margin-bottom: 14px; }
  .hero-actions{ gap: 10px; margin-top: 0; }
  .hero-actions .btn{ padding: 11px 18px; font-size: 13.5px; }
  .hero .split-media{ max-width: 300px; aspect-ratio: 1/1; }
  .hero .split-media img{ object-position: center top; }
}
