/* ═══════════════════════════════════════════════════
   OCEAN REVIVE  ·  Design System v2
   Editorial luxury — Awwwards-calibre
   Colors: Navy / Teal / Amber
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Custom Properties ─────────────────────────── */
:root {
  --c-navy:        #060d18;
  --c-navy-2:      #091422;
  --c-navy-3:      #0d1c30;
  --c-navy-4:      #132338;
  --c-navy-5:      #1a2e48;
  --c-teal:        #00d4c8;
  --c-teal-dim:    #00b8ad;
  --c-teal-glow:   rgba(0,212,200,0.08);
  --c-teal-border: rgba(0,212,200,0.20);
  --c-amber:       #f0a500;
  --c-amber-dim:   #d49200;
  --c-white:       #ffffff;
  --c-w80:         rgba(255,255,255,0.80);
  --c-w60:         rgba(255,255,255,0.60);
  --c-w40:         rgba(255,255,255,0.40);
  --c-w20:         rgba(255,255,255,0.20);
  --c-w12:         rgba(255,255,255,0.12);
  --c-w08:         rgba(255,255,255,0.08);
  --c-w04:         rgba(255,255,255,0.04);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Sharp corners — not pills */
  --radius-xs:   3px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   20px;

  --nav-h: 76px;
  --gutter: 60px;
  --max-w: 1380px;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-navy);
  color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
  opacity: 0;
  transition: opacity 0.6s;
  animation: bodyFadeIn 0.6s 0.3s forwards; /* fallback if JS blocked */
}
body.loaded { opacity: 1; animation: none; }
@keyframes bodyFadeIn { to { opacity: 1; } }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
ul, ol { list-style: none; }
svg { display: block; }

/* ─── Custom Cursor ─────────────────────────────── */
.cursor-dot {
  position: fixed; z-index: 9999;
  width: 5px; height: 5px;
  background: var(--c-teal);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.15s, height 0.15s, background 0.2s;
}
.cursor-ring {
  position: fixed; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,212,200,0.35);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.3s var(--ease-out),
              height 0.3s var(--ease-out),
              border-color 0.2s,
              background 0.2s;
}
.cursor-ring.is-hover {
  width: 60px; height: 60px;
  border-color: rgba(0,212,200,0.18);
  background: rgba(0,212,200,0.04);
}
.cursor-ring.is-click {
  width: 26px; height: 26px;
  background: rgba(0,212,200,0.12);
}

/* ─── Grain Overlay ─────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 5000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ─── Scroll Progress ────────────────────────────── */
#scroll-bar {
  position: fixed; top: 0; left: 0; z-index: 500;
  height: 1.5px;
  background: linear-gradient(90deg, var(--c-teal), var(--c-amber));
  width: 0%;
  transition: width 0.08s linear;
}

/* ─── Navigation ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  transition: background 0.5s var(--ease-out), border-color 0.5s, height 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: 60px;
  background: rgba(6,13,24,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--c-w08);
}
.nav-logo img { height: 28px; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  margin-left: auto; margin-right: 36px;
}
.nav-links a {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.04em; color: var(--c-w50, rgba(255,255,255,0.5));
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--c-teal);
  transition: right 0.3s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--c-white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

/* Nav CTA — sharp, not pill */
.nav-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-white) !important;
  padding: 9px 20px;
  border: 1px solid var(--c-w20);
  border-radius: var(--radius-xs);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  background: var(--c-teal) !important;
  border-color: var(--c-teal) !important;
  color: var(--c-navy) !important;
}
.nav-btn.active {
  background: var(--c-teal);
  border-color: var(--c-teal);
  color: var(--c-navy) !important;
}

