/* ============================================================
   INFUZE — GLOBAL STYLESHEET v2
   Edit once → changes sitewide
   ============================================================ */

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

/* ─── TOKENS ─── */
:root {
  --teal:        #1a6278;
  --teal-dark:   #0d3d4d;
  --teal-deep:   #0a2a36;
  --teal-mid:    #155068;
  --teal-light:  #2a8aa8;
  --teal-pale:   #e4f2f7;
  --mint:        #3ecfb2;
  --mint-light:  #6eddd0;
  --mint-pale:   #d6f5f0;
  --white:       #ffffff;
  --off-white:   #f5f9fb;
  --text:        #0d2b36;
  --text-mid:    #3a6070;
  --text-light:  #6b8fa0;
  --border:      rgba(26,98,120,0.13);
  --border-dark: rgba(26,98,120,0.26);
  --font-serif:  'DM Serif Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --nav-height:  68px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 999px;
  --shadow-sm:   0 2px 8px rgba(10,42,54,0.07);
  --shadow-md:   0 8px 24px rgba(10,42,54,0.11);
  --shadow-lg:   0 20px 48px rgba(10,42,54,0.16);
  --shadow-dark: 0 20px 50px rgba(0,0,0,0.38);
  --space-xs:    8px;
  --space-sm:    16px;
  --space-md:    24px;
  --space-lg:    40px;
  --space-xl:    64px;
  --space-2xl:   96px;
  --t:           0.22s ease;
  --t-slow:      0.4s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; }

/* ─── LAYOUT ─── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.section    { padding: var(--space-2xl) var(--space-lg); }
.section-sm { padding: var(--space-xl) var(--space-lg); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-md); }

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--mint); display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: currentColor; flex-shrink: 0; }
.eyebrow.center { justify-content: center; }
.eyebrow.dark { color: var(--teal); }
.eyebrow.dark::before { background: var(--teal); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.8vw, 44px); font-weight: 400; line-height: 1.12;
  color: var(--text); margin-bottom: 14px;
}
.section-title em  { color: var(--teal); font-style: italic; }
.section-title.white { color: var(--white); }
.section-title.white em { color: var(--mint); }

.section-sub {
  font-size: 16px; font-weight: 300; color: var(--text-mid);
  line-height: 1.75; max-width: 500px; margin-bottom: 52px;
}
.section-sub.white { color: rgba(255,255,255,0.45); }
.section-sub.wide { max-width: 640px; }

.text-display { font-family: var(--font-serif); font-size: clamp(36px, 6vw, 68px); font-weight: 400; line-height: 1.08; }
.text-h1 { font-family: var(--font-serif); font-size: clamp(30px, 4.5vw, 52px); font-weight: 400; line-height: 1.1; }
.text-h2 { font-family: var(--font-serif); font-size: clamp(24px, 3.2vw, 38px); font-weight: 400; line-height: 1.15; }
.text-h3 { font-family: var(--font-serif); font-size: clamp(20px, 2.4vw, 28px); font-weight: 400; line-height: 1.2; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-family: var(--font-sans);
  font-size: 15px; font-weight: 500; line-height: 1;
  border: none; border-radius: var(--radius-md);
  cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { flex-shrink: 0; transition: transform var(--t); }
.btn:hover svg { transform: translateX(3px); }

.btn-mint       { background: var(--mint); color: var(--teal-deep); }
.btn-mint:hover { background: var(--mint-light); box-shadow: 0 8px 24px rgba(62,207,178,0.35); }

.btn-teal       { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); box-shadow: 0 8px 24px rgba(26,98,120,0.35); }

.btn-ghost-white { background: transparent; color: rgba(255,255,255,0.82); border: 1px solid rgba(255,255,255,0.24); }
.btn-ghost-white:hover { border-color: var(--mint); color: var(--mint); background: transparent; }

.btn-ghost-teal  { background: transparent; color: var(--teal); border: 1px solid rgba(26,98,120,0.3); }
.btn-ghost-teal:hover { border-color: var(--teal); background: var(--teal-pale); }

.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ─── BADGES ─── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 13px; border-radius: var(--radius-pill); font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; }
.badge-teal   { background: var(--teal-pale); color: var(--teal); }
.badge-mint   { background: var(--mint-pale); color: #0a6b5a; }
.badge-white  { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); }

/* ─── LINK ARROW ─── */
.link-arrow { font-size: 14px; font-weight: 500; color: var(--teal); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--t), color var(--t); }
.link-arrow:hover { gap: 10px; }
.link-arrow.mint { color: var(--mint); }
.link-arrow.white { color: rgba(255,255,255,0.7); }
.link-arrow.white:hover { color: var(--mint); }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.in, .reveal-right.in { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.d1{transition-delay:0.08s} .d2{transition-delay:0.16s} .d3{transition-delay:0.24s} .d4{transition-delay:0.32s} .d5{transition-delay:0.40s} .d6{transition-delay:0.48s}

/* ─── IMAGE EFFECTS ─── */

/* Tilt card — add to any card wrapper */
.tilt { transform-style: preserve-3d; transition: transform 0.15s ease; }

/* Image reveal wipe */
.img-reveal-wrap { overflow: hidden; border-radius: var(--radius-lg); position: relative; }
.img-reveal-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: var(--teal-pale);
  transform: scaleX(1); transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
}
.img-reveal-wrap.in::after { transform: scaleX(0); }
.img-reveal-wrap img, .img-reveal-wrap .img-ph { transform: scale(1.08); transition: transform 0.8s cubic-bezier(0.77,0,0.18,1); }
.img-reveal-wrap.in img, .img-reveal-wrap.in .img-ph { transform: scale(1); }

