/* ============================================================
   DELTA SERVICES — Design System v5
   Apple-quality Liquid Glass · White & Blue
   Fonts: Inter · Cormorant Garamond
   ============================================================ */

/* ── 01  TOKENS ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:    #FAFAF8;
  --bg-2:  #F5F4F0;
  --bg-3:  #EDEAE4;
  --white: #FFFFFF;

  /* Text */
  --ink:      #0C0B09;
  --ink-2:    #1C1A17;
  --text:     #3A3731;
  --muted:    #847D74;
  --muted-lt: #ABA49C;

  /* Gold — muted metallic, not yellow */
  --gold:        #003087;
  --gold-lt:     #1A4B9E;
  --gold-bright: #2255B0;
  --gold-pale:   rgba(0,48,135,0.07);
  --gold-rule:   rgba(0,48,135,0.13);

  /* Glass system */
  --glass:        rgba(255,255,255,0.68);
  --glass-strong: rgba(255,255,255,0.82);
  --glass-thin:   rgba(255,255,255,0.38);
  --glass-border: rgba(255,255,255,0.74);
  --glass-bd-sm:  rgba(255,255,255,0.50);
  --glass-dark:   rgba(14,13,11,0.74);
  --glass-dk-bd:  rgba(255,255,255,0.09);

  /* Glass shadows — layered for depth */
  --gs:
    0 2px 16px rgba(0,0,0,0.045),
    0 1px 2px  rgba(0,0,0,0.03),
    inset 0 1.5px 0 rgba(255,255,255,0.92),
    inset 0 -0.5px 0 rgba(0,0,0,0.04);
  --gs-hover:
    0 8px 40px rgba(0,0,0,0.08),
    0 2px 8px  rgba(0,0,0,0.04),
    inset 0 1.5px 0 rgba(255,255,255,0.96),
    inset 0 -0.5px 0 rgba(0,0,0,0.03);
  --gs-lg:
    0 4px 28px rgba(0,0,0,0.055),
    0 1px 3px  rgba(0,0,0,0.03),
    inset 0 1.5px 0 rgba(255,255,255,0.90),
    inset 0 -1px 0 rgba(0,0,0,0.04);
  --gs-lg-hover:
    0 16px 60px rgba(0,0,0,0.09),
    0 4px 14px  rgba(0,0,0,0.05),
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 -0.5px 0 rgba(0,0,0,0.03);

  /* Borders */
  --rule:    rgba(12,11,9,0.07);
  --rule-md: rgba(12,11,9,0.11);
  --rule-lt: rgba(255,255,255,0.10);

  /* Typography */
  --display: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-s: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --snap:   cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── 02  RESET ───────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── 03  GLOBAL NOISE TEXTURE ────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.018;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── 04  SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-rule); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── 05  MESH BACKGROUND ORBS ────────────────────────────────── */
.mesh-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.mesh-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}
.mo-1 {
  width: 860px; height: 860px;
  background: radial-gradient(circle, rgba(0,48,135,0.14) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: orbDrift1 28s ease-in-out infinite;
}
.mo-2 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(34,85,176,0.10) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  animation: orbDrift2 36s ease-in-out infinite 6s;
}
.mo-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,48,135,0.10) 0%, transparent 65%);
  top: 45%; left: 42%;
  animation: orbDrift3 22s ease-in-out infinite 3s;
}
.mo-4 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(26,75,158,0.09) 0%, transparent 65%);
  top: 20%; left: 20%;
  animation: orbDrift2 18s ease-in-out infinite 1s;
}
@keyframes orbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(-50px, 35px) scale(1.08); }
  66%     { transform: translate(35px,-25px) scale(0.96); }
}
@keyframes orbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50%     { transform: translate(70px,-45px) scale(1.12); }
}
@keyframes orbDrift3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50%     { transform: translate(calc(-50% + 55px), calc(-50% - 40px)) scale(1.1); }
}

/* ── 06  GLASS UTILITIES ─────────────────────────────────────── */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(36px) saturate(1.7) brightness(1.03);
  -webkit-backdrop-filter: blur(36px) saturate(1.7) brightness(1.03);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs-lg);
}
.glass-panel-sm {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid var(--glass-bd-sm);
  box-shadow: var(--gs);
}
.glass-panel-strong {
  background: var(--glass-strong);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.04);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.04);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs-lg);
}
.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: blur(40px) saturate(1.4);
  -webkit-backdrop-filter: blur(40px) saturate(1.4);
  border: 1px solid var(--glass-dk-bd);
  box-shadow: 0 4px 32px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.07);
}

/* ── 07  LOADER ──────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.out { opacity: 0; visibility: hidden; }
.loader-logo {
  width: 48px; height: 48px; margin-bottom: 32px;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader-logo img { width: 100%; height: 100%; object-fit: contain; }
@keyframes loaderPulse {
  0%,100% { opacity: .25; transform: scale(.9); }
  50%     { opacity: 1;   transform: scale(1);  }
}
.loader-track {
  width: 100px; height: 1px;
  background: var(--rule-md);
  position: relative; overflow: hidden;
}
.loader-track::after {
  content: '';
  position: absolute; inset-block: 0; left: 0; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
  animation: loadFill 1.5s var(--ease) forwards;
}
@keyframes loadFill { to { transform: scaleX(1); } }

/* ── 08  PAGE VEIL ───────────────────────────────────────────── */
.page-veil {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  transform: scaleY(0); transform-origin: bottom;
  pointer-events: none;
}
.page-veil.out { animation: veilOut .5s var(--ease) forwards; }
@keyframes veilOut {
  0%  { transform: scaleY(0); transform-origin: bottom; }
  49% { transform: scaleY(1); transform-origin: bottom; }
  50% { transform-origin: top; }
  100%{ transform: scaleY(0); transform-origin: top; }
}

