/* ============================================================
   ElderBridge — Ultra-Modern Stylesheet
   elderbridgecare.org
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  --navy:        #0D2137;
  --navy-light:  #1A3C5E;
  --blue:        #2E6DA4;
  --blue-light:  #EBF3FB;
  --gold:        #C9A84C;
  --gold-dark:   #A8863A;
  --gold-pale:   rgba(201,168,76,0.12);
  --green:       #174A2E;
  --green-pale:  rgba(23,74,46,0.10);
  --white:       #FFFFFF;
  --text:        #222222;
  --muted:       #64748b;
  --wa:          #25D366;
  --soft-bg:     #F7F9FC;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(13,33,55,0.10);
  --shadow-lg:  0 12px 48px rgba(13,33,55,0.18);
  --shadow-xl:  0 24px 80px rgba(13,33,55,0.22);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }

/* ── Skip Link ─────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px;
  overflow: hidden; z-index: 99999;
}
.skip-link:focus {
  position: fixed; left: 16px; top: 16px; width: auto; height: auto;
  overflow: visible; background: var(--gold); color: var(--navy);
  font-weight: 700; padding: 12px 24px; border-radius: var(--r-pill);
  outline: 3px solid var(--navy);
}

/* ── Scroll Progress Bar ───────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), #e8c96a);
  z-index: 9999; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 48px;
}
@media (max-width: 1023px) { .container { padding: 0 32px; } }
@media (max-width: 767px)  { .container { padding: 0 20px; } }

/* ── Sections ──────────────────────────────────────────── */
.section { padding: 100px 0; }
.bg-white  { background: var(--white); }
.bg-soft   { background: var(--soft-bg); }
.bg-impact { background: var(--navy); position: relative; overflow: hidden; }
.bg-navy   { background: var(--navy); position: relative; overflow: hidden; }

@media (max-width: 1023px) { .section { padding: 80px 0; } }
@media (max-width: 767px)  { .section { padding: 64px 0; } }

/* ── Section Labels ────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(46,109,164,0.10);
  border: 1px solid rgba(46,109,164,0.20);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.section-label-gold {
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.25);
}

/* ── Section Headings ──────────────────────────────────── */
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 20px;
}
.text-white, .text-white * { color: var(--white) !important; }

/* ── Body text ─────────────────────────────────────────── */
.body-text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 62ch;
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  letter-spacing: 0.03em; padding: 15px 32px;
  border-radius: var(--r-pill); border: none;
  cursor: pointer; text-decoration: none;
  min-height: 54px; white-space: nowrap;
  position: relative; overflow: hidden;
  transition: transform 0.2s var(--ease-out-expo),
              box-shadow 0.2s var(--ease-out-expo),
              background 0.2s ease;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0; transition: opacity 0.2s ease;
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

/* Nav CTA */
.btn-nav-cta {
  background: var(--gold); color: var(--navy);
  padding: 10px 24px; font-size: 15px; min-height: 44px;
}
.btn-nav-cta:hover { background: var(--gold-dark); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }

/* Hero gold */
.btn-gold-hero {
  background: var(--gold); color: var(--navy);
  font-size: 17px; padding: 18px 36px; min-height: 58px;
  box-shadow: 0 4px 24px rgba(201,168,76,0.40);
}
.btn-gold-hero:hover { background: var(--gold-dark); box-shadow: 0 8px 32px rgba(201,168,76,0.50); }

/* Hero outline */
.btn-outline-hero {
  background: rgba(255,255,255,0.10);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.50);
  font-size: 17px; padding: 18px 36px; min-height: 58px;
  backdrop-filter: blur(8px);
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.80); }

/* Navy */
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover { background: var(--navy-light); box-shadow: var(--shadow-lg); }

/* Gold */
.btn-gold {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,168,76,0.30);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 8px 24px rgba(201,168,76,0.45); }