/* ─── Hero (Home) ────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 35%;
  will-change: transform;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,13,24,0.35) 0%,
    rgba(6,13,24,0.05) 30%,
    rgba(6,13,24,0.65) 65%,
    rgba(6,13,24,0.98) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 100px;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow-line {
  display: block; width: 36px; height: 1px;
  background: var(--c-teal); flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.025em; margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--c-teal); }
.hero-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--c-w60); line-height: 1.75;
  max-width: 540px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-scroll {
  position: absolute; right: var(--gutter); bottom: 80px; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
}
.hero-scroll span {
  writing-mode: vertical-rl;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-w30, rgba(255,255,255,0.3));
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--c-teal), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Hero floating stats */
.hero-stats {
  position: absolute; right: var(--gutter); top: 50%;
  transform: translateY(-50%); z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-stat-card {
  background: rgba(6,13,24,0.80);
  backdrop-filter: blur(12px);
  border: 1px solid var(--c-w10, rgba(255,255,255,0.10));
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  text-align: right; min-width: 155px;
}
.hero-stat-card .num {
  font-family: var(--f-display);
  font-size: 34px; font-weight: 700;
  color: var(--c-amber); line-height: 1;
}
.hero-stat-card .lbl {
  font-size: 11px; color: var(--c-w40);
  margin-top: 6px; line-height: 1.4;
}

/* ─── Marquee ─────────────────────────────────────── */
.marquee-section {
  background: var(--c-navy-2);
  border-top: 1px solid var(--c-w08);
  border-bottom: 1px solid var(--c-w08);
  overflow: hidden;
  padding: 20px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex; align-items: center;
  padding: 0 44px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-w30, rgba(255,255,255,0.3)); white-space: nowrap;
  border-right: 1px solid var(--c-w06, rgba(255,255,255,0.06));
  transition: color 0.2s;
  gap: 44px;
}
.marquee-item:hover { color: var(--c-w60); }
.marquee-sep {
  display: block; width: 4px; height: 4px;
  background: var(--c-teal); border-radius: 50%;
  opacity: 0.4;
}

/* ─── Section Shared ────────────────────────────── */
.s-pad { padding: 140px 0; }
.s-pad-sm { padding: 80px 0; }
.container {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--gutter);
}

/* Section label — em-dash prefix style */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal); margin-bottom: 20px;
}
.section-label::before {
  content: ''; width: 24px; height: 1px;
  background: var(--c-teal); flex-shrink: 0;
}

.section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 40px;
  margin-bottom: 72px;
}
.section-head-left { flex: 1; max-width: 600px; }
.section-head-right { flex-shrink: 0; }

/* Ghost section number */
.section-num {
  font-family: var(--f-display);
  font-size: clamp(100px, 14vw, 200px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.06em;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  color: transparent;
  user-select: none;
  pointer-events: none;
  display: block;
}

/* ─── Typography ─────────────────────────────────── */
.display-xl {
  font-family: var(--f-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -0.025em;
}
.display-lg {
  font-family: var(--f-display);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em;
}
.display-md {
  font-family: var(--f-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.015em;
}
.body-xl { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.75; color: var(--c-w60); }
.body-lg { font-size: 17px; line-height: 1.75; color: var(--c-w60); }
.body-md { font-size: 15px; line-height: 1.7; color: var(--c-w60); }
.text-teal { color: var(--c-teal); }
.text-amber { color: var(--c-amber); }
.text-dim { color: var(--c-w40); }
.text-italic { font-style: italic; }

/* Ghost / outline text */
.text-ghost {
  -webkit-text-stroke: 1px rgba(255,255,255,0.12);
  color: transparent;
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 700; line-height: 0.9;
  letter-spacing: -0.04em;
  user-select: none; pointer-events: none;
}

/* Editorial pullquote */
.editorial-quote {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-w80);
  border-left: 2px solid var(--c-teal);
  padding-left: 28px;
}

/* ─── Buttons — sharp corners ────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-xs);
  transition: background 0.2s, transform 0.3s var(--ease-out), border-color 0.2s, color 0.2s;
  cursor: none;
}
.btn-primary {
  background: var(--c-teal); color: var(--c-navy);
  border: 1px solid transparent;
}
.btn-primary:hover { background: var(--c-teal-dim); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--c-white);
  border: 1px solid var(--c-w20);
}
.btn-ghost:hover { border-color: var(--c-w60); transform: translateY(-1px); }

/* Text + arrow link — no button chrome */
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-w60);
  border-bottom: 1px solid var(--c-w12);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--c-teal); border-color: var(--c-teal); }