/* ── 09  CONTAINERS ──────────────────────────────────────────── */
.wrap      { max-width: 1240px; margin: 0 auto; padding: 0 52px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 52px; }
.wrap-sm   { max-width:  680px; margin: 0 auto; padding: 0 52px; }

/* ── 10  SECTION RHYTHM ──────────────────────────────────────── */
.section    { padding: 120px 0; }
.section-sm { padding:  72px 0; }
.section-lg { padding: 160px 0; }

/* ── 11  LABELS / EYEBROWS ───────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.label::before {
  content: ''; width: 14px; height: 1px;
  background: var(--gold); flex-shrink: 0; opacity: .7;
}
.label-dk { color: rgba(0,48,135,.55); }
.label-dk::before { background: rgba(0,48,135,.4); }
.label-muted { color: var(--muted); }
.label-muted::before { background: var(--muted-lt); }

/* ── 12  GLASS PILLS / CHIPS ─────────────────────────────────── */
.glass-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: 100px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.glass-pill .pill-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,48,135,.5);
  animation: dotBlink 2.5s ease-in-out infinite;
}
@keyframes dotBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: .35; }
}
.glass-chip {
  display: inline-flex; align-items: center;
  padding: 7px 15px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 100px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.88);
  font-size: .7rem; font-weight: 500;
  color: var(--text); white-space: nowrap;
}

/* ── 13  REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.fade { opacity: 0; transition: opacity 1s var(--ease); }
.fade.visible { opacity: 1; }

/* stagger */
.d1 { transition-delay: .06s; } .d2 { transition-delay: .13s; }
.d3 { transition-delay: .20s; } .d4 { transition-delay: .28s; }
.d5 { transition-delay: .36s; } .d6 { transition-delay: .44s; }

/* ── 14  NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 18px 0;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease), border-color .5s, padding .4s var(--ease),
              backdrop-filter .5s, box-shadow .5s;
}
.nav.scrolled {
  background: rgba(250,250,248,0.82);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.02);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.02);
  border-bottom-color: rgba(255,255,255,0.72);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(0,0,0,0.04);
  padding: 12px 0;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 34px; width: auto; transition: height .3s var(--ease), opacity .3s; }
.nav.scrolled .nav-logo img { height: 28px; }
.logo-light { display: block; opacity: 0.9; }
.logo-dark  { display: none; }
.nav.scrolled .logo-light { display: none; }
.nav.scrolled .logo-dark  { display: block; }

/* nav pill container */
.nav-links {
  display: flex; gap: 2px; align-items: center;
  padding: 5px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 100px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.95);
}
.nav.scrolled .nav-links {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.96);
}
.nav-links a {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  color: #5A5144;
  padding: 6px 16px; border-radius: 100px;
  position: relative;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.8); }

/* ── Nav dropdown ── */
.nav-has-drop { position: relative; }
.nav-drop {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,48,135,0.12);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 6px; min-width: 200px;
  list-style: none; z-index: 600;
}
.nav-has-drop:hover .nav-drop { display: block; }
.nav-drop li a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: .66rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2);
  background: transparent;
  transition: background .18s, color .18s;
}
.nav-drop li a:hover { background: var(--gold-pale); color: var(--gold); box-shadow: none; }
.nav-links a.active {
  color: var(--ink);
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.98);
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold);
}

.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 5px;
}
.nav-burger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--muted);
  transition: all .3s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

.nav-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 499;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--display);
  font-size: clamp(2rem,5.5vw,3.2rem); font-weight: 400;
  color: var(--ink); transition: color .2s;
}
.nav-overlay a:hover { color: var(--gold); }

/* ── 15  HERO — CONCEPT V: WARM LINEN ───────────────────────── */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  background: #F4F7FC;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,48,135,.045) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,48,135,.045) 40px);
  pointer-events: none; z-index: 0;
}

/* Mouse spotlight — gold tint on light bg */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  background: radial-gradient(
    circle 320px at var(--sx, 50%) var(--sy, 50%),
    rgba(0,48,135,.09) 0%,
    transparent 65%
  );
  mix-blend-mode: multiply;
  transition: opacity .35s;
  opacity: 0;
}

/* ── Centered vertical stack ── */
.hero-v-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  z-index: 3;
  will-change: transform;
}

/* Logo mark — gold filter, inline in flex flow */
.hero-mark-perspective {
  perspective: 700px;
  pointer-events: none; user-select: none;
  margin-bottom: 0;
}
.hero-center-mark {
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
  transition: transform .08s linear;
  will-change: transform;
}
.hero-mark-img {
  width: clamp(100px, 13vw, 190px);
  height: auto; display: block;
  /* Pre-baked #003087 gold PNG — no filter needed */
  filter: drop-shadow(0 4px 28px rgba(0,48,135,.35));
  opacity: .88;
  transition: opacity .5s;
  will-change: transform;
}
.hero:hover .hero-mark-img { opacity: 1; }

