/* =====================================================================
   CHEKA PETROLEUM UNIVERSE LTD.
   Design system + components. One stylesheet, every page.
   Art direction: obsidian ground, molten-gold accent, oil-slick iridescence.
   ===================================================================== */

/* ------------------------------------------------------------------ *
 * 1. TOKENS
 * ------------------------------------------------------------------ */
:root {
  /* Core ground */
  --obsidian: #08090b;
  --ink:      #0d0f12;
  --graphite: #14171c;
  --slate:    #1c2027;
  --smoke:    #2a2f38;
  --fog:      #3a414d;

  /* Warm neutrals / text */
  --bone:     #f4efe4;
  --cream:    #e9e2d3;
  --sand:     #b9b1a1;
  --muted:    #8a8477;
  --faint:    rgba(244, 239, 228, 0.55);

  /* Accent: molten gold */
  --gold:        #c8a24b;
  --gold-bright: #e7c878;
  --gold-deep:   #9a7628;
  --gold-glow:   rgba(200, 162, 75, 0.28);

  /* Iridescent oil-slick support colours (used at low opacity) */
  --slick-cyan:    #2ec5c1;
  --slick-violet:  #8a5cf0;
  --slick-magenta: #e0559b;
  --slick-teal:    #0e3b37;

  /* Surfaces / lines */
  --line:      rgba(244, 239, 228, 0.10);
  --line-soft: rgba(244, 239, 228, 0.06);
  --line-gold: rgba(200, 162, 75, 0.30);
  --card:      rgba(255, 255, 255, 0.022);
  --card-2:    rgba(255, 255, 255, 0.04);
  --glass:     rgba(13, 15, 18, 0.72);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.78rem, 0.76rem + 0.1vw, 0.86rem);
  --step-0:  clamp(0.98rem, 0.95rem + 0.15vw, 1.08rem);
  --step-1:  clamp(1.18rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.35rem + 0.7vw, 2rem);
  --step-3:  clamp(2rem, 1.7rem + 1.5vw, 3rem);
  --step-4:  clamp(2.7rem, 2.2rem + 2.6vw, 4.6rem);
  --step-5:  clamp(3.4rem, 2.4rem + 4.8vw, 7.2rem);

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 6rem;
  --s-9: 8rem;

  --container: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --radius-xl: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --nav-h: 76px;
}

/* ------------------------------------------------------------------ *
 * 2. RESET
 * ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--cream);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv05";
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 480; line-height: 1.04; letter-spacing: -0.015em; }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--obsidian); }

/* Film grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------------ *
 * 3. LAYOUT PRIMITIVES
 * ------------------------------------------------------------------ */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.6rem); }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

section { position: relative; }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }

.grid { display: grid; gap: var(--s-5); }
.flow > * + * { margin-top: var(--s-3); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center::before { display: none; }

.section-title { font-size: var(--step-4); color: var(--bone); max-width: 20ch; }
.section-title--center { margin-inline: auto; text-align: center; max-width: 24ch; }
.lede { font-size: var(--step-1); color: var(--sand); max-width: 56ch; line-height: 1.5; font-weight: 300; }
.lede--center { margin-inline: auto; text-align: center; }
.text-muted { color: var(--muted); }
.gold-text { color: var(--gold-bright); }
.italic-serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.divider { height: 1px; background: var(--line); border: 0; }

/* ------------------------------------------------------------------ *
 * 4. BUTTONS
 * ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--obsidian);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 10px 30px -12px var(--gold-glow);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.35) inset, 0 18px 44px -14px var(--gold-glow); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease);
}
.btn:hover::after { transform: translateX(130%); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--bone);
  border: 1px solid var(--line);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: var(--card-2); border-color: var(--line-gold); box-shadow: none; }
.btn--ghost::after { display: none; }

.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.82rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gold-bright);
  transition: gap 0.3s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { gap: 0.85rem; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------------------ *
 * 5. PRELOADER
 * ------------------------------------------------------------------ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: radial-gradient(120% 120% at 50% 40%, #0e1013 0%, var(--obsidian) 70%);
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: grid; place-items: center; gap: 1.6rem; text-align: center; }
.preloader__mark { width: 96px; height: 96px; animation: floaty 4s ease-in-out infinite; }
.preloader__ring { transform-origin: center; animation: spin 3.2s linear infinite; }
.preloader__drop { transform-origin: center; animation: pulseDrop 1.8s ease-in-out infinite; }
.preloader__word {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 0.5em;
}
.preloader__bar { width: 180px; height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.preloader__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  animation: load 1.6s var(--ease) forwards;
}
@keyframes load { 0% { width: 4%; } 60% { width: 72%; } 100% { width: 100%; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseDrop { 0%, 100% { opacity: 0.7; transform: scale(0.94); } 50% { opacity: 1; transform: scale(1.06); } }

/* ------------------------------------------------------------------ *
 * 6. NAVIGATION
 * ------------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--line);
}
.nav__row { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 500; letter-spacing: 0.01em; color: var(--bone); }
.brand__sub { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 0.4rem; }
.nav__link {
  position: relative;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--sand);
  border-radius: 100px;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.28rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::after,
.nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: var(--bone); }

.nav__cta { display: flex; align-items: center; gap: 0.8rem; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 100px;
  border: 1px solid var(--line);
  position: relative;
}
.nav__burger span {
  position: absolute; left: 12px; right: 12px; height: 1.6px;
  background: var(--bone); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.nav__burger span:nth-child(1) { top: 16px; }
.nav__burger span:nth-child(2) { top: 21px; }
.nav__burger span:nth-child(3) { top: 26px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: linear-gradient(180deg, #0b0d10, var(--obsidian));
  padding: calc(var(--nav-h) + 2rem) clamp(1.4rem, 6vw, 3rem) 3rem;
  transform: translateY(-101%);
  transition: transform 0.6s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
body.menu-open .drawer { transform: translateY(0); }
.drawer__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  color: var(--cream);
  border-bottom: 1px solid var(--line-soft);
  transition: color 0.3s, padding-left 0.4s var(--ease);
}
.drawer__link span { font-family: var(--font-sans); font-size: 0.8rem; color: var(--muted); }
.drawer__link:hover { color: var(--gold-bright); padding-left: 0.6rem; }
.drawer__foot { margin-top: auto; padding-top: 2rem; color: var(--muted); font-size: 0.85rem; }

/* ------------------------------------------------------------------ *
 * 7. HERO
 * ------------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -3; }
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 72% 18%, rgba(200,162,75,0.16), transparent 60%),
    radial-gradient(60% 50% at 10% 90%, rgba(46,197,193,0.08), transparent 60%),
    radial-gradient(90% 80% at 50% 50%, rgba(138,92,240,0.06), transparent 70%),
    var(--obsidian);
}
/* Animated oil-slick mesh */
.slick {
  position: absolute;
  inset: -20%;
  z-index: -2;
  filter: blur(60px) saturate(1.3);
  opacity: 0.55;
  background:
    radial-gradient(30% 40% at 30% 30%, rgba(200,162,75,0.55), transparent 60%),
    radial-gradient(28% 34% at 72% 40%, rgba(46,197,193,0.35), transparent 60%),
    radial-gradient(32% 38% at 55% 78%, rgba(138,92,240,0.30), transparent 60%),
    radial-gradient(26% 30% at 85% 80%, rgba(224,85,155,0.24), transparent 60%);
  background-size: 200% 200%;
  animation: slickShift 24s ease-in-out infinite;
}
@keyframes slickShift {
  0%   { background-position: 0% 0%, 100% 0%, 50% 100%, 100% 100%; }
  50%  { background-position: 40% 30%, 60% 40%, 30% 60%, 60% 70%; }
  100% { background-position: 0% 0%, 100% 0%, 50% 100%, 100% 100%; }
}
/* vignette + fade into next section */
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 100% at 50% 0%, transparent 55%, rgba(8,9,11,0.5) 100%),
    linear-gradient(180deg, transparent 55%, var(--obsidian) 98%);
}

