/* ============================================================
   CECHOES TECHNOLOGY | DESIGN SYSTEM v6
   Bold Clarity
   Accessible to 90. Compelling to 18.
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* Accessibility: skip navigation */
.skip-nav {
  position: absolute;
  top: -120px;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 26px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-nav:focus { top: 0; }

/* ── DESIGN TOKENS ───────────────────────────────────────── */
:root {
  /* Surface: warm ivory canvas */
  --surface:     #F9F8F4;
  --surface-alt: #F1EFE9;
  --surface-3:   #E9E6DC;
  --white:       #FFFFFF;

  /* Navy: the institutional anchor */
  --navy:        #0B1630;
  --navy-mid:    #1A2748;

  /* Text: near-black, calibrated to 7:1+ contrast on all surfaces */
  --ink:     #0F1118;
  --ink-mid: #282B3A;
  --ink-dim: #5E6175;

  /* Gold: primary accent, 4.7:1 on white */
  --gold:    #A07828;
  --gold-lt: #C9A860;

  /* Lines */
  --line:    #E2DED4;
  --line-md: #CCCAB8;

  /* Brand accents */
  --bz:  #1C3E78;
  --tf:  #147A6E;
  --zap: #8B5714;
  --dr:  #622D8B;
  --ada: #1A6E4A;

  /* Brand tints for hover backgrounds */
  --bz-tint:  rgba(28,62,120,0.04);
  --tf-tint:  rgba(20,122,110,0.04);
  --zap-tint: rgba(139,87,20,0.04);
  --dr-tint:  rgba(98,45,139,0.04);
  --ada-tint: rgba(26,110,74,0.04);

  /* Typography */
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Space Grotesk', sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  0.4s;

  /* Spacing scale */
  --section-pad:    140px;
  --section-pad-sm: 88px;
}

/* ── BASE ──────────────────────────────────────────────── */
body {
  font-family: var(--ff-body);
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.9;
  overflow-x: hidden;
}

/* ── FOCUS STYLES ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}

.section    { padding: var(--section-pad) 0; }
.section-sm { padding: var(--section-pad-sm) 0; }
.section-alt { background: var(--surface-alt); }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────── */
.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}

.gold-italic { font-style: italic; color: var(--gold); }
.gold-accent { color: var(--gold); }

/* Section header block */
.section-header { margin-bottom: 80px; }
.section-header .overline { margin-bottom: 18px; }
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.028em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  line-height: 1.88;
  color: var(--ink-mid);
  max-width: 700px;
}

/* Section divider line */
.section-line {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}

.site-nav.scrolled {
  box-shadow: 0 2px 32px rgba(11,22,48,0.09);
  border-bottom-color: var(--line-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 76px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-mark {
  width: 34px;
  height: auto;
  display: block;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-logo-name {
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
}

.nav-links li > a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;
}

.nav-links li > a:hover {
  color: var(--navy);
  background: var(--surface-alt);
}

/* Dropdown */
.nav-dd { position: relative; }

.nav-dd > a::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A4E6B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.nav-dd:hover > a::after { transform: rotate(180deg); }

.dd-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 12px 48px rgba(11,22,48,0.13);
}

.nav-dd:hover .dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd-menu a {
  display: flex;
  align-items: center;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--r-sm);
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
}

.dd-menu a:hover {
  color: var(--navy);
  background: var(--surface);
}

/* Nav CTA area */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-nav {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 11px 22px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--navy);
  transition: all 0.28s var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-nav:hover {
  background: transparent;
  color: var(--navy);
}

/* Hamburger */
.nav-ham {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 10px;
}

.nav-ham span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s var(--ease);
}

/* ── MOBILE OVERLAY ──────────────────────────────────────── */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0 28px 44px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

.mob-overlay.open { opacity: 1; visibility: visible; }

.mob-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}