/* Vertical gold rule connecting logo to headline */
.hero-v-rule {
  width: 1px;
  height: clamp(28px, 4vh, 44px);
  background: linear-gradient(180deg, rgba(0,48,135,.3) 0%, rgba(0,48,135,.6) 100%);
  margin: clamp(16px, 2.2vh, 26px) auto;
}

/* Headline — Lato Medium / Lato Light */
.hero-h1 {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 6.5vw, 8rem);
  font-weight: 500; line-height: .9;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: clamp(16px, 2.2vh, 26px);
}
.hero-h1 em {
  font-style: normal; display: block;
  font-weight: 300; letter-spacing: -.04em;
  color: var(--gold);
  background: none;
  -webkit-text-fill-color: var(--gold);
}

/* Tagline */
.hero-tagline {
  font-family: var(--sans);
  font-size: clamp(.58rem, .7vw, .72rem);
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(24px, 3.5vh, 38px);
}

/* CTAs — centered */
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center;
  position: relative; z-index: 1;
}

/* Outline gold button (light hero secondary CTA) */
.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: clamp(.6rem, .68vw, .72rem);
  font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none;
  padding: 12px 26px; border-radius: 100px;
  border: 1.5px solid rgba(0,48,135,.45);
  color: var(--ink-md);
  background: transparent;
  transition: border-color .22s, background .22s, transform .22s;
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(0,48,135,.07);
  transform: translateY(-1.5px);
}

/* Brand credentials line — below CTAs */
.hero-brand-line {
  font-family: var(--sans);
  font-size: clamp(.7rem, .85vw, .9rem);
  font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-top: clamp(20px, 3vh, 30px);
  opacity: .85;
  text-shadow: 0 0 18px rgba(0,48,135,.2);
}

/* ── legacy helpers — kept for inner-page heroes ── */
.hero-tag { margin-bottom: 0; }
.hero-sub {
  font-size: clamp(.86rem, 1vw, .96rem);
  color: var(--muted); max-width: 400px;
  line-height: 1.82; font-weight: 400;
  margin-bottom: 24px;
}
.hero-scroll { display: none; }
.hero-scroll span {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-lt);
}
.scroll-line {
  width: 44px; height: 1px;
  background: var(--rule-md); overflow: hidden; position: relative;
}
.scroll-line::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: translateX(-100%);
  animation: scrollSweep 2.6s ease-in-out infinite 1s;
}
@keyframes scrollSweep {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

/* ── 16  AMBIENT GLOBAL BACKGROUND ──────────────────────────── */
/*
  Fixed behind the entire page — gold orbs drift slowly across
  all scroll positions. Works on every page automatically.
*/
.ambient-bg {
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1;
  overflow: hidden;
}
/* Large orbs — very blurred, subtle gold glow */
.ao {
  position: absolute; border-radius: 50%;
  will-change: transform;
}
/* Top-right anchor — biggest, warmest gold */
.ao-1 {
  width: 920px; height: 920px;
  background: radial-gradient(circle, rgba(0,48,135,0.11) 0%, transparent 62%);
  top: -260px; right: -200px;
  filter: blur(110px);
  animation: aoFloat1 38s ease-in-out infinite;
}
/* Bottom-left — cream-gold */
.ao-2 {
  width: 740px; height: 740px;
  background: radial-gradient(circle, rgba(26,75,158,0.08) 0%, transparent 62%);
  bottom: 10%; left: -180px;
  filter: blur(100px);
  animation: aoFloat2 50s ease-in-out infinite 10s;
}
/* Mid-page centre — smaller, brighter */
.ao-3 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(34,85,176,0.07) 0%, transparent 65%);
  top: 48%; left: 48%;
  filter: blur(90px);
  animation: aoFloat3 30s ease-in-out infinite 5s;
}
/* Bottom-right — warm drift */
.ao-4 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(0,48,135,0.065) 0%, transparent 65%);
  bottom: -80px; right: 18%;
  filter: blur(95px);
  animation: aoFloat1 42s ease-in-out infinite 18s;
}
/* Upper-left accent */
.ao-5 {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,48,135,0.085) 0%, transparent 65%);
  top: 28%; left: 10%;
  filter: blur(85px);
  animation: aoFloat2 25s ease-in-out infinite 3s;
}

/* Gold aurora — horizontal shimmer that breathes at page top */
.ao-aurora {
  position: absolute;
  top: 0; left: -10%; right: -10%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,48,135,0.08) 15%,
    rgba(34,85,176,0.28) 42%,
    rgba(26,75,158,0.32) 50%,
    rgba(34,85,176,0.28) 58%,
    rgba(0,48,135,0.08) 85%,
    transparent 100%
  );
  filter: blur(2.5px);
  animation: auroraBreath 14s ease-in-out infinite;
}
/* Second aurora echo lower on page */
.ao-aurora-2 {
  position: absolute;
  top: 0; left: -10%; right: -10%;
  height: 180px;
  background: linear-gradient(180deg,
    rgba(0,48,135,0.04) 0%,
    transparent 100%
  );
  animation: auroraFade 14s ease-in-out infinite 2s;
}

/* Slow diagonal shimmer wash — barely visible, adds life */
.ao-shimmer {
  position: absolute;
  width: 250%; height: 250%;
  top: -75%; left: -125%;
  background: linear-gradient(
    112deg,
    transparent 38%,
    rgba(0,48,135,0.012) 47%,
    rgba(34,85,176,0.026) 50%,
    rgba(0,48,135,0.012) 53%,
    transparent 62%
  );
  animation: aoShimmer 26s ease-in-out infinite 7s;
}

