/*
Theme Name: 13 December
Theme URI: https://13december.co
Author: 13 December
Author URI: https://13december.co
Description: Official theme for 13 December — Boutique Strategic Marketing Consultancy. Built for brands that want to dominate.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.1
License: Private
Text Domain: 13december
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Public+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #C42B2B;
  --black: #0C0C0C;
  --white: #FFFFFF;
  --off: #FAFAF8;
  --g1: #F2F2F0;
  --g2: #E8E8E5;
  --g3: #C8C8C4;
  --gt: #6B6B66;
  --gm: #3A3A38;
  --disp: 'Cormorant Garamond', Georgia, serif;
  --body: 'Public Sans', system-ui, sans-serif;
  --max: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: #fff;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 64px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}

.nav-logo-img { height: 36px; width: auto; display: block; }

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--gm);
  text-decoration: none;
  transition: color .2s;
}

.nav-menu a:hover,
.nav-menu a.active,
.nav-menu .current-menu-item > a,
.nav-menu .current-page-ancestor > a { color: var(--black); }

.nav-cta {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: all .2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--red); border-color: var(--red); color: #fff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: all .3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--g2);
  padding: 0 24px 24px;
  flex-direction: column;
  z-index: 199;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gm);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--g2);
  display: block;
  transition: color .2s;
}

.mobile-nav a:hover { color: var(--black); }

.mobile-nav .mobile-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: 14px 24px;
  text-align: center;
  margin-top: 16px;
  text-decoration: none;
  border-bottom: none;
  display: block;
  transition: background .2s;
}

.mobile-cta:hover { background: var(--red) !important; }

/* ── LAYOUT ── */
section { padding: 100px 56px; border-bottom: 1px solid var(--g2); }
.container { max-width: var(--max); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
.label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gt);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.display-heading {
  font-family: var(--disp);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--black);
}

.display-heading strong { font-weight: 500; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: 13px 28px;
  text-decoration: none;
  border: 1px solid var(--black);
  transition: all .2s;
  cursor: pointer;
  font-family: var(--body);
}

.btn-primary:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn-primary-inv {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--black);
  background: #fff;
  padding: 13px 28px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: all .2s;
}