.mob-close {
  background: none;
  border: 1.5px solid var(--line-md);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  color: var(--ink-mid);
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mob-close:hover { color: var(--navy); border-color: var(--navy); }

.mob-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mob-links > li > a {
  display: block;
  font-family: var(--ff-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
  letter-spacing: -0.028em;
}

.mob-links > li > a:hover { color: var(--navy); }

.mob-brands {
  padding: 10px 0 6px 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid var(--line);
}

.mob-brands a {
  display: flex;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 10px 0;
  transition: color 0.2s;
  min-height: 44px;
}

.mob-brands a:hover { color: var(--navy); }

.mob-footer { padding-top: 36px; }

.mob-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: opacity 0.2s;
  min-height: 48px;
}

.mob-footer a:hover { opacity: 0.65; }

/* ── HERO: SPLIT LAYOUT (index.php) ──────────────────────── */
.hero-split {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 124px;
  padding-bottom: 100px;
}

/* Subtle architectural grid */
.hero-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,22,48,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,22,48,0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left  { display: flex; flex-direction: column; }
.hero-right { display: flex; justify-content: center; align-items: center; }

.hero-provenance {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 24px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(52px, 7.5vw, 114px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.042em;
  color: var(--navy);
  margin-bottom: 36px;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-body {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
  color: var(--ink-mid);
  margin-bottom: 48px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* Blueprint SVG */
.blueprint-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  opacity: 0.62;
}

/* SVG animations */
.svg-spin {
  transform-origin: 280px 280px;
  animation: svgSpin 40s linear infinite;
}

.svg-spin-rev {
  transform-origin: 280px 280px;
  animation: svgSpin 60s linear infinite reverse;
}

.svg-pulse {
  animation: svgPulse 5s ease-in-out infinite;
}

.svg-draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: svgDraw 2.8s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 0.6s;
}

.svg-draw-slow {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: svgDraw 3.5s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 1.2s;
}

@keyframes svgSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes svgPulse {
  0%, 100% { opacity: 0.15; }
  50%       { opacity: 0.45; }
}

@keyframes svgDraw {
  to { stroke-dashoffset: 0; }
}

/* ── KPI STRIP: first navy moment ────────────────────────── */
.kpi-strip { background: var(--navy); }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.kpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 68px 32px;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.kpi-item:last-child { border-right: none; }

.kpi-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.kpi-num sup {
  font-size: 0.46em;
  vertical-align: super;
  letter-spacing: 0;
}

.kpi-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.72;
}

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-alt);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marqueeRun 50s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}

.marquee-track .mq-dot {
  color: var(--gold);
  font-size: 6px;
  padding: 0 20px;
  opacity: 0.55;
  letter-spacing: 0;
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── BRAND ROWS (homepage and contact.php) ──────────────── */
.brands-index-section { background: var(--white); }
.brands-index { border-top: 1px solid var(--line); }

.brand-row {
  display: grid;
  grid-template-columns: 64px 1fr 340px 44px;
  align-items: center;
  gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  box-shadow: inset 4px 0 0 transparent;
}

.brand-row.bz:hover  { box-shadow: inset 4px 0 0 var(--bz);  background: var(--bz-tint); }
.brand-row.tf:hover  { box-shadow: inset 4px 0 0 var(--tf);  background: var(--tf-tint); }
.brand-row.zap:hover { box-shadow: inset 4px 0 0 var(--zap); background: var(--zap-tint); }
.brand-row.dr:hover  { box-shadow: inset 4px 0 0 var(--dr);  background: var(--dr-tint); }
.brand-row.ada:hover { box-shadow: inset 4px 0 0 var(--ada); background: var(--ada-tint); }

.br-num {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  transition: color 0.3s var(--ease);
}

.br-name {
  font-family: var(--ff-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  letter-spacing: -0.026em;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}

.br-desc {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.62;
  transition: color 0.3s var(--ease);
}

.br-tag {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
  transition: color 0.3s var(--ease);
}

.br-arrow {
  font-size: 20px;
  color: var(--ink-dim);
  text-align: right;
  transition: all 0.3s var(--ease);
}

/* Hover: brand-specific accent colours */
.brand-row.bz:hover  .br-num,
.brand-row.bz:hover  .br-name,
.brand-row.bz:hover  .br-arrow { color: var(--bz); }
.brand-row.tf:hover  .br-num,
.brand-row.tf:hover  .br-name,
.brand-row.tf:hover  .br-arrow { color: var(--tf); }
.brand-row.zap:hover .br-num,
.brand-row.zap:hover .br-name,
.brand-row.zap:hover .br-arrow { color: var(--zap); }
.brand-row.dr:hover  .br-num,
.brand-row.dr:hover  .br-name,
.brand-row.dr:hover  .br-arrow { color: var(--dr); }
.brand-row.ada:hover .br-num,
.brand-row.ada:hover .br-name,
.brand-row.ada:hover .br-arrow { color: var(--ada); }

.brand-row:hover .br-desc  { color: var(--ink-mid); }
.brand-row:hover .br-tag   { color: var(--ink-mid); }
.brand-row:hover .br-arrow { transform: translateX(8px); }

/* ── EDITORIAL CONVICTION (index.php philosophy block) ────── */
.section-editorial {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-quote {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.8vw, 84px);
  font-weight: 800;
  letter-spacing: -0.036em;
  line-height: 1.06;
  font-style: italic;
  color: var(--navy);
  max-width: 100%;
  margin: 24px 0 64px;
  border: none;
  padding: 0;
}

.editorial-quote em {
  color: var(--gold);
  font-style: inherit;
}

.eq-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 64px;
  border-radius: 2px;
}

.eq-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 960px;
  padding-top: 56px;
  border-top: 1px solid var(--line-md);
}