/* WA large */
.btn-wa-large {
  background: var(--wa); color: var(--white);
  font-size: 18px; padding: 20px 44px; min-height: 62px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.40);
}
.btn-wa-large:hover { background: #1db954; box-shadow: 0 8px 32px rgba(37,211,102,0.55); }

/* ── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0; transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.navbar.scrolled {
  background: rgba(13,33,55,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08), 0 4px 24px rgba(0,0,0,0.25);
}
.nav-container {
  display: flex; align-items: center; justify-content: flex-start;
  max-width: 1200px; margin: 0 auto; padding: 0 48px; height: 76px;
  transition: height 0.3s ease;
}
.navbar.scrolled .nav-container {
  height: 84px;
  align-items: center;
}
.navbar.scrolled .nav-logo {
  padding: 8px 0;
  align-self: center;
}
.navbar.scrolled .logo-img {
  height: 60px !important;
  padding: 6px 12px !important;
  box-sizing: content-box;
}
@media (max-width: 1023px) { .nav-container { padding: 0 32px; } }
@media (max-width: 767px)  { .nav-container { padding: 0 20px; } }

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  {
  height: 40px; width: auto; object-fit: contain;
  background: var(--white); border-radius: var(--r-sm);
  padding: 4px 10px; transition: opacity 0.2s;
}
.nav-logo:hover .logo-img { opacity: 0.85; }
.nav-logo:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; border-radius: var(--r-sm); }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.80);
  padding: 10px 16px; border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap; min-height: 44px;
  display: inline-flex; align-items: center;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.nav-end { display: flex; align-items: center; gap: 12px; margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 52px; height: 52px;
  border-radius: var(--r-sm); background: transparent;
}
.hamburger:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.bar {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s ease, width 0.3s ease;
}
.hamburger[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; width: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav backdrop ──────────────────────────────────── */
.nav-backdrop {
  display: none; position: fixed; inset: 0; z-index: 998;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.3s ease;
}
.nav-backdrop.active { display: block; opacity: 1; }

@media (max-width: 900px) {
  /* ── Drawer ── */
  .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: #0c1e36;
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 999; overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
    left: auto; gap: 0;
    padding-top: 84px;
    justify-content: flex-start; align-items: stretch;
  }
  .nav-menu.open { transform: translateX(0); }

  /* Nav items */
  .nav-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-link {
    font-size: 16px; font-weight: 500; padding: 16px 24px;
    min-height: 0; border-radius: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    color: rgba(255,255,255,0.85);
  }
  .nav-link:hover { background: rgba(255,255,255,0.05); color: var(--white); }
  .chevron { display: inline; transition: transform 0.25s ease; }
  .has-dropdown.open .chevron { transform: rotate(180deg); }

  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }

  /* Push hamburger to the right — nav-menu is position:fixed so it leaves the flow */
  .nav-end { margin-left: auto; }

}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
@media (max-width: 767px) { .hero { height: auto; min-height: 100svh; padding: 130px 0 120px; } }

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,33,55,0.88) 0%,
    rgba(13,33,55,0.65) 45%,
    rgba(13,33,55,0.80) 100%
  );
}

/* Animated orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: orbFloat1 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,109,164,0.22) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; left: 60%;
  animation: orbFloat3 25s ease-in-out infinite;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 24px;
}

.hero-trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.90);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px; border-radius: var(--r-pill);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.badge-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--wa); flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-heading {
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  font-weight: 800;
}
.line-gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* Line reveal animation */
.line-reveal {
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  animation: lineReveal 0.9s var(--ease-out-expo) both;
}
.line-reveal:nth-child(1) { animation-delay: 0.1s; }
.line-reveal:nth-child(2) { animation-delay: 0.2s; }
.line-reveal:nth-child(3) { animation-delay: 0.3s; }
.hero-sub.line-reveal    { animation-delay: 0.45s; }
.hero-ctas.line-reveal   { animation-delay: 0.60s; }

/* Hero stats bar */
.hero-stats-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; align-items: stretch; justify-content: center;
  background: rgba(13,33,55,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 22px 40px; gap: 4px;
  flex: 1; max-width: 240px;
}
.hero-stat strong {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65);
  letter-spacing: 0.02em;
}
.stat-sep {
  width: 1px; background: rgba(255,255,255,0.10);
  margin: 16px 0; flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-stats-bar { position: relative; flex-wrap: wrap; }
  .hero-stat { padding: 16px 20px; flex: 1 1 45%; max-width: none; }
  .stat-sep:nth-child(even) { display: none; }
}