/* Zoom on hover */
.img-zoom { overflow: hidden; border-radius: var(--radius-lg); }
.img-zoom img, .img-zoom .img-ph { transition: transform 0.6s ease; }
.img-zoom:hover img, .img-zoom:hover .img-ph { transform: scale(1.05); }

/* Floating cards */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.float { animation: float 5s ease-in-out infinite; }
.float-delay { animation: float 5s ease-in-out 1.5s infinite; }

/* Shimmer on placeholder images */
@keyframes shimmer { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
.img-ph {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #c5dde7 0%, #d8edf5 50%, #c0d8e4 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.img-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  background-size: 400px 100%;
  animation: shimmer 2.5s ease-in-out infinite;
}
.img-ph.dark { background: linear-gradient(135deg, #0d3d4d 0%, #0a2a36 50%, #083040 100%); }
.img-ph.mint { background: linear-gradient(135deg, #aee9e0 0%, #c8f4ee 50%, #a8e6dc 100%); }
.img-ph svg { width: 32px; height: 32px; stroke: rgba(10,42,54,0.22); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.img-ph.dark svg { stroke: rgba(62,207,178,0.3); }
.img-ph.mint svg { stroke: rgba(10,42,54,0.25); }
.img-ph span { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10,42,54,0.3); position: relative; z-index: 1; }
.img-ph.dark span { color: rgba(62,207,178,0.28); }

/* Gradient overlay on images */
.img-overlay { position: relative; }
.img-overlay::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: linear-gradient(to top, rgba(10,42,54,0.7), transparent); z-index: 1; border-radius: inherit; }

/* Glass card */
.glass {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}
.glass-light {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
}

/* Parallax container */
.parallax-wrap { position: relative; overflow: hidden; }
.parallax-el   { will-change: transform; }

/* ─── CARDS ─── */
.card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--t-slow), border-color var(--t-slow), box-shadow var(--t-slow); }
.card:hover { transform: translateY(-5px); border-color: var(--border-dark); box-shadow: var(--shadow-md); }
.card-body { padding: 28px; }
.card-teal-top { border-top: 3px solid var(--teal); }
.card-mint-top { border-top: 3px solid var(--mint); }

/* ─── SECTION BANDS ─── */
.band-white    { background: var(--white); }
.band-off      { background: var(--off-white); }
.band-teal     { background: var(--teal-deep); }
.band-gradient { background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%); }

/* ─── DIVIDERS ─── */
.divider-gradient { height: 3px; border: none; background: linear-gradient(to right, transparent 5%, var(--teal) 30%, var(--mint) 50%, var(--teal) 70%, transparent 95%); }

/* ─── STATS ROW ─── */
.stats-band { position: relative; overflow: hidden; }
.stats-parallax-bg { position: absolute; inset: -80px 0; will-change: transform; }
.stats-overlay { position: absolute; inset: 0; background: rgba(10,42,54,0.52); z-index: 2; }
.stats-content { position: relative; z-index: 3; }
.stats-row { display: flex; background: rgba(10,42,54,0.6); backdrop-filter: blur(14px); border: 1px solid rgba(62,207,178,0.18); border-radius: var(--radius-lg); overflow: hidden; }
.stat-block { padding: 38px 52px; text-align: center; border-right: 1px solid rgba(62,207,178,0.1); flex: 1; }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: var(--font-serif); font-size: 50px; color: var(--mint); line-height: 1; margin-bottom: 5px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ─── PARALLAX SPLIT ─── */
.split-section { position: relative; overflow: hidden; }
.split-bg { position: absolute; inset: -80px 0; will-change: transform; }
.split-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px var(--space-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-text h2 { font-family: var(--font-serif); color: var(--white); line-height: 1.15; margin-bottom: 14px; }
.split-text h2 em { color: var(--mint); font-style: italic; }
.split-text > p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.56); line-height: 1.75; margin-bottom: 24px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.check-list li { font-size: 14px; color: rgba(255,255,255,0.75); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.check-list li::before { content: '✓'; flex-shrink: 0; width: 20px; height: 20px; min-width: 20px; border-radius: 50%; background: rgba(62,207,178,0.12); border: 1px solid rgba(62,207,178,0.38); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--mint); line-height: 20px; text-align: center; margin-top: 1px; }

/* ─── TESTIMONIALS ─── */
.testi { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-lg); padding: 30px 26px; transition: background var(--t), transform var(--t-slow); }
.testi:hover { background: rgba(255,255,255,0.09); transform: translateY(-4px); }
.testi-stars { color: var(--mint); font-size: 13px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-q { font-family: var(--font-serif); font-style: italic; font-size: 15px; color: rgba(255,255,255,0.84); line-height: 1.72; margin-bottom: 20px; }
.testi-q::before { content: '\201C'; color: var(--mint); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testi-who { display: flex; gap: 11px; align-items: center; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; background: rgba(62,207,178,0.15); border: 1px solid rgba(62,207,178,0.3); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 500; color: var(--mint); }
.testi-name { font-size: 14px; font-weight: 500; color: var(--white); }
.testi-role { font-size: 12px; color: rgba(255,255,255,0.36); margin-top: 2px; }

/* ─── CTA BAND ─── */
.cta-band { background: var(--off-white); padding: 110px var(--space-lg); text-align: center; position: relative; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, transparent 5%, var(--teal) 30%, var(--mint) 50%, var(--teal) 70%, transparent 95%); }
.cta-inner { max-width: 580px; margin: 0 auto; }
.cta-inner h2 { font-family: var(--font-serif); font-size: clamp(28px,4vw,44px); font-weight: 400; color: var(--text); line-height: 1.15; margin-bottom: 14px; }
.cta-inner h2 em { color: var(--teal); font-style: italic; }
.cta-inner > p { font-size: 16px; font-weight: 300; color: var(--text-mid); line-height: 1.7; margin-bottom: 34px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) var(--space-lg) 80px;
  background: var(--teal-deep); position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(62,207,178,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(62,207,178,0.05) 1px, transparent 1px); background-size: 60px 60px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(36px,5.5vw,62px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.page-hero h1 em { color: var(--mint); font-style: italic; }
.page-hero p { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.72; max-width: 580px; margin-bottom: 36px; }
.page-hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-tr { width: 500px; height: 500px; background: radial-gradient(circle, rgba(62,207,178,0.1) 0%, transparent 65%); top: -100px; right: -80px; }
.orb-bl { width: 380px; height: 380px; background: radial-gradient(circle, rgba(26,98,120,0.28) 0%, transparent 65%); bottom: -60px; left: -40px; }

/* ─── LOGO BAR ─── */
.logo-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 30px var(--space-lg); }
.logo-bar p { text-align: center; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 20px; }
.logo-row { display: flex; justify-content: center; max-width: 1200px; margin: 0 auto; }
.logo-slot { flex: 0 0 200px; height: 44px; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--border); }
.logo-slot:last-child { border-right: none; }
.logo-block { width: 120px; height: 24px; background: var(--border); border-radius: 4px; opacity: 0.5; }

