/* ============================================
   SANKIYA — Redesign CSS
   Design tokens, layout, animations
   ============================================ */

:root {
  --navy:           #0F2347;
  --navy-deep:      #091628;
  --blue:           #1B3A6B;
  --red:            #C8102E;
  --red-bright:     #E01E3C;
  --cream:          #FAF6EC;
  --paper:          #F4EFE3;
  --ink:            #0B1226;
  --ink-soft:       #3F4A66;
  --muted:          #8A8B95;
  --rule:           rgba(15, 35, 71, 0.14);
  --rule-soft:      rgba(15, 35, 71, 0.06);
  --rule-navy:      rgba(244, 239, 227, 0.18);
  --rule-navy-soft: rgba(244, 239, 227, 0.08);

  --serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --container: 1320px;
  --gutter: 64px;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ─── Container ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section, .stats, .hero, .testimonials, .cta, .footer { overflow-x: clip; }

/* ─── Typography ─────────────────────────────────────────────────── */
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-wrap: pretty;
}
.display-xl  { font-size: clamp(48px, 8vw, 148px); }
.display-lg  { font-size: clamp(48px, 6.8vw, 120px); }
.display-md  { font-size: clamp(40px, 5vw, 84px); }
.display-sm  { font-size: clamp(32px, 3.5vw, 56px); }
.italic { font-style: italic; }
.period-red::after { content: "."; color: var(--red); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}
.eyebrow--muted { color: var(--ink-soft); }
.eyebrow--muted::before { background: var(--ink-soft); opacity: 0.6; }
.eyebrow--cream { color: rgba(244, 239, 227, 0.55); }
.eyebrow--cream::before { background: rgba(244, 239, 227, 0.4); }

.lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
}
.label-tiny {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ─── Paper grain ────────────────────────────────────────────────── */
.paper-grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
.paper-grain--dark { mix-blend-mode: overlay; opacity: 0.05; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--red {
  background: var(--red);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.25);
  overflow: hidden;
  isolation: isolate;
}
.btn--red::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--red-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.btn--red:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--red:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200, 16, 46, 0.35); }
.btn--outline-navy {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--cream); }
.btn--outline-cream {
  border: 1px solid rgba(244, 239, 227, 0.4);
  color: var(--cream);
}
.btn--outline-cream:hover { border-color: var(--cream); background: rgba(244,239,227,0.05); }
.btn .arrow {
  width: 14px; height: 1px; background: currentColor; position: relative;
  transition: width .25s ease; flex-shrink: 0;
}
.btn .arrow::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 22px; }

/* ─── Header ─────────────────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
  background: transparent;
  color: var(--cream);
  border-bottom: 1px solid var(--rule-navy-soft);
}
.header.scrolled {
  background: rgba(250, 246, 236, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom-color: var(--rule);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo img { height: 40px; width: 40px; object-fit: contain; }
.nav-menu {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-menu a { position: relative; padding: 6px 0; opacity: 0.85; }
.nav-menu a:hover { opacity: 1; color: inherit; }
.nav-menu a.active { opacity: 1; }
.nav-menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--red);
}
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: currentColor; transition: all .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.header-progress {
  position: absolute; left: 0; bottom: -1px; height: 1px;
  background: var(--red);
  width: var(--progress, 0%);
  transition: width .1s linear;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99;
  padding: 100px 32px 32px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  display: block;
  font-family: var(--serif); font-size: 32px;
  color: var(--cream);
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-navy);
}
.mobile-menu a:hover { color: var(--red-bright); }

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  color: var(--cream);
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  flex-direction: column;
}
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
  align-content: start;
  padding-top: 40px;
}
.hero-eyebrow { margin-bottom: 32px; }
.hero-title {
  color: var(--cream);
  margin-bottom: 36px;
  max-width: 1200px;
}
.hero-title .italic-line {
  font-style: italic;
  color: rgba(244, 239, 227, 0.78);
}
.hero-sub {
  max-width: 580px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(244, 239, 227, 0.75);
  margin-bottom: 44px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-sectors {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: stretch;
  justify-content: center;
  padding-left: 40px;
  border-left: 1px solid var(--rule-navy);
}
.hero-sector-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(244, 239, 227, 0.4);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-sector {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--rule-navy-soft);
  padding: 18px 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: flex; align-items: baseline; gap: 18px;
  position: relative;
  transition: padding-left .3s cubic-bezier(.2,.7,.2,1);
  font: inherit;
}
.hero-sector:last-of-type { border-bottom: none; }
.hero-sector:hover { padding-left: 8px; }
.hero-sector.active { padding-left: 12px; }
.hero-sector.active .hero-sector-i { color: var(--red); }
.hero-sector.active .hero-sector-name { color: var(--cream); }
.hero-sector-i {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(244, 239, 227, 0.45);
  width: 28px;
  font-variant-numeric: tabular-nums;
}
.hero-sector-name {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--cream);
  flex: 1;
}
.hero-sector-name .italic { color: rgba(244, 239, 227, 0.8); }
.hero-sector-progress {
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  pointer-events: none;
}
.hero-sector.active .hero-sector-progress {
  animation: heroSectorFill var(--hero-cycle-ms, 6500ms) linear forwards;
}
@keyframes heroSectorFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Hero rotating content animation */
.hero-eyebrow {
  display: inline-flex !important; align-items: center; gap: 12px;
}
.hero-eyebrow::before { display: none; }
.hero-eyebrow-num {
  font-variant-numeric: tabular-nums;
  min-width: 18px; display: inline-block;
  color: var(--red);
}
.hero-eyebrow-divider { color: var(--red); opacity: 0.5; }
.hero-eyebrow-label { display: inline-block; }