/* Scroll down indicator — anchored to right side, desktop only */
.scroll-down {
  position: absolute; right: 44px; bottom: 60px;
  left: auto; transform: none;
  z-index: 2; display: flex; flex-direction: column; align-items: center;
  gap: 8px; color: rgba(255,255,255,0.50); font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: color 0.2s;
}
.scroll-down:hover { color: var(--gold); }
.scroll-down:focus-visible { outline: 3px solid var(--gold); outline-offset: 6px; border-radius: 4px; }
@media (max-width: 1023px) { .scroll-down { display: none; } }

.scroll-line-anim {
  width: 1.5px; height: 40px; background: rgba(255,255,255,0.20);
  border-radius: 1px; position: relative; overflow: hidden;
}
.scroll-dot {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; background: var(--gold); border-radius: 2px;
  animation: scrollDrop 1.8s ease-in-out infinite;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; background: var(--navy); padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content {
  display: flex; align-items: center; gap: 24px;
  padding-right: 24px; white-space: nowrap;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.55); letter-spacing: 0.04em;
}
.mdot { color: var(--gold); font-size: 8px; }

/* ── STORY / ABOUT ──────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 64px);
  align-items: stretch;
}
@media (max-width: 1023px) { .story-grid { gap: 48px; } }
@media (max-width: 767px)  {
  .story-grid { grid-template-columns: 1fr; gap: 40px; align-items: center; }
}

.story-image-col {
  display: flex;
  min-height: 0;
}

.story-img-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: flex;
}
.story-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-expo);
}
@media (max-width: 767px) {
  .story-img {
    min-height: 0;
    aspect-ratio: 3/4;
    height: auto;
  }
  .story-img-wrap { display: block; }
}
.story-img-wrap:hover .story-img { transform: scale(1.04); }

.story-img-card {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(13,33,55,0.88); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.story-img-card-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.30);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.story-img-card strong { color: var(--white); font-size: 15px; font-weight: 600; display: block; }
.story-img-card p { color: rgba(255,255,255,0.60); font-size: 13px; margin: 2px 0 0; }

.story-content-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  max-width: none;
}
.story-content-col .section-label { align-self: flex-start; }
.story-content-col .body-text { max-width: none; }

.svc-list-heading {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}

.founder-quote {
  margin-top: 32px; padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.founder-quote p {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 22px);
  font-style: italic; color: var(--navy);
  line-height: 1.5; margin-bottom: 12px;
}
.founder-quote cite {
  font-size: 14px; font-weight: 600;
  color: var(--muted); font-style: normal;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ── IMPACT ──────────────────────────────────────────────── */
.impact-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.impact-header { text-align: center; margin-bottom: 64px; }
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 1023px) { .impact-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .impact-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

.impact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 36px 28px; text-align: center;
  transition: transform 0.35s var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.impact-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
}
.impact-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.20);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--gold);
}
.impact-number {
  display: block;
  font-family: var(--font-head); font-size: clamp(40px, 4vw, 56px);
  font-weight: 700; color: var(--gold); line-height: 1;
  margin-bottom: 12px;
}
.impact-label {
  display: block; font-size: 15px; color: rgba(255,255,255,0.65);
  line-height: 1.4; font-weight: 400;
}