/* ─── NAV ─── */
#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-height);
  background: rgba(10,42,54,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(62,207,178,0.11);
  transition: background var(--t-slow);
}
#site-nav.solid { background: rgba(10,42,54,0.995); }
.nav-inner { max-width: 1200px; margin: 0 auto; height: 100%; padding: 0 var(--space-lg); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.nav-logo img { height: 30px; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > button { display: flex; align-items: center; gap: 5px; padding: 8px 13px; font-family: var(--font-sans); font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.68); background: none; border: none; cursor: pointer; border-radius: var(--radius-sm); transition: color var(--t), background var(--t); white-space: nowrap; }
.nav-item > a:hover, .nav-item > button:hover { color: var(--mint); background: rgba(255,255,255,0.05); }
.nav-item > a.active, .nav-item > button.active { color: var(--mint); }
.chevron { font-size: 9px; opacity: 0.4; transition: transform var(--t); }
.nav-item:hover .chevron { transform: rotate(180deg); }
.nav-drop { position: absolute; top: 100%; left: 0; background: #0a2a36; border: 1px solid rgba(62,207,178,0.15); border-radius: var(--radius-lg); padding: 8px; min-width: 230px; opacity: 0; pointer-events: none; transform: translateY(4px); transition: opacity 0.18s, transform 0.18s; box-shadow: var(--shadow-dark); margin-top: 0; }
/* Bridge pseudo-element fills the gap between button and dropdown so cursor doesn't fall through */
.nav-drop::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-drop a { display: block; padding: 10px 14px; font-size: 13px; color: rgba(255,255,255,0.6); border-radius: var(--radius-md); transition: color var(--t), background var(--t); }
.nav-drop a:hover { color: var(--mint); background: rgba(62,207,178,0.07); }
.drop-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.22); padding: 8px 14px 4px; }
.drop-hr { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 4px 0; }
.nav-cta { padding: 9px 20px; background: var(--mint); color: var(--teal-deep); border: none; border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: background var(--t), transform var(--t); }
.nav-cta:hover { background: var(--mint-light); transform: translateY(-1px); }
.nav-cta-group { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.nav-cta-group .nav-cta { padding: 9px 20px; }
.nav-contact-link { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 500; text-decoration: none; transition: color var(--t); font-family: var(--font-sans); white-space: nowrap; }
.nav-contact-link:hover { color: var(--mint); }

/* ─── FOOTER ─── */
#site-footer { background: var(--teal-deep); padding: 72px var(--space-lg) 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-brand img { height: 28px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 200px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 34px; height: 34px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.32); transition: border-color var(--t), color var(--t); }
.footer-socials a:hover { border-color: var(--mint); color: var(--mint); }
.footer-col h5 { font-family: var(--font-sans); font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.26); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.46); transition: color var(--t); }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.55); }