.hero-cycle-text {
  display: inline-block;
  transition:
    opacity .45s cubic-bezier(.2,.7,.2,1),
    transform .55s cubic-bezier(.2,.7,.2,1),
    filter .4s ease;
  will-change: opacity, transform;
}
.hero-cycle-text.fading-out {
  opacity: 0;
  transform: translateY(-14px);
  filter: blur(2px);
}
.hero-cycle-text.fading-in-start {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(2px);
  transition: none;
}
.hero-title .line { display: block; }

.hero-bottom {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--rule-navy);
}
.hero-bottom-loc {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(244, 239, 227, 0.55);
  display: flex; align-items: center; gap: 14px;
}
.hero-bottom-loc::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15); }
  50%      { box-shadow: 0 0 0 8px rgba(200, 16, 46, 0.05); }
}
.hero-bottom-quote {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(244, 239, 227, 0.65);
}

/* Hero background images (cross-fade) */
.hero-bg-layer {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1), transform 8s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.hero-bg.active {
  opacity: 1;
  transform: scale(1.0);
}
.hero-bg-layer::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 22, 40, 0.92) 0%,
    rgba(9, 22, 40, 0.86) 45%,
    rgba(15, 35, 71, 0.74) 100%
  );
}

/* Decorative arcs */
.hero-arc {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-arc--tr { top: -200px; right: -200px; width: 800px; height: 800px; opacity: 0.5; }
.hero-arc--bl { bottom: -300px; left: -300px; width: 900px; height: 900px; opacity: 0.25; }

/* Content above background */
.hero-inner, .hero-bottom {
  position: relative; z-index: 2;
}

/* Scroll cue */
.scroll-cue {
  position: absolute; left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(244, 239, 227, 0.5);
  pointer-events: none;
  opacity: 0; animation: fadeIn 1s ease 1.8s forwards;
  z-index: 2;
}
.scroll-cue::after {
  content: "";
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, rgba(244,239,227,0.5), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero load sequence */
.hero-eyebrow,
.hero-title .line,
.hero-sub,
.hero-ctas,
.hero-sectors > *,
.hero-bottom > * {
  animation: heroIn 0.9s cubic-bezier(.2,.7,.2,1) both;
}
.hero-eyebrow                      { animation-delay: 0.15s; }
.hero-title .line:nth-child(1)     { animation-delay: 0.30s; }
.hero-title .line:nth-child(2)     { animation-delay: 0.44s; }
.hero-sub                          { animation-delay: 0.60s; }
.hero-ctas                         { animation-delay: 0.75s; }
.hero-sectors > *:nth-child(1)     { animation-delay: 0.35s; }
.hero-sectors > *:nth-child(2)     { animation-delay: 0.48s; }
.hero-sectors > *:nth-child(3)     { animation-delay: 0.60s; }
.hero-sectors > *:nth-child(4)     { animation-delay: 0.72s; }
.hero-sectors > *:nth-child(5)     { animation-delay: 0.84s; }
.hero-bottom > *:nth-child(1)      { animation-delay: 0.90s; }
.hero-bottom > *:nth-child(2)      { animation-delay: 1.00s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Marquee strip ──────────────────────────────────────────────── */
.marquee {
  background: var(--navy);
  color: var(--cream);
  border-top: 1px solid var(--rule-navy);
  border-bottom: 1px solid var(--rule-navy);
  overflow: hidden;
  padding: 26px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  font-style: italic;
  color: rgba(244, 239, 227, 0.82);
  white-space: nowrap;
}
.marquee-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Section base ───────────────────────────────────────────────── */
.section { padding: 140px 0; position: relative; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--paper { background: var(--paper); }

.section-rule {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 80px;
}
.section--navy .section-rule { border-color: var(--rule-navy); }

.section-rule-label {
  font-family: var(--sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}
.section--navy .section-rule-label { color: rgba(244, 239, 227, 0.55); }

/* ─── Stats ──────────────────────────────────────────────────────── */
.stats {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 32px;
  border-left: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(72px, 8vw, 144px);
  color: var(--navy);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-num .suffix { font-size: 0.5em; color: var(--red); vertical-align: super; }
.stat-label {
  font-family: var(--sans);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--navy);
}
.stat-caption {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
  line-height: 1.4;
}

/* ─── Services ───────────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.service {
  padding: 40px 32px 56px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
  transition: background .25s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 360px;
}
.service:nth-child(3n) { border-right: 0; }
.service:hover { background: var(--paper); }
.service::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.service:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--red);
  font-style: italic;
  font-variant-numeric: tabular-nums;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), color .2s ease;
}
.service:hover .service-num { transform: translateX(4px); color: var(--navy); }
.service-title {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.015em;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.service:hover .service-title { transform: translateX(4px); }
.service-desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
  margin: 0;
}
.service-link {
  font-family: var(--sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 12px;
  transition: gap .25s ease;
  margin-top: auto;
}
.service-link .line {
  width: 24px; height: 1px; background: currentColor; position: relative;
}
.service-link .line::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 5px; height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.service:hover .service-link { gap: 20px; color: var(--red); }

/* ─── About ──────────────────────────────────────────────────────── */
.about {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.about-visual-photo {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,35,71,0.5) 0%, rgba(15,35,71,0.85) 100%),
    url("images/hero-1.jpg") center/cover;
}
.about-visual-overlay {
  position: absolute; inset: 0;
  padding: 36px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--cream);
}
.about-visual-meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
  color: rgba(244, 239, 227, 0.65);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.about-visual-cap {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.3;
  max-width: 360px;
}
.about-visual-cap::before { content: "\00AB\0020"; color: var(--red); font-style: normal; }
.about-visual-cap::after  { content: "\0020\00BB"; color: var(--red); font-style: normal; }
.about-text { padding: 40px 0; }
.about-text .eyebrow { margin-bottom: 32px; }
.about-title { margin-bottom: 32px; color: var(--navy); }
.about-body p {
  font-family: var(--sans);
  font-size: 17px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.about-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 84px;
  float: left;
  line-height: 0.85;
  padding: 6px 12px 0 0;
  color: var(--red);
}
.about-sign {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.about-sign-name {
  font-family: var(--serif); font-size: 22px; color: var(--navy);
}
.about-sign-name .italic {
  display: block; font-size: 14px; color: var(--ink-soft); font-style: italic;
}

/* ─── Platforms ──────────────────────────────────────────────────── */
.platforms {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.platforms-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.platforms-title { color: var(--cream); }
.platforms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule-navy);
}
.platform {
  padding: 56px 40px;
  border-right: 1px solid var(--rule-navy);
  border-bottom: 1px solid var(--rule-navy);
  display: flex; flex-direction: column; gap: 24px;
  transition: background .25s ease;
}
.platform:nth-child(2n) { border-right: 0; }
.platform:hover { background: rgba(244, 239, 227, 0.03); }
.platform-tag {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
}
.platform-name {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--cream);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.platform:hover .platform-name { transform: translateY(-4px); }
.platform-name .italic { font-style: italic; color: rgba(244, 239, 227, 0.85); }
.platform-desc {
  font-family: var(--sans); font-size: 16px; line-height: 1.6;
  color: rgba(244, 239, 227, 0.7);
  max-width: 480px;
  margin: 0;
}
.platform-meta {
  display: flex; gap: 32px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-navy-soft);
  font-family: var(--mono); font-size: 11px;
  color: rgba(244, 239, 227, 0.45);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.platform-link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  transition: gap .25s ease;
}
.platform-link .line { width: 24px; height: 1px; background: var(--cream); position: relative; }
.platform-link .line::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 5px; height: 5px;
  border-top: 1px solid var(--cream);
  border-right: 1px solid var(--cream);
  transform: translateY(-50%) rotate(45deg);
}
.platform:hover .platform-link { gap: 22px; color: var(--red-bright); }
.platform:hover .platform-link .line { background: var(--red-bright); }
.platform:hover .platform-link .line::after { border-color: var(--red-bright); }

/* ─── Testimonials ───────────────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-size: 240px;
  line-height: 0.5;
  color: var(--red);
  opacity: 0.18;
  font-style: italic;
  margin-bottom: 32px;
  margin-top: -40px;
  height: 120px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.3;
  color: var(--navy);
  letter-spacing: -0.01em;
  max-width: 1000px;
  margin: 0 auto 56px;
  min-height: 200px;
  transition: opacity .4s ease;
}
.testimonial-text.fade-out { opacity: 0; }
.testimonial-attr {
  display: flex; flex-direction: column; gap: 8px;
  align-items: center;
  transition: opacity .4s ease;
}
.testimonial-attr.fade-out { opacity: 0; }
.testimonial-name {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--navy);
}
.testimonial-role {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; color: var(--ink-soft);
}
.testimonial-nav {
  margin-top: 56px;
  display: flex; justify-content: center; gap: 24px;
  align-items: center;
}
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.testimonial-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.testimonial-btn svg { width: 14px; height: 14px; }
.testimonial-counter {
  font-family: var(--mono); font-size: 13px;
  color: var(--ink-soft); letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
  min-width: 80px; text-align: center;
}

/* ─── Team ───────────────────────────────────────────────────────── */
.team { background: var(--paper); }
.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.team-photo {
  aspect-ratio: 4 / 5;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.team-photo-real {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.2) contrast(1.04);
}
.team-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,35,71,0) 50%, rgba(15,35,71,0.75) 100%);
  pointer-events: none;
}
.team-photo-label {
  position: absolute; bottom: 28px; left: 28px;
  color: var(--cream);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.20em; text-transform: uppercase;
  opacity: 0.85;
  z-index: 2;
}
.team-info {
  display: flex; flex-direction: column; justify-content: center;
  gap: 24px;
}
.team-info .eyebrow { margin-bottom: 16px; }
.team-name {
  font-family: var(--serif); font-size: 56px;
  line-height: 1; color: var(--navy); letter-spacing: -0.02em;
}
.team-role {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--red);
}
.team-bio {
  font-family: var(--sans); font-size: 16px; line-height: 1.65;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0;
}
.team-creds {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.team-cred {
  display: flex; align-items: baseline; gap: 16px;
  font-family: var(--sans); font-size: 14px; color: var(--ink);
}
.team-cred-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted);
  min-width: 90px;
}