.hero__inner { position: relative; width: 100%; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }

.hero h1 {
  font-size: var(--step-5);
  color: var(--bone);
  letter-spacing: -0.03em;
  font-weight: 460;
}
.hero h1 .shimmer {
  background: linear-gradient(92deg, var(--gold-deep), var(--gold-bright) 40%, var(--bone) 60%, var(--gold-bright) 80%, var(--gold-deep));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero__sub { margin-top: 1.6rem; font-size: var(--step-1); color: var(--sand); font-weight: 300; max-width: 46ch; line-height: 1.5; }
.hero__cta { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero__meta { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 2rem 3rem; }
.hero__meta-item { display: flex; flex-direction: column; }
.hero__meta-num { font-family: var(--font-display); font-size: 2rem; color: var(--bone); line-height: 1; }
.hero__meta-label { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.5rem; }

/* Hero visual card (right) */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9);
  backdrop-filter: blur(4px);
}
.hero__card .globe { position: absolute; inset: 0; }
.hero__card-tag {
  position: absolute; left: 1.4rem; top: 1.4rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 100px;
  background: rgba(8,9,11,0.55); border: 1px solid var(--line);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream);
  backdrop-filter: blur(8px);
}
.hero__card-cap {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.4rem;
  padding: 1.1rem 1.2rem; border-radius: var(--radius-lg);
  background: rgba(8,9,11,0.55); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.hero__card-cap strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--bone); font-weight: 500; }
.hero__card-cap p { font-size: 0.82rem; color: var(--sand); margin-top: 0.2rem; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 0 0 var(--gold-glow); animation: pulseDot 2.4s ease-out infinite; }
@keyframes pulseDot { 0% { box-shadow: 0 0 0 0 rgba(231,200,120,0.5);} 100% { box-shadow: 0 0 0 14px rgba(231,200,120,0);} }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
  z-index: 2;
}
.scroll-cue__line { width: 1px; height: 42px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.scroll-cue__line::after { content:""; position:absolute; top:-40%; left:0; width:100%; height:40%; background: var(--gold-bright); animation: cue 2s ease-in-out infinite; }
@keyframes cue { 0% { top:-40%; } 100% { top:120%; } }

/* Page hero (interior pages, shorter) */
.page-hero { position: relative; padding: calc(var(--nav-h) + 5rem) 0 4rem; overflow: hidden; isolation: isolate; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(70% 60% at 80% 0%, rgba(200,162,75,0.14), transparent 60%),
    radial-gradient(60% 50% at 0% 100%, rgba(46,197,193,0.06), transparent 60%),
    var(--obsidian);
}
.page-hero__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 60%, var(--obsidian)); }
.breadcrumb { display:flex; gap:0.5rem; align-items:center; font-size:0.8rem; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--gold-bright); }
.page-hero h1 { font-size: var(--step-4); color: var(--bone); max-width: 18ch; }
.page-hero .lede { margin-top: 1.3rem; }

/* ------------------------------------------------------------------ *
 * 8. MARQUEE / TICKER
 * ------------------------------------------------------------------ */