.btn-primary-inv:hover { background: var(--red); border-color: var(--red); color: #fff; }

.btn-outline-dark {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  padding: 13px 28px;
  text-decoration: none;
  border: 1px solid #444;
  transition: all .2s;
}

.btn-outline-dark:hover { border-color: #aaa; color: #fff; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--gm);
  text-decoration: none;
  transition: color .2s;
}

.btn-text::after { content: '→'; transition: transform .2s; }
.btn-text:hover { color: var(--black); }
.btn-text:hover::after { transform: translateX(4px); }

.btn-text-inv {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

.btn-text-inv::after { content: '→'; transition: transform .2s; }
.btn-text-inv:hover { color: #fff; }
.btn-text-inv:hover::after { transform: translateX(4px); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.r1 { transition-delay: .1s; }
.r2 { transition-delay: .2s; }
.r3 { transition-delay: .3s; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--black);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 7px 14px;
  border-radius: 3px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--black);
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  padding: 72px 56px 48px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1c1c1c;
  margin-bottom: 36px;
}

.footer-logo-wrap { margin-bottom: 20px; }
.footer-logo-img { height: 44px; width: auto; display: block; }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  max-width: 220px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}

.footer-social a:hover { border-color: #555; background: #1a1a1a; }

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: #555;
  transition: fill .2s;
}

.footer-social a:hover svg { fill: #fff; }

.footer-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy { font-size: 11px; font-weight: 300; color: #3a3a3a; }

.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-legal a {
  font-size: 11px;
  font-weight: 300;
  color: #3a3a3a;
  text-decoration: none;
  transition: color .2s;
}

.footer-legal a:hover { color: #888; }

/* ── HERO (homepage) ── */
.hero-section {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  padding: 0 56px;
  border-bottom: 1px solid var(--g2);
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 180% auto;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: .55;
  animation: waveDrift 12s ease-in-out infinite alternate;
  transform-origin: center center;
  will-change: transform, background-position;
  pointer-events: none;
}

@keyframes waveDrift {
  0%   { background-position: 0% 45%; background-size: 180% auto; transform: scale(1); }
  33%  { background-position: 30% 55%; background-size: 190% auto; }
  66%  { background-position: 60% 48%; background-size: 185% auto; }
  100% { background-position: 100% 52%; background-size: 180% auto; transform: scale(1.02); }
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-kicker::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.hero-headline { font-size: clamp(48px, 7vw, 100px); margin-bottom: 16px; }

.hero-tagline {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  font-family: var(--disp);
  font-style: italic;
  color: var(--gm);
  margin-bottom: 28px;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gm);
  max-width: 500px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }

.hero-proof {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid var(--g2);
}

.proof-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.proof-val {
  font-size: 22px;
  font-weight: 300;
  font-family: var(--disp);
  color: var(--black);
  line-height: 1;
  letter-spacing: -.02em;
}

.proof-val em { font-style: normal; color: var(--red); }

.proof-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gt);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--g3);
  z-index: 2;
}

.hero-scroll::before {
  content: '';
  width: 1px;
  height: 32px;
  background: var(--g3);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse { 0%,100% { opacity: .2; } 50% { opacity: .8; } }

/* ── PHILOSOPHY SECTION ── */
.philosophy-section {
  background: var(--black);
  padding: 88px 56px;
  border-bottom: 1px solid #1a1a1a;
}

.philosophy-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 88px;
  align-items: center;
}

.philosophy-quote {
  font-family: var(--disp);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
}

.philosophy-quote strong { font-style: normal; font-weight: 500; }

.pillars { display: flex; flex-direction: column; }

.pillar {
  padding: 24px 0;
  border-top: 1px solid #222;
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 24px;
}

.pillar:last-child { border-bottom: 1px solid #222; }

.pillar-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 2px;
}

.pillar-desc {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.75;
}

/* ── IS / IS NOT SECTION ── */
.distinction-section { padding: 0; border-bottom: 1px solid var(--g2); }

.distinction-grid { display: grid; grid-template-columns: 1fr 1fr; }

.distinction-col { padding: 72px 56px; }
.distinction-col-alt { background: var(--off); }

.distinction-inner { max-width: 580px; margin: 0 auto; }

.distinction-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; }