/* ─── News ───────────────────────────────────────────────────────── */
.news { background: var(--cream); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.news-item {
  padding: 36px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 18px;
  transition: background .25s ease;
  cursor: pointer;
}
.news-item:nth-child(3n) { border-right: 0; }
.news-item:hover { background: var(--paper); }
.news-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
}
.news-cat {
  color: var(--red);
  font-weight: 500;
}
.news-cat::after { content: "\00B7"; margin-left: 12px; color: var(--muted); }
.news-title {
  font-family: var(--serif); font-size: 28px;
  line-height: 1.15; color: var(--navy);
  letter-spacing: -0.01em;
  flex: 1;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), color .25s ease;
  margin: 0;
}
.news-item:hover .news-title { transform: translateX(4px); color: var(--red); }
.news-excerpt {
  font-family: var(--sans); font-size: 14px; line-height: 1.55;
  color: var(--ink-soft);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.news-readmore {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy);
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 6px;
  transition: color .2s ease;
}
.news-readmore .line { width: 20px; height: 1px; background: currentColor; position: relative; }
.news-readmore .line::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 5px; height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.news-item:hover .news-readmore { color: var(--red); }

/* ─── Final CTA ──────────────────────────────────────────────────── */
.cta {
  background: var(--navy);
  color: var(--cream);
  padding: 180px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-eyebrow { justify-content: center; margin-bottom: 40px; display: inline-flex !important; }
.cta-eyebrow::before { display: none; }
.cta-title { color: var(--cream); margin-bottom: 56px; }
.cta-title .italic { color: rgba(244, 239, 227, 0.7); }
.cta-actions {
  display: flex; gap: 18px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 80px;
}
.cta-contact {
  display: flex; justify-content: center; gap: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--rule-navy);
  max-width: 900px;
  margin: 0 auto;
}
.cta-contact-item { text-align: left; }
.cta-contact-label {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(244, 239, 227, 0.4);
  margin-bottom: 6px;
}
.cta-contact-val {
  font-family: var(--serif); font-size: 22px;
  color: var(--cream);
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  color: rgba(244, 239, 227, 0.65);
  padding: 100px 0 32px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--rule-navy);
}
.footer-brand-mark {
  font-family: var(--serif); font-size: 38px;
  color: var(--cream); letter-spacing: 0.18em; margin-bottom: 24px;
}
.footer-brand-desc {
  font-family: var(--sans); font-size: 14px; line-height: 1.7;
  color: rgba(244, 239, 227, 0.55);
  margin-bottom: 28px;
  max-width: 340px;
}
.footer-legal {
  font-family: var(--mono); font-size: 11px;
  color: rgba(244, 239, 227, 0.4);
  letter-spacing: 0.12em;
  line-height: 1.8;
}
.footer-h {
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-navy);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--sans); font-size: 14px;
  color: rgba(244, 239, 227, 0.65);
  transition: all .2s ease;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--cream); padding-left: 6px; }