.link-arrow svg {
  width: 16px; height: 16px;
  transition: transform 0.25s var(--ease-out);
}
.link-arrow:hover svg { transform: translateX(4px); }

/* Arrow-only btn */
.btn-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  color: var(--c-teal); letter-spacing: 0.03em;
}
.btn-arrow svg {
  width: 20px; height: 20px;
  transition: transform 0.3s var(--ease-out);
}
.btn-arrow:hover svg { transform: translateX(5px); }

/* ─── Tag — sharp ────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  background: var(--c-teal-glow);
  border: 1px solid var(--c-teal-border);
  color: var(--c-teal);
}
.tag-amber {
  background: rgba(240,165,0,0.08);
  border-color: rgba(240,165,0,0.22);
  color: var(--c-amber);
}
.tag-subtle {
  background: var(--c-w04);
  border-color: var(--c-w08);
  color: var(--c-w60);
}

/* ─── Dividers ───────────────────────────────────── */
.hr { width: 100%; height: 1px; background: var(--c-w08); }
hr { border: none; height: 1px; background: var(--c-w08); margin: 0; }

/* ─── Stat Display ───────────────────────────────── */
.stat-block .num {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700; color: var(--c-amber);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-block .unit { color: var(--c-teal); }
.stat-block .lbl {
  font-size: 13px; color: var(--c-w40);
  margin-top: 10px; line-height: 1.55;
  font-weight: 500;
}

/* Oversized isolated stat */
.stat-giant {
  font-family: var(--f-display);
  font-size: clamp(72px, 10vw, 140px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.03em;
  color: var(--c-amber);
}

/* ─── Problem / Split Sections ──────────────────── */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px; overflow: hidden;
}
.split-media { position: relative; overflow: hidden; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px;
  background: var(--c-navy-2);
}

/* ─── Cards — less rounded ───────────────────────── */
.card {
  background: var(--c-navy-3);
  border: 1px solid var(--c-w08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}
.card:hover {
  border-color: var(--c-teal-border);
  transform: translateY(-4px);
}
.card-media { overflow: hidden; height: 280px; position: relative; }
.card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 32px 36px; }
.card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; flex-wrap: wrap;
}

/* Glassy panel */
.glass-card {
  background: rgba(6,13,24,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-w10, rgba(255,255,255,0.10));
  border-radius: var(--radius-md);
}

/* ─── Service item — numbered, no icons ─────────── */
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 48px 0;
  border-bottom: 1px solid var(--c-w08);
  align-items: start;
}
.service-item:last-child { border-bottom: none; }
.service-num {
  font-family: var(--f-display);
  font-size: 13px; font-weight: 700;
  color: var(--c-teal); opacity: 0.5;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.service-content h4 {
  font-size: 22px; font-weight: 700;
  margin-bottom: 12px; line-height: 1.25;
  letter-spacing: -0.01em;
}
.service-content p {
  font-size: 15px; color: var(--c-w60); line-height: 1.7;
}

/* ─── Accordion ──────────────────────────────────── */
.accordion-item { border-bottom: 1px solid var(--c-w08); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  padding: 28px 0; cursor: none;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--c-teal); }
.accordion-title { font-size: 20px; font-weight: 700; text-align: left; }
.accordion-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1px solid var(--c-w20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.4s var(--ease-out);
  font-size: 16px; line-height: 1; color: var(--c-teal);
}
.accordion-item.open .accordion-icon {
  background: var(--c-teal); border-color: var(--c-teal);
  color: var(--c-navy); transform: rotate(45deg);
}
.accordion-body { height: 0; overflow: hidden; transition: height 0.45s var(--ease-out); }
.accordion-body-inner { padding: 0 0 32px; }