@keyframes aoFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  25%     { transform: translate(-55px, 45px) scale(1.09); }
  55%     { transform: translate(40px,-30px) scale(0.94); }
  80%     { transform: translate(-25px, 18px) scale(1.04); }
}
@keyframes aoFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  35%     { transform: translate(75px,-55px) scale(1.14); }
  70%     { transform: translate(-48px, 32px) scale(0.91); }
}
@keyframes aoFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  30%     { transform: translate(calc(-50% + 65px), calc(-50% - 48px)) scale(1.13); }
  65%     { transform: translate(calc(-50% - 42px), calc(-50% + 32px)) scale(0.90); }
}
@keyframes auroraBreath {
  0%,100% { opacity: .7;  transform: scaleX(1) translateX(0%); }
  35%     { opacity: 1;   transform: scaleX(1.08) translateX(2%); }
  65%     { opacity: .45; transform: scaleX(0.94) translateX(-1.5%); }
}
@keyframes auroraFade {
  0%,100% { opacity: 1; }
  50%     { opacity: .4; }
}
@keyframes aoShimmer {
  0%,100% { transform: translateX(-5%) rotate(0deg);  opacity: .8; }
  50%     { transform: translateX(5%)  rotate(3deg); opacity: 1;  }
}

/* ── 17  STATS ───────────────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid rgba(0,48,135,.18);
  border-bottom: 1px solid rgba(0,48,135,.18);
  position: relative; overflow: hidden;
}
.stats-ghost {
  position: absolute; top: -0.1em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--display); font-style: italic;
  font-size: clamp(8rem, 20vw, 26rem);
  font-weight: 600; letter-spacing: -.06em;
  line-height: 1; color: var(--gold);
  opacity: .045; user-select: none; pointer-events: none;
  white-space: nowrap;
}
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.stat {
  padding: 52px 44px 48px;
  position: relative;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-left: 1.5px solid rgba(0,48,135,.32);
  box-shadow: none;
  cursor: default;
  transition: border-color .3s var(--ease);
}
.stat:hover { border-left-color: var(--gold); }
.stat::before { display: none; }
.stat::after { display: none; }
.stat-n {
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.5vw, 7rem);
  font-weight: 600; color: var(--ink);
  line-height: .9; letter-spacing: -.05em; margin-bottom: 14px;
}
.stat-n sup {
  font-size: .36em; color: var(--gold);
  vertical-align: top; margin-top: .24em;
}
.stat-l {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
}

/* ── 18  ABOUT (HOME) ────────────────────────────────────────── */
.about-home { padding: 140px 0; background: var(--bg); }
.about-home-grid {
  display: grid; grid-template-columns: 5fr 4fr;
  gap: 88px; align-items: start;
}
.about-eyebrow-row {
  display: flex; align-items: center; gap: 20px; margin-bottom: 32px;
}
.about-year {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  padding: 5px 12px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-rule);
  border-radius: 100px;
}
.about-h2 {
  font-family: var(--display);
  font-size: clamp(2.6rem,4.5vw,5rem);
  font-weight: 500; color: var(--ink);
  line-height: .97; letter-spacing: -.03em;
}
.about-h2 em { font-style: italic; color: var(--gold); }
/* glass pull-quote */
.about-pull {
  margin: 28px 0 24px;
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs);
  border-left: 2.5px solid var(--gold);
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.25rem,1.8vw,1.65rem);
  color: var(--text); line-height: 1.5; letter-spacing: -.01em;
}
.about-body {
  font-size: .95rem; color: var(--muted);
  line-height: 1.88; margin-bottom: 14px;
}
.about-meta { margin-top: 40px; }
.about-meta-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.about-meta-row:first-child { border-top: 1px solid var(--rule); }
.about-meta-k {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted-lt);
}
.about-meta-v {
  font-family: var(--display); font-size: 1rem;
  color: var(--ink); font-weight: 500;
}
/* aside */
.about-aside { padding-top: 48px; }
.about-ghost {
  font-family: var(--display); font-size: clamp(7rem, 14vw, 16rem);
  line-height: .82; color: var(--gold);
  opacity: .07; font-weight: 700; letter-spacing: -.06em;
  user-select: none; pointer-events: none; margin-bottom: -2rem;
}
.about-aside-body {
  font-size: .93rem; color: var(--muted); line-height: 1.88; margin-bottom: 14px;
}

/* ── 19  SERVICES HOME (glass card grid) ─────────────────────── */
.services-home {
  padding: 120px 0;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative; overflow: hidden;
}
/* Subtle background glow for glass to blur against */
.services-home::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 80% 20%, rgba(0,48,135,.065) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(200,185,155,.05) 0%, transparent 55%);
}
.services-home-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 32px;
}
.services-home-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem,4vw,4.5rem);
  font-weight: 500; color: var(--ink);
  line-height: .97; letter-spacing: -.03em; max-width: 480px;
}
.services-home-h2 em { font-style: italic; color: var(--gold); }

/* Glass service card grid */
.svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
}
.svc-card {
  padding: 36px 32px 32px;
  border-radius: 18px;
  position: relative; overflow: hidden;
  cursor: default;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              background .3s, border-color .3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--gs-lg-hover);
  background: var(--glass-strong);
}
/* Light sweep on hover */
.svc-card::before {
  content: '';
  position: absolute; top: -80%; left: -50%; width: 160%; height: 80%;
  background: linear-gradient(160deg, rgba(255,255,255,0.16) 0%, transparent 55%);
  transform: rotate(-12deg) translateY(0);
  transition: transform .6s var(--ease), opacity .4s;
  opacity: 0; pointer-events: none;
}
.svc-card:hover::before { opacity: 1; transform: rotate(-12deg) translateY(10px); }