.footer-contact-item {
  font-family: var(--sans); font-size: 14px;
  color: rgba(244, 239, 227, 0.65);
  margin-bottom: 12px;
  line-height: 1.5;
}
.footer-contact-item span {
  display: block; font-size: 10px;
  color: rgba(244, 239, 227, 0.35);
  letter-spacing: 0.24em; text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy {
  font-family: var(--mono); font-size: 11px;
  color: rgba(244, 239, 227, 0.35);
  letter-spacing: 0.10em;
}
.footer-credits {
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: rgba(244, 239, 227, 0.40);
}

/* ─── Reveal on scroll ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ─── News section actions ───────────────────────────────────────── */
.news-actions {
  text-align: center;
  margin-top: 64px;
}

/* ─── Services section actions ───────────────────────────────────── */
.services-actions {
  text-align: center;
  margin-top: 64px;
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --gutter: 40px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-sectors {
    padding-left: 0; border-left: 0;
    padding-top: 32px; border-top: 1px solid var(--rule-navy);
  }

  .services-header { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--rule); }
  .service:nth-child(2n) { border-right: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }

  .platforms-grid { grid-template-columns: 1fr; }
  .platform { border-right: 0 !important; }
  .platforms-header { grid-template-columns: 1fr; gap: 32px; }

  .team-grid { grid-template-columns: 1fr; gap: 56px; }

  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-item { border-right: 1px solid var(--rule); }
  .news-item:nth-child(2n) { border-right: 0; }
  .news-item:nth-child(3n) { border-right: 1px solid var(--rule); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .stat { padding: 0 16px; }
  .stat:nth-child(odd) { border-left: 0; padding-left: 0; }

  .cta-contact { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-item { border-right: 0 !important; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .section { padding: 90px 0; }
  .hero { padding: 110px 0 60px; }

  .display-xl { font-size: clamp(44px, 12vw, 72px); }
  .hero-title .italic-line { white-space: normal !important; }

  .services-grid { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; }

  .stats-grid { grid-template-columns: 1fr; gap: 28px; }
  .stat {
    padding-left: 0 !important; padding-top: 28px;
    border-top: 1px solid var(--rule); border-left: 0 !important;
  }
  .stat:first-child { border-top: 0; padding-top: 0; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; }
  .footer-h { margin-bottom: 16px; padding-bottom: 10px; }

  .hero-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }

  .testimonials { padding: 80px 0; }
  .testimonial-text { font-size: 22px; min-height: auto; }
  .testimonial-quote-mark { font-size: 160px; margin-top: -20px; height: 80px; }

  .cta { padding: 100px 0; }
  .cta-contact { flex-direction: column; gap: 24px; }

  .about-grid { grid-template-columns: 1fr; }
}

/* ─── Page Banner (inner-page hero) ─────────────────────────────── */
.page-banner {
  background: var(--navy);
  color: var(--cream);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.page-banner-eyebrow {
  margin-bottom: 32px;
}
.page-banner-title {
  color: var(--cream);
  margin-bottom: 36px;
}
.page-banner-title .italic { color: rgba(244, 239, 227, 0.78); }
.page-banner-lead {
  color: rgba(244, 239, 227, 0.72);
  max-width: 700px;
}
.banner-arc {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}
.banner-arc--tr { top: -180px; right: -180px; width: 700px; height: 700px; }
.banner-arc--bl { bottom: -260px; left: -260px; width: 800px; height: 800px; opacity: 0.22; }

/* ─── Service sections (alternating bg via nth-child) ────────────── */
.service-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.service-section:nth-child(odd)  { background: var(--cream); }
.service-section:nth-child(even) { background: var(--paper); }

.service-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

/* Left column */
.svc-num {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--red);
  opacity: 0.18;
  font-variant-numeric: tabular-nums;
  margin-bottom: -12px;
  display: block;
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.svc-title .italic { font-style: italic; }
.svc-desc {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.svc-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  padding: 0;
}
.svc-bullets li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-bullets li::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
  position: relative;
  top: -2px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap .25s ease, color .2s ease;
}
.svc-link .line {
  width: 28px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s ease;
}
.svc-link .line::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.svc-link:hover { gap: 22px; color: var(--red); }
.svc-link:hover .line { width: 36px; }

/* Right column — fiche */
.svc-fiche {
  position: relative;
  background: var(--navy);
  color: var(--cream);
  padding: 52px 48px;
  overflow: hidden;
  border-radius: 2px;
}
.service-section:nth-child(even) .svc-fiche { background: var(--navy); }
.svc-fiche-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.45);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-fiche-title::before {
  content: "";
  width: 20px; height: 1px;
  background: var(--red);
  flex-shrink: 0;
}
.svc-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.svc-meta-list > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-navy-soft);
  align-items: baseline;
}
.svc-meta-list > div:first-child { border-top: 1px solid var(--rule-navy-soft); }
.svc-meta-key {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 227, 0.40);
}
.svc-meta-val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
  line-height: 1.3;
}
.svc-fiche-arc {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  opacity: 0.25;
  pointer-events: none;
}