.ticker { border-block: 1px solid var(--line); padding-block: 1.1rem; background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); overflow: hidden; }
.ticker__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 0.9rem; font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); white-space: nowrap; }
.ticker__item svg { width: 15px; height: 15px; color: var(--gold); }
.ticker__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------------ *
 * 9. CARDS / PILLARS / FEATURES
 * ------------------------------------------------------------------ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.pillar {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--ink);
  transition: background 0.5s var(--ease), transform 0.5s var(--ease);
  position: relative;
}
.pillar:hover { background: var(--graphite); }
.pillar__ic { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-gold); color: var(--gold-bright); margin-bottom: 1.4rem; background: radial-gradient(120% 120% at 30% 20%, rgba(200,162,75,0.16), transparent); }
.pillar__ic svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.28rem; color: var(--bone); margin-bottom: 0.6rem; }
.pillar p { font-size: 0.92rem; color: var(--sand); }
.pillar__num { position: absolute; top: 1.4rem; right: 1.5rem; font-family: var(--font-display); font-size: 0.9rem; color: var(--fog); }

/* Generic card */
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s;
}
.card:hover { border-color: var(--line-gold); transform: translateY(-4px); background: var(--card-2); }
.card h3 { font-size: 1.35rem; color: var(--bone); margin-bottom: 0.7rem; }
.card p { color: var(--sand); font-size: 0.94rem; }

/* Split feature blocks */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5/4; }
.media { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--slate), var(--ink)); }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), opacity 0.6s; }
.media:hover img { transform: scale(1.05); }
.media__frame { position:absolute; inset:0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); pointer-events:none; }

.feature-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: rgba(200,162,75,0.12); border: 1px solid var(--line-gold); color: var(--gold-bright); margin-top: 2px; }
.feature-list .tick svg { width: 13px; height: 13px; }
.feature-list strong { color: var(--bone); font-weight: 550; display: block; font-size: 0.98rem; }
.feature-list span { color: var(--sand); font-size: 0.9rem; }

/* ------------------------------------------------------------------ *
 * 10. STATS
 * ------------------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.stat { text-align: left; position: relative; padding-left: 1.4rem; }
.stat::before { content:""; position:absolute; left:0; top:6px; bottom:6px; width:2px; background: linear-gradient(var(--gold-bright), transparent); border-radius: 2px; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--bone); line-height: 1; letter-spacing: -0.02em; }
.stat__num .suffix { color: var(--gold); }
.stat__label { margin-top: 0.7rem; font-size: 0.82rem; color: var(--sand); letter-spacing: 0.02em; }

/* Ribbon band */
.band { background: linear-gradient(180deg, var(--ink), var(--obsidian)); border-block: 1px solid var(--line); }

/* ------------------------------------------------------------------ *
 * 11. APPROACH / STEPS
 * ------------------------------------------------------------------ */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1.8rem, 4vw, 2.6rem) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--fog); line-height: 1; transition: color 0.4s; min-width: 2.4ch; }
.step:hover .step__no { color: var(--gold); }
.step__body { max-width: 62ch; }
.step__body h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--bone); margin-bottom: 0.6rem; }
.step__body p { color: var(--sand); }

/* ------------------------------------------------------------------ *
 * 12. TEAM
 * ------------------------------------------------------------------ */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.member { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: var(--ink); }
.member__photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(160deg, var(--slate), var(--ink)); }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.35) contrast(1.02); transition: filter 0.6s var(--ease), transform 1.2s var(--ease); }
.member:hover .member__photo img { filter: grayscale(0) contrast(1.05); transform: scale(1.04); }
.member__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(8,9,11,0.88)); }
.member__initials { position:absolute; inset:0; display:grid; place-items:center; font-family: var(--font-display); font-size: 3rem; color: var(--fog); }
.member__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.3rem; z-index: 2; }
.member__role { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.member__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--bone); margin-top: 0.25rem; }
.member__socials { display:flex; gap: 0.5rem; margin-top: 0.8rem; opacity: 0; transform: translateY(6px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.member:hover .member__socials { opacity: 1; transform: translateY(0); }
.member__socials a { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); color: var(--sand); transition: all 0.3s; }
.member__socials a:hover { border-color: var(--gold); color: var(--gold-bright); }
.member__socials svg { width: 15px; height: 15px; }

/* Extended bio row (leadership page) */
.bio { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2rem, 5vw, 3.5rem); border-top: 1px solid var(--line); }
.bio:last-child { border-bottom: 1px solid var(--line); }
.bio__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; position: relative; background: linear-gradient(160deg, var(--slate), var(--ink)); }
.bio__media img { width:100%; height:100%; object-fit: cover; filter: grayscale(0.2); }
.bio__role { color: var(--gold); }
.bio__name { font-size: var(--step-3); color: var(--bone); margin: 0.4rem 0 1rem; }
.bio p { color: var(--sand); }
.bio__meta { display:flex; flex-wrap:wrap; gap: 1.4rem 2.4rem; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--line-soft); }
.bio__meta div span { display:block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.bio__meta div strong { color: var(--bone); font-weight: 500; font-family: var(--font-display); }

/* ------------------------------------------------------------------ *
 * 13. TESTIMONIALS
 * ------------------------------------------------------------------ */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); position: relative; }
.quote:hover { border-color: var(--line-gold); }
.quote__mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.6; color: var(--gold-deep); height: 1.6rem; }
.quote blockquote { font-family: var(--font-display); font-size: 1.15rem; font-weight: 420; color: var(--cream); line-height: 1.45; margin: 1rem 0 1.6rem; }
.quote__by { display: flex; align-items: center; gap: 0.8rem; }
.quote__av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-deep), var(--gold-bright)); display: grid; place-items: center; color: var(--obsidian); font-weight: 700; font-size: 0.9rem; flex: 0 0 auto; }
.quote__who strong { display: block; color: var(--bone); font-size: 0.92rem; font-weight: 550; }
.quote__who span { font-size: 0.8rem; color: var(--muted); }

.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(2rem, 6vw, 5rem); opacity: 0.8; }
.logos span { font-family: var(--font-display); font-size: 1.3rem; color: var(--fog); letter-spacing: 0.02em; transition: color 0.4s; }
.logos span:hover { color: var(--sand); }