.svc-num {
  font-family: var(--display); font-size: 2.8rem; font-weight: 600;
  color: var(--gold); opacity: .2; line-height: 1;
  margin-bottom: 16px; letter-spacing: -.04em;
  transition: opacity .3s;
}
.svc-card:hover .svc-num { opacity: .35; }
.svc-card h3 {
  font-family: var(--display);
  font-size: clamp(1.2rem,1.6vw,1.5rem);
  font-weight: 500; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 10px;
  transition: color .3s;
}
.svc-card:hover h3 { color: var(--gold); }
.svc-card p {
  font-size: .85rem; color: var(--muted);
  line-height: 1.75;
}
.svc-cta {
  margin-top: 22px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-lt);
  display: flex; align-items: center; gap: 6px;
  transition: color .3s, gap .3s var(--ease);
}
.svc-card:hover .svc-cta { color: var(--gold); gap: 12px; }

/* ── 20  PRODUCTS PREVIEW (HOME) ─────────────────────────────── */
.prod-home { padding: 120px 0; background: var(--bg); }
.prod-home-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; gap: 24px;
}
.prod-home-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem,4vw,4.5rem);
  font-weight: 500; color: var(--ink);
  line-height: .97; letter-spacing: -.03em;
}
.prod-home-h2 em { font-style: italic; color: var(--gold); }
.prod-home-link {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center;
  gap: 8px; transition: gap .3s, color .3s; white-space: nowrap;
}
.prod-home-link::after { content: '→'; }
.prod-home-link:hover { gap: 16px; color: var(--gold); }

.prod-grid-home { display: grid; grid-template-columns: 1.35fr 1fr 1fr; gap: 12px; }
.prod-card-h {
  border-radius: 16px; overflow: hidden; cursor: pointer;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.prod-card-h:hover { transform: translateY(-4px); box-shadow: var(--gs-hover); }
.pch-img {
  aspect-ratio: 1; overflow: hidden; background: rgba(245,244,240,0.7);
  display: flex; align-items: center; justify-content: center; padding: 28px;
}
.prod-card-h.featured .pch-img { aspect-ratio: 5/4; }
.pch-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform .6s var(--ease);
}
.prod-card-h:hover .pch-img img { transform: scale(1.07); }
.pch-body { padding: 20px 24px 26px; }
.pch-brand {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 5px;
}
.pch-name {
  font-family: var(--display); font-size: 1.02rem;
  color: var(--ink); line-height: 1.3; margin-bottom: 12px;
}
.pch-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-lt); transition: color .3s, gap .3s var(--ease);
}
.prod-card-h:hover .pch-link { color: var(--gold); gap: 10px; }

/* ── 21  TRUST / CLIENTS ─────────────────────────────────────── */
.trust { padding: 120px 0; background: var(--bg-2); }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.trust-left h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem,3.8vw,4.2rem);
  font-weight: 500; color: var(--ink);
  line-height: 1.02; letter-spacing: -.03em; margin-bottom: 18px;
}
.trust-left h2 em { font-style: italic; color: var(--gold); }
.trust-left > p {
  font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 36px;
}
.client-list { display: flex; flex-direction: column; }
.client-entry {
  padding: 10px 0; border-bottom: 1px solid var(--rule);
  font-size: .86rem; color: var(--muted);
  transition: color .2s, padding-left .3s var(--ease);
  cursor: default;
}
.client-entry:hover { color: var(--ink); padding-left: 7px; }

.trust-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-content: start;
  padding-top: 8px;
}
/* Editorial stat block — no glass, just number + gold rule */
.trust-stat-card {
  padding: 32px 24px 28px;
  position: relative;
  background: transparent;
  border: none;
  border-top: 1.5px solid rgba(0,48,135,.38);
  border-radius: 0;
  box-shadow: none;
  cursor: default;
  transition: border-color .3s var(--ease);
}
.trust-stat-card:hover { border-color: var(--gold); }
.trust-stat-card::before,
.trust-stat-card::after { display: none; }
/* Thin vertical rule between cards */
.trust-stat-card + .trust-stat-card {
  border-left: 1px solid rgba(0,48,135,.12);
}
.trust-big {
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600; color: var(--ink);
  line-height: .88; letter-spacing: -.05em;
}
.trust-lbl {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); margin-top: 14px;
}
/* Quote — borderless, just typography */
.trust-quote {
  grid-column: 1 / -1;
  margin-top: 0; padding: 28px 24px 0;
  border-top: 1px solid rgba(0,48,135,.15);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: .88rem; font-style: italic;
  color: var(--muted); line-height: 1.8;
}

/* ── 22  CTA ─────────────────────────────────────────────────── */
.cta {
  padding: 120px 0;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 80% at 50% 40%, rgba(0,48,135,.08) 0%, transparent 60%);
}
.cta-panel {
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center; position: relative; overflow: hidden;
}
/* Inner light sweep */
.cta-panel::before {
  content: '';
  position: absolute; top: -40%; left: -20%; width: 140%; height: 70%;
  background: linear-gradient(155deg, rgba(255,255,255,0.24) 0%, transparent 50%);
  transform: rotate(-8deg); pointer-events: none;
}
.cta-h {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500; color: var(--ink);
  line-height: .95; letter-spacing: -.04em;
  margin-bottom: 24px; position: relative; z-index: 1;
  overflow-wrap: break-word;
}
.cta-h em { font-style: italic; color: var(--gold); }
.cta-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 340px; margin: 0 auto 40px;
  line-height: 1.78; position: relative; z-index: 1;
}