/* ─── KEYFRAMES ─── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes pulseDot { 0%,100%{opacity:0.35} 50%{opacity:1} }
@keyframes shimmer  { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes rotateSlow { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ─── MOBILE MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  gap: 5px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#mobile-menu {
  display: none;
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(8,34,44,0.98);
  backdrop-filter: blur(16px);
  z-index: 998;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-height));
  border-top: 1px solid rgba(62,207,178,0.12);
  padding: 16px 0 32px;
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#mobile-menu.open {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.mob-section { padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-section:last-child { border-bottom: none; }
.mob-section-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mint); padding: 14px 24px 6px;
}
.mob-link {
  display: block; padding: 12px 24px;
  font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-radius: 0;
}
.mob-link:hover, .mob-link:active { color: var(--mint); background: rgba(62,207,178,0.06); }
.mob-link.sub {
  font-size: 14px; color: rgba(255,255,255,0.5);
  padding: 9px 24px 9px 36px;
}
.mob-link.sub:hover { color: var(--mint); }
.mob-cta-wrap { padding: 20px 24px 8px; }
.mob-cta {
  display: block; width: 100%; padding: 14px;
  background: var(--mint); color: var(--teal-deep);
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: 16px; font-weight: 500;
  text-align: center; text-decoration: none;
  cursor: pointer; transition: background 0.2s;
}
.mob-cta:hover { background: var(--mint-light); }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) { .grid-4{grid-template-columns:1fr 1fr} }
@media(max-width:960px) {
  :root{--space-lg:24px}
  .nav-links,.nav-cta,.nav-cta-group{display:none}
  .nav-hamburger{display:flex}
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .split-inner{grid-template-columns:1fr;gap:40px;padding:72px var(--space-lg)}
  .stats-row{flex-wrap:wrap}
  .stat-block{flex:0 0 50%;border-right:none;border-bottom:1px solid rgba(62,207,178,0.1)}
  .stat-block:last-child{border-bottom:none}
}
@media(max-width:640px) {
  .footer-top{grid-template-columns:1fr}
  .stats-row{flex-direction:column}
  .stat-block{flex:none}
  .logo-slot{flex:0 0 50%}
  .logo-slot:nth-child(2n){border-right:none}
  .logo-slot:nth-child(n+3){border-top:1px solid var(--border)}
}

/* ─── GLOBAL MOBILE OVERFLOW SAFETY NET ─── */
@media(max-width:960px) {
  /* Any inline two-column grid that could overflow */
  [style*="grid-template-columns:1fr 380px"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Unstick any sticky sidebars */
  [style*="position:sticky"] {
    position: static !important;
  }
  /* Prevent any element exceeding viewport */
  * { max-width: 100%; }
  img, video, iframe { max-width: 100% !important; }
  /* Booking and calculator wraps */
  .booking-wrap, .calc-wrap { grid-template-columns: 1fr !important; }
  .result-panel { position: static !important; }
}