/* Responsive — service sections */
@media (max-width: 1100px) {
  .service-section-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .svc-num { font-size: 90px; }
  .svc-fiche { max-width: 560px; }
}
@media (max-width: 640px) {
  .service-section { padding: 80px 0; }
  .svc-num { font-size: 72px; }
  .svc-fiche { padding: 36px 28px; }
  .svc-meta-list > div { grid-template-columns: 110px 1fr; }
  .page-banner { padding: 120px 0 80px; }
  .page-banner-title { font-size: clamp(40px, 10vw, 64px); }
}

/* ─── Accessibility: reduced motion ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: opacity 0.1s !important; transform: none !important; }
  .hero-eyebrow,
  .hero-title .line,
  .hero-sub,
  .hero-ctas,
  .hero-sectors > *,
  .hero-bottom > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { animation: none !important; }
  .scroll-cue { animation: none !important; opacity: 0.6; }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   INNER PAGES — Shared + per-page components
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Page banner (shared navy hero for inner pages) ─────────────── */
.page-banner {
  background: var(--navy);
  color: var(--cream);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-banner .paper-grain { opacity: 0.08; }
.banner-arc {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}
.banner-arc--tr { top: -160px; right: -160px; width: 700px; height: 700px; opacity: 0.45; }
.banner-arc--bl { bottom: -200px; left: -200px; width: 700px; height: 700px; opacity: 0.22; }
.page-banner-inner { position: relative; z-index: 2; max-width: 900px; }
.page-banner-eyebrow { margin-bottom: 36px; }
.page-banner-title {
  color: var(--cream);
  margin-bottom: 28px;
}
.page-banner-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 28px);
  color: rgba(244,239,227,0.75);
  line-height: 1.45;
  margin-bottom: 44px;
  max-width: 700px;
}
.page-banner-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.page-banner-breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.45);
  margin-bottom: 28px;
}
.page-banner-breadcrumb a { color: inherit; transition: color .2s; }
.page-banner-breadcrumb a:hover { color: rgba(244,239,227,0.8); }
.page-banner-breadcrumb span { margin: 0 10px; opacity: 0.5; }