/* ------------------------------------------------------------------ *
 * 14. ENGAGEMENT / TIERS ("pricing" adapted)
 * ------------------------------------------------------------------ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.tier {
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.4rem);
  background: var(--card);
  transition: transform 0.4s var(--ease), border-color 0.4s;
  position: relative;
}
.tier:hover { transform: translateY(-4px); border-color: var(--line-gold); }
.tier--featured {
  border-color: var(--line-gold);
  background: linear-gradient(180deg, rgba(200,162,75,0.08), rgba(255,255,255,0.02));
  box-shadow: 0 30px 70px -40px var(--gold-glow);
}
.tier__badge { position: absolute; top: -1px; right: 1.6rem; transform: translateY(-50%); padding: 0.35rem 0.8rem; border-radius: 100px; background: var(--gold); color: var(--obsidian); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.tier__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--bone); }
.tier__desc { color: var(--sand); font-size: 0.9rem; margin-top: 0.5rem; min-height: 3em; }
.tier__price { margin: 1.4rem 0 0.3rem; display: flex; align-items: baseline; gap: 0.4rem; }
.tier__price b { font-family: var(--font-display); font-size: 2.6rem; color: var(--bone); font-weight: 500; }
.tier__price small { color: var(--muted); font-size: 0.82rem; }
.tier__list { display: grid; gap: 0.8rem; margin: 1.6rem 0 2rem; }
.tier__list li { display: flex; gap: 0.7rem; font-size: 0.9rem; color: var(--cream); align-items: flex-start; }
.tier__list svg { width: 16px; height: 16px; color: var(--gold-bright); flex: 0 0 auto; margin-top: 3px; }
.tier .btn { margin-top: auto; }

/* Tabs (sectors) */
.tabbar { display: flex; flex-wrap: wrap; gap: 0.6rem; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; margin-bottom: 2.4rem; }
.tabbar button {
  padding: 0.7rem 1.2rem; border-radius: 100px; border: 1px solid var(--line);
  font-size: 0.9rem; font-weight: 500; color: var(--sand); background: var(--card);
  transition: all 0.3s var(--ease);
}
.tabbar button:hover { color: var(--bone); border-color: var(--line-gold); }
.tabbar button.active { background: var(--gold); color: var(--obsidian); border-color: var(--gold); box-shadow: 0 10px 30px -14px var(--gold-glow); }
.tabpanel { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; animation: fadeUp 0.6s var(--ease); }
.tabpanel[hidden] { display: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tabpanel .media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5/4; }
@media (max-width: 900px) { .tabpanel { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ *
 * 15. ACCORDION / FAQ
 * ------------------------------------------------------------------ */
.faq { max-width: 820px; margin-inline: auto; }
.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0.3rem; text-align: left; font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--cream); transition: color 0.3s; }
.acc__q:hover { color: var(--gold-bright); }
.acc__icon { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: border-color 0.3s; }
.acc__icon::before, .acc__icon::after { content:""; position:absolute; background: var(--gold-bright); transition: transform 0.4s var(--ease); }
.acc__icon::before { width: 12px; height: 1.6px; }
.acc__icon::after { width: 1.6px; height: 12px; }
.acc.open .acc__icon { border-color: var(--gold); }
.acc.open .acc__icon::after { transform: scaleY(0); }
.acc__a { overflow: hidden; height: 0; transition: height 0.45s var(--ease); }
.acc__a-inner { padding: 0 0.3rem 1.6rem; color: var(--sand); max-width: 68ch; }

/* ------------------------------------------------------------------ *
 * 16. CTA BLOCK
 * ------------------------------------------------------------------ */
.cta {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border: 1px solid var(--line-gold);
  background: radial-gradient(120% 140% at 50% 0%, rgba(200,162,75,0.14), transparent 60%), var(--ink);
  isolation: isolate;
}
.cta::before {
  content:""; position:absolute; inset:-40%; z-index:-1;
  background: radial-gradient(40% 40% at 30% 30%, rgba(200,162,75,0.28), transparent 60%), radial-gradient(35% 35% at 75% 70%, rgba(46,197,193,0.16), transparent 60%);
  filter: blur(50px); opacity: 0.7;
  animation: slickShift 22s ease-in-out infinite;
}
.cta h2 { font-size: var(--step-4); color: var(--bone); max-width: 20ch; margin-inline: auto; }
.cta p { margin: 1.2rem auto 2rem; color: var(--sand); max-width: 52ch; font-size: var(--step-1); font-weight: 300; }
.cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ------------------------------------------------------------------ *
 * 17. FORMS
 * ------------------------------------------------------------------ */