/* ── 23  BUTTONS ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--white);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 2px 14px rgba(0,48,135,.3), 0 1px 3px rgba(0,48,135,.2),
              inset 0 1px 0 rgba(255,255,255,0.22);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), filter .3s;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  border-radius: 100px; pointer-events: none;
}
.btn-gold:hover {
  transform: translateY(-1.5px);
  box-shadow: 0 6px 24px rgba(0,48,135,.4), 0 2px 6px rgba(0,48,135,.25),
              inset 0 1px 0 rgba(255,255,255,0.28);
  filter: brightness(1.06);
}
.btn-gold > * { position: relative; z-index: 1; }

.btn-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  color: var(--text);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--gs);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn-glass:hover {
  transform: translateY(-1.5px);
  background: var(--glass-strong);
  box-shadow: var(--gs-hover);
  color: var(--ink);
}

.btn-glass-dk {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: rgba(12,11,9,0.07);
  color: var(--text);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(12,11,9,0.10);
  border-radius: 100px;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.btn-glass-dk:hover {
  background: var(--ink); color: var(--white);
  border-color: var(--ink); transform: translateY(-1.5px);
}

.btn-text {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: gap .3s var(--ease), color .3s;
}
.btn-text::after { content: '→'; }
.btn-text:hover { gap: 14px; color: var(--gold); }

/* ── 24  FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px; padding-bottom: 52px;
  border-bottom: 1px solid var(--rule); margin-bottom: 28px;
}
.footer-logo img { height: 26px; margin-bottom: 16px; filter: none; }
.footer-tagline {
  font-size: .83rem; color: var(--muted);
  line-height: 1.82; max-width: 220px;
}
.footer-col-h {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 18px; opacity: .55;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: .84rem; color: var(--muted);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-col li { font-size: .84rem; color: var(--muted-lt); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; color: var(--muted-lt);
}
.footer-bottom-gold { color: var(--gold); opacity: .55; }

/* ── 25  PAGE HEADER ─────────────────────────────────────────── */
.page-hd {
  position: relative;
  padding: 180px 0 88px;
  background: linear-gradient(155deg, #FDFCF9 0%, #F8F7F3 60%, #F5F4F0 100%);
  overflow: hidden;
}
/* background glow for glass */
.page-hd::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at 85% 30%, rgba(0,48,135,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(200,185,155,.06) 0%, transparent 55%);
}
/* Glass title panel — floated over the gradient */
.page-hd-content {
  position: relative; z-index: 1;
}
.page-hd-tag {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.page-hd-tag::before {
  content: ''; display: block;
  width: 14px; height: 1px; background: var(--gold); opacity: .6;
}
.page-hd h1 {
  font-family: var(--display);
  font-size: clamp(3rem,6.5vw,7.5rem);
  font-weight: 500; color: var(--ink);
  line-height: .96; letter-spacing: -.035em; margin-bottom: 22px;
}
.page-hd h1 em { font-style: italic; color: var(--gold); }
.page-hd-sub {
  font-size: .95rem; color: var(--muted);
  max-width: 420px; line-height: 1.78;
}
.page-hd-crumb {
  margin-top: 28px;
  font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; color: var(--muted-lt);
}
.page-hd-crumb a { color: var(--gold); opacity: .55; transition: opacity .2s; }
.page-hd-crumb a:hover { opacity: 1; }

/* ── 26  ABOUT PAGE ──────────────────────────────────────────── */
.vm-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vm-cell {
  padding: 56px 52px;
  background: var(--glass-strong);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs);
  border-radius: 18px;
}
.vm-cell.dk {
  background: rgba(20,18,14,0.88);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.06);
}
.vm-cell h3 {
  font-family: var(--display);
  font-size: clamp(1.7rem,2.3vw,2.3rem);
  font-weight: 500; color: var(--ink);
  letter-spacing: -.025em; margin-bottom: 18px;
}
.vm-cell.dk h3 { color: rgba(253,252,249,.92); }
.vm-cell p { font-size: .92rem; color: var(--muted); line-height: 1.85; }
.vm-cell.dk p { color: rgba(253,252,249,.35); }

.history-section { padding: 120px 0; background: var(--bg); }
.history-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.history-l { position: sticky; top: 110px; }
.history-h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem,3.5vw,4rem);
  font-weight: 500; color: var(--ink);
  line-height: 1; letter-spacing: -.03em; margin-top: 14px;
}
.history-h2 em { font-style: italic; color: var(--gold); }
.history-intro { font-size: .92rem; color: var(--muted); line-height: 1.85; margin-top: 20px; }
.history-item {
  padding: 28px 0; border-bottom: 1px solid var(--rule);
  transition: padding-left .3s var(--ease);
}
.history-item:first-child { padding-top: 0; }
.history-item:hover { padding-left: 7px; }
.history-yr {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.history-item h4 {
  font-family: var(--display); font-size: 1.25rem;
  font-weight: 500; color: var(--ink);
  letter-spacing: -.015em; margin-bottom: 8px;
}
.history-item p { font-size: .86rem; color: var(--muted); line-height: 1.75; }

.clients-pg { padding: 100px 0; background: var(--bg-2); }
.clients-pg-h {
  font-family: var(--display);
  font-size: clamp(2rem,3.2vw,3.6rem);
  font-weight: 500; color: var(--ink);
  line-height: 1; letter-spacing: -.025em; margin-bottom: 44px;
}
.clients-pg-h em { font-style: italic; color: var(--gold); }
.client-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(195px,1fr));
  gap: 8px;
}
.client-tile {
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-bd-sm);
  box-shadow: var(--gs);
  font-size: .84rem; color: var(--muted);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .2s;
}
.client-tile:hover {
  transform: translateY(-2px); box-shadow: var(--gs-hover);
  color: var(--ink);
}

