/* ── Variables ── */
:root {
  --navy: #0a2540;
  --navy-2: #0f2d4d;
  --navy-deep: #051529;
  --cream: #f5f3ee;
  --cream-2: #ebe7dd;
  --paper: #faf8f3;
  --brass: #c8975b;
  --brass-deep: #a87838;
  --ink: #0a2540;
  --ink-2: #4a5c75;
  --ink-3: #7d8a9e;
  --line: #d8d2c4;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* ── Reset (after Bootstrap) ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }
::selection { background: var(--navy); color: var(--cream); }

/* ── Layout ── */
.wrap { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ── Photo ── */
.photo { position: relative; overflow: hidden; background: #1a2638; }
.photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.02) brightness(0.96); display: block; }

/* ── Eyebrow labels ── */
.eyebrow {
  font-family: var(--mono); font-size: 11px; color: var(--brass-deep);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow .bar { width: 24px; height: 1px; background: var(--brass-deep); flex-shrink: 0; display: inline-block; }
.eyebrow.light { color: var(--brass); }
.eyebrow.light .bar { background: var(--brass); }

/* ── TOPBAR ── */
.topbar { background: var(--navy); color: var(--cream); font-size: 12px; padding: 8px 0; letter-spacing: 0.02em; }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; }
.topbar-left { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; opacity: 0.85; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-status { display: flex; align-items: center; gap: 6px; font-size: 11px; font-family: var(--mono); opacity: 0.7; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #7fc28a; display: inline-block; }
.topbar-lang { opacity: 0.6; font-size: 11px; font-family: var(--mono); }
.topbar-sep { opacity: 0.6; }

/* ── HEADER / BOOTSTRAP NAVBAR OVERRIDES ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: background 200ms, border-color 200ms, backdrop-filter 200ms;
  /* Reset Bootstrap navbar padding */
  padding-top: 0; padding-bottom: 0;
}
#site-header.scrolled {
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
}
.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  min-height: 76px; display: flex; align-items: center;
  flex-wrap: wrap; width: 100%;
}

/* Logo */
.logo { display: flex; align-items: center; text-decoration: none; }
.logo.navbar-brand { padding: 0; margin-right: 0; }
.logo-img { height: 84px; width: auto; margin: 6px; display: block; object-fit: contain; }
/* Footer logo — invert to white on dark background */
.footer-logo { display: flex; align-items: center; margin-bottom: 24px; }
.footer-logo-img { filter: brightness(0) invert(1); }

/* Hamburger button */
.navbar-toggler {
  border: 1px solid var(--line); border-radius: 4px;
  padding: 6px 10px; background: none;
}
.navbar-toggler:focus { box-shadow: none; outline: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2540' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 22px; height: 22px;
}

/* ── NAV COLLAPSE — self-contained, no Bootstrap JS needed ── */

/* Mobile: hidden by default */
#mainNavCollapse {
  display: none;
  width: 100%;
  flex-basis: 100%;
}
/* Mobile: open state (class toggled by script.js) */
#mainNavCollapse.nav-open {
  display: block;
}

/* Desktop lg+: always visible as flex row */
@media (min-width: 992px) {
  #mainNavCollapse {
    display: flex !important;
    flex-grow: 1;
    align-items: center;
    width: auto;
    flex-basis: auto;
  }
  /* Hide hamburger on desktop */
  #navToggler { display: none; }
}