.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.5rem; position: relative; }
.field label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--sand); font-weight: 500; }
.field .req { color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--bone);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--fog); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); background: var(--card-2); box-shadow: 0 0 0 3px rgba(200,162,75,0.12); }
.field.invalid input, .field.invalid textarea { border-color: #d4614e; }
.field__err { font-size: 0.76rem; color: #e58a78; height: 0; overflow: hidden; transition: height 0.3s; }
.field.invalid .field__err { height: 1.2em; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: 0.8rem; color: var(--muted); }
.form-success {
  display: none;
  align-items: center; gap: 0.8rem;
  padding: 1rem 1.2rem; border-radius: var(--radius);
  background: rgba(46,197,193,0.08); border: 1px solid rgba(46,197,193,0.3); color: var(--cream);
  font-size: 0.9rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; color: var(--slick-cyan); flex: 0 0 auto; }

/* Newsletter inline */
.subscribe { display: flex; gap: 0.6rem; max-width: 420px; }
.subscribe input { flex: 1; padding: 0.85rem 1rem; background: var(--card); border: 1px solid var(--line); border-radius: 100px; color: var(--bone); }
.subscribe input:focus { outline: none; border-color: var(--gold); }
.subscribe button { flex: 0 0 auto; }

/* ------------------------------------------------------------------ *
 * 18. CONTACT PANELS
 * ------------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; background: var(--card); display: flex; gap: 1rem; align-items: flex-start; transition: border-color 0.3s; }
.info-card:hover { border-color: var(--line-gold); }
.info-card__ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: var(--gold-bright); border: 1px solid var(--line-gold); background: radial-gradient(120% 120% at 30% 20%, rgba(200,162,75,0.14), transparent); }
.info-card__ic svg { width: 20px; height: 20px; }
.info-card h4 { font-family: var(--font-sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.info-card p { color: var(--cream); font-size: 0.95rem; margin-top: 0.25rem; }
.info-card a:hover { color: var(--gold-bright); }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); position: relative; aspect-ratio: 16/10; background: var(--ink); }

/* ------------------------------------------------------------------ *
 * 19. FOOTER
 * ------------------------------------------------------------------ */
.footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--obsidian), #060708); position: relative; overflow: hidden; }
.footer__glow { position:absolute; left:50%; bottom:-60%; width:120%; transform:translateX(-50%); height:100%; background: radial-gradient(50% 50% at 50% 50%, rgba(200,162,75,0.08), transparent 70%); pointer-events:none; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(2rem, 4vw, 3rem); padding-block: clamp(3rem, 6vw, 5rem); position: relative; }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__brand p { color: var(--sand); font-size: 0.92rem; max-width: 34ch; }
.footer__col h5 { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul { display: grid; gap: 0.7rem; }
.footer__col a { color: var(--sand); font-size: 0.92rem; transition: color 0.3s, padding-left 0.3s; }
.footer__col a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer__news h5 { margin-bottom: 0.7rem; }
.footer__news p { color: var(--sand); font-size: 0.88rem; margin-bottom: 1rem; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.8rem; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--muted); }
.footer__bottom a:hover { color: var(--gold-bright); }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; }
.footer__socials { display: flex; gap: 0.6rem; }
.footer__socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--sand); transition: all 0.3s; }
.footer__socials a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.footer__socials svg { width: 16px; height: 16px; }

/* ------------------------------------------------------------------ *
 * 20. CALLOUTS / MISC
 * ------------------------------------------------------------------ */
.callout { border-left: 2px solid var(--gold); padding-left: 1.4rem; }
.callout__q { font-family: var(--font-display); font-size: var(--step-2); color: var(--bone); font-weight: 420; line-height: 1.3; font-style: italic; }
.chip { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.9rem; border-radius: 100px; border: 1px solid var(--line); font-size: 0.78rem; color: var(--sand); background: var(--card); }
.chip svg { width: 14px; height: 14px; color: var(--gold); }
.chip-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.factsheet { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.fact { padding: 1.4rem 1.6rem; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.fact:nth-child(2n) { border-right: 0; }
.fact span { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.fact strong { display: block; margin-top: 0.4rem; color: var(--bone); font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }

/* Timeline */
.timeline { position: relative; margin-left: 0.5rem; }
.timeline::before { content:""; position:absolute; left: 7px; top: 6px; bottom: 6px; width: 1px; background: linear-gradient(var(--gold), var(--line)); }
.tl-item { position: relative; padding: 0 0 2.2rem 2.4rem; }
.tl-item::before { content:""; position:absolute; left: 2px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--obsidian); border: 2px solid var(--gold); }
.tl-item:last-child { padding-bottom: 0; }
.tl-item .yr { font-family: var(--font-display); color: var(--gold-bright); font-size: 1.05rem; }
.tl-item h4 { font-family: var(--font-sans); font-size: 1.05rem; color: var(--bone); margin: 0.2rem 0 0.4rem; font-weight: 600; }
.tl-item p { color: var(--sand); font-size: 0.92rem; max-width: 60ch; }

/* Big display quote strip */
.strip { text-align: center; padding-block: clamp(3.5rem, 8vw, 7rem); }
.strip q { font-family: var(--font-display); font-size: var(--step-3); color: var(--bone); font-weight: 400; line-height: 1.25; quotes: none; max-width: 24ch; margin-inline: auto; display: block; }
.strip cite { display: block; margin-top: 1.6rem; font-style: normal; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ------------------------------------------------------------------ *
 * 21. REVEAL ANIMATIONS
 * ------------------------------------------------------------------ */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); will-change: opacity, transform; }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }
[data-reveal-delay="5"] { transition-delay: 0.40s; }

/* ------------------------------------------------------------------ *
 * 21b. PRODUCT CATALOG
 * ------------------------------------------------------------------ */
.filterbar { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.4rem; justify-content: center; }
.filterbar button {
  padding: 0.6rem 1.15rem; border-radius: 100px; border: 1px solid var(--line);
  font-size: 0.86rem; font-weight: 500; color: var(--sand); background: var(--card);
  transition: all 0.3s var(--ease);
}
.filterbar button:hover { color: var(--bone); border-color: var(--line-gold); }
.filterbar button.active { background: var(--gold); color: var(--obsidian); border-color: var(--gold); box-shadow: 0 10px 30px -14px var(--gold-glow); }
.filterbar button .count { opacity: 0.6; font-variant-numeric: tabular-nums; margin-left: 0.3rem; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.pcard {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.028), rgba(255,255,255,0.008));
  padding: 1.6rem 1.6rem 1.4rem;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s;
}
.pcard::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright), var(--gold-deep));
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease);
}
.pcard:hover { border-color: var(--line-gold); transform: translateY(-5px); box-shadow: 0 30px 60px -40px rgba(0,0,0,0.9); }
.pcard:hover::before { transform: scaleX(1); }
.pcard.is-hidden { display: none; }
.pcard__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.pcard__cat { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.pcard__ic { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 11px; border: 1px solid var(--line-gold); color: var(--gold-bright); background: radial-gradient(120% 120% at 30% 20%, rgba(200,162,75,0.16), transparent); }
.pcard__ic svg { width: 20px; height: 20px; }
.pcard h3 { font-size: 1.32rem; color: var(--bone); line-height: 1.1; }
.pcard__abbr { font-size: 0.78rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.02em; }
.pcard__desc { color: var(--sand); font-size: 0.9rem; margin: 0.8rem 0 1.1rem; }
.spec { display: grid; gap: 0.45rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line-soft); }
.spec__row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; font-size: 0.82rem; }
.spec__row .k { color: var(--muted); white-space: nowrap; }
.spec__row .dots { flex: 1; border-bottom: 1px dotted var(--fog); transform: translateY(-3px); opacity: 0.5; }
.spec__row .v { color: var(--cream); font-weight: 500; text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1.2rem; }
.pcard__grade { font-size: 0.72rem; color: var(--muted); }