.distinction-item {
  padding: 16px 0;
  border-top: 1px solid var(--g2);
  font-size: 14px;
  font-weight: 300;
  color: var(--gm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  line-height: 1.55;
}

.distinction-item:last-child { border-bottom: 1px solid var(--g2); }

.distinction-marker { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.distinction-col:first-child .distinction-marker { background: var(--red); }
.distinction-col-alt .distinction-marker { background: var(--g3); }
.distinction-col-alt .distinction-item { color: var(--g3); text-decoration: line-through; text-decoration-color: var(--g3); }

/* ── SERVICES SECTION ── */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.services-intro { font-size: 15px; font-weight: 300; color: var(--gm); line-height: 1.8; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--g2);
  border: 1px solid var(--g2);
}

.service-card {
  background: #fff;
  padding: 40px 32px;
  position: relative;
  transition: background .2s;
  cursor: default;
}

.service-card:hover { background: var(--off); }

.service-num { font-size: 10px; font-weight: 600; letter-spacing: .16em; color: var(--red); margin-bottom: 28px; }

.service-title { font-size: 18px; font-weight: 500; letter-spacing: -.01em; color: var(--black); margin-bottom: 12px; line-height: 1.25; }

.service-desc { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.75; }

.service-arrow { position: absolute; bottom: 32px; right: 32px; font-size: 15px; color: var(--g2); transition: all .2s; }

.service-card:hover .service-arrow { color: var(--black); transform: translate(2px,-2px); }

.services-footer {
  max-width: var(--max);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── FRAMEWORK SECTION ── */
.framework-section { background: var(--black); padding: 88px 56px; border-bottom: 1px solid #1a1a1a; }

.framework-inner { max-width: var(--max); margin: 0 auto; }

.framework-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
  margin-bottom: 56px;
}

.framework-intro { font-size: 14px; font-weight: 300; color: #777; line-height: 1.85; }

.framework-phases {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: #1a1a1a;
  border: 1px solid #1a1a1a;
}

.phase-card { background: #0c0c0c; padding: 36px 24px; position: relative; overflow: hidden; }

.phase-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background .3s;
}

.phase-card:hover::before { background: var(--red); }

.phase-num { font-size: 10px; font-weight: 600; letter-spacing: .18em; color: #444; margin-bottom: 28px; }

.phase-title { font-family: var(--disp); font-size: 28px; font-weight: 400; color: #fff; margin-bottom: 16px; line-height: 1.1; }

.phase-points { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.phase-points li { font-size: 12px; font-weight: 300; color: #555; padding-left: 12px; position: relative; line-height: 1.5; }

.phase-points li::before { content: ''; position: absolute; left: 0; top: 7px; width: 4px; height: 1px; background: #333; }

.framework-cta {
  max-width: var(--max);
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── INTELLIGENCE SECTION ── */
.intel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.intel-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 1px;
  background: var(--g2);
  border: 1px solid var(--g2);
}

.intel-card {
  background: #fff;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
}

.intel-card:hover { background: var(--off); }

.intel-tag { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }

.intel-title { font-size: 18px; font-weight: 400; color: var(--black); line-height: 1.35; flex: 1; }

.intel-card.sm .intel-title { font-size: 14px; }

.intel-meta {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--g2);
  font-size: 11px;
  color: var(--gt);
  display: flex;
  justify-content: space-between;
}

/* ── CTA BLOCK ── */
.cta-block { background: var(--black); padding: 100px 56px; border-bottom: none; }

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.cta-headline { font-family: var(--disp); font-size: clamp(36px,4.5vw,64px); font-weight: 300; line-height: 1.1; color: #fff; }
.cta-headline strong { font-weight: 500; }

.cta-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; white-space: nowrap; }

/* ── ABOUT PAGE ── */
.about-hero-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: end; }
.about-hero-right p { font-size: 16px; font-weight: 300; color: var(--gm); line-height: 1.85; margin-bottom: 20px; }
.about-hero-right strong { font-weight: 500; color: var(--black); }

.philosophy-page-section { background: var(--black); padding: 88px 56px; border-bottom: 1px solid #1a1a1a; }
.philosophy-page-inner { max-width: var(--max); margin: 0 auto; }

.philosophy-pull {
  font-family: var(--disp);
  font-size: clamp(28px,3.5vw,52px);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 72px;
  padding-bottom: 64px;
  border-bottom: 1px solid #1c1c1c;
}

.beliefs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1c1c1c; border: 1px solid #1c1c1c; }

.belief-card { background: #0c0c0c; padding: 36px 28px; }
.belief-num { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: var(--red); margin-bottom: 16px; }
.belief-text { font-size: 14px; font-weight: 300; color: #777; line-height: 1.75; }
.belief-text strong { font-weight: 500; color: #fff; }

.story-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 260px 1fr; gap: 80px; }

.timeline { display: flex; flex-direction: column; }

.timeline-item { padding: 22px 0; border-top: 1px solid var(--g2); display: grid; grid-template-columns: 72px 1fr; gap: 16px; }
.timeline-item:last-child { border-bottom: 1px solid var(--g2); }
.timeline-year { font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--red); }
.timeline-desc { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.65; }

.story-text p { font-size: 15px; font-weight: 300; color: var(--gm); line-height: 1.9; margin-bottom: 22px; }
.story-text strong { font-weight: 500; color: var(--black); }

.global-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.market-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--g2); border: 1px solid var(--g2); margin-top: 40px; }
.market-card { background: #fff; padding: 32px 24px; }
.market-city { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.market-name { font-size: 20px; font-weight: 400; color: var(--black); margin-bottom: 8px; letter-spacing: -.01em; }
.market-detail { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.6; }
.global-right p { font-size: 15px; font-weight: 300; color: var(--gm); line-height: 1.85; margin-bottom: 20px; }
.global-right strong { font-weight: 500; color: var(--black); }

/* ── TEAM ── */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--g2); border: 1px solid var(--g2); margin-top: 48px; }
.team-member { background: #fff; overflow: hidden; }
.member-photo { aspect-ratio: 3/4; background: var(--g1); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; border-bottom: 1px solid var(--g2); }
.member-initial { font-family: var(--disp); font-size: 56px; font-weight: 300; color: var(--g3); line-height: 1; }
.member-photo-note { font-size: 11px; color: var(--g3); text-align: center; padding: 0 20px; line-height: 1.6; }
.member-body { padding: 28px 28px 32px; }
.member-name { font-family: var(--disp); font-size: 28px; font-weight: 300; color: var(--black); margin-bottom: 4px; letter-spacing: -.02em; }
.member-title { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.member-bio { font-size: 13px; font-weight: 300; color: var(--gm); line-height: 1.75; }
.team-note { margin-top: 48px; padding: 36px 40px; background: var(--g1); border: 1px solid var(--g2); }
.team-note p { font-size: 14px; font-weight: 300; color: var(--gm); line-height: 1.75; }
.team-note strong { font-weight: 500; color: var(--black); }

/* ── SERVICES PAGE ── */
.sv-accordion { display: flex; flex-direction: column; }
.sv-item { border-top: 1px solid var(--g2); }
.sv-item:last-child { border-bottom: 1px solid var(--g2); }
.sv-header { display: grid; grid-template-columns: 56px 1fr 140px 28px; gap: 32px; align-items: center; padding: 36px 0; cursor: pointer; transition: opacity .2s; user-select: none; }
.sv-header:hover { opacity: .7; }
.sv-number { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: var(--red); }
.sv-name { font-family: var(--disp); font-size: clamp(22px,2.5vw,34px); font-weight: 400; color: var(--black); letter-spacing: -.01em; line-height: 1; }
.sv-tag { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gt); text-align: right; }
.sv-toggle { font-size: 18px; color: var(--g3); transition: transform .3s; text-align: center; line-height: 1; }
.sv-toggle.open { transform: rotate(45deg); color: var(--black); }
.sv-content { display: none; padding-bottom: 44px; padding-left: 88px; }
.sv-content.open { display: block; }
.sv-content-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.sv-deliverables { list-style: none; display: flex; flex-direction: column; }
.sv-deliverables li { padding: 13px 0; border-top: 1px solid var(--g2); font-size: 14px; font-weight: 400; color: var(--black); display: flex; align-items: center; gap: 13px; line-height: 1.4; }
.sv-deliverables li:last-child { border-bottom: 1px solid var(--g2); }
.sv-deliverables li::before { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.sv-desc p { font-size: 13px; font-weight: 300; color: var(--gm); line-height: 1.88; margin-bottom: 14px; }
.sv-desc strong { font-weight: 500; color: var(--black); }

/* ── HOW WE WORK PAGE ── */
.fw-accordion { display: flex; flex-direction: column; }
.fw-phase { border-top: 1px solid var(--g2); }
.fw-phase:last-child { border-bottom: 1px solid var(--g2); }
.fw-phase-header { display: grid; grid-template-columns: 72px 1fr 28px; gap: 32px; align-items: center; padding: 36px 0; cursor: pointer; transition: opacity .2s; user-select: none; }
.fw-phase-header:hover { opacity: .7; }
.fw-phase-label { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.fw-phase-title { font-family: var(--disp); font-size: clamp(28px,3.5vw,48px); font-weight: 400; color: var(--black); line-height: 1; letter-spacing: -.01em; }
.fw-toggle { font-size: 18px; color: var(--g3); transition: transform .3s; text-align: center; line-height: 1; }
.fw-toggle.open { transform: rotate(45deg); color: var(--black); }
.fw-phase-content { display: none; padding-bottom: 44px; padding-left: 104px; }
.fw-phase-content.open { display: block; }
.fw-content-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.fw-points { list-style: none; display: flex; flex-direction: column; }
.fw-points li { padding: 13px 0; border-top: 1px solid var(--g2); font-size: 14px; font-weight: 400; color: var(--black); display: flex; align-items: center; gap: 13px; line-height: 1.4; }
.fw-points li:last-child { border-bottom: 1px solid var(--g2); }
.fw-points li::before { content: ''; width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
.fw-desc p { font-size: 13px; font-weight: 300; color: var(--gm); line-height: 1.88; margin-bottom: 16px; }
.fw-desc strong { font-weight: 500; color: var(--black); }

.loop-vis { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: #1c1c1c; border: 1px solid #1c1c1c; }
.loop-block { background: #0c0c0c; padding: 40px 32px; }
.loop-num { font-size: 10px; font-weight: 600; letter-spacing: .2em; color: var(--red); margin-bottom: 20px; }
.loop-title { font-family: var(--disp); font-size: 30px; font-weight: 300; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.loop-desc { font-size: 13px; font-weight: 300; color: #666; line-height: 1.75; }
.loop-note { margin-top: 48px; padding: 32px 40px; border: 1px solid #1c1c1c; font-family: var(--disp); font-size: 18px; font-weight: 300; font-style: italic; color: #555; line-height: 1.65; }
.loop-note strong { font-style: normal; font-weight: 400; color: #888; }

.principles-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--g2); border: 1px solid var(--g2); margin-top: 48px; }
.principle-card { background: #fff; padding: 40px 32px; }
.principle-num { font-size: 10px; font-weight: 600; letter-spacing: .16em; color: var(--red); margin-bottom: 18px; }
.principle-title { font-size: 17px; font-weight: 500; color: var(--black); margin-bottom: 12px; letter-spacing: -.01em; line-height: 1.25; }
.principle-desc { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.75; }

/* ── INTELLIGENCE ARCHIVE ── */
.filter-bar-wrap { background: #fff; position: sticky; top: 64px; z-index: 100; border-bottom: 1px solid var(--g2); }
.filter-bar { max-width: var(--max); margin: 0 auto; display: flex; padding: 0 56px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--gt); padding: 18px 20px; border: none; background: transparent; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; font-family: var(--body); white-space: nowrap; flex-shrink: 0; }
.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--black); border-bottom-color: var(--red); }

.intel-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--g2); border: 1px solid var(--g2); margin-bottom: 1px; }
.intel-feat-card { background: #fff; padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; cursor: pointer; transition: background .2s; text-decoration: none; color: inherit; }
.intel-feat-card:hover { background: var(--off); }
.intel-feat-card.dark { background: var(--black); }
.intel-feat-card.dark:hover { background: #111; }
.feat-tag { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.feat-title { font-family: var(--disp); font-size: 22px; font-weight: 400; color: var(--black); line-height: 1.35; flex: 1; }
.intel-feat-card.dark .feat-title { color: #fff; }
.feat-meta { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--g2); font-size: 11px; color: var(--gt); display: flex; justify-content: space-between; }
.intel-feat-card.dark .feat-meta { border-top-color: #222; color: #555; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--g2); border: 1px solid var(--g2); border-top: none; }
.article-card { background: #fff; padding: 36px 28px; display: flex; flex-direction: column; justify-content: space-between; min-height: 200px; cursor: pointer; transition: background .2s; text-decoration: none; color: inherit; }
.article-card:hover { background: var(--off); }
.article-tag { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.article-title-text { font-size: 14px; font-weight: 400; color: var(--black); line-height: 1.45; flex: 1; }
.article-meta { margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--g2); font-size: 11px; color: var(--gt); display: flex; justify-content: space-between; }

/* ── SINGLE ARTICLE ── */
.article-hero { padding: 80px 56px 64px; border-bottom: 1px solid var(--g2); }
.article-hero-inner { max-width: 760px; margin: 0 auto; }
.article-category-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.article-title { font-family: var(--disp); font-size: clamp(32px,4vw,56px); font-weight: 300; line-height: 1.15; color: var(--black); margin-bottom: 24px; letter-spacing: -.01em; }
.article-byline { font-size: 12px; font-weight: 500; letter-spacing: .08em; color: var(--gt); text-transform: uppercase; display: flex; align-items: center; gap: 20px; }
.article-byline span { color: var(--g3); }

.article-body { padding: 72px 56px 100px; }
.article-content { max-width: 760px; margin: 0 auto; }
.article-content p { font-size: 17px; font-weight: 300; color: var(--gm); line-height: 1.9; margin-bottom: 28px; }
.article-content h2 { font-family: var(--disp); font-size: 28px; font-weight: 400; color: var(--black); margin: 48px 0 20px; line-height: 1.2; }
.article-content h3 { font-size: 16px; font-weight: 600; color: var(--black); margin: 36px 0 16px; letter-spacing: .04em; text-transform: uppercase; font-size: 11px; }
.article-content strong { font-weight: 500; color: var(--black); }
.article-content hr { border: none; border-top: 1px solid var(--g2); margin: 48px 0; }

.article-series-bar { background: var(--g1); border-top: 1px solid var(--g2); border-bottom: 1px solid var(--g2); padding: 24px 56px; }
.series-inner { max-width: 760px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.series-label { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gt); }
.series-name { font-size: 14px; font-weight: 500; color: var(--black); margin-top: 4px; }
.series-links { display: flex; gap: 16px; flex-wrap: wrap; }
.series-link { font-size: 12px; font-weight: 400; color: var(--gt); text-decoration: none; padding: 6px 14px; border: 1px solid var(--g2); transition: all .2s; }
.series-link:hover { border-color: var(--black); color: var(--black); }
.series-link.current { background: var(--black); color: #fff; border-color: var(--black); }

/* ── CONTACT PAGE ── */
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 112px; align-items: start; }
.office-item { padding: 20px 0; border-top: 1px solid var(--g2); display: grid; grid-template-columns: 84px 1fr; gap: 20px; }
.office-item:last-child { border-bottom: 1px solid var(--g2); }
.office-city { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); padding-top: 2px; }
.office-info { font-size: 14px; font-weight: 300; color: var(--gm); line-height: 1.7; }
.office-info a { color: var(--gm); text-decoration: none; transition: color .2s; }
.office-info a:hover { color: var(--black); }
.email-block { padding: 28px 32px; background: var(--g1); border: 1px solid var(--g2); margin-top: 32px; }
.email-label { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gt); margin-bottom: 10px; }
.email-address { font-size: 18px; font-weight: 300; color: var(--black); letter-spacing: -.01em; text-decoration: none; display: block; transition: color .2s; }
.email-address:hover { color: var(--red); }

.contact-social { margin-top: 28px; }
.contact-social-label { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gt); margin-bottom: 16px; }
.contact-social-icons { display: flex; gap: 12px; }
.contact-social-icons a { width: 36px; height: 36px; border: 1px solid var(--g2); display: flex; align-items: center; justify-content: center; transition: all .2s; text-decoration: none; }
.contact-social-icons a:hover { border-color: var(--black); background: var(--black); }
.contact-social-icons a:hover svg { fill: #fff; }
.contact-social-icons svg { width: 16px; height: 16px; fill: var(--gt); transition: fill .2s; }

.form-intro { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.75; margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--g2); }
.form-intro strong { font-weight: 500; color: var(--black); }
.form-row { margin-bottom: 28px; }
.form-row-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.form-label { display: block; font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gt); margin-bottom: 10px; }
.form-input { display: block; width: 100%; padding: 12px 0; font-size: 15px; font-weight: 300; color: var(--black); background: transparent; border: none; border-bottom: 1px solid var(--g2); outline: none; font-family: var(--body); transition: border-color .2s; border-radius: 0; -webkit-appearance: none; }
.form-input:focus { border-color: var(--black); }
.form-input::placeholder { color: #ccc; }
select.form-input { cursor: pointer; }
textarea.form-input { resize: none; height: 110px; padding-top: 12px; line-height: 1.6; }
.form-submit { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #fff; background: var(--black); padding: 13px 32px; border: 1px solid var(--black); cursor: pointer; font-family: var(--body); transition: all .2s; margin-top: 32px; }
.form-submit:hover { background: var(--red); border-color: var(--red); }
.form-success { display: none; padding: 32px; background: var(--g1); border: 1px solid var(--g2); margin-top: 24px; font-size: 14px; font-weight: 300; color: var(--gm); line-height: 1.75; }
.form-success strong { font-weight: 500; color: var(--black); }

.expect-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; }
.expect-steps { display: flex; flex-direction: column; }
.expect-step { padding: 24px 0; border-top: 1px solid var(--g2); display: grid; grid-template-columns: 28px 1fr; gap: 20px; }
.expect-step:last-child { border-bottom: 1px solid var(--g2); }
.expect-step-num { font-size: 10px; font-weight: 600; letter-spacing: .14em; color: var(--red); padding-top: 2px; }
.expect-step-title { font-size: 14px; font-weight: 500; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.expect-step-desc { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.65; }

.not-for-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 88px; align-items: center; }
.not-for-list { display: flex; flex-direction: column; }
.not-for-item { padding: 16px 0; border-top: 1px solid #1c1c1c; font-size: 14px; font-weight: 300; color: #555; display: flex; gap: 14px; align-items: flex-start; text-decoration: line-through; text-decoration-color: #333; line-height: 1.55; }
.not-for-item:last-child { border-bottom: 1px solid #1c1c1c; }
.not-for-item::before { content: '×'; color: #333; flex-shrink: 0; font-weight: 300; text-decoration: none; display: block; }

/* ── WORK PAGE ── */
.work-note-box { padding: 44px; background: #fff; border: 1px solid var(--g2); display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; margin-bottom: 56px; }
.work-note-text p { font-size: 15px; font-weight: 300; color: var(--gm); line-height: 1.85; }
.work-note-text strong { font-weight: 500; color: var(--black); }
.work-stat-num { font-family: var(--disp); font-size: 60px; font-weight: 300; color: var(--black); line-height: 1; letter-spacing: -.02em; }
.work-stat-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gt); margin-top: 8px; text-align: right; }

.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--g2); border: 1px solid var(--g2); }
.case-card { background: #fff; overflow: hidden; }
.case-visual { height: 240px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.case-visual-label { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; opacity: .2; color: #fff; }
.case-visual-title { font-family: var(--disp); font-size: 32px; font-weight: 300; opacity: .12; color: #fff; font-style: italic; text-align: center; line-height: 1.2; }
.case-body { padding: 32px 32px 36px; }
.case-tag { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.case-title { font-size: 17px; font-weight: 500; color: var(--black); margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.3; }
.case-desc { font-size: 13px; font-weight: 300; color: var(--gt); line-height: 1.7; margin-bottom: 18px; }
.case-status { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 500; letter-spacing: .08em; color: var(--gt); text-transform: uppercase; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g3); }
.status-dot.active { background: #E8A020; animation: dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }

.case-wide { grid-column: 1 / -1; }
.case-wide-inner { display: grid; grid-template-columns: 1fr 1fr; }

/* ── 404 PAGE ── */
.error-section { min-height: calc(100vh - 64px); display: flex; align-items: center; justify-content: center; padding: 80px 56px; text-align: center; }
.error-inner { max-width: 560px; }
.error-code { font-family: var(--disp); font-size: 120px; font-weight: 300; color: var(--g2); line-height: 1; margin-bottom: 24px; }
.error-title { font-size: clamp(24px,3vw,40px); font-weight: 300; font-family: var(--disp); color: var(--black); margin-bottom: 16px; }
.error-desc { font-size: 15px; font-weight: 300; color: var(--gm); line-height: 1.8; margin-bottom: 40px; }

/* ── PREVENT HORIZONTAL OVERFLOW GLOBALLY ── */
html { max-width: 100%; overflow-x: hidden; }

/* Fix grid children overflow */
.sv-header > *,
.fw-phase-header > *,
.services-grid > *,
.framework-phases > *,
.intel-grid > *,
.article-grid > *,
.intel-featured > * { min-width: 0; overflow-wrap: break-word; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 64px 24px; }
  .site-footer { padding: 56px 24px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-section { padding: 0 24px; min-height: auto; }
  .hero-inner { padding: 64px 0; }
  .hero-scroll { display: none; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .pillar { grid-template-columns: 1fr; gap: 8px; }
  .distinction-grid { grid-template-columns: 1fr; }
  .distinction-col { padding: 48px 24px; }
  .services-header { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .framework-header { grid-template-columns: 1fr; gap: 32px; }
  .framework-phases { grid-template-columns: 1fr 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .beliefs-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .global-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  /* Services accordion — critical fix: minmax prevents overflow */
  .sv-header {
    grid-template-columns: 40px minmax(0,1fr) 24px;
    gap: 16px;
  }
  .sv-tag { display: none; }
  .sv-content { padding-left: 0 !important; }
  .sv-content-grid { grid-template-columns: 1fr; gap: 40px; }
  .sv-name { font-size: clamp(18px,4vw,28px); overflow-wrap: break-word; }

  /* How We Work accordion — critical fix */
  .fw-phase-header {
    grid-template-columns: 52px minmax(0,1fr) 24px;
    gap: 16px;
  }
  .fw-phase-title { font-size: clamp(22px,5vw,40px); overflow-wrap: break-word; }
  .fw-phase-content { padding-left: 0 !important; }
  .fw-content-grid { grid-template-columns: 1fr; gap: 40px; }

  .loop-vis { grid-template-columns: 1fr; }
  .principles-grid { grid-template-columns: 1fr 1fr; }

  /* Intelligence — fix filter bar padding causing overflow */
  .filter-bar { padding: 0 16px; gap: 0; }
  .filter-bar-wrap { overflow: hidden; width: 100%; }
  .intel-featured { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .expect-grid { grid-template-columns: 1fr; gap: 48px; }
  .not-for-grid { grid-template-columns: 1fr; gap: 48px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-wide-inner { grid-template-columns: 1fr; }
  .work-note-box { grid-template-columns: 1fr; gap: 24px; }
  .hero-proof { row-gap: 24px; }
  .proof-item { padding-right: 24px; margin-right: 24px; }

  /* Override inline-style grids in PHP templates on tablet */
  .about-hero-grid,
  .philosophy-page-inner .beliefs-grid,
  .fw-phase-header { min-width: 0; }
}

@media (max-width: 600px) {
  section { padding: 48px 20px; }
  .site-footer { padding: 48px 20px 36px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { gap: 12px; flex-wrap: wrap; }
  .nav-logo-img { height: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .framework-phases { grid-template-columns: 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-proof { flex-direction: column; gap: 20px; }
  .proof-item { border-right: none; padding-right: 0; margin-right: 0; border-bottom: 1px solid var(--g2); padding-bottom: 20px; }
  .proof-item:last-child { border-bottom: none; padding-bottom: 0; }
  .principles-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .intel-featured { grid-template-columns: 1fr; }
  .form-row-grid { grid-template-columns: 1fr; }
  .market-cards { grid-template-columns: 1fr; }
  .work-stat-num { font-size: 40px; }
  .work-stat-label { text-align: left; }
  .filter-bar { padding: 0 12px; }

  /* Hard fix for accordion grids at smallest size */
  .sv-header {
    grid-template-columns: 32px minmax(0,1fr) 20px;
    gap: 12px;
    padding: 24px 0;
  }
  .fw-phase-header {
    grid-template-columns: 44px minmax(0,1fr) 20px;
    gap: 12px;
    padding: 24px 0;
  }

  /* Prevent all text overflow */
  * { overflow-wrap: break-word; word-break: break-word; }

  /* Force all inline grid styles to single column */
  [style*="grid-template-columns"]:not(.site-nav) {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .container { padding-left: 0; padding-right: 0; }
}