/* ── Desktop nav layout ── */
.site-nav {
  display: flex; gap: 4px; align-items: center;
  margin: 0 auto;
}
.site-nav a {
  font-size: 13px; letter-spacing: 0.02em; color: var(--ink-2);
  font-weight: 500; padding: 8px 14px; border-radius: 6px;
  transition: color 160ms; white-space: nowrap;
}
.site-nav a:hover { color: var(--navy); }
.header-ctas { display: flex; gap: 10px; align-items: center; }
.lang-switcher { display: flex; align-items: center; gap: 2px; margin-left: 4px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 12px; font-weight: 600; color: var(--muted);
  padding: 4px 6px; border-radius: 4px; letter-spacing: .04em;
  transition: color .15s, background .15s;
}
.lang-btn:hover { color: var(--navy); }
.lang-btn.active { color: var(--navy); background: rgba(10,24,60,.07); }
.lang-sep { font-size: 11px; color: var(--line); }
.cta-text { font-size: 13px; font-weight: 500; color: var(--ink); padding: 10px 14px; white-space: nowrap; }
.cta-btn {
  font-size: 13px; font-weight: 500; color: var(--cream);
  background: var(--navy); padding: 11px 18px; border-radius: 6px;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  text-decoration: none;
}
.cta-btn-sm { padding: 8px 14px; font-size: 12px; }

/* ── Mobile nav open layout ── */
#mainNavCollapse.nav-open .site-nav {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 12px 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
#mainNavCollapse.nav-open .site-nav a {
  width: 100%; padding: 10px 4px;
}
#mainNavCollapse.nav-open .header-ctas {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0 16px;
  border-top: 1px solid var(--line);
  gap: 8px;
}
#mainNavCollapse.nav-open .cta-text { padding-left: 4px; }
#mainNavCollapse.nav-open .cta-btn { align-self: flex-start; }

/* ── LEGAL PAGES ── */
.legal-hero {
  padding: 72px 0 56px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.legal-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 0 0 16px;
}
.legal-hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 28px;
}
.legal-back {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--brass-deep);
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--brass-deep);
  padding-bottom: 2px;
}
.legal-back:hover { color: var(--navy); border-color: var(--navy); }

.legal-section {
  padding: 80px 0 120px;
  background: var(--paper);
}
.legal-body {
  max-width: 760px;
}
.legal-block { margin-bottom: 0; }
.legal-h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.legal-h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 8px;
}
.legal-p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.legal-p strong { color: var(--ink); }
.legal-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.legal-list {
  padding-left: 20px;
  margin: 0 0 16px;
}
.legal-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 6px;
}
.legal-link {
  color: var(--brass-deep);
  border-bottom: 1px solid rgba(168,120,56,0.3);
  text-decoration: none;
}
.legal-link:hover { color: var(--navy); border-color: var(--navy); }
.legal-divider {
  height: 1px;
  background: var(--line);
  margin: 40px 0;
}