/* ─── Page Inner Hero ────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) var(--gutter) 80px;
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero-sm {
  padding: calc(var(--nav-h) + 60px) var(--gutter) 60px;
  max-width: var(--max-w); margin: 0 auto;
}

/* ─── Grid Layouts ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 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: 20px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 60px; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; }
.grid-content { display: grid; grid-template-columns: 360px 1fr; gap: 100px; align-items: start; }

/* ─── Scroll Reveal ──────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}
[data-reveal="up"]    { transform: translateY(48px); }
[data-reveal="left"]  { transform: translateX(-48px); }
[data-reveal="right"] { transform: translateX(48px); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="fade"]  { transform: none; }
[data-reveal].in-view { opacity: 1; transform: none !important; }

/* Word-level reveal — JS splits into .word spans */
.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-words .word .inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.75s var(--ease-out);
}
.reveal-words.in-view .word .inner { transform: translateY(0); }
.reveal-words.in-view .word:nth-child(2) .inner { transition-delay: 0.06s; }
.reveal-words.in-view .word:nth-child(3) .inner { transition-delay: 0.12s; }
.reveal-words.in-view .word:nth-child(4) .inner { transition-delay: 0.18s; }
.reveal-words.in-view .word:nth-child(5) .inner { transition-delay: 0.24s; }
.reveal-words.in-view .word:nth-child(6) .inner { transition-delay: 0.30s; }
.reveal-words.in-view .word:nth-child(7) .inner { transition-delay: 0.36s; }
.reveal-words.in-view .word:nth-child(8) .inner { transition-delay: 0.42s; }

/* Stagger children */
[data-stagger] > [data-reveal] {
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
[data-stagger] > [data-reveal]:nth-child(1) { transition-delay: 0.05s; }
[data-stagger] > [data-reveal]:nth-child(2) { transition-delay: 0.13s; }
[data-stagger] > [data-reveal]:nth-child(3) { transition-delay: 0.21s; }
[data-stagger] > [data-reveal]:nth-child(4) { transition-delay: 0.29s; }
[data-stagger] > [data-reveal]:nth-child(5) { transition-delay: 0.37s; }
[data-stagger] > [data-reveal]:nth-child(6) { transition-delay: 0.45s; }

/* ─── News / Article ─────────────────────────────── */
.article-card {
  background: var(--c-navy-3);
  border: 1px solid var(--c-w08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}
.article-card:hover { border-color: var(--c-teal-border); transform: translateY(-4px); }
.article-card-media { overflow: hidden; }
.article-card-media img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.article-card:hover .article-card-media img { transform: scale(1.05); }
.article-card-body { padding: 28px 30px 34px; }
.article-card-date { font-size: 11px; color: var(--c-w30, rgba(255,255,255,0.3)); margin-bottom: 10px; letter-spacing: 0.06em; }
.article-card h3 {
  font-size: 18px; font-weight: 700; line-height: 1.3;
  margin-bottom: 10px; transition: color 0.2s;
}
.article-card:hover h3 { color: var(--c-teal); }
.article-card p { font-size: 14px; color: var(--c-w50, rgba(255,255,255,0.5)); line-height: 1.65; }

.article-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--c-navy-3); border: 1px solid var(--c-w08);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-bottom: 24px; transition: border-color 0.35s;
}
.article-featured:hover { border-color: var(--c-teal-border); }
.article-featured-media { overflow: hidden; }
.article-featured-media img {
  width: 100%; height: 100%; object-fit: cover; min-height: 360px;
  transition: transform 0.7s var(--ease-out);
}
.article-featured:hover .article-featured-media img { transform: scale(1.03); }
.article-featured-body {
  padding: 56px 52px;
  display: flex; flex-direction: column; justify-content: center;
}