/* ------------------------------------------------------------------ *
 * 21c. SERVICE TILES
 * ------------------------------------------------------------------ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.8rem;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s;
}
.svc:hover { border-color: var(--line-gold); transform: translateY(-5px); background: var(--card-2); }
.svc__no { position: absolute; top: 1.4rem; right: 1.6rem; font-family: var(--font-display); font-size: 0.95rem; color: var(--fog); transition: color 0.4s; }
.svc:hover .svc__no { color: var(--gold); }
.svc__ic { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; border: 1px solid var(--line-gold); color: var(--gold-bright); margin-bottom: 1.3rem; background: radial-gradient(120% 120% at 30% 20%, rgba(200,162,75,0.16), transparent); }
.svc__ic svg { width: 24px; height: 24px; }
.svc h3 { font-size: 1.3rem; color: var(--bone); margin-bottom: 0.6rem; }
.svc p { color: var(--sand); font-size: 0.9rem; }
.svc ul { margin-top: 1rem; display: grid; gap: 0.5rem; }
.svc ul li { display: flex; gap: 0.6rem; font-size: 0.85rem; color: var(--cream); align-items: flex-start; }
.svc ul svg { width: 15px; height: 15px; color: var(--gold-bright); flex: 0 0 auto; margin-top: 3px; }

/* ------------------------------------------------------------------ *
 * 21d. PACKAGING + INCOTERMS + SPEC TABLE
 * ------------------------------------------------------------------ */
.pack-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pack { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem; background: var(--card); transition: border-color 0.3s, transform 0.3s; }
.pack:hover { border-color: var(--line-gold); transform: translateY(-3px); }
.pack__ic { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: var(--gold-bright); border: 1px solid var(--line-gold); margin-bottom: 0.9rem; }
.pack__ic svg { width: 19px; height: 19px; }
.pack h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--bone); font-weight: 500; }
.pack p { font-size: 0.82rem; color: var(--sand); margin-top: 0.3rem; }

.spectable { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.spectable caption { text-align: left; font-family: var(--font-display); font-size: 1.2rem; color: var(--bone); padding-bottom: 0.9rem; }
.spectable th, .spectable td { text-align: left; padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line-soft); font-size: 0.88rem; }
.spectable th { background: rgba(255,255,255,0.02); color: var(--muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; font-size: 0.72rem; }
.spectable td { color: var(--cream); }
.spectable td:first-child { color: var(--sand); }
.spectable tr:last-child td { border-bottom: 0; }
.spectable .v { color: var(--gold-bright); font-weight: 500; font-variant-numeric: tabular-nums; }

/* Reach / ports marquee reuse .ticker */
.port-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }

@media (max-width: 1080px) {
  .product-grid, .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .product-grid, .svc-grid, .pack-grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ *
 * 21e. MEGA-MENU + DROPDOWNS (Vitol-style divisions)
 * ------------------------------------------------------------------ */
.nav__item { display: inline-flex; align-items: center; height: var(--nav-h); }
.nav__item--drop { position: relative; }
.nav__trigger { display: inline-flex; align-items: center; gap: 0.35rem; cursor: pointer; }
.nav__trigger .caret { width: 13px; height: 13px; transition: transform 0.3s var(--ease); opacity: 0.7; }
.has-mega:hover .caret, .has-mega.open .caret,
.nav__item--drop:hover .caret, .nav__item--drop.open .caret { transform: rotate(180deg); }

/* Full-width mega panel */
.mega {
  position: absolute; left: 0; right: 0; top: var(--nav-h);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-gold);
  box-shadow: 0 40px 70px -34px rgba(0,0,0,0.85);
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
  z-index: 890;
}
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.open .mega { opacity: 1; visibility: visible; transform: none; }
.mega__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2rem; padding-block: 2.4rem; }
.mega__col { display: flex; flex-direction: column; gap: 0.5rem; }
.mega__head {
  font-family: var(--font-display); font-size: 1.12rem; color: var(--bone);
  padding-bottom: 0.7rem; margin-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-gold);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s;
}
.mega__head svg { width: 16px; height: 16px; color: var(--gold); }
.mega__head:hover { color: var(--gold-bright); }
.mega__col > a:not(.mega__head) { font-size: 0.87rem; color: var(--sand); transition: color 0.25s var(--ease), padding-left 0.25s var(--ease); }
.mega__col > a:not(.mega__head)::before { content: "·"; color: var(--gold); margin-right: 0.5rem; opacity: 0.5; }
.mega__col > a:not(.mega__head):hover { color: var(--gold-bright); padding-left: 4px; }