.eq-body p {
  font-size: 16px;
  line-height: 1.92;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.eq-body p:last-child { margin-bottom: 0; }

.eq-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 22px;
  transition: opacity 0.2s;
}

.eq-link:hover { opacity: 0.6; }

/* ── RECOGNITION EDITORIAL (index.php credentials) ───────── */
.recognition-editorial {
  padding: 96px 0;
  background: var(--white);
}

.rel-header {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.rel-heading {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.026em;
  line-height: 1.1;
  color: var(--navy);
}

.rel-items {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}

.rel-sidebar { padding-top: 48px; }

.rel-sidebar-note {
  font-size: 13px;
  line-height: 1.82;
  color: var(--ink-dim);
  max-width: 170px;
}

.rel-list { display: flex; flex-direction: column; }

.rel-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 40px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.rel-item:first-child { padding-top: 48px; }
.rel-item:last-child  { border-bottom: none; }

.rel-marker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.rel-name {
  font-family: var(--ff-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.012em;
}

.rel-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ── BUTTONS (global defaults) ───────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  padding: 15px 32px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--r-sm);
  transition: all 0.28s var(--ease);
  letter-spacing: 0.015em;
  cursor: pointer;
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,22,48,0.14);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  padding: 15px 30px;
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-sm);
  transition: all 0.28s var(--ease);
  background: transparent;
  min-height: 48px;
}

.btn-ghost:hover {
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* Button variant for brand pages */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  padding: 15px 32px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--r-sm);
  transition: all 0.28s var(--ease);
  letter-spacing: 0.015em;
  white-space: nowrap;
  min-height: 48px;
}

.btn-brand:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── CTA SECTION: second navy moment ─────────────────────── */
.cta-section { background: var(--navy); }

.cta-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  padding: 112px 0;
}

.cta-section .overline { color: rgba(201,168,96,0.70); }

.cta-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.07;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-left p {
  font-size: 16px;
  line-height: 1.88;
  color: rgba(255,255,255,0.56);
  margin-bottom: 40px;
  max-width: 500px;
}

.cta-left .cta-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons inside navy CTA */
.cta-section .btn-primary {
  background: var(--gold-lt);
  color: var(--navy);
  border-color: var(--gold-lt);
}

.cta-section .btn-primary:hover {
  background: transparent;
  color: var(--gold-lt);
}

.cta-section .btn-ghost {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.22);
}

.cta-section .btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.cta-right { flex-shrink: 0; min-width: 280px; }

.cta-detail-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.cta-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cta-detail:last-child { border-bottom: none; }

.cta-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
}

.cta-detail-val {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
}

.cta-detail-val a {
  color: rgba(255,255,255,0.70);
  transition: color 0.2s;
}

.cta-detail-val a:hover { color: var(--gold-lt); }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.btt {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btt.show { opacity: 1; visibility: visible; }
.btt:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.82s var(--ease), transform 0.82s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }
.reveal-d5 { transition-delay: 0.58s; }