/* ─── Buttons shared ─────────────────────────────────────────────── */
.btn--outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink);
  background: transparent;
  transition: border-color .2s, background .2s, color .2s;
}
.btn--outline-navy:hover { border-color: var(--navy); background: var(--navy); color: var(--cream); }

/* ─── ABOUT PAGE ─────────────────────────────────────────────────── */

/* Manifesto */
.manifesto {
  padding: 140px 0;
  background: var(--cream);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: start;
}
.manifesto-label { margin-bottom: 48px; }
.manifesto-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.manifesto-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.manifesto-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 40px 36px;
  background: linear-gradient(to top, rgba(9,22,40,0.88) 0%, transparent 100%);
  color: rgba(244,239,227,0.9);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
}
.manifesto-photo-caption cite {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,227,0.55);
}
.manifesto-text p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.manifesto-text p:first-of-type { font-size: 20px; line-height: 1.65; color: var(--ink); }
.manifesto-text p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  line-height: 0.75;
  float: left;
  margin-right: 12px;
  color: var(--red);
}
.manifesto-signature {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 20px;
}
.manifesto-signature-name {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.manifesto-signature-role {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Values */
.values {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 0;
}
.values-header { margin-bottom: 72px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-navy);
}
.value-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--rule-navy);
  padding-left: 40px;
}
.value-card:first-child { padding-left: 0; }
.value-card:last-child { border-right: none; }
.value-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 32px;
  display: block;
}
.value-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.value-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(244,239,227,0.65);
}

/* Approach */
.approach {
  background: var(--cream);
  padding: 140px 0;
}
.approach-header { margin-bottom: 80px; }
.approach-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.approach-step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--rule);
}
.approach-step:last-child { border-right: none; }
.approach-step-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 28px;
  display: block;
}
.approach-step-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}
.approach-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Partners */
.partners {
  background: var(--paper);
  padding: 80px 0;
  border-top: 1px solid var(--rule);
}
.partners-header { margin-bottom: 56px; text-align: center; }
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.partner-item {
  flex: 1 1 calc(100% / 6);
  min-width: 120px;
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  text-align: center;
}

/* ─── SERVICES PAGE ──────────────────────────────────────────────── */
.service-section {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.service-section:nth-child(odd) { background: var(--cream); }
.service-section:nth-child(even) { background: var(--paper); }
.service-section-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: start;
}
.svc-num {
  font-family: var(--mono);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 28px;
}
.svc-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.svc-bullets {
  list-style: none;
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
}
.svc-bullets li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
  color: var(--ink-soft);
}
.svc-bullets li::before {
  content: "✓";
  color: var(--red);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.svc-link:hover { color: var(--red); border-color: var(--red); }
.svc-fiche {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.svc-section:nth-child(even) .svc-fiche { background: var(--cream); }
.svc-fiche-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 36px;
}
.svc-meta-list { list-style: none; }
.svc-meta-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-meta-list li:last-child { border-bottom: none; }
.svc-meta-key {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.svc-meta-val {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.svc-fiche-arc {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  opacity: 0.25;
  pointer-events: none;
}

/* ─── SERVICE DETAIL PAGE ────────────────────────────────────────── */
.svc-intro {
  background: var(--cream);
  padding: 120px 0;
}
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.svc-intro-meta {
  border-top: 1px solid var(--rule);
}
.svc-intro-meta-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.svc-intro-meta-key {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.svc-intro-meta-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.svc-intro-text p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.svc-intro-text p:first-child { font-size: 20px; color: var(--ink); }

/* Methodology */
.methodology {
  background: var(--paper);
  padding: 120px 0;
}
.methodology-header { margin-bottom: 72px; }
.methodology-steps { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--rule); }
.method-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule-soft);
  align-items: start;
}
.method-step-num {
  font-family: var(--mono);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 400;
  color: var(--rule);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.method-step-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink);
  margin-bottom: 14px;
}
.method-step-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* Case study */
.case-study {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-study .paper-grain { opacity: 0.06; }
.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.case-study-label { margin-bottom: 28px; }
.case-study-label .eyebrow { color: rgba(244,239,227,0.55); }
.case-study-label .eyebrow::before { background: rgba(244,239,227,0.4); }
.case-study-context-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}
.case-study-context-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244,239,227,0.7);
}
.case-study-results {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule-navy);
}
.case-result {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-navy-soft);
}
.case-result-num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.case-result-num .unit { font-size: 0.55em; vertical-align: super; color: var(--red); }
.case-result-label {
  font-size: 14px;
  color: rgba(244,239,227,0.6);
  line-height: 1.5;
}