/* Small dropdown (Company) */
.dropmenu {
  position: absolute; top: calc(var(--nav-h) - 12px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--glass); backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 0.5rem; box-shadow: 0 26px 50px -24px rgba(0,0,0,0.8);
  opacity: 0; visibility: hidden; transition: all 0.3s var(--ease); z-index: 890;
}
.nav__item--drop:hover .dropmenu, .nav__item--drop:focus-within .dropmenu, .nav__item--drop.open .dropmenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropmenu a { display: block; padding: 0.65rem 0.9rem; border-radius: var(--radius); font-size: 0.9rem; color: var(--sand); transition: all 0.25s; }
.dropmenu a:hover { background: var(--card-2); color: var(--gold-bright); padding-left: 1.1rem; }

/* Drawer businesses group */
.drawer__group { padding-top: 1.4rem; margin-top: 0.4rem; }
.drawer__gtitle { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.drawer__subs { display: grid; gap: 0; margin-top: 0.6rem; }
.drawer__subs a { padding: 0.85rem 0; color: var(--cream); font-size: 1.1rem; font-family: var(--font-display); border-bottom: 1px solid var(--line-soft); transition: color 0.3s, padding-left 0.35s var(--ease); }
.drawer__subs a:hover { color: var(--gold-bright); padding-left: 0.5rem; }

/* ------------------------------------------------------------------ *
 * 21f. PHOTOGRAPHIC DIVISION HERO + SUB-NAV
 * ------------------------------------------------------------------ */
.hero-photo {
  position: relative; min-height: min(86vh, 760px);
  display: flex; align-items: flex-end;
  padding-top: var(--nav-h); overflow: hidden; isolation: isolate;
}
.hero-photo__media { position: absolute; inset: 0; z-index: -2; background: linear-gradient(150deg, #141a20, #08090b); }
.hero-photo__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transform: scale(1.04); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-photo::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,9,11,0.62) 0%, rgba(8,9,11,0.32) 38%, rgba(8,9,11,0.94) 100%),
    radial-gradient(90% 70% at 12% 92%, rgba(200,162,75,0.16), transparent 60%);
}
.hero-photo__inner { position: relative; width: 100%; padding-bottom: clamp(2.6rem, 6vw, 5rem); }
.hero-photo h1 { font-size: var(--step-5); color: var(--bone); max-width: 15ch; }
.hero-photo h1 .shimmer {
  background: linear-gradient(92deg, var(--gold-deep), var(--gold-bright) 45%, var(--bone) 65%, var(--gold-bright) 85%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-style: italic; animation: shimmer 7s linear infinite;
}
.hero-photo .lede { margin-top: 1.3rem; color: var(--cream); }
.hero-photo__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-photo__stats { display: flex; flex-wrap: wrap; gap: 2rem 3.4rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid rgba(244,239,228,0.14); }
.hero-photo__stat b { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--bone); line-height: 1; }
.hero-photo__stat span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sand); margin-top: 0.5rem; display: block; }

/* Sticky sub-navigation for division pages */
.subnav { position: sticky; top: var(--nav-h); z-index: 500; background: var(--glass); backdrop-filter: blur(16px) saturate(1.2); border-bottom: 1px solid var(--line); }
.subnav__row { display: flex; gap: 0.4rem; overflow-x: auto; padding: 0.85rem 0; scrollbar-width: none; }
.subnav__row::-webkit-scrollbar { display: none; }
.subnav a { white-space: nowrap; padding: 0.55rem 1.05rem; border-radius: 100px; font-size: 0.86rem; color: var(--sand); border: 1px solid transparent; transition: all 0.3s var(--ease); }
.subnav a:hover { color: var(--bone); background: var(--card); border-color: var(--line-gold); }

/* Alternating numbered division block (reuses .split) */
.divblock { padding-block: clamp(3rem, 6vw, 5.5rem); border-top: 1px solid var(--line); }
.divblock:first-of-type { border-top: 0; }
.divblock__tag { display: inline-flex; align-items: center; gap: 0.7rem; }
.divblock__tag .n { font-family: var(--font-display); font-size: 0.95rem; color: var(--gold); }

@media (max-width: 1100px) { .mega__inner { grid-template-columns: repeat(3, 1fr); row-gap: 1.8rem; } }

/* 5-column footer with Businesses */
.footer__top { grid-template-columns: 1.5fr 0.9fr 1fr 0.9fr 1.2fr; }
@media (max-width: 1080px) { .footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px) { .footer__top { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ *
 * 21g. BLOG (index cards + featured)
 * ------------------------------------------------------------------ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.post {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: var(--card); overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s;
}
.post:hover { border-color: var(--line-gold); transform: translateY(-5px); box-shadow: 0 30px 60px -42px rgba(0,0,0,0.9); }
.post.is-hidden { display: none; }
.post__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(150deg, var(--slate), var(--ink)); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post:hover .post__media img { transform: scale(1.06); }
.post__cat { position: absolute; top: 0.9rem; left: 0.9rem; z-index: 2; padding: 0.35rem 0.75rem; border-radius: 100px; background: rgba(8,9,11,0.62); border: 1px solid var(--line-gold); backdrop-filter: blur(8px); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-bright); font-weight: 600; }
.post__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.5rem 1.5rem; }
.post__title { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.18; color: var(--bone); transition: color 0.3s; }
.post:hover .post__title { color: var(--gold-bright); }
.post__excerpt { color: var(--sand); font-size: 0.9rem; margin-top: 0.6rem; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 0.7rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); font-size: 0.78rem; color: var(--muted); }
.post__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
.post__av { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-deep), var(--gold-bright)); display: grid; place-items: center; color: var(--obsidian); font-weight: 700; font-size: 0.66rem; flex: 0 0 auto; }