/* ── SPLIT SECTIONS (Foundation / Care Home) ───────────── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch;
}
.split-grid-rev .split-img-col { order: 2; }
.split-grid-rev .split-content  { order: 1; }

@media (max-width: 1023px) { .split-grid { gap: 48px; } }
@media (max-width: 767px) {
  .split-grid { grid-template-columns: 1fr; gap: 40px; align-items: center; }
  .split-grid-rev .split-img-col { order: -1; }
}

.split-img-col {
  display: flex;
  min-height: 0;
}

.split-img-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  flex: 1;
  width: 100%;
  min-height: 100%;
  display: flex;
}
.split-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out-expo);
}
@media (max-width: 767px) {
  .split-img-wrap { display: block; }
  .split-img {
    height: auto;
    aspect-ratio: 4/5;
  }
}
.split-img-wrap:hover .split-img { transform: scale(1.04); }

.split-badge {
  position: absolute; top: 20px; left: 20px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 8px 16px; border-radius: var(--r-pill);
  backdrop-filter: blur(12px);
}
.split-badge-green {
  background: rgba(23,74,46,0.85); color: #5aba7a;
  border: 1px solid rgba(90,186,122,0.30);
}
.split-badge-gold {
  background: rgba(13,33,55,0.85); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.30);
}

.split-content { display: flex; flex-direction: column; }
.split-content .section-label { align-self: flex-start; }
.split-sub {
  font-size: 19px; color: var(--navy); font-weight: 500;
  line-height: 1.55; margin-bottom: 20px;
}

/* Service list */
.service-list { margin: 24px 0; display: flex; flex-direction: column; gap: 20px; }
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
}
@media (max-width: 767px) {
  .service-list-grid { grid-template-columns: 1fr; }
}
.service-list-grid .svc-item { align-items: center; }
.service-list-grid .svc-text strong { margin-bottom: 0; font-size: 15px; line-height: 1.35; }
.svc-item {
  display: flex; gap: 16px; align-items: flex-start;
}
.svc-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--blue-light);
  border: 1px solid rgba(46,109,164,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); flex-shrink: 0; margin-top: 2px;
}
.svc-text strong { font-size: 16px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.svc-text p { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0; }

/* Feature cards */
.feature-stack { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.feat-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid rgba(13,33,55,0.08);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease, border-color 0.25s ease;
}
.feat-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13,33,55,0.14);
}
.feat-icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feat-icon-blue  { background: rgba(46,109,164,0.10); color: var(--blue); }
.feat-icon-gold  { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.feat-icon-green { background: rgba(23,74,46,0.10);   color: var(--green); }
.feat-card strong { font-size: 16px; font-weight: 600; color: var(--navy); display: block; margin-bottom: 4px; }
.feat-card p { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; }

.split-cta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-top: 32px;
}
.domain-pill {
  font-size: 13px; font-family: monospace;
  color: var(--muted); letter-spacing: 0.02em;
  background: rgba(13,33,55,0.05);
  padding: 6px 12px; border-radius: var(--r-pill);
  border: 1px solid rgba(13,33,55,0.08);
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-glow {
  position: absolute; top: -150px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(46,109,164,0.20) 0%, transparent 70%);
  pointer-events: none;
}
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-intro {
  font-size: 18px; color: rgba(255,255,255,0.65);
  max-width: 52ch; margin: 12px auto 0;
}

.contact-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 0 auto 48px;
}
@media (max-width: 767px) { .contact-cards { grid-template-columns: 1fr; max-width: 420px; } }

.ccard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 36px 28px; text-align: center;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s ease, border-color 0.3s ease;
}
.ccard:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}
.ccard-featured {
  background: rgba(37,211,102,0.10);
  border-color: rgba(37,211,102,0.25);
}
.ccard-featured:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.40);
}
.ccard-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: rgba(255,255,255,0.80);
}
.ccard-icon-wa { background: rgba(37,211,102,0.15); color: var(--wa); }
.ccard h3 {
  font-family: var(--font-body); font-size: 16px; font-weight: 600;
  color: var(--white); margin-bottom: 10px; letter-spacing: 0;
}
.ccard-link {
  font-size: 16px; color: rgba(255,255,255,0.80);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color 0.2s, text-decoration-color 0.2s;
  word-break: break-word;
}
.ccard-link:hover { color: var(--gold); text-decoration-color: var(--gold); }
.ccard-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.ccard-note { font-size: 13px; color: rgba(255,255,255,0.40); margin-top: 8px; }

.wa-hero-cta { text-align: center; margin-bottom: 48px; }

.contact-social-row {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-bottom: 64px;
}
.contact-social-row p { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; }
.social-icons { display: flex; gap: 8px; }

.soc-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.70);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.soc-icon:hover { background: var(--gold-pale); color: var(--gold); transform: translateY(-3px); }
.soc-icon:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* Newsletter */
.newsletter-block {
  max-width: 580px; margin: 0 auto; text-align: center;
  padding: 40px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
}
@media (max-width: 600px) { .newsletter-block { padding: 32px 20px; } }
.newsletter-block h3 {
  font-family: var(--font-body); font-size: 20px; font-weight: 600;
  color: var(--white); margin-bottom: 24px; letter-spacing: 0;
}
.nl-form { display: flex; flex-direction: column; gap: 8px; }
.nl-row { display: flex; gap: 12px; flex-wrap: wrap; }
.nl-field { flex: 1 1 240px; text-align: left; }
.nl-label {
  display: block; font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.60); margin-bottom: 8px;
}
.nl-input {
  width: 100%; font-family: var(--font-body); font-size: 16px;
  color: var(--white); background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill); padding: 14px 22px;
  min-height: 52px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-input::placeholder { color: rgba(255,255,255,0.35); }