/* FAQ */
.faq-section {
  background: var(--cream);
  padding: 120px 0;
}
.faq-header { margin-bottom: 72px; }
.faq-list { border-top: 1px solid var(--rule); }
.faq-item {
  border-bottom: 1px solid var(--rule-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}
.faq-q-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--red);
  flex-shrink: 0;
}
.faq-q-text {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--ink);
  flex: 1;
  line-height: 1.25;
}
.faq-q-toggle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
  line-height: 1;
  width: 28px;
  text-align: center;
}
.faq-item.open .faq-q-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.7,.2,1);
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 32px 60px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}

/* Related services */
.related-services {
  background: var(--paper);
  padding: 120px 0;
}
.related-header { margin-bottom: 64px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.related-card {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--rule-soft);
  cursor: pointer;
  transition: background .2s;
}
.related-card:last-child { border-right: none; }
.related-card:hover { background: rgba(15,35,71,0.03); }
.related-card-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.related-card-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.related-card-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.related-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
}

/* ─── INNOVACTIVE 360° PAGE ──────────────────────────────────────── */
.i360-timeline {
  background: var(--paper);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.timeline-phase {
  padding: 40px 32px 40px 0;
  border-right: 1px solid var(--rule-soft);
  position: relative;
}
.timeline-phase:last-child { border-right: none; }
.timeline-phase-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
}
.timeline-phase-name {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 14px;
}
.timeline-phase-meta {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.timeline-connector {
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--red), rgba(200,16,46,0.15));
  margin-bottom: 32px;
}

/* Phase sections */
.phase-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.phase-section--cream { background: var(--cream); }
.phase-section--navy  { background: var(--navy); color: var(--cream); }
.phase-section--paper { background: var(--paper); }

.phase-header {
  margin-bottom: 72px;
}
.phase-header-top {
  display: flex;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.phase-section--navy .phase-header-top { border-color: var(--rule-navy); }
.phase-num-large {
  font-family: var(--mono);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 400;
  color: var(--rule);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.phase-section--navy .phase-num-large { color: var(--rule-navy); }
.phase-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  color: inherit;
  line-height: 1.1;
}
.phase-meta {
  display: flex;
  gap: 48px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.phase-section--navy .phase-meta { color: rgba(244,239,227,0.55); }
.phase-section:not(.phase-section--navy) .phase-meta { color: var(--muted); }
.phase-meta span span { color: var(--red); }
.phase-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 64px;
}
.phase-section--navy .phase-intro { color: rgba(244,239,227,0.75); }
.phase-section:not(.phase-section--navy) .phase-intro { color: var(--ink-soft); }

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.phase-section--navy .tools-grid {
  border-color: var(--rule-navy);
}
.tool-card {
  padding: 32px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background .2s;
}
.phase-section--navy .tool-card {
  border-color: var(--rule-navy);
}
.tool-card:hover { background: rgba(15,35,71,0.04); }
.phase-section--navy .tool-card:hover { background: rgba(244,239,227,0.05); }
.tool-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.tool-name {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 22px);
  color: inherit;
  line-height: 1.25;
  margin-bottom: 10px;
}
.tool-desc {
  font-size: 13px;
  line-height: 1.6;
}
.phase-section--navy .tool-desc { color: rgba(244,239,227,0.6); }
.phase-section:not(.phase-section--navy) .tool-desc { color: var(--ink-soft); }