/* ── HERO ── */
.hero-section { padding: 56px 0 0; background: var(--paper); }
.hero-eyebrow-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.hero-eyebrow-left { display: flex; gap: 32px; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.hero-eyebrow-right { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; }
/* hero-grid: Bootstrap row handles layout */
.hero-grid { margin-bottom: 56px; }
.hero-pre { font-family: var(--mono); font-size: 11px; color: var(--brass-deep); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-pre .bar { width: 24px; height: 1px; background: var(--brass-deep); display: inline-block; }
.hero-h1 { font-family: var(--serif); font-size: clamp(48px, 7vw, 104px); line-height: 0.95; font-weight: 400; letter-spacing: -0.035em; color: var(--navy); margin-bottom: 32px; }
.hero-h1 em { font-style: italic; font-weight: 300; color: var(--brass-deep); }
.hero-lead { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 560px; margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: var(--cream); padding: 16px 24px; border-radius: 6px; font-weight: 500; font-size: 14px; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); padding: 16px 22px; border: 1px solid var(--line); border-radius: 6px; font-weight: 500; font-size: 14px; }
.hero-proof { font-size: 12px; color: var(--ink-3); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-proof strong { color: var(--ink); font-weight: 600; }
.hero-proof .dot { opacity: 0.4; margin: 0 6px; }

/* Placement board */
.placement-board { background: var(--navy); color: var(--cream); padding: 32px; border-radius: 6px; overflow: hidden; }
.board-label { font-family: var(--mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.1em; margin-bottom: 24px; text-transform: uppercase; }
.board-rows { display: grid; gap: 14px; }
.board-row { display: grid; grid-template-columns: 1.4fr 1fr auto; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(245,243,238,0.1); }
.board-row:last-child { border-bottom: none; }
.board-role-name { font-size: 14px; font-weight: 500; }
.board-role-city { font-size: 11px; opacity: 0.6; margin-top: 2px; }
.board-status { font-size: 11px; font-family: var(--mono); opacity: 0.7; }
.board-delta { font-size: 10px; color: var(--brass); border: 1px solid rgba(200,151,91,0.3); padding: 3px 8px; border-radius: 100px; font-family: var(--mono); letter-spacing: 0.05em; }
.board-footer { margin-top: 20px; font-size: 12px; opacity: 0.6; font-family: var(--mono); }

/* Photo strip: Bootstrap row handles layout */
.photo-strip .photo { border-radius: 6px; }
.photo-strip .photo img { aspect-ratio: 16 / 10; }

/* Logo strip */
.logo-strip { margin-top: 56px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.logo-strip-label { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.logo-strip-logos { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; opacity: 0.55; }
.logo-strip-name { color: var(--ink); }

/* ── STATS ── */
.stats-section { padding: 88px 0; background: var(--paper); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat-item { padding: 32px 28px 32px 0; }
.stat-item:not(:first-child) { padding-left: 28px; }
.stat-item:not(:last-child) { border-right: 1px solid var(--line); }
.stat-num-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.stat-num { font-family: var(--serif); font-size: 72px; font-weight: 400; color: var(--navy); letter-spacing: -0.04em; line-height: 1; }
.stat-suffix { font-family: var(--serif); font-size: 20px; color: var(--brass-deep); font-style: italic; font-weight: 400; }
.stat-label { font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.4; }
.stat-sub { font-size: 12px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.02em; }

/* ── ABOUT ── */
.about-section { padding: 120px 0; background: var(--cream); border-top: 1px solid var(--line); }
/* about-grid: Bootstrap row handles layout */
.about-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; color: var(--navy); letter-spacing: -0.025em; margin-bottom: 32px; }
.about-h2 em { font-style: italic; color: var(--brass-deep); }
.about-lede { font-size: 22px; line-height: 1.5; color: var(--ink); font-family: var(--serif); font-weight: 400; margin-bottom: 32px; letter-spacing: -0.005em; }
.about-lede em { color: var(--brass-deep); }
.about-body { font-size: 16px; line-height: 1.65; color: var(--ink-2); margin-bottom: 24px; }
.about-body strong { color: var(--ink); }
.pillars-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; margin-top: 40px; }
.pillar { padding: 24px 22px; background: var(--cream); }
.pillar-num { font-family: var(--mono); font-size: 11px; color: var(--brass-deep); letter-spacing: 0.1em; margin-bottom: 10px; }
.pillar-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.pillar-desc { font-size: 13px; line-height: 1.5; color: var(--ink-2); }

/* ── INDUSTRIES ── */
.industries-section { padding: 120px 0; background: var(--paper); }
.industries-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 48px; }
.industries-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; color: var(--navy); letter-spacing: -0.025em; max-width: 720px; }
.industries-h2 em { font-style: italic; color: var(--brass-deep); }
.industries-note { font-size: 14px; color: var(--ink-2); max-width: 320px; line-height: 1.55; }
.ind-tabs { display: flex; border-bottom: 1px solid var(--line); }
.ind-tab { padding: 18px 24px; font-size: 14px; font-weight: 500; color: var(--ink-3); background: transparent; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 160ms, border-color 160ms; display: flex; align-items: baseline; gap: 10px; cursor: pointer; }
.ind-tab.active { color: var(--navy); border-bottom-color: var(--navy); }
.ind-tab-num { font-family: var(--mono); font-size: 11px; opacity: 0.6; }
.ind-panels { background: var(--cream); border-radius: 0 0 6px 6px; border: 1px solid var(--line); border-top: none; overflow: hidden; }
.ind-panel { display: none; grid-template-columns: 1.1fr 1fr; }
.ind-panel.active { display: grid; }
.ind-panel-content { padding: 48px; }
.ind-panel-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.ind-de { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; margin-bottom: 8px; }
.ind-name { font-family: var(--serif); font-size: 36px; font-weight: 500; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 4px; }
.ind-short { font-size: 13px; color: var(--ink-2); }
.ind-stat-num { font-family: var(--serif); font-size: 40px; color: var(--brass-deep); line-height: 1; font-style: italic; text-align: right; }
.ind-stat-label { font-size: 11px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.05em; margin-top: 4px; text-align: right; }
.ind-blurb { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin-bottom: 32px; max-width: 540px; }
.ind-roles-label { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.ind-roles { display: flex; flex-wrap: wrap; gap: 8px; }
.ind-role { font-size: 13px; padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); background: var(--paper); }
.ind-cta { margin-top: 36px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--navy); padding-bottom: 4px; }
.ind-photo { height: 100%; min-height: 480px; }
.ind-photo img { height: 100%; }

/* ── PROCESS ── */
.process-section { padding: 120px 0; background: var(--navy); color: var(--cream); }
/* process-intro: Bootstrap row handles layout */
.process-intro { margin-bottom: 64px; }
.process-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; letter-spacing: -0.025em; }
.process-h2 em { font-style: italic; color: var(--brass); }
.process-lead { font-size: 16px; line-height: 1.6; opacity: 0.75; max-width: 520px; }
/* process-steps: CSS grid kept for 1px divider border effect */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(245,243,238,0.1); border: 1px solid rgba(245,243,238,0.1); border-radius: 6px; overflow: hidden; }
.process-step { padding: 36px 32px; background: var(--navy); }
.process-step-num { font-family: var(--mono); font-size: 12px; color: var(--brass); letter-spacing: 0.1em; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.process-step-num .bar { width: 28px; height: 1px; background: var(--brass); display: inline-block; flex-shrink: 0; }
.process-step-title { font-family: var(--serif); font-size: 32px; font-weight: 400; margin-bottom: 14px; letter-spacing: -0.02em; }
.process-step-desc { font-size: 14px; line-height: 1.6; opacity: 0.7; }
.process-timeline { margin-top: 48px; padding: 20px 24px; border: 1px solid rgba(245,243,238,0.15); border-radius: 6px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.process-timeline-label { font-family: var(--mono); font-size: 11px; opacity: 0.6; letter-spacing: 0.1em; text-transform: uppercase; }
.process-timeline-items { display: flex; gap: 32px; font-size: 13px; flex-wrap: wrap; }
.process-timeline-items strong { color: var(--brass); }

/* ── SERVICES ── */
.services-section { padding: 120px 0; background: var(--paper); }
.services-header { margin-bottom: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 48px; }
.services-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; color: var(--navy); letter-spacing: -0.025em; }
.services-h2 em { font-style: italic; color: var(--brass-deep); }
.services-note { font-size: 14px; color: var(--ink-2); max-width: 360px; line-height: 1.55; }
/* services-grid: CSS grid kept for 1px divider border effect */
.services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.service-card { padding: 32px 24px; background: var(--paper); min-height: 320px; display: flex; flex-direction: column; }
.service-num { font-family: var(--mono); font-size: 11px; color: var(--brass-deep); letter-spacing: 0.1em; margin-bottom: 28px; }
.service-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.1; }
.service-desc { font-size: 13px; line-height: 1.55; color: var(--ink-2); margin-bottom: 24px; flex-grow: 1; }
.service-keys { display: flex; flex-direction: column; gap: 6px; padding-top: 20px; border-top: 1px solid var(--line); }
.service-key { font-size: 12px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.service-key-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brass-deep); flex-shrink: 0; display: inline-block; }