.nl-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.20); }
.nl-btn { flex-shrink: 0; align-self: flex-end; }
.nl-error { font-size: 14px; color: #f87171; text-align: left; min-height: 18px; display: block; }
.nl-success {
  font-size: 16px; font-weight: 600; color: #4ade80;
  padding: 16px; background: rgba(74,222,128,0.10);
  border-radius: var(--r-md); border: 1px solid rgba(74,222,128,0.20);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #07131f;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.70);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; background: var(--white); border-radius: var(--r-sm); padding: 4px 10px; }
.footer-tagline { font-size: 16px; color: rgba(255,255,255,0.50); line-height: 1.65; max-width: 30ch; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 6px; }
.footer-socials .soc-icon { width: 40px; height: 40px; }

.footer-col-h {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-link {
  font-size: 16px; color: rgba(255,255,255,0.65);
  transition: color 0.2s; line-height: 1.5;
}
.footer-link:hover { color: var(--gold); }
.footer-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

.footer-bottom {
  padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.30); }

/* ── FLOATING WHATSAPP ───────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.50);
  text-decoration: none;
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s ease;
  isolation: isolate;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
.wa-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.wa-tip {
  position: absolute; right: 74px;
  background: rgba(13,33,55,0.95); backdrop-filter: blur(10px);
  color: var(--white); padding: 7px 16px;
  border-radius: var(--r-pill); font-size: 14px; font-weight: 500;
  white-space: nowrap; border: 1px solid rgba(255,255,255,0.10);
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateX(8px);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }

@media (max-width: 767px) {
  .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .wa-tip { display: none; }
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out-expo),
                transform 0.7s var(--ease-out-expo);
    transition-delay: var(--stagger, 0s);
  }
  .reveal-up.in-view { opacity: 1; transform: translateY(0); }

  .reveal-left {
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
  }
  .reveal-left.in-view { opacity: 1; transform: translateX(0); }

  .reveal-right {
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
  }
  .reveal-right.in-view { opacity: 1; transform: translateX(0); }

  /* ── Keyframes ────── */
  @keyframes lineReveal {
    from { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); opacity: 0; }
    to   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); opacity: 1; }
  }

  @keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(60px,40px) scale(1.1); }
    66%     { transform: translate(-30px,80px) scale(0.95); }
  }
  @keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(-50px,-60px) scale(1.08); }
    66%     { transform: translate(40px,-30px) scale(0.92); }
  }
  @keyframes orbFloat3 {
    0%,100% { transform: translate(-50%,-50%) scale(1); }
    50%     { transform: translate(-50%,-50%) translate(80px, -60px) scale(1.15); }
  }
  @keyframes badgePulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    50%     { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  }
  @keyframes scrollDrop {
    0%   { top: -6px; opacity: 1; }
    80%  { top: calc(100% + 2px); opacity: 0; }
    81%  { top: -6px; opacity: 0; }
    100% { top: -6px; opacity: 1; }
  }
  @keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* WhatsApp pulse ring */
  .wa-float::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    background: var(--wa); z-index: -1;
    animation: waRing 2.5s ease-out infinite;
  }
  @keyframes waRing {
    0%   { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .line-reveal { animation: none; }
  .hero-orb, .badge-pulse, .scroll-dot, .wa-float::before { animation: none; }
  .marquee-track { animation: none; }
}

/* ── Focus rings ───────────────────────────────────────────  */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--gold); outline-offset: 4px;
}

/* ── Hero CTA spacer (buttons removed, space kept) ─────────  */
.hero-ctas-spacer { height: 56px; }

/* ── Logo size increase ────────────────────────────────────  */
.logo-img { height: 60px !important; padding: 4px 12px !important; }

/* ── Hero overlay — lightened ──────────────────────────────  */
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(13,33,55,0.70) 0%,
    rgba(13,33,55,0.45) 45%,
    rgba(13,33,55,0.65) 100%
  ) !important;
}

/* ── Dropdown nav ──────────────────────────────────────────  */
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; background: none; border: none; cursor: pointer; font-family: inherit; }
.chevron { flex-shrink: 0; transition: transform 0.22s var(--ease-out-expo); }
.has-dropdown:hover .chevron,
.has-dropdown.open   .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 4px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10,26,46,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 8px; min-width: 230px;
  list-style: none; z-index: 200;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