/* Audience */
.audience {
  background: var(--paper);
  padding: 120px 0;
}
.audience-header { margin-bottom: 72px; }
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.audience-card {
  padding: 48px 32px 48px 0;
  border-right: 1px solid var(--rule-soft);
}
.audience-card:last-child { border-right: none; }
.audience-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--red);
  margin-bottom: 24px;
  display: block;
}
.audience-who {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 30px);
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.audience-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ─── BLOG PAGE ──────────────────────────────────────────────────── */
.featured-article {
  background: var(--cream);
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.featured-article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.featured-article-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper);
  position: relative;
}
.featured-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.featured-article-img:hover img { transform: scale(1.04); }
.featured-article-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.featured-article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.featured-article-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.featured-article-read {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}
.featured-article-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
}
.featured-article-excerpt {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.featured-article-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.featured-article-cta:hover { color: var(--red); border-color: var(--red); }

.articles-section {
  background: var(--paper);
  padding: 120px 0;
}
.articles-header { margin-bottom: 72px; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  margin-bottom: 60px;
}
.article-card {
  padding: 40px 36px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  cursor: pointer;
  transition: background .2s;
}
.article-card:hover { background: rgba(15,35,71,0.03); }
.article-card-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}
.article-card-date {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}
.article-card-title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.article-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.article-card-link:hover { color: var(--red); border-color: var(--red); }
.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.blog-pagination button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  background: transparent;
}
.blog-pagination button:hover:not(:disabled) { border-color: var(--navy); background: var(--navy); color: var(--cream); }
.blog-pagination button.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.blog-pagination button:disabled { opacity: 0.35; cursor: not-allowed; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-split {
  background: var(--cream);
  padding: 120px 0;
}
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}
.contact-info-label { margin-bottom: 40px; }
.contact-detail-list { margin-bottom: 56px; }
.contact-detail-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.contact-detail-key {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}
.contact-detail-val {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
}
.contact-response {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 380px;
}
.contact-response strong {
  font-weight: 600;
  color: var(--ink);
  display: block;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
}

/* Form */
.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 56px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 14px 18px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,35,71,0.08);
}
.form-control.error { border-color: var(--red); }
textarea.form-control { min-height: 160px; resize: vertical; line-height: 1.6; }
select.form-control { cursor: pointer; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 36px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.form-check-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.form-check-label a { color: var(--ink); border-bottom: 1px solid var(--rule); }
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success-icon {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--red);
  margin-bottom: 20px;
}
.form-success-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
}
.form-success-msg {
  font-size: 16px;
  color: var(--ink-soft);
}

.map-section {
  background: var(--navy);
  padding: 0;
  position: relative;
  height: 420px;
  overflow: hidden;
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}
.map-overlay {
  position: absolute;
  top: 48px;
  left: 48px;
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 32px 40px;
  max-width: 320px;
  z-index: 2;
}
.map-overlay-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 8px;
}
.map-overlay-addr {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ─── Reveal animation (inner pages) ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE — inner pages ───────────────────────────────────── */
@media (max-width: 1200px) {
  .page-banner { padding: 140px 0 80px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-steps { grid-template-columns: repeat(3, 1fr); }
  .approach-step:nth-child(3) { border-right: none; }
  .approach-step:nth-child(4) { border-top: 1px solid var(--rule); }
  .approach-step:nth-child(5) { border-top: 1px solid var(--rule); border-right: none; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .service-section-grid { grid-template-columns: 1fr; gap: 48px; }
  .timeline-track { grid-template-columns: repeat(2, 1fr); }
  .contact-split-grid { grid-template-columns: 1fr; gap: 60px; }
  .featured-article-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .manifesto-grid { grid-template-columns: 1fr; gap: 60px; }
  .manifesto-photo-wrap { aspect-ratio: 16/9; }
  .svc-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-study-grid { grid-template-columns: 1fr; gap: 60px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .related-card:nth-child(2) { border-right: none; }
  .related-card:last-child { border-top: 1px solid var(--rule-soft); grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .page-banner { padding: 120px 0 60px; }
  .manifesto { padding: 90px 0; }
  .values { padding: 90px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--rule-navy); padding-left: 0; }
  .approach { padding: 90px 0; }
  .approach-steps { grid-template-columns: 1fr; }
  .approach-step { border-right: none; border-top: 1px solid var(--rule-soft) !important; }
  .approach-step:first-child { border-top: none !important; }
  .service-section { padding: 80px 0; }
  .svc-intro, .methodology, .case-study, .faq-section, .related-services { padding: 80px 0; }
  .method-step { grid-template-columns: 60px 1fr; gap: 24px; }
  .phase-section { padding: 80px 0; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .featured-article { padding: 80px 0; }
  .articles-section { padding: 80px 0; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-split { padding: 80px 0; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .timeline-track { grid-template-columns: 1fr; }
  .timeline-phase { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .map-section { height: 320px; }
  .map-overlay { top: 16px; left: 16px; padding: 20px 24px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-card { border-right: none; border-bottom: 1px solid var(--rule-soft); }
  .faq-answer-inner { padding-left: 0; }
  .contact-split-grid { gap: 40px; }
  .partners-row .partner-item { flex: 1 1 calc(100% / 3); }
  .case-study-grid { gap: 40px; }
  .svc-fiche { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
