/* ═══════════════════════════════════════════════════════════════
   CLARVIGO — Global Stylesheet
   Design: Typedesk-inspired • Primary: Teal • Font: Inter + Playfair
   ═══════════════════════════════════════════════════════════════ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Navy Brand Palette (from visiting card) */
  --teal-50:  #eef1f8;
  --teal-100: #d5dced;
  --teal-200: #aab9db;
  --teal-300: #7a94c4;
  --teal-400: #4f72ac;
  --teal-500: #2d5190;
  --teal-600: #243a7a;
  --teal-700: #1e3068;
  --teal-800: #162454;
  --teal-900: #0e1a3d;

  /* Primary — navy blue from card logo/text */
  --primary:       #1A2744;
  --primary-light: #243660;
  --primary-dark:  #0e1a3d;
  --primary-bg:    #eef1f8;

  /* Accent — green stripe from card bottom */
  --accent:        #2D7A4F;
  --accent-light:  #3a9963;
  --accent-dark:   #1f5a39;
  --accent-bg:     #e8f5ee;

  /* Neutral */
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-pad: 96px 0;
  --container:   1200px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.08);
  --shadow-teal: 0 8px 32px rgba(26,39,68,.25);

  /* Transitions */
  --transition: 220ms cubic-bezier(.4,0,.2,1);
  --transition-slow: 380ms cubic-bezier(.4,0,.2,1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); color: var(--gray-800); background: #fff; line-height: 1.6; overflow-x: hidden; }
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--gray-600); line-height: 1.75; }

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }

/* ── Layout ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-pad); }
.section--alt { background: var(--gray-50); }
.section--teal { background: var(--teal-900); color: #fff; }
.section--teal h2, .section--teal h3, .section--teal h4 { color: #fff; }
.section--teal p { color: rgba(255,255,255,.78); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 32px rgba(45,122,79,.28);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(45,122,79,.40);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; min-height: 40px; }
/* Button active press — 100ms snap down */
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 100ms; }

/* Card icon hover scale */
.card:hover .card__icon { transform: scale(1.08); transition: transform 200ms var(--ease-out-quint); }
.card__icon { transition: transform 200ms var(--ease-out-quint); }

/* Pillar stagger — applied via style="--i:N" on each .pillar */
.js .pillar-grid .pillar {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms var(--ease-out-quint), transform 480ms var(--ease-out-quint);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.js .pillar-grid.visible .pillar { opacity: 1; transform: translateY(0); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--gray-900);
}
.nav__logo img { height: 52px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
.nav__link {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.nav__link:hover { color: var(--primary); background: var(--teal-50); }
.nav__link.active { color: var(--primary); }

/* Dropdown */
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 72px; /* Matches nav__inner height */
}
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: 100%; /* Aligns precisely with the bottom of .nav__dropdown (which spans full nav height) */
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  pointer-events: none;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
/* Invisible hover bridge to prevent cursor tracking loss */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav__dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__dropdown-item:hover { background: var(--teal-50); color: var(--primary); }

.nav__cta { margin-left: 16px; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hamburger → ✕ when mobile nav is open */
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 99;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  padding: 14px 16px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.nav__mobile-sub {
  padding: 10px 16px 10px 32px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  border-radius: 8px;
}
.nav__mobile-sub:hover { color: var(--primary); background: var(--teal-50); }

/* ── Hero ── */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 0%, var(--teal-50) 50%, #fff 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--primary);
}
.hero__sub {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}
.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Hero visual */
.hero__visual {
  position: relative;
}
.hero__canvas-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__canvas-wrap canvas { display: block; width: 100%; }

/* ── Section Headers ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title { margin-bottom: 16px; }
.section-sub { font-size: 1.0625rem; color: var(--gray-500); }

/* ── Cards ── */
.card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
}
/* Default boxed card hover: subtle border only, no lift (used by stats/form/image cards). */
.card:hover { border-color: var(--gray-300); }

/* ── Icon cards: editorial "numbered system" treatment ──────────────────────
   Borderless with a hairline top rule + decorative 01–06 watermark, flat
   monoline icon on the title's baseline, body sharing the title left edge.
   Auto-numbered via a counter on the grid — no per-card markup needed.        */
.grid-2:has(.card__icon),
.grid-3:has(.card__icon),
.grid-4:has(.card__icon) { counter-reset: svc; }
.grid-2:has(.card__icon) { column-gap: 40px; row-gap: 48px; }
.grid-3:has(.card__icon) { column-gap: 40px; row-gap: 52px; }