/* Dropdown open state — driven entirely by JS (.open class) so mouse
   can travel freely from nav link to panel without the hover chain breaking */
.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block; padding: 11px 16px; color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500; border-radius: 9px;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.dropdown-link:hover { background: rgba(255,255,255,0.07); color: var(--gold); }

/* Mobile: accordion dropdown inside drawer */
@media (max-width: 900px) {
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto;
    background: rgba(0,0,0,0.18);
    border: none; border-radius: 0; padding: 0;
    box-shadow: none; min-width: 0; display: none;
    width: 100%;
  }
  .has-dropdown.open .dropdown { display: block; transform: none !important; left: auto !important; }
  .dropdown-link {
    font-size: 14px; font-weight: 400;
    padding: 13px 24px 13px 40px;
    color: rgba(255,255,255,0.65);
    border-top: 1px solid rgba(255,255,255,0.05);
    display: block; border-radius: 0;
  }
  .dropdown-link:hover { color: var(--gold); background: rgba(255,255,255,0.04); }
}

/* ── C.A.R.E. pillars bar (replaces stats bar) ─────────────  */
.hero-care-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,33,55,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 32px; gap: 0; z-index: 2;
}
.care-pillar {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex: 1; padding: 8px 20px; text-align: center;
}
.care-pillar strong {
  font-family: var(--font-serif); font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
}
.care-pillar-icon {
  color: var(--gold); display: flex; align-items: center; justify-content: center;
}
.care-pillar-sep {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15); flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-care-bar { flex-wrap: wrap; padding: 16px 16px; }
  .care-pillar { flex: 1 1 45%; padding: 10px 8px; }
  .care-pillar-sep:nth-child(even) { display: none; }
}

/* ── About Us section ──────────────────────────────────────  */
.about-header { text-align: center; margin-bottom: 3.5rem; }
.about-header .section-heading { max-width: 680px; margin: 0 auto 1rem; }
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) { .mv-grid { grid-template-columns: 1fr; } }

.mv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md); padding: 2rem 2rem 2rem;
  color: var(--white);
}
.mv-icon {
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center;
}
.mv-card h3 {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.75rem;
}
.mv-card p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; margin: 0; }

.care-values-section { margin-top: 1rem; }
.care-values-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1023px) { .care-values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px)  { .care-values-grid { grid-template-columns: 1fr; } }

.cv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md); padding: 1.75rem 1.5rem;
  text-align: center; transition: background 0.25s, border-color 0.25s;
}
.cv-card:hover {
  background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3);
}
.cv-icon {
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.cv-card h4 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.5rem;
}
.cv-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.6; margin: 0; }

/* ── Contact form ──────────────────────────────────────────  */
.contact-form-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-lg); padding: 2.5rem;
  margin-bottom: 3rem;
}
.cf-title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.75rem;
}
.cf-form { display: flex; flex-direction: column; gap: 1.25rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 639px) { .cf-row { grid-template-columns: 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cf-input, .cf-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm); padding: 13px 16px;
  color: var(--white); font-size: 15px; font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  width: 100%; box-sizing: border-box;
}
.cf-input::placeholder, .cf-textarea::placeholder { color: rgba(255,255,255,0.35); }
.cf-input:focus, .cf-textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}
.cf-textarea { resize: vertical; min-height: 130px; }
.cf-submit { align-self: flex-start; display: flex; align-items: center; gap: 8px; }

/* ── Trust badge — single line on mobile ──────────────────  */
@media (max-width: 500px) {
  .hero-trust-badge {
    font-size: 10px; letter-spacing: 0;
    padding: 6px 12px; gap: 6px;
    white-space: nowrap;
  }
  .badge-pulse { width: 6px; height: 6px; }
}

/* ── Drawer contact CTA ─────────────────────────────────────  */
.nav-drawer-cta-item { display: none; }
@media (max-width: 900px) {
  .nav-drawer-cta-item {
    display: block; list-style: none;
    padding: 24px 24px 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-drawer-cta {
    display: block;
    background: var(--gold);
    color: #0a1a2e;
    font-weight: 700; font-size: 15px;
    text-align: center; padding: 14px 20px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-drawer-cta:hover { opacity: 0.88; }
}