/* ── 27  SERVICES PAGE ───────────────────────────────────────── */
.svc-pg-row { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.svc-pg-row:last-of-type { border-bottom: none; }
.svc-pg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.svc-ghost {
  font-family: var(--display); font-size: 7.5rem;
  line-height: 1; color: var(--ink); opacity: .025;
  letter-spacing: -.06em; font-weight: 700;
  user-select: none; margin-bottom: -1.3rem;
}
.svc-pg-grid h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem,2.8vw,3rem);
  font-weight: 500; color: var(--ink);
  line-height: 1.02; letter-spacing: -.025em; margin-bottom: 18px;
}
.svc-pg-grid p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 12px; }
.svc-visual {
  aspect-ratio: 5/4; overflow: hidden;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs-lg);
}
.svc-visual-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.svc-ring {
  position: absolute; border-radius: 50%;
  animation: ringExpand 5s cubic-bezier(0,.5,.5,1) infinite;
}
.svc-ring-1 { width: 55px;  height: 55px;  animation-delay: 0s;   border: 1px solid rgba(0,48,135,.5); }
.svc-ring-2 { width: 120px; height: 120px; animation-delay: 1.25s; border: 1px solid rgba(0,48,135,.32); }
.svc-ring-3 { width: 200px; height: 200px; animation-delay: 2.5s;  border: 1px solid rgba(0,48,135,.18); }
.svc-ring-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), var(--gold));
  position: absolute;
  box-shadow: 0 0 10px rgba(0,48,135,.5);
}

/* ── 28  CONTACT PAGE ────────────────────────────────────────── */
.contact-pg { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-h2 {
  font-family: var(--display);
  font-size: clamp(2rem,3.6vw,3.8rem);
  font-weight: 500; color: var(--ink);
  line-height: 1; letter-spacing: -.03em; margin-bottom: 18px;
}
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-lead { font-size: .93rem; color: var(--muted); line-height: 1.82; margin-bottom: 40px; }
.contact-detail { margin-bottom: 24px; }
.contact-dt {
  font-size: .6rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-lt); margin-bottom: 5px;
}
.contact-dd { font-size: .93rem; color: var(--text); line-height: 1.65; }
.contact-dd a { color: var(--gold); transition: color .2s; }
.contact-dd a:hover { color: var(--gold-lt); }
.qr-box {
  padding: 44px 48px;
  border-radius: 20px;
  background: var(--glass-strong);
  backdrop-filter: blur(32px) saturate(1.6);
  -webkit-backdrop-filter: blur(32px) saturate(1.6);
  border: 1px solid var(--glass-border);
  box-shadow: var(--gs-lg);
  position: relative; overflow: hidden;
}
.qr-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none; border-radius: 20px 20px 0 0;
}
.qr-box h3 {
  font-family: var(--display); font-size: 1.6rem;
  font-weight: 500; color: var(--ink);
  letter-spacing: -.02em; margin-bottom: 28px;
  position: relative; z-index: 1;
}
.qr-row { padding: 13px 0; border-bottom: 1px solid var(--rule); position: relative; z-index: 1; }
.qr-row:first-of-type { border-top: 1px solid var(--rule); }
.qr-k {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 3px;
}
.qr-v { font-size: .88rem; color: var(--text); }
.qr-v a { transition: color .2s; }
.qr-v a:hover { color: var(--gold); }
.map-wrap { height: 420px; overflow: hidden; border-radius: 16px; }
.map-wrap iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(100%) contrast(1.05) brightness(.9) saturate(.8);
  transition: filter .5s;
}
.map-wrap:hover iframe { filter: grayscale(30%) brightness(.95); }

/* ── 29  PRODUCTS PAGE ───────────────────────────────────────── */
.product-search-wrap { max-width: 420px; margin: 0 auto; }
.product-search {
  width: 100%; padding: 13px 20px;
  font-family: var(--sans); font-size: .9rem;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  box-shadow: var(--gs);
  color: var(--text); outline: none;
  transition: box-shadow .3s, border-color .3s;
}
.product-search:focus {
  box-shadow: var(--gs-hover), 0 0 0 3px rgba(0,48,135,.1);
  border-color: var(--gold-rule);
}
.product-search::placeholder { color: var(--muted-lt); }

/* ── TWO-TIER PRODUCT FILTERS ─────────────────────────────── */
.product-filters-wrap { margin-bottom: 20px; }

/* Tier 1 — parent categories */
.filter-parents {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 0;
}
.filter-parent {
  padding: 9px 22px;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: transparent;
  border: 1.5px solid rgba(0,48,135,.18);
  border-radius: 100px;
  color: var(--gold-lt);
  cursor: pointer;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.filter-parent:hover {
  background: rgba(0,48,135,.06);
  border-color: rgba(0,48,135,.35);
  color: var(--gold);
}
.filter-parent.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 3px 14px rgba(0,48,135,.28), inset 0 1px 0 rgba(255,255,255,.18);
}