/* ── FOUNDER ── */
.founder-section { padding: 120px 0; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-inner { max-width: 720px; margin: 0 auto; }
.founder-quote-mark { font-family: var(--serif); font-size: 80px; color: var(--brass-deep); line-height: 0.5; margin-bottom: 28px; font-style: italic; }
.founder-pull { font-family: var(--serif); font-size: 30px; line-height: 1.35; color: var(--navy); font-weight: 400; letter-spacing: -0.01em; margin-bottom: 32px; }
.founder-para { font-size: 16px; line-height: 1.75; color: var(--ink-2); margin-bottom: 20px; }
.founder-attribution { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.founder-sig { font-family: var(--serif); font-size: 34px; color: var(--navy); font-style: italic; font-weight: 400; margin-bottom: 10px; }
.founder-name { font-family: var(--serif); font-size: 17px; color: var(--navy); font-weight: 500; margin-bottom: 3px; }
.founder-role { font-size: 13px; color: var(--ink-2); }
.founder-creds { font-size: 12px; color: var(--ink-3); margin-top: 5px; font-family: var(--mono); letter-spacing: 0.04em; }

/* ── PRICING ── */
.pricing-section { padding: 120px 0; background: var(--paper); }
/* pricing-header + pricing-grid: Bootstrap row handles layout */
.pricing-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; color: var(--navy); letter-spacing: -0.025em; }
.pricing-h2 em { font-style: italic; color: var(--brass-deep); }
.pricing-lead { font-size: 16px; color: var(--ink-2); line-height: 1.6; max-width: 460px; }
.pricing-card { padding: 40px; border-radius: 6px; display: flex; flex-direction: column; }
.pricing-card.std { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.pricing-card.feat { background: var(--navy); color: var(--cream); border: 1px solid var(--navy); }
.pricing-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.pricing-tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; margin-bottom: 12px; }
.pricing-card.std .pricing-tag { color: var(--brass-deep); }
.pricing-card.feat .pricing-tag { color: var(--brass); }
.pricing-name { font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 6px; }
.pricing-sub { font-size: 13px; opacity: 0.7; font-family: var(--mono); }
.pricing-badge { font-size: 10px; font-family: var(--mono); letter-spacing: 0.1em; color: var(--brass); border: 1px solid var(--brass); padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.pricing-price-row { padding: 24px 0; margin-bottom: 24px; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.pricing-card.std .pricing-price-row { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing-card.feat .pricing-price-row { border-top: 1px solid rgba(245,243,238,0.15); border-bottom: 1px solid rgba(245,243,238,0.15); }
.pricing-price { font-family: var(--serif); font-size: 56px; font-weight: 400; line-height: 1; letter-spacing: -0.03em; }
.pricing-card.std .pricing-price { color: var(--navy); }
.pricing-card.feat .pricing-price { color: var(--brass); font-style: italic; }
.pricing-price-note { font-size: 13px; opacity: 0.7; }
.pricing-desc { font-size: 14px; line-height: 1.6; margin-bottom: 28px; opacity: 0.85; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; flex-grow: 1; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.pricing-feature svg { flex-shrink: 0; margin-top: 3px; }
.pricing-cta { padding: 16px 24px; border-radius: 6px; font-weight: 500; font-size: 14px; display: flex; align-items: center; justify-content: space-between; }
.pricing-card.std .pricing-cta { background: var(--navy); color: var(--cream); }
.pricing-card.feat .pricing-cta { background: var(--brass); color: var(--navy); }
.pricing-enterprise { margin-top: 32px; padding: 20px 24px; border: 1px dashed var(--line); border-radius: 6px; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 13px; color: var(--ink-2); flex-wrap: wrap; }
.pricing-ent-label { font-family: var(--mono); font-size: 11px; color: var(--brass-deep); letter-spacing: 0.1em; text-transform: uppercase; margin-right: 8px; }
.pricing-ent-link { color: var(--navy); font-weight: 500; border-bottom: 1px solid var(--navy); white-space: nowrap; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 120px 0; background: var(--paper); border-top: 1px solid var(--line); }
/* testimonials header + grid: Bootstrap row handles layout */
.testimonials-h2 { font-family: var(--serif); font-size: 56px; line-height: 1.05; font-weight: 400; color: var(--navy); letter-spacing: -0.025em; }
.testimonials-h2 em { font-style: italic; color: var(--brass-deep); }
.testimonials-legend { display: flex; gap: 24px; font-size: 13px; color: var(--ink-2); align-items: center; }
.legend-item { display: flex; gap: 8px; align-items: center; }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.testimonial-card { padding: 32px; background: var(--cream); border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; }
.testimonial-card.emp { border-top: 3px solid var(--navy); }
.testimonial-card.wkr { border-top: 3px solid var(--brass-deep); }
.testimonial-mark { font-family: var(--serif); font-size: 48px; color: var(--brass-deep); line-height: 0.4; margin-bottom: 20px; font-style: italic; }
.testimonial-quote { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--ink); margin-bottom: 28px; flex-grow: 1; letter-spacing: -0.005em; }
.testimonial-foot { padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-end; }
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--ink-2); margin-top: 4px; }
.testimonial-city { font-size: 11px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0.05em; }

/* ── CONTACT ── */
.contact-section { padding: 120px 0; background: var(--navy); color: var(--cream); }
/* contact-grid: Bootstrap row handles layout */
.contact-h2 { font-family: var(--serif); font-size: 64px; line-height: 1.0; font-weight: 400; letter-spacing: -0.03em; margin-bottom: 32px; }
.contact-h2 em { font-style: italic; color: var(--brass); }
.contact-lead { font-size: 17px; line-height: 1.6; opacity: 0.75; margin-bottom: 48px; max-width: 480px; }
.contact-details { display: grid; gap: 20px; }
.contact-detail { padding-bottom: 20px; border-bottom: 1px solid rgba(245,243,238,0.15); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail-label { font-family: var(--mono); font-size: 11px; opacity: 0.5; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.contact-detail-main { font-size: 17px; font-family: var(--serif); }
.contact-detail-sub { font-size: 14px; opacity: 0.7; margin-top: 2px; }
.contact-form-wrap { background: var(--cream); color: var(--ink); border-radius: 6px; padding: 40px; }
.form-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.form-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--navy); }
.form-id { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; }
/* form-row: Bootstrap row handles layout */
.form-field { margin-bottom: 0; }
.field-label { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.field-input { width: 100%; padding: 12px 14px; font-size: 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); color: var(--ink); outline: none; transition: border-color 160ms; }
.field-input:focus { border-color: var(--navy); }
.field-textarea { width: 100%; padding: 12px 14px; font-size: 14px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); color: var(--ink); min-height: 100px; resize: vertical; outline: none; transition: border-color 160ms; }
.field-textarea:focus { border-color: var(--navy); }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip { font-size: 13px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--paper); color: var(--ink); cursor: pointer; transition: background 160ms, color 160ms, border-color 160ms; }
.chip.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.chip-group { margin-bottom: 16px; }
.submit-btn { width: 100%; background: var(--navy); color: var(--cream); padding: 16px 24px; border-radius: 6px; font-weight: 500; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; border: none; font-family: inherit; }
.form-disclaimer { font-size: 12px; color: var(--ink-3); margin-top: 14px; text-align: center; }