/* ── FOOTER: third navy moment ───────────────────────────── */
.footer-brand { display: flex; flex-direction: column; }

.site-footer { background: var(--navy); }

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Logo text overrides inside dark footer */
.site-footer .nav-logo-name { color: rgba(255,255,255,0.88); }
.site-footer .nav-logo-sub  { color: rgba(255,255,255,0.36); }

.footer-tagline {
  font-size: 14px;
  line-height: 1.84;
  color: rgba(255,255,255,0.35);
  margin: 20px 0 24px;
}

.footer-socials { display: flex; gap: 8px; }

.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: all 0.2s;
}

.footer-social:hover {
  border-color: rgba(255,255,255,0.26);
  color: rgba(255,255,255,0.72);
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 22px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255,255,255,0.88); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer-bottom > span { font-size: 12.5px; color: rgba(255,255,255,0.22); }

.footer-bot-links { display: flex; gap: 24px; }

.footer-bot-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.22);
  transition: color 0.2s;
}

.footer-bot-links a:hover { color: rgba(255,255,255,0.55); }

/* ── PAGE HERO EDITORIAL (about.php, contact.php) ─────────── */
.page-hero-editorial {
  background: var(--surface);
  padding: 180px 0 108px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

/* Architectural grid texture */
.page-hero-editorial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11,22,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,22,48,0.04) 1px, transparent 1px);
  background-size: 88px 88px;
  pointer-events: none;
}

.phe-inner { max-width: 920px; position: relative; z-index: 1; }

.phe-h1 {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.6vw, 70px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--navy);
  margin: 10px 0 26px;
}

.phe-sub {
  font-size: 18px;
  line-height: 1.88;
  color: var(--ink-mid);
  max-width: 660px;
}

/* ── BRANDS PAGE HERO ─────────────────────────────────────── */
.brands-page-hero {
  background-image: radial-gradient(rgba(11,22,48,0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.brands-hero-split {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 72px;
  align-items: center;
}

.brands-hero-split .phe-inner { max-width: none; }

.brands-hero-visual { display: flex; flex-direction: column; }

.bhv-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
}

.bhv-item:first-child { border-top: 1px solid var(--line); }

.brands-hero-visual.in .bhv-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.18s; }
.brands-hero-visual.in .bhv-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.33s; }
.brands-hero-visual.in .bhv-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.48s; }
.brands-hero-visual.in .bhv-item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.63s; }
.brands-hero-visual.in .bhv-item:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.78s; }

.bhv-num {
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  min-width: 22px;
  text-align: right;
}

.bhv-line {
  height: 3px;
  border-radius: 2px;
  flex: 1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.52s var(--ease);
}

.brands-hero-visual.in .bhv-item:nth-child(1) .bhv-line { transform: scaleX(1); transition-delay: 0.28s; }
.brands-hero-visual.in .bhv-item:nth-child(2) .bhv-line { transform: scaleX(1); transition-delay: 0.43s; }
.brands-hero-visual.in .bhv-item:nth-child(3) .bhv-line { transform: scaleX(1); transition-delay: 0.58s; }
.brands-hero-visual.in .bhv-item:nth-child(4) .bhv-line { transform: scaleX(1); transition-delay: 0.73s; }
.brands-hero-visual.in .bhv-item:nth-child(5) .bhv-line { transform: scaleX(1); transition-delay: 0.88s; }

.bhv-bz  .bhv-line { background: var(--bz); }
.bhv-tf  .bhv-line { background: var(--tf); }
.bhv-zap .bhv-line { background: var(--zap); }
.bhv-dr  .bhv-line { background: var(--dr); }
.bhv-ada .bhv-line { background: var(--ada); }

.bhv-name {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  min-width: 156px;
  text-align: right;
}

.bhv-bz  .bhv-name { color: var(--bz); }
.bhv-tf  .bhv-name { color: var(--tf); }
.bhv-zap .bhv-name { color: var(--zap); }
.bhv-dr  .bhv-name { color: var(--dr); }
.bhv-ada .bhv-name { color: var(--ada); }