.post--feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr 0.85fr; }
.post--feature .post__media { aspect-ratio: auto; height: 100%; min-height: 340px; }
.post--feature .post__body { justify-content: center; padding: clamp(1.8rem, 4vw, 3rem); }
.post--feature .post__title { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.post--feature .post__excerpt { font-size: 1.02rem; }
@media (max-width: 1080px) { .post-grid { grid-template-columns: repeat(2, 1fr); } .post--feature { grid-template-columns: 1fr; } .post--feature .post__media { min-height: 260px; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------------ *
 * 21h. ARTICLE (prose + meta + author + related)
 * ------------------------------------------------------------------ */
.hero-photo--article { min-height: min(64vh, 560px); }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.2rem; margin-top: 1.6rem; font-size: 0.86rem; color: var(--sand); }
.article-meta .who { display: flex; align-items: center; gap: 0.6rem; }
.article-meta .who b { color: var(--bone); font-weight: 550; }
.article-meta .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-deep), var(--gold-bright)); display: grid; place-items: center; color: var(--obsidian); font-weight: 700; font-size: 0.8rem; }
.article-meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

.prose { max-width: 44rem; margin-inline: auto; }
.prose > * + * { margin-top: 1.2rem; }
.prose .article-lead { font-size: 1.24rem; line-height: 1.6; color: var(--cream); font-weight: 300; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); color: var(--bone); margin-top: 2.6rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--bone); margin-top: 1.8rem; }
.prose p { color: var(--sand); line-height: 1.8; }
.prose strong { color: var(--cream); font-weight: 600; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-gold); }
.prose a:hover { text-decoration-color: var(--gold-bright); }
.prose ul { display: grid; gap: 0.7rem; margin: 0.4rem 0; }
.prose ul li { position: relative; padding-left: 1.7rem; color: var(--sand); line-height: 1.7; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 8px; height: 8px; border-radius: 2px; background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep)); transform: rotate(45deg); }
.prose blockquote { margin: 2rem 0; padding: 0.4rem 0 0.4rem 1.5rem; border-left: 2px solid var(--gold); font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.7rem); line-height: 1.4; color: var(--bone); }
.prose figure img { border-radius: var(--radius-lg); border: 1px solid var(--line); width: 100%; }
.prose figcaption { font-size: 0.8rem; color: var(--muted); margin-top: 0.6rem; text-align: center; }
.prose .takeaways { border: 1px solid var(--line-gold); border-radius: var(--radius-lg); background: radial-gradient(120% 140% at 100% 0%, rgba(200,162,75,0.08), transparent 60%), var(--card); padding: 1.6rem 1.8rem; margin-top: 2.4rem; }
.prose .takeaways h4 { font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }

.author-box { max-width: 44rem; margin: 3rem auto 0; display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.6rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); }
.author-box .av { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(150deg, var(--gold-deep), var(--gold-bright)); display: grid; place-items: center; color: var(--obsidian); font-weight: 700; font-size: 1.1rem; flex: 0 0 auto; }
.author-box b { color: var(--bone); font-family: var(--font-display); font-size: 1.15rem; }
.author-box span.role { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0.2rem 0 0.5rem; }
.author-box p { color: var(--sand); font-size: 0.9rem; }

/* ------------------------------------------------------------------ *
 * 21i. CAREERS + MEDIA lists
 * ------------------------------------------------------------------ */
.role-list { border-top: 1px solid var(--line); }
.role { display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 1rem; align-items: center; padding: 1.5rem 0.4rem; border-bottom: 1px solid var(--line); transition: padding-left 0.35s var(--ease), background 0.35s; }
.role:hover { padding-left: 1rem; background: linear-gradient(90deg, rgba(200,162,75,0.05), transparent); }
.role h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--bone); }
.role .tag { font-size: 0.82rem; color: var(--sand); display: flex; align-items: center; gap: 0.5rem; }
.role .tag svg { width: 15px; height: 15px; color: var(--gold); }
.role .go { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-gold); display: grid; place-items: center; color: var(--gold-bright); transition: all 0.3s; justify-self: end; }
.role:hover .go { background: var(--gold); color: var(--obsidian); }
.role .go svg { width: 17px; height: 17px; }
@media (max-width: 780px) { .role { grid-template-columns: 1fr auto; } .role .tag { display: none; } }

.press-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.press { display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center; padding: 1.5rem 0.4rem; border-bottom: 1px solid var(--line); transition: padding-left 0.35s var(--ease), background 0.35s; }
.press:hover { padding-left: 1rem; background: linear-gradient(90deg, rgba(200,162,75,0.05), transparent); }
.press .date { font-family: var(--font-display); color: var(--gold-bright); font-size: 0.92rem; white-space: nowrap; min-width: 8.5ch; }
.press h3 { font-size: 1.1rem; color: var(--bone); font-weight: 550; font-family: var(--font-sans); }
.press .kind { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.25rem; }
.press .go { color: var(--gold-bright); }
.press .go svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .press { grid-template-columns: 1fr auto; } .press .date { grid-column: 1 / -1; } }

/* Back to top */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 800; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-gold); background: var(--glass); backdrop-filter: blur(10px); display: grid; place-items: center; color: var(--gold-bright); opacity: 0; transform: translateY(14px) scale(0.9); pointer-events: none; transition: all 0.4s var(--ease); }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); color: var(--obsidian); }
.to-top svg { width: 18px; height: 18px; }

/* ------------------------------------------------------------------ *
 * 22. RESPONSIVE
 * ------------------------------------------------------------------ */
@media (max-width: 1080px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 2.4rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
  .nav__burger { display: block; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .bio { grid-template-columns: 1fr; }
  .bio__media { max-width: 340px; }
}
@media (max-width: 620px) {
  .pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .factsheet, .form__row { grid-template-columns: 1fr; }
  .fact { border-right: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .subscribe { flex-direction: column; }
  .subscribe input { border-radius: var(--radius); }
  .hero__meta { gap: 1.4rem 2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__cta .btn, .cta__actions .btn { width: auto; }
}
@media (max-width: 420px) {
  .hero__cta .btn, .cta__actions .btn { width: 100%; }
}