/* Editorial container + one-row layout: ONLY for icon cards inside a service grid.
   Icon cards in other contexts (e.g. fire-safety flex sidebar) keep the boxed card. */
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-content: start;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(45,122,79,.22);
  border-radius: 0;
  padding: 18px 4px 0;
  counter-increment: svc;
  transition: border-color .25s ease, transform .25s ease;
}
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card:hover {
  background: transparent;
  border-top-color: var(--accent);
  transform: translateY(-3px);
}
/* Decorative watermark index (01, 02, …) — only in numbered service grids. */
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card::before {
  content: counter(svc, decimal-leading-zero);
  position: absolute;
  top: 12px;
  right: 2px;
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: rgba(45,122,79,.08);
  pointer-events: none;
  user-select: none;
}
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card > .card__icon  { grid-column: 1; grid-row: 1; }
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card > .card__title { grid-column: 2; grid-row: 1; align-self: center; margin-bottom: 4px; }
:is(.grid-2,.grid-3,.grid-4):has(.card__icon) > .card > :not(.card__icon) { grid-column: 2; }
/* Flat icon: no chip, no shadow — monoline green glyph on transparent. */
.card__icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card__icon svg { width: 23px; height: 23px; color: var(--accent); stroke-width: 1.7; }
.card__title { font-size: 1.1875rem; font-weight: 700; margin-bottom: 0; color: var(--gray-900); letter-spacing: -0.01em; }
.card:has(.card__icon) > .card__title { margin-bottom: 4px; }
.card__text { font-size: 0.9375rem; color: #4F5C55; line-height: 1.65; max-width: 52ch; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 20px;
  transition: gap var(--transition);
}
.card__link:hover { gap: 10px; }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Pillars / Feature Grid ── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pillar {
  background: #fff;
  padding: 48px 36px;
  transition: background var(--transition);
}
.pillar:hover { background: var(--accent-bg); }
.pillar__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-light);
  margin-bottom: 16px;
  font-family: var(--font-serif);
}
.pillar__title { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.pillar__text { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; }
.pillar__partner {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 50px;
  border: none;
}

/* ── Stats ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-serif);
}
.stat__label { font-size: 0.875rem; color: var(--gray-400); font-weight: 500; line-height: 1.4; }

/* ── Partner Logos ── */
.partners-row {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  cursor: default;
  text-align: center;
}
.partner-badge:hover {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.partner-badge__flag {
  font-size: 2.5rem;
  line-height: 1;
}
.partner-badge__name {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--gray-900);
}
.partner-badge__country {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.partner-badge__tag {
  font-size: 0.75rem;
  color: #fff;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 50px;
  font-weight: 600;
}

/* ── Feature List ── */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.feature-item:hover { border-color: var(--accent); background: var(--accent-bg); }
.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(45,122,79,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.feature-item:hover .feature-item__icon { background: var(--accent); }
.feature-item__icon svg { width: 20px; height: 20px; color: var(--accent); stroke-width: 1.5; transition: color var(--transition); }
.feature-item:hover .feature-item__icon svg { color: #fff; }
.feature-item__content {}
.feature-item__title { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.feature-item__text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Product Spec Table ── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table th, .spec-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.spec-table th {
  background: var(--teal-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.spec-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.spec-table th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:hover td { background: var(--teal-50); }
.spec-table td:first-child { font-weight: 600; color: var(--gray-700); }
.spec-table td:last-child { color: var(--gray-600); font-family: monospace; font-size: 0.875rem; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-700) 0%, var(--teal-900) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.03);
}
.cta-banner h2 { color: var(--teal-100); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: var(--teal-100); font-size: 1.0625rem; margin-bottom: 40px; position: relative; z-index: 1; }
.cta-banner__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Testimonials / Quotes ── */
.quote-card {
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.quote-card__text {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 20px;
}
.quote-card__author { font-weight: 700; color: var(--gray-900); font-size: 0.9rem; }
.quote-card__role { color: var(--gray-500); font-size: 0.85rem; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__inner { position: relative; z-index: 1; text-align: center; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.62);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.62); }
.page-hero__breadcrumb a:hover { color: #fff; }
.page-hero__breadcrumb span { color: rgba(255,255,255,.45); }
.page-hero h1 { color: #fff; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* ── Values (About) ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-cell {
  background: #fff;
  padding: 40px 28px;
  text-align: center;
  transition: background var(--transition);
}
.value-cell:hover { background: var(--teal-50); }
.value-cell__acronym {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 8px;
}
.value-cell__word {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.value-cell__text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Team / People ── */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vm-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-card--vision {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--teal-100);
}
.vm-card--mission {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}
.vm-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.vm-card--vision .vm-card__label { color: rgba(213,220,237,.7); }
.vm-card--mission .vm-card__label { color: var(--primary); }
.vm-card h3 { font-size: 1.5rem; margin-bottom: 16px; }
.vm-card--vision h3 { color: var(--teal-100); }
.vm-card p { line-height: 1.75; }
.vm-card--vision p { color: var(--teal-100); }

/* ── Industries list ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--gray-800);
  transition: all var(--transition);
  cursor: default;
}
.industry-item:hover {
  border-color: var(--teal-400);
  background: var(--teal-50);
  color: var(--primary-dark);
  transform: translateX(4px);
}
.industry-item svg { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  color: var(--gray-900);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(13,148,136,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact Info */
.contact-info-card {
  background: linear-gradient(160deg, var(--teal-900), var(--teal-700));
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--teal-100);
}
.contact-info-card h3 { color: var(--teal-100); margin-bottom: 8px; }
.contact-info-card > p { color: var(--teal-100); margin-bottom: 40px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-item svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-item strong { display: block; color: var(--teal-100); font-size: 0.875rem; margin-bottom: 4px; }
.contact-info-item span { color: rgba(213,220,237,.8); font-size: 0.9rem; line-height: 1.6; }
.principals-list { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.principals-list h4 { color: rgba(213,220,237,.7); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.principal-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
}
.principal-item__flag { font-size: 1.5rem; }
.principal-item__name { font-weight: 700; font-size: 0.9rem; color: var(--teal-100); }
.principal-item__loc { font-size: 0.8rem; color: rgba(213,220,237,.65); }

/* ── Footer ── */
.footer {
  background: var(--primary);
  color: var(--gray-400);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { }
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-wrap img { height: 44px; width: auto; }
.footer__tagline { font-size: 0.875rem; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer__partners { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__partner-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.08);
}
.footer__heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__link:hover { color: #fff; }
.footer__bottom {
  background: var(--accent);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,.85); line-height: 1.6; }
.footer__legal { font-size: 0.75rem; color: rgba(255,255,255,.6); }
.footer__credit {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity var(--transition);
}
.footer__credit:hover { opacity: 0.8; }

/* ── Animated SVG Graphics ── */
.graphic-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.graphic-wrap svg { width: 100%; height: auto; }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 0;
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-serif);
}
.process-step__title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.process-step__text { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ── Benefit List (checkmarks) ── */
.benefit-list { display: flex; flex-direction: column; gap: 12px; }
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.benefit-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ── Highlights Banner (teal strip) ── */
.highlights {
  background: linear-gradient(90deg, var(--accent-dark), var(--accent));
  padding: 32px 0;
  overflow: hidden;
}
.highlights__inner {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  white-space: nowrap;
}
.highlight-item svg { width: 22px; height: 22px; color: rgba(255,255,255,.8); }
.highlight-item strong { font-size: 0.9375rem; font-weight: 700; }
.highlight-item span { font-size: 0.875rem; color: rgba(255,255,255,.72); }

/* ── Utility ── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.fw-900 { font-weight: 900; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-64 { margin-bottom: 64px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-col { flex-direction: column; }
.items-start { align-items: flex-start; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-fade-up { animation: fade-up 0.7s ease both; }
.animate-fade-up-2 { animation: fade-up 0.7s ease 0.15s both; }
.animate-fade-up-3 { animation: fade-up 0.7s ease 0.30s both; }

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s var(--ease-out-quint), transform 0.65s var(--ease-out-quint);
}
/* Only hide-then-reveal when JS is active (class added by inline script) */
.js .reveal { opacity: 0; transform: translateY(20px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Reduced motion: disable all non-essential animation ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .pillar-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__title { font-size: clamp(2.2rem, 6vw, 3rem); }
  .hero__sub { max-width: 100%; }
  .hero { padding: 120px 0 60px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .vision-mission { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 32px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-banner__actions { flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .partners-row { gap: 16px; }
  .highlights__inner { gap: 24px; }
}

/* ── Print ── */
@media print {
  .nav, .footer, .cta-banner { display: none; }
  .hero { padding: 40px 0; }
  body { font-size: 12pt; }
}


/* ── Split layout utilities (replaces all inline grid-template-columns) ── */
/* These are the source-of-truth for every 2-col / 3-col section layout.   */
/* Inline styles cannot be overridden by media queries — these classes can. */

/* Base: 2-col, 80px gap, vertically centred (most common) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
/* 2-col, 80px gap, top-aligned */
.split--start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* 2-col, 48px gap */
.split--48 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
/* 2-col, 64px gap, top-aligned */
.split--64-start {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* 2-col, 16px gap (compact stats panels) */
.split--16 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
/* 3-col, 12px gap (EWS badge grid) */
.split--3-12 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 900px) {
  .split,
  .split--start,
  .split--48,
  .split--64-start {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split--16 {
    grid-template-columns: 1fr 1fr; /* keep 2-col — it's a compact card grid */
  }
  .split--3-12 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .split--16   { grid-template-columns: 1fr 1fr; }
  .split--3-12 { grid-template-columns: 1fr; }
}

/* ── Additional mobile fixes ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Section padding tighter on mobile */
  .section { padding: 64px 0; }

  /* Page hero shorter */
  .page-hero { padding: 110px 0 56px; }

  /* CTA banner padding */
  .cta-banner { padding: 48px 24px; }

  /* Partners row wraps properly */
  .partners-row { flex-direction: column; align-items: stretch; }
  .partner-badge { max-width: 100% !important; }

  /* Highlights strip: stack on narrow */
  .highlights__inner { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 24px; }
  .highlight-item { white-space: normal; }

  /* Industry grid: always 1-col on mobile */
  .industry-grid { grid-template-columns: 1fr; }

  /* Pillar grid: already 1-col from 1100px rule — keep */

  /* Values 4-grid: 2×2 on mobile */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Vision/mission stack */
  .vision-mission { grid-template-columns: 1fr; gap: 20px; }

  /* Process steps: 2-col on tablet, 1-col on phone handled in 600px block */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-steps::before { display: none; }

  /* Footer grid 2-col on tablet */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  /* Values: 1-col on phone */
  .values-grid { grid-template-columns: 1fr; }

  /* Process: 1-col on phone */
  .process-steps { grid-template-columns: 1fr; }

  /* Footer: 1-col on phone */
  .footer__grid { grid-template-columns: 1fr; }

  /* Hero trust items */
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Section padding minimal */
  .section { padding: 48px 0; }

  /* Page hero */
  .page-hero { padding: 90px 0 44px; }

  /* Highlights */
  .highlights__inner { padding: 0 16px; }
}
/* ── Media Gallery ── */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.media-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--gray-100);
}
.media-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}
.media-gallery__item:hover img { transform: scale(1.04); }
.media-gallery__item--wide {
  grid-column: span 2;
}
/* ── Video Section ── */
.video-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Asymmetric variant (video + sidebar) — collapses on mobile via the @media below */
.video-pair--aside { grid-template-columns: 1.6fr 1fr; align-items: start; }
.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
}
.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.video-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.video-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 10px;
}
/* ── PDF Download ── */
.pdf-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--primary-bg);
  border: 1.5px solid var(--teal-200);
  border-radius: var(--radius);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  text-decoration: none;
}
.pdf-download:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}
.pdf-download svg { width: 20px; height: 20px; flex-shrink: 0; }
@media (max-width: 900px) {
  .media-gallery { grid-template-columns: repeat(2, 1fr); }
  .media-gallery__item--wide { grid-column: span 1; }
  .video-pair, .video-pair--aside { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .media-gallery { grid-template-columns: 1fr; }
}

/* ── Media Hero (video + photo backgrounds) ── */
.page-hero--media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.page-hero--media .page-hero__bg {
  position: absolute;
  inset: -40% 0; /* 40% overscan matches 0.15x factor travel budget */
  width: 100%;
  z-index: 0;
}
.page-hero--media .page-hero__bg img,
.page-hero--media .page-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Navy scrim — ensures white text always readable */
.page-hero--media .page-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,26,61,.82) 0%,
    rgba(26,39,68,.72) 60%,
    rgba(14,26,61,.88) 100%
  );
  z-index: 1;
}
.page-hero--media .container {
  position: relative;
  z-index: 2;
}

/* ── Parallax Callout Band ── */
.parallax-band {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.parallax-band__bg {
  position: absolute;
  inset: -40% 0; /* 40% overscan matches 0.15x factor travel budget */
  z-index: 0;
  will-change: transform;
}
.parallax-band__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.parallax-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,26,61,.78) 0%,
    rgba(26,39,68,.55) 50%,
    rgba(45,122,79,.45) 100%
  );
  z-index: 1;
}
.parallax-band__inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.parallax-band__label {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.parallax-band__label::before {
  content: '';
  display: block;
  width: 20px; height: 2px;
  background: var(--accent-light);
  border-radius: 2px;
}
.parallax-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}
.parallax-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 32px;
}
.parallax-band .btn-ghost {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.parallax-band .btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}
/* Disable parallax for reduced-motion and mobile */
@media (prefers-reduced-motion: reduce) {
  .parallax-band__bg, .page-hero__bg { transform: none !important; }
}
@media (max-width: 768px) {
  .parallax-band__bg { inset: 0; transform: none !important; }
  .page-hero--media .page-hero__bg { inset: 0; transform: none !important; }
  .page-hero--media { min-height: 420px; }
  .parallax-band { min-height: 300px; padding: 60px 0; }
}