/* Tier 2 — sub-category row */
.filter-subs-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), opacity .3s ease;
}
.filter-subs-wrap.visible {
  max-height: 160px;
  opacity: 1;
}
.filter-subs { display: none; }
.filter-subs.active-sub {
  display: flex; gap: 6px; flex-wrap: wrap; justify-content: center;
  padding: 14px 0 4px;
}
/* divider line above sub-row */
.filter-subs-wrap.visible::before {
  content: '';
  display: block;
  width: 48px; height: 1px;
  background: rgba(0,48,135,.15);
  margin: 8px auto 0;
}

/* Tier 2 buttons (sub-categories) */
.product-filters { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 10px; }
.filter-btn {
  padding: 6px 15px;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--glass-bd-sm);
  border-radius: 100px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
  color: var(--muted); cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--glass-border); box-shadow: var(--gs); }
.filter-btn.active {
  background: rgba(0,48,135,.1);
  border-color: rgba(0,48,135,.4);
  color: var(--gold);
  box-shadow: 0 1px 8px rgba(0,48,135,.12);
}

.product-count {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .1em; color: var(--muted);
  text-align: center; margin-bottom: 36px;
}
.products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(252px,1fr)); gap: 10px; }
.product-card {
  border-radius: 14px; overflow: hidden; cursor: pointer;
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--glass-bd-sm);
  box-shadow: var(--gs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--gs-hover); }
.product-image {
  width: 100%; aspect-ratio: 1;
  background: rgba(245,244,240,0.65);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow: hidden; position: relative;
}
.product-image img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.07); }
.product-image-overlay {
  position: absolute; inset: 0; background: transparent;
  display: flex; align-items: flex-end; padding: 12px;
  transition: background .3s;
}
.product-card:hover .product-image-overlay { background: rgba(12,11,9,.03); }
.product-image-overlay a {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); opacity: 0; transition: opacity .3s;
}
.product-card:hover .product-image-overlay a { opacity: 1; }
.product-info { padding: 14px 18px 20px; }
.product-brand {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.product-name { font-family: var(--display); font-size: .93rem; color: var(--ink); line-height: 1.35; }
.product-inquiry-btn {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 9px;
  font-size: .58rem; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--muted-lt); background: none; border: none;
  padding: 0; cursor: pointer;
  transition: color .25s, gap .25s var(--ease);
}
.product-inquiry-btn:hover { color: var(--gold); gap: 9px; }

/* ── 30  RESPONSIVE ──────────────────────────────────────────── */
@media (max-width:1100px) {
  .wrap, .wrap-wide, .wrap-sm { padding: 0 34px; }
  .hero-content { left: 34px; right: 34px; }
  .about-home-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-ghost { display: none; }
  .trust-grid { grid-template-columns: 1fr; gap: 52px; }
  .trust-right { grid-template-columns: repeat(3,1fr); }
  .history-duo { grid-template-columns: 1fr; gap: 52px; }
  .history-l { position: static; }
  .svc-pg-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .prod-grid-home { grid-template-columns: repeat(2,1fr); }
  .services-home-head { flex-direction: column; align-items: flex-start; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { gap: 0; }
  .stat { padding: 44px 32px 40px; }
  .vm-duo { grid-template-columns: 1fr; }
}

@media (max-width:768px) {
  .wrap, .wrap-wide, .wrap-sm { padding: 0 20px; }
  .section { padding: 76px 0; }
  .section-lg { padding: 96px 0; }
  .nav { padding: 12px 0; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  /* On mobile: stack hero content vertically */
  .hero { height: auto; min-height: 100svh; }
  .hero-content {
    flex-direction: column; align-items: flex-start;
    bottom: 36px; left: 20px; right: 20px;
    gap: 28px;
  }
  .hero-right {
    align-items: flex-start; max-width: 100%;
    padding-left: 0;
  }
  .hero-sub-text { text-align: left; }
  .hero-stat { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .hero-rule { left: 20px; right: 20px; bottom: clamp(420px, 62vh, 560px); }
  .hero-mark-img { width: clamp(140px, 55vw, 220px); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(odd) { border-left: 1.5px solid rgba(0,48,135,.32); }
  .stat:nth-child(even) { border-left: 1px solid rgba(0,48,135,.12); }
  .prod-grid-home { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .page-hd { padding: 130px 0 56px; }
  .svc-grid { grid-template-columns: 1fr; }
  .filter-parents { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .filter-parent { flex-shrink: 0; }
  .filter-subs.active-sub { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .filter-btn { flex-shrink: 0; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .product-image-overlay a { opacity: 1; }
  .cta-panel { padding: 44px 28px; }
  .qr-box { padding: 28px 22px; }
  .vm-cell { padding: 40px 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-right { grid-template-columns: repeat(3,1fr); }
}

@media (max-width:480px) {
  .wrap, .wrap-wide, .wrap-sm { padding: 0 14px; }
  .section { padding: 56px 0; }
  .stats-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .product-image { padding: 10px; }
  .product-info { padding: 10px 12px 14px; }
  .product-name { font-size: .82rem; }
  .vm-cell { padding: 28px 16px; }
  .trust-right { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-gold, .btn-glass { width: 100%; justify-content: center; }
}