/* ─── Contact / Form ─────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-teal); margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--c-navy-3);
  border: 1px solid var(--c-w12);
  border-radius: var(--radius-xs);
  color: var(--c-white);
  font-family: var(--f-body); font-size: 15px;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus { border-color: var(--c-teal); background: var(--c-navy-4); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--c-w30, rgba(255,255,255,0.3)); }
.form-textarea { resize: vertical; min-height: 120px; }

/* ─── Team Card ──────────────────────────────────── */
.team-card {
  background: var(--c-navy-3);
  border: 1px solid var(--c-w08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-out);
}
.team-card:hover { border-color: var(--c-teal-border); transform: translateY(-4px); }
.team-card-photo { height: 280px; overflow: hidden; background: var(--c-navy-4); }
.team-card-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: grayscale(100%) contrast(1.1);
  transition: transform 0.6s var(--ease-out), filter 0.5s;
}
.team-card:hover .team-card-photo img { transform: scale(1.04); filter: grayscale(100%) contrast(1.1); }
.team-card-body { padding: 28px 32px; }
.team-card-role {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-teal); margin-bottom: 8px;
}
.team-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--c-w60); line-height: 1.65; margin-bottom: 16px; }
.team-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.team-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: var(--radius-xs);
  background: var(--c-w04); color: var(--c-w40);
  border: 1px solid var(--c-w08);
}

/* ─── CTA Section ────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,212,200,0.06) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-label { justify-content: center; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }

/* ─── Numbered step list ─────────────────────────── */
.step-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 20px;
  align-items: start; padding: 36px 0;
  border-bottom: 1px solid var(--c-w08);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--f-display);
  font-size: 13px; font-weight: 700;
  color: var(--c-teal); opacity: 0.5;
  padding-top: 4px; letter-spacing: 0.04em;
}
.step-content h4 { font-size: 17px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.step-content p { font-size: 15px; color: var(--c-w60); line-height: 1.65; }

/* ─── Metric inline row ──────────────────────────── */
.metric-row {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding: 32px 0; border-top: 1px solid var(--c-w08);
  margin-top: 32px;
}
.metric-item .val {
  font-family: var(--f-display);
  font-size: 36px; font-weight: 700;
  color: var(--c-teal); line-height: 1;
  letter-spacing: -0.02em;
}
.metric-item .lbl {
  font-size: 12px; color: var(--c-w40);
  margin-top: 6px; line-height: 1.4;
}

/* ─── Footer ─────────────────────────────────────── */
.footer { background: var(--c-navy-2); border-top: 1px solid var(--c-w08); }
.footer-top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px;
}
.footer-brand img { height: 26px; opacity: 0.8; }
.footer-brand p {
  font-size: 13px; color: var(--c-w35, rgba(255,255,255,0.35));
  line-height: 1.7; margin: 16px 0 22px; max-width: 260px;
}
.footer-tagline {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-teal); opacity: 0.6;
}
.footer-col h5 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-w30, rgba(255,255,255,0.3)); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--c-w50, rgba(255,255,255,0.5)); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 22px var(--gutter);
  border-top: 1px solid var(--c-w06, rgba(255,255,255,0.06));
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 11px; color: var(--c-w25, rgba(255,255,255,0.25)); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--c-w25, rgba(255,255,255,0.25)); transition: color 0.2s; }
.footer-social a:hover { color: var(--c-teal); }

/* ─── Background Helpers ─────────────────────────── */
.bg-navy-2 { background: var(--c-navy-2); }
.bg-navy-3 { background: var(--c-navy-3); }