/* ── CONVICTION TWO-COLUMN ────────────────────────────────── */
.conviction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.conviction-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: var(--navy);
  position: sticky;
  top: 108px;
}

.conviction-right p {
  font-size: 17px;
  line-height: 1.92;
  color: var(--ink-mid);
  margin-bottom: 24px;
}

.conviction-right p:last-of-type { margin-bottom: 0; }

/* ── VALUES GRID ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.value-block {
  background: var(--white);
  padding: 52px 44px;
  transition: background 0.35s var(--ease);
}

.value-block:hover { background: var(--surface); }

.value-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink-dim);
  margin-bottom: 22px;
}

.value-title {
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.value-body {
  font-size: 15px;
  line-height: 1.92;
  color: var(--ink-mid);
}

/* Brand accent colours */
.bz-accent  { color: var(--bz)  !important; }
.tf-accent  { color: var(--tf)  !important; }
.zap-accent { color: var(--zap) !important; }
.dr-accent  { color: var(--dr)  !important; }
.ada-accent { color: var(--ada) !important; }

/* ── METHODOLOGY ─────────────────────────────────────────── */
.methodology-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 88px;
  align-items: start;
}

.methodology-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 22px;
}

.methodology-left p {
  font-size: 16px;
  line-height: 1.92;
  color: var(--ink-mid);
}

.methodology-right { display: flex; flex-direction: column; gap: 0; }

.method-step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.method-step:last-child { border-bottom: none; }

.method-step-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding-top: 2px;
  width: 24px;
}

.method-step-body h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.012em;
}

.method-step-body p {
  font-size: 15px;
  line-height: 1.88;
  color: var(--ink-mid);
}

/* ── CREDENTIALS BAR (about.php) ─────────────────────────── */
.credentials-bar {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cred-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 68px 28px;
}

.cred-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  flex-shrink: 0;
}

.cred-num {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(40px, 4.8vw, 62px);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 16px;
}

.cred-num sup { font-size: 0.46em; vertical-align: super; }

.cred-label {
  font-size: 13px;
  line-height: 1.72;
  color: var(--ink-dim);
  max-width: 190px;
}

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-section .contact-grid { grid-template-columns: 380px 1fr; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 36px; }

.contact-block-title {
  font-family: var(--ff-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}

.contact-block-sub {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.72;
  margin-bottom: 12px;
}

.contact-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold); }

.contact-phones {
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-phone-item { display: flex; flex-direction: column; gap: 5px; }

.contact-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.contact-phone-num {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.012em;
  transition: color 0.2s;
}

.contact-phone-num:hover { color: var(--gold); }

/* Contact form panel */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 56px 52px;
}

.contact-form-title {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.contact-form-sub {
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.75;
  margin-bottom: 36px;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--line-md);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A8DA8' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-dim); opacity: 0.7; }

/* Form submit */
.form-submit {
  display: block;
  width: 100%;
  padding: 17px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--navy);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.28s var(--ease);
  letter-spacing: 0.025em;
  min-height: 52px;
}

.form-submit:hover {
  background: transparent;
  color: var(--navy);
}

/* ── BRANDS SHOWCASE PAGE (brands.php) ───────────────────── */
.brand-showcase {
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.brand-showcase#strategy-tf,
.brand-showcase#deepreveal-ai { background: var(--surface-alt); }
.brand-showcase:last-of-type { border-bottom: none; }

.brand-showcase-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 88px;
  align-items: start;
}

.brand-showcase-alt .brand-showcase-inner { direction: rtl; }
.brand-showcase-alt .brand-showcase-inner > * { direction: ltr; }

.bs-left { display: flex; flex-direction: column; }
.bs-left .bs-meta { margin-bottom: 28px; }

.bs-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.bs-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.06em;
}

/* Brand tag chips */
.bs-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-sm);
  border: 1px solid;
}

.bz-tag  { color: var(--bz);  border-color: rgba(28,62,120,0.30);  background: rgba(28,62,120,0.05); }
.tf-tag  { color: var(--tf);  border-color: rgba(20,122,110,0.30); background: rgba(20,122,110,0.05); }
.zap-tag { color: var(--zap); border-color: rgba(139,87,20,0.30);  background: rgba(139,87,20,0.05); }
.dr-tag  { color: var(--dr);  border-color: rgba(98,45,139,0.30);  background: rgba(98,45,139,0.05); }
.ada-tag { color: var(--ada); border-color: rgba(26,110,74,0.30);  background: rgba(26,110,74,0.05); }