/* Required field marker */
.field-req { color: var(--brass-deep); font-size: 10px; }

/* Validation error state */
.field-input.field-error { border-color: #c0392b; }
.field-input.field-error:focus { border-color: #c0392b; box-shadow: 0 0 0 2px rgba(192,57,43,0.12); }

/* Form status messages */
.form-status {
  margin-top: 14px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.03em;
  min-height: 20px;
  transition: opacity 200ms;
}
.form-status--ok    { color: #27ae60; }
.form-status--error { color: #c0392b; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-deep); color: var(--cream); padding: 80px 0 40px; border-top: 1px solid rgba(245,243,238,0.1); }
/* footer-main: Bootstrap row handles layout */
.footer-main { margin-bottom: 64px; }
.footer-tagline { font-size: 14px; line-height: 1.6; opacity: 0.6; max-width: 320px; margin-bottom: 24px; }
.footer-reg { font-family: var(--mono); font-size: 11px; opacity: 0.4; letter-spacing: 0.08em; }
.footer-col-title { font-family: var(--mono); font-size: 11px; color: var(--brass); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col-links { display: flex; flex-direction: column; gap: 10px; }
.footer-col-links a { font-size: 14px; color: var(--cream); opacity: 0.75; transition: opacity 160ms; }
.footer-col-links a:hover { opacity: 1; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(245,243,238,0.1); display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 11px; opacity: 0.5; letter-spacing: 0.05em; flex-wrap: wrap; gap: 12px; }
.footer-langs { display: flex; gap: 24px; }
.footer-langs span.dim { opacity: 0.5; }

/* ══════════════════════════════════════
   RESPONSIVE — Bootstrap handles column
   stacking; these rules cover the rest.
══════════════════════════════════════ */

/* ── Tablet ≤ 991px (Bootstrap lg breakpoint) ── */
@media (max-width: 991px) {
  .wrap { padding: 0 24px; }
  .header-inner { padding: 0 20px; min-height: 64px; }
  .logo-img { height: 64px; }

  .topbar-address { display: none; }
  .topbar-phone { display: none; }
  .topbar-lang, .topbar-sep { display: none; }

  .about-section, .industries-section, .process-section,
  .services-section, .founder-section, .pricing-section,
  .testimonials-section, .contact-section { padding: 80px 0; }

  .about-h2, .industries-h2, .services-h2,
  .testimonials-h2, .pricing-h2, .process-h2 { font-size: 42px; }
  .contact-h2 { font-size: 48px; }

  /* Stats: 2-column grid on tablet */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { padding-left: 0; border-right: 1px solid var(--line); }
  .stat-item:nth-child(4) { border-right: none; }

  /* Services: 2 or 3 cols */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Process: 2 cols */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

}

/* ── Mobile ≤ 767px (Bootstrap md breakpoint) ── */
@media (max-width: 767px) {
  .wrap { padding: 0 16px; }
  .logo-img { height: 52px; }
  .hero-section { padding-top: 32px; }
  .stats-section { padding: 48px 0; }
  .about-section, .industries-section, .process-section,
  .services-section, .founder-section, .pricing-section,
  .testimonials-section, .contact-section { padding: 56px 0; }

  .hero-eyebrow-bar { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
  .hero-eyebrow-left { flex-direction: column; gap: 6px; }
  .hero-grid { margin-bottom: 32px; }
  .hero-lead { font-size: 16px; }
  .logo-strip { flex-direction: column; gap: 20px; margin-top: 40px; padding: 24px 0; }
  .logo-strip-logos { gap: 16px 20px; justify-content: center; }

  /* Stats: 2-column on mobile (unchanged) */
  .stat-num { font-size: 44px; }

  .about-h2, .industries-h2, .services-h2,
  .pricing-h2, .process-h2 { font-size: 30px; }
  .contact-h2 { font-size: 32px; }
  .testimonials-h2 { font-size: 30px; }
  .about-lede { font-size: 18px; }
  .pillars-grid { margin-top: 0; }

  .industries-header { flex-direction: column; gap: 28px; align-items: flex-start; }
  .ind-tabs { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .ind-tab { flex-shrink: 0; padding: 14px 16px; font-size: 13px; white-space: nowrap; }
  .ind-panel.active { grid-template-columns: 1fr; }
  .ind-panel-content { padding: 32px 24px; }
  .ind-photo { min-height: 240px; }
  .ind-name { font-size: 24px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step-title { font-size: 24px; }

  .services-header { flex-direction: column; gap: 28px; align-items: flex-start; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .founder-pull { font-size: 22px; }
  .founder-inner { max-width: 100%; }

  .pricing-card { padding: 28px 24px; }
  .pricing-price { font-size: 36px; }
  .pricing-enterprise { flex-direction: column; gap: 12px; align-items: flex-start; }

  .contact-form-wrap { padding: 28px 20px; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Small mobile ≤ 480px ── */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; padding-left: 0 !important; }
  .pillars-grid { grid-template-columns: 1fr; }
}