/* ═══════════════════════════════════════════════════
   MOBILE NAV TOGGLE
═══════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px;
  margin-left: auto;
  background: transparent; border: none;
  cursor: pointer; padding: 4px;
  z-index: 400;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--c-white);
  transition: transform 0.35s var(--ease-out), opacity 0.2s, width 0.3s;
  transform-origin: center;
}
.nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; width: 0; }
.nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --gutter: 40px;
  }
  .nav-links { gap: 24px; margin-right: 24px; }
  .grid-content { grid-template-columns: 1fr; gap: 60px; }
  .grid-3-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-2-3 { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .s-pad { padding: 100px 0; }
  .s-pad-sm { padding: 60px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --nav-h: 64px;
  }

  /* ── Cursor: restore on touch ── */
  body { cursor: auto; }
  button { cursor: pointer; }
  .btn, .nav-btn, .link-arrow, .accordion-trigger, .filter-btn, .inquiry-type { cursor: pointer; }

  /* ── Nav ── */
  .nav { padding: 0 var(--gutter); }
  .nav-toggle { display: flex; }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--c-navy);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 10px;
    margin: 0;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease-out);
    z-index: 350;
    padding: 80px 40px 40px;
  }
  .nav.nav-open .nav-links { transform: translateX(0); }

  .nav-links a {
    font-size: 18px; font-weight: 600;
    letter-spacing: 0.02em; color: var(--c-w80);
    padding: 14px 0; width: 100%; text-align: center;
    border-bottom: 1px solid var(--c-w08);
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-btn {
    margin-top: 16px;
    font-size: 14px !important;
    padding: 14px 32px !important;
    border: 1px solid var(--c-teal) !important;
    color: var(--c-teal) !important;
  }

  /* ── Sections ── */
  .s-pad { padding: 72px 0; }
  .s-pad-sm { padding: 48px 0; }

  /* ── Page Hero ── */
  .page-hero {
    padding: calc(var(--nav-h) + 44px) var(--gutter) 52px;
  }

  /* ── Hero ── */
  .hero-content { padding: 0 var(--gutter) 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* ── Grids ── */
  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .grid-2-3 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3-2 { grid-template-columns: 1fr; gap: 36px; }
  .grid-content { grid-template-columns: 1fr; gap: 40px; }

  /* ── Split ── */
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-media { height: 260px; }
  .split-content { padding: 48px 32px; }

  /* ── Article featured ── */
  .article-featured { grid-template-columns: 1fr; }
  .article-featured-media img { min-height: 240px; height: 240px; }
  .article-featured-body { padding: 32px 28px; }

  /* ── Service items ── */
  .service-item { grid-template-columns: 1fr; gap: 8px; }

  /* ── Step list ── */
  .step { grid-template-columns: 1fr; gap: 6px; padding: 28px 0; }
  .step-num { padding-top: 0; }

  /* ── Footer ── */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px var(--gutter) 40px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom {
    flex-direction: column; gap: 12px; text-align: center;
    padding: 20px var(--gutter);
  }

  /* ── Typography ── */
  .display-xl { font-size: clamp(34px, 9vw, 52px); }
  .display-lg { font-size: clamp(28px, 7.5vw, 40px); }

  /* ── Section head ── */
  .section-head {
    flex-direction: column; align-items: flex-start;
    gap: 20px; margin-bottom: 40px;
  }

  /* ── CTA actions ── */
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Accordion ── */
  .accordion-title { font-size: 16px; }

  /* ── Team card photo ── */
  .team-card-photo { height: 220px; }

  /* ── Marquee ── */
  .marquee-item { padding: 0 28px; gap: 28px; }

  /* ── Editorial quote ── */
  .editorial-quote { font-size: clamp(18px, 5vw, 24px); padding-left: 18px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(38px, 11vw, 52px); }

  .article-featured-body { padding: 24px 20px; }
  .article-card-body { padding: 22px 20px 28px; }

  .split-content { padding: 36px 20px; }

  .footer-top { padding: 44px var(--gutter) 32px; }

  /* ── Metric row ── */
  .metric-row { gap: 28px; }
}

/* ─── Utilities ──────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 28px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 28px; }
.mb-lg { margin-bottom: 48px; }
.w-full { width: 100%; }