.bs-name {
  font-family: var(--ff-display);
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 0.98;
  margin-bottom: 20px;
  display: block;
  color: var(--navy);
}

.bs-headline {
  font-family: var(--ff-display);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
}

.bs-body {
  font-size: 16px;
  line-height: 1.92;
  color: var(--ink-mid);
  margin-bottom: 18px;
}

.bs-body:last-of-type { margin-bottom: 32px; }

.bs-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right stat panel */
.bs-right-panel { padding-top: 10px; }

.bs-stat-panel {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.bs-stat-panel .bs-stat {
  background: var(--white);
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: background 0.35s var(--ease);
}

.bs-stat-panel .bs-stat:hover { background: var(--surface); }

.bss-num {
  font-family: var(--ff-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.026em;
  color: var(--navy);
  line-height: 1;
}

.bss-label {
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  line-height: 1.58;
}

/* ── BRAND PAGE HERO ─────────────────────────────────────── */
.brand-page-hero {
  background: var(--surface);
  padding: 168px 0 108px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--line-md);
}

.brand-page-hero::before { display: none; }

.bph-inner { max-width: 880px; position: relative; }

.bph-eyebrow {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
}

.bph-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.bph-parent {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding-left: 22px;
  border-left: 1px solid var(--line-md);
}

.bph-name {
  font-family: var(--ff-display);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 26px;
  display: block;
}

.bph-headline {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.68;
  color: var(--ink-mid);
  max-width: 640px;
  margin-bottom: 40px;
}

.bph-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Brand top-stripe colours */
.bz-hero  { border-top-color: var(--bz); }
.tf-hero  { border-top-color: var(--tf); }
.zap-hero { border-top-color: var(--zap); }
.dr-hero  { border-top-color: var(--dr); }
.ada-hero { border-top-color: var(--ada); }

/* ── ZAPTHRU GUARANTEE BLOCK ─────────────────────────────── */
.guarantee-wrap {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.guarantee-num {
  font-family: var(--ff-display);
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--gold);
}

.guarantee-text h3 {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.guarantee-text p {
  font-size: 15px;
  line-height: 1.92;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.guarantee-text p:last-child { margin-bottom: 0; }
.guarantee-text a { color: var(--gold); text-decoration: underline; }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-wrap { max-width: 860px; margin: 0 auto; }

.legal-intro {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: 40px 44px;
  margin-bottom: 64px;
}

.legal-intro p { font-size: 16px; color: var(--ink-mid); line-height: 1.92; margin-bottom: 14px; }
.legal-intro p:last-child { margin-bottom: 0; }
.legal-intro a { color: var(--navy); }

.legal-section { margin-bottom: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: none; padding-bottom: 0; }

.legal-section h2 {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.012em;
}

.legal-section h3 {
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 24px 0 12px;
}

.legal-section p { font-size: 15px; color: var(--ink-mid); line-height: 1.94; margin-bottom: 15px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--navy); text-decoration: underline; }
.legal-section strong { color: var(--ink); font-weight: 600; }

.legal-contact-block {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 30px;
  margin: 16px 0;
}

.legal-contact-block p { margin-bottom: 0; line-height: 1.92; }

/* ── BRAND QUICKLINKS SECTION (contact.php) ──────────────── */
.brand-quicklinks-section { background: var(--surface-alt); }

/* ── STATS ROW ───────────────────────────────────────────── */
.stats-row {
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat-block {
  flex: 1;
  padding: 60px 0;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat-block:last-child { border-right: none; }

.sb-n {
  display: block;
  font-family: var(--ff-display);
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.042em;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--navy);
}

.sb-l {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── RECOGNITION GRID ────────────────────────────────────── */
.recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.rec-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.35s var(--ease);
}

.rec-card:hover { background: var(--surface); }

.rec-logo-text {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.022em;
  margin-bottom: 4px;
}

.rec-logo-sub {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.rec-logo-wrap { margin-bottom: 20px; }

.rec-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-mid);
}

/* ── COUNTER ANIMATION SUPPORT ───────────────────────────── */
[data-count] { display: inline-block; }

/* ── RESPONSIVE ──────────────────────────────────────────── */

@media (max-width: 1100px) {
  .container { padding: 0 32px; }
  :root { --section-pad: 104px; --section-pad-sm: 64px; }

  /* Hero */
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }

  /* Brands hero split */
  .brands-hero-split { grid-template-columns: 1fr; gap: 56px; }
  .brands-hero-visual { margin-top: 8px; }

  /* KPI strip */
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-item:nth-child(2) { border-right: none; }

  /* Brands index */
  .brand-row { grid-template-columns: 52px 1fr 40px; }
  .br-desc   { display: none; }
  .br-tag    { display: none; }

  /* Conviction & methodology */
  .conviction-grid { grid-template-columns: 1fr; gap: 44px; }
  .conviction-left h2 { position: static; }
  .methodology-grid { grid-template-columns: 1fr; gap: 52px; }

  /* Recognition */
  .rel-header  { grid-template-columns: 1fr; gap: 28px; }
  .rel-items   { grid-template-columns: 1fr; gap: 28px; }
  .rel-sidebar { display: none; }
  .rel-item    { grid-template-columns: 68px 1fr; gap: 24px; }
  .rel-desc    { display: none; }

  /* Editorial */
  .eq-body { grid-template-columns: 1fr; gap: 0; }

  /* Brands showcase */
  .brand-showcase-inner { grid-template-columns: 1fr; gap: 44px; }
  .bs-right-panel { display: none; }
  .brand-showcase-alt .brand-showcase-inner { direction: ltr; }

  /* CTA */
  .cta-wrap { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-section .contact-grid { grid-template-columns: 1fr; }

  /* Credentials */
  .credentials-bar { flex-wrap: wrap; }
  .cred-item { flex: 1 1 40%; }
  .cred-divider { display: none; }

  /* Values grid */
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  /* Recognition grid */
  .recognition-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--line); }
  .stat-block:nth-child(odd) { border-right: 1px solid var(--line); }

  /* Contact blocks */
  .contact-block { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
}

@media (max-width: 768px) {
  .container { padding: 0 22px; }
  :root { --section-pad: 80px; --section-pad-sm: 52px; }

  /* Brands hero visual hidden on small screens */
  .brands-hero-visual { display: none; }

  /* Navigation */
  .nav-links, .nav-cta .btn-nav { display: none; }
  .nav-ham { display: flex; }

  /* KPI strip */
  .kpi-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .kpi-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .kpi-item:last-child,
  .kpi-item:nth-last-child(2) { border-bottom: none; }

  /* Brand rows */
  .brand-row { grid-template-columns: 40px 1fr 36px; gap: 14px; }
  .br-name { font-size: 22px; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
  .footer-bot-links { justify-content: center; flex-wrap: wrap; gap: 16px; }

  /* Contact form */
  .contact-form-wrap { padding: 32px 26px; }
  .form-row-half { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Page heroes */
  .page-hero-editorial { padding: 148px 0 80px; }
  .phe-h1 { font-size: clamp(30px, 9.5vw, 52px); }

  /* Editorial */
  .section-editorial { padding: 88px 0; }
  .editorial-quote { font-size: clamp(28px, 8.5vw, 46px); margin-bottom: 44px; }
  .eq-rule { margin-bottom: 44px; }
  .recognition-editorial { padding: 64px 0; }
  .rel-item { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
  .rel-marker { display: none; }

  /* Guarantee */
  .guarantee-wrap { grid-template-columns: 1fr; gap: 18px; }
  .guarantee-num { font-size: 80px; }

  /* Brand page hero */
  .bph-name { font-size: clamp(38px, 11vw, 64px); }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-block { padding: 36px 28px; }

  /* Recognition grid */
  .recognition-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-wrap { padding: 80px 0; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .recognition-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .credentials-bar { flex-direction: column; }
  .cred-item { border-bottom: 1px solid var(--line); padding: 36px 0; }
  .cred-item:last-child { border-bottom: none; }
}
