@charset "utf-8";
/* ==========================================================================
   MFG EMPIRE — "DATUM"
   Static build. Plain CSS, no build step, no framework.
   --------------------------------------------------------------------------
   Brand blue sampled from client screenshots: #21366D  (single token below)
   Deep navy sampled from footer:              #031030
   Page wash sampled:                          #F5F6F8
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* ---- The brand blue. Change this one line to reshade the whole site. ---- */
  --brand: #21366D;

  --brand-950: #031030;
  --brand-900: #0A1839;
  --brand-800: #12224C;
  --brand-700: #1A2B5D;
  --brand-600: #21366D;
  --brand-500: #2C4890;
  --brand-400: #4260AE;
  --brand-300: #7A90C9;
  --brand-200: #C3CEE6;
  --brand-100: #DEE5F2;
  --brand-50:  #EEF1F8;

  /* Accent — safety orange. Used ONLY for datum flags, tick marks and
     required-field marks. Never for buttons or large fills. */
  --flag: #F26522;
  --flag-soft: #FDE9DF;
  --flag-ink: #C2450F;   /* orange for small text on light bg */
  --flag-lite: #FFB999;  /* orange for small text on brand bg */

  --ink:   #16203A;
  --ink-2: #33405C;
  --muted: #5C6880;
  --faint: #636C7E;

  --paper: #F5F6F8;
  --white: #FFFFFF;
  --rule:  #DDE2EB;
  --rule-2:#EAEEF4;
  --rule-dark: rgba(255,255,255,.16);

  --ok: #1B8A5A;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Rhythm */
  --wrap: 1280px;
  --gutter: 24px;
  --side: 348px;

  --r-sm: 3px;
  --r:    5px;
  --r-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(16,26,48,.05), 0 2px 6px rgba(16,26,48,.04);
  --shadow:    0 2px 4px rgba(16,26,48,.05), 0 12px 28px -10px rgba(16,26,48,.16);
  --shadow-lg: 0 4px 8px rgba(16,26,48,.06), 0 28px 56px -20px rgba(16,26,48,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* --------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration: none; }
a:hover { color: var(--brand-500); }
button, input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 40px 0; }

:focus-visible {
  outline: 2px solid var(--flag);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--brand-950); color: #fff; padding: 12px 20px;
  font-family: var(--mono); font-size: 13px;
}
.skip:focus { left: 0; color: #fff; }

.sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  font-variation-settings: "wdth" 108;
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -0.018em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 1.35rem + 2.6vw, 3.7rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.35vw, 2.3rem); }
h3 { font-size: clamp(1.2rem, 1.02rem + .6vw, 1.5rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
strong, b { font-weight: 650; color: var(--ink); }

/* Headings arrive from the classic editor wrapped in <strong>. Neutralise it. */
h1 > strong, h2 > strong, h3 > strong, h4 > strong,
h1 > b, h2 > b, h3 > b, h4 > b,
h1 > em > strong, h2 > em > strong { font-weight: inherit; color: inherit; }
h2 > span, h3 > span, h4 > span { font-weight: inherit !important; font-size: inherit !important; }

/* Utility / data type */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 0;
  border-top: 2px solid var(--flag);
  flex: none;
}
.eyebrow.on-dark { color: var(--brand-200); }

.lede {
  font-size: clamp(1.05rem, .98rem + .35vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-2);
}

.mono { font-family: var(--mono); }

/* --------------------------------------------------------------------------
   4. LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-narrow { max-width: 860px; }

.section { padding: clamp(56px, 4vw + 32px, 104px) 0; }
.section-tight { padding: clamp(40px, 3vw + 24px, 68px) 0; }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--tint  { background: var(--brand-50); }
.section--deep  { background: var(--brand-950); color: #fff; }
.section--brand { background: var(--brand-600); color: #fff; }

.section--deep h1, .section--deep h2, .section--deep h3, .section--deep h4,
.section--brand h1, .section--brand h2, .section--brand h3, .section--brand h4 { color: #fff; }
.section--deep p, .section--brand p { color: rgba(255,255,255,.82); }

.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head p { color: var(--muted); font-size: 1.06rem; margin-bottom: 0; }
.section--deep .section-head p, .section--brand .section-head p { color: rgba(255,255,255,.76); }

.section-head--split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.section-head--split > div { max-width: 700px; }

/* Hairline tick rule — the recurring measurement motif */
.tickrule {
  height: 9px;
  border-top: 1px solid var(--rule);
  background-image: repeating-linear-gradient(to right, var(--rule) 0 1px, transparent 1px 16px);
  background-repeat: repeat-x;
  background-size: 16px 5px;
  background-position: 0 0;
}
.section--deep .tickrule, .section--brand .tickrule {
  border-top-color: var(--rule-dark);
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,.22) 0 1px, transparent 1px 16px);
}

/* --------------------------------------------------------------------------
   5. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
  text-align: left;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arw { transition: transform .22s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn-primary { background: var(--brand-600); color: #fff; }
.btn-primary:hover { background: var(--brand-500); color: #fff; }

.btn-deep { background: var(--brand-950); color: #fff; }
.btn-deep:hover { background: var(--brand-800); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { background: var(--white); border-color: var(--brand-300); color: var(--brand-600); }

.btn-on-dark { background: #fff; color: var(--brand-950); }
.btn-on-dark:hover { background: var(--brand-50); color: var(--brand-950); }

.btn-outline-dark { background: transparent; color: #fff; border-color: rgba(255,255,255,.34); }
.btn-outline-dark:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.6); }

.btn-block { display: flex; width: 100%; justify-content: center; }
.btn-lg { padding: 18px 32px; font-size: 13.5px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Text link with sliding rule */
.tlink {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-600);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--brand-200);
}
.tlink:hover { border-bottom-color: var(--flag); color: var(--brand-500); }
.tlink .arw { transition: transform .22s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }
.tlink.on-dark { color: #fff; border-bottom-color: rgba(255,255,255,.3); }
.tlink.on-dark:hover { color: #fff; border-bottom-color: var(--flag); }

/* --------------------------------------------------------------------------
   6. HEADER
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--brand-950);
  color: rgba(255,255,255,.7);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 38px; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar .dot { color: var(--flag); }
.topbar-right { display: flex; align-items: center; gap: 18px; }
@media (max-width: 900px) { .topbar-left .hide-sm { display: none; } }
@media (max-width: 620px) { .topbar { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--brand-900);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 8px 28px -12px rgba(3,16,48,.6); }

.nav { display: flex; align-items: center; gap: 28px; min-height: 76px; }
.brand { flex: none; display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }

.nav-main { margin-left: auto; }
.nav-list { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 13px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.84);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: color .16s var(--ease), background .16s var(--ease);
}
.nav-list > li > a:hover, .nav-list > li.is-open > a { color: #fff; background: rgba(255,255,255,.08); }
.nav-list > li.current > a { color: #fff; }
.nav-list > li.current > a::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: -2px;
  border-bottom: 2px solid var(--flag);
}
.nav-caret { width: 9px; height: 9px; opacity: .6; fill: none; transition: transform .2s var(--ease); }
.nav-list > li.is-open .nav-caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 276px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-list > li.is-open .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 10px 12px;
  font-size: 14.5px;
  color: var(--ink-2);
  border-radius: var(--r-sm);
}
.submenu a:hover { background: var(--brand-50); color: var(--brand-600); }
.submenu .idx { font-family: var(--mono); font-size: 10.5px; color: var(--faint); flex: none; }
.submenu a:hover .idx { color: var(--flag-ink); }

.nav-cta { flex: none; display: flex; align-items: center; gap: 12px; }

.burger {
  display: none;
  width: 46px; height: 42px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 18px; height: 1.5px; background: #fff; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1120px) {
  .nav { min-height: 66px; gap: 16px; }
  .nav-main {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 88vw);
    background: var(--brand-900);
    padding: 88px 20px 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s var(--ease);
    box-shadow: -20px 0 60px rgba(3,16,48,.5);
  }
  .nav-main.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a { padding: 14px 12px; font-size: 16px; justify-content: space-between; }
  .nav-list > li.current > a::after { display: none; }
  .nav-list > li.current > a { border-left: 2px solid var(--flag); }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 8px 12px;
    display: none;
  }
  .nav-list > li.is-open .submenu { display: block; }
  .submenu a { color: rgba(255,255,255,.72); }
  .submenu a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .burger { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-cta .btn.keep { display: inline-flex; }
}
/* CTA inside the mobile drawer — desktop keeps it in the header instead */
.nav-drawer-cta, .nav-drawer-tel { display: none; }
@media (max-width: 1120px) {
  .nav-drawer-cta { display: flex; margin-top: 24px; }
  .nav-drawer-tel {
    display: block; margin: 16px 0 0; text-align: center;
    font-family: var(--mono); font-size: 12px; letter-spacing: .1em;
  }
  .nav-drawer-tel a { color: rgba(255,255,255,.7); }
  .nav-drawer-tel a:hover { color: #fff; }
}
/* Keep the quote path reachable on small phones, just tighter */
@media (max-width: 560px) {
  .brand img { height: 28px; }
  .nav { gap: 10px; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn.keep { padding: 10px 12px; font-size: 10px; letter-spacing: .05em; }
  .burger { width: 42px; height: 38px; }
}
@media (max-width: 400px) {
  .nav-cta .btn.keep { display: none; }
}

.scrim {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(3,16,48,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s;
}
.scrim.is-on { opacity: 1; visibility: visible; }

/* --------------------------------------------------------------------------
   7. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--brand-950); color: rgba(255,255,255,.66); }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }

.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.15fr;
  gap: 44px;
}
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-300); margin-bottom: 18px;
}
.footer-blurb { font-size: 14.5px; line-height: 1.6; margin-bottom: 22px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 38px; height: 38px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}
.socials a:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.36); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff; margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14.5px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-300); flex: none; width: 44px; padding-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   8. HOME HERO  — the thesis: a buyer asks, an answer engine replies
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--brand-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 82% 8%, rgba(66,96,174,.42) 0%, transparent 58%),
    radial-gradient(90% 70% at 8% 92%, rgba(33,54,109,.55) 0%, transparent 60%),
    var(--brand-950);
}
/* faint measurement grid */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,.045) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.045) 0 1px, transparent 1px 88px);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 88%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
  padding: clamp(56px, 5vw + 24px, 104px) var(--gutter);
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 { line-height: 1.2; }
.hero h1 .hl {
  color: #fff;
  background-image: linear-gradient(to top, var(--flag) 0 4px, transparent 4px);
  padding-bottom: 5px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero .lede { color: rgba(255,255,255,.76); max-width: 54ch; margin-bottom: 30px; }
.hero .btn-row { margin-bottom: 40px; }

.hero-proof { list-style: none; margin: 0; padding: 26px 0 0; border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.hero-proof dt, .hero-proof .n {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 112;
  font-size: clamp(1.5rem, 1.2rem + .9vw, 2rem); color: #fff; line-height: 1; letter-spacing: -.02em;
}
.hero-proof .l { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand-300); margin-top: 8px; line-height: 1.45; }

/* ---- Signature: the query readout panel ---- */
.qpanel {
  background: rgba(6,20,52,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.75);
  overflow: hidden;
  position: relative;
}
.qpanel-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.04);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.qdot { width: 7px; height: 7px; border-radius: 50%; background: var(--flag); flex: none; }
@media (prefers-reduced-motion: no-preference) {
  .qdot { animation: pulse 2.4s var(--ease) infinite; }
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.qpanel-bar .sp { margin-left: auto; color: rgba(255,255,255,.4); }

.qpanel-body { padding: 22px 20px 20px; }
.qprompt {
  font-family: var(--mono);
  font-size: clamp(14px, 1.05vw + 8px, 16.5px);
  line-height: 1.55;
  color: #fff;
  margin: 0 0 22px;
  min-height: 3.1em;
  display: flex; gap: 8px; align-items: flex-start;
}
.qprompt .chev { color: var(--flag); flex: none; }
.caret {
  display: inline-block; width: 8px; height: 1.05em; background: var(--flag);
  vertical-align: -.16em; margin-left: 2px; flex: none;
}
@media (prefers-reduced-motion: no-preference) {
  .caret { animation: blink 1.05s steps(1,end) infinite; }
}
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

.qanswer-head {
  font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.62); padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.qcard {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  background: rgba(255,255,255,.03);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.qcard.is-you {
  border-color: rgba(242,101,34,.6);
  background: linear-gradient(90deg, rgba(242,101,34,.16), rgba(242,101,34,.03));
}
.qcard.is-dim { opacity: .38; }
.qcard .mark {
  width: 34px; height: 34px; flex: none; border-radius: var(--r-sm);
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,.72);
}
.qcard.is-you .mark { background: var(--flag); color: #fff; }
.qcard .nm { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.qcard .mt { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em;
  color: rgba(255,255,255,.66); margin-top: 3px; }
.qcard .badge {
  margin-left: auto; flex: none;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--flag); border: 1px solid rgba(242,101,34,.45); border-radius: 100px;
  padding: 4px 9px;
}
.qpanel-foot {
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  font-family: var(--mono); font-size: 11px; letter-spacing: .05em;
  color: rgba(255,255,255,.64);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.qpanel-foot b { color: #fff; font-weight: 500; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 480px) {
  .hero-proof { grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* --------------------------------------------------------------------------
   9. CREDENTIAL STRIP
   -------------------------------------------------------------------------- */
.creds { background: var(--white); border-bottom: 1px solid var(--rule); }
.creds .wrap { display: flex; align-items: stretch; flex-wrap: wrap; }
.cred {
  flex: 1 1 220px; padding: 22px 26px 22px 0; margin-right: 26px;
  border-right: 1px solid var(--rule);
  display: flex; gap: 12px; align-items: flex-start;
}
.creds .wrap > .cred:last-child { border-right: 0; margin-right: 0; }
.cred .ic { display: block; flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--flag); }
.cred .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cred b { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.cred span { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--faint); margin-top: 4px; }
@media (max-width: 860px) {
  .cred { border-right: 0; border-bottom: 1px solid var(--rule); margin-right: 0; padding: 16px 0; flex: 1 1 100%; }
  .creds .wrap > .cred:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   10. CARD GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  position: relative;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.card:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; margin-bottom: 0; }
.card .ic { display: block; width: 42px; height: 42px; margin-bottom: 20px; color: var(--brand-600); }
.card .ic svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; }
.card .idx {
  position: absolute; top: 22px; right: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; color: var(--brand-400);
}
.card:hover .idx { color: var(--flag-ink); }

/* Service tiles */
.svc {
  display: block; background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 26px 24px 24px; position: relative; overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.svc::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--flag); transform: scaleY(0); transform-origin: top;
  transition: transform .28s var(--ease);
}
.svc:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc:hover::before { transform: scaleY(1); }
.svc .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.svc h3 { font-size: 1.22rem; margin: 12px 0 8px; color: var(--ink); }
.svc p { color: var(--muted); font-size: 14.8px; margin-bottom: 16px; }
.svc .go { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-600); display: inline-flex; gap: 7px; align-items: center; }
.svc:hover .go { color: var(--flag-ink); }

/* --------------------------------------------------------------------------
   11. STAT BAND
   -------------------------------------------------------------------------- */
.statband { background: var(--brand-600); color: #fff; }
.statband .wrap { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.stat { padding: 46px 28px 46px 0; border-right: 1px solid rgba(255,255,255,.16); }
.statband .wrap > .stat:last-child { border-right: 0; }
.statband .wrap > .stat + .stat { padding-left: 28px; }
.stat .n {
  font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 115;
  font-size: clamp(2.3rem, 1.6rem + 2.4vw, 3.4rem); line-height: .95; letter-spacing: -.03em;
  display: block; margin-bottom: 12px;
}
.stat .l { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8); line-height: 1.5; display: block; }
@media (max-width: 860px) {
  .statband .wrap { grid-template-columns: 1fr 1fr; }
  .stat { padding: 30px 20px 30px 0; }
  .statband .wrap > .stat:nth-child(2) { border-right: 0; }
  .statband .wrap > .stat:nth-child(3), .statband .wrap > .stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .statband .wrap > .stat + .stat { padding-left: 0; }
  .statband .wrap > .stat:nth-child(2), .statband .wrap > .stat:nth-child(4) { padding-left: 24px; }
}

/* --------------------------------------------------------------------------
   12. SPLIT / MEDIA
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4vw, 72px); align-items: center; }
.split.narrow-media { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 900px) { .split, .split.narrow-media { grid-template-columns: 1fr; } }

.framed { position: relative; }
.framed img { border-radius: var(--r-lg); width: 100%; }
.framed::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--brand-200); border-radius: var(--r-lg);
}
.framed .cap {
  position: absolute; left: 0; bottom: 0; right: 0;
  background: linear-gradient(to top, rgba(3,16,48,.9), transparent);
  color: #fff; padding: 40px 20px 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}

/* Checklist */
.checks { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.checks li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 3px;
  background: var(--brand-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321366D' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid var(--brand-100);
}
.section--deep .checks li, .section--brand .checks li { color: rgba(255,255,255,.82); }
.section--deep .checks li::before, .section--brand .checks li::before {
  background-color: rgba(255,255,255,.14); border-color: rgba(255,255,255,.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   13. INNER PAGE HEADER
   -------------------------------------------------------------------------- */
.phead {
  position: relative;
  background: var(--brand-950);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(40px, 3.5vw + 20px, 68px) 0 0;
}
.phead::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(110% 130% at 88% -10%, rgba(66,96,174,.4) 0%, transparent 56%),
    var(--brand-950);
}
.phead::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(to right, rgba(255,255,255,.05) 0 1px, transparent 1px 88px);
}
.phead h1 { color: #fff; margin: 0 0 16px; max-width: 20ch; }
.phead-dek { color: rgba(255,255,255,.74); font-size: clamp(1rem, .95rem + .3vw, 1.18rem); max-width: 62ch; margin: 0; line-height: 1.6; }
.phead-inner { padding-bottom: clamp(36px, 3vw + 16px, 56px); }

.crumbs {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.66); margin-bottom: 22px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
}
.crumbs a { color: rgba(255,255,255,.7); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { color: var(--flag); }
.crumbs [aria-current] { color: #fff; }

/* Mono spec strip under the H1 — states what the page actually is */
.phead-spec {
  list-style: none; margin: 30px 0 0; padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.16);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 22px;
}
.phead-spec dt, .phead-spec .k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-300); display: block; margin-bottom: 6px;
}
.phead-spec .v { font-size: 14.5px; color: #fff; font-weight: 500; line-height: 1.4; display: block; }

/* --------------------------------------------------------------------------
   14. INNER LAYOUT + DATUM RAIL
   -------------------------------------------------------------------------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) var(--side);
  gap: 0 clamp(32px, 3.4vw, 64px);
  align-items: start;
  padding-top: clamp(40px, 3vw + 20px, 64px);
  padding-bottom: clamp(56px, 4vw + 28px, 96px);
}

@media (max-width: 900px) {
  .layout { grid-template-columns: minmax(0,1fr); gap: 48px; }
}

/* --------------------------------------------------------------------------
   15. ENTRY CONTENT — classic-editor output, styled generically
   -------------------------------------------------------------------------- */
.entry { max-width: 100%; font-size: 17px; line-height: 1.72; color: var(--ink-2); }
.entry > *:first-child { margin-top: 0; }
.entry > *:last-child { margin-bottom: 0; }

/* Kill the inline styles the classic editor sprays everywhere.
   Content keeps its meaning; the stylesheet gets control back. */
.entry [style] { font-size: inherit !important; font-family: inherit !important; background-color: transparent !important; }
.entry span[style], .entry li[style], .entry p[style] { font-weight: inherit !important; }
.entry strong[style], .entry b[style] { font-weight: 650 !important; }

/* Hide schema blocks and stray whitespace paragraphs */
.entry script { display: none !important; }
.entry p:empty { display: none; }

.entry h2 { color: var(--ink); }
.entry > h2 {
  position: relative;
  margin: 56px 0 20px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 110px;
}
.entry > h2::before {
  content: ""; position: absolute; top: -1px; left: 0; width: 46px; border-top: 2px solid var(--flag);
}
.entry > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.entry > h2:first-child::before { display: none; }
.entry h3 { margin: 34px 0 12px; color: var(--ink); }
.entry h4 { margin: 26px 0 10px; color: var(--ink); font-family: var(--display); }

.entry p { margin: 0 0 1.25em; }
.entry a:not(.inner-page-button):not(.btn) {
  color: var(--brand-600);
  border-bottom: 1px solid var(--brand-200);
  transition: border-color .16s var(--ease), color .16s var(--ease);
}
.entry a:not(.inner-page-button):not(.btn):hover { color: var(--brand-500); border-bottom-color: var(--flag); }

.entry ul, .entry ol { margin: 0 0 1.35em; padding-left: 0; }
.entry ul { list-style: none; }
.entry ul > li {
  position: relative; padding-left: 26px; margin-bottom: 11px;
}
.entry ul > li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 7px; height: 7px; border: 1.5px solid var(--brand-400); border-radius: 1px;
  transform: rotate(45deg);
}
.entry ol { padding-left: 22px; }
.entry ol > li { margin-bottom: 11px; padding-left: 6px; }
.entry ol > li::marker { font-family: var(--mono); font-size: .85em; color: var(--brand-600); }

/* The <strong>Label</strong><br>description pattern used all over the content */
.entry p > strong:first-child + br,
.entry p > b:first-child + br { display: none; }
.entry p > strong:first-child:has(+ br),
.entry p > b:first-child:has(+ br) {
  display: block; margin-bottom: 5px;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem;
  color: var(--ink); letter-spacing: -.01em;
}

/* Bullet-character paragraphs (• lines separated by <br>) upgraded by JS.
   Falls back to a readable paragraph if JS is off. */
.spec-list { list-style: none; margin: 0 0 1.5em; padding: 0; display: grid; gap: 10px; }
.spec-list.cols-2 { grid-template-columns: 1fr 1fr; gap: 10px 28px; }
@media (max-width: 700px) { .spec-list.cols-2 { grid-template-columns: 1fr; } }
.spec-list > li {
  position: relative; padding-left: 28px; margin: 0; font-size: 15.8px; line-height: 1.55; color: var(--ink-2);
}
.spec-list > li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 17px; height: 17px; border-radius: 3px;
  border: 1px solid var(--brand-100); background: var(--brand-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2321366D' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* Images inside content */
.entry img { border-radius: var(--r); }
.entry figure { margin: 32px 0; }
.entry figcaption { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; color: var(--faint); margin-top: 10px; }

/* --------------------------------------------------------------------------
   16. SHORTCODE STYLING  — matches the existing PHP output exactly
   -------------------------------------------------------------------------- */

/* [button] → <a class="inner-page-button"> */
.inner-page-button {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--brand-600); color: #fff !important;
  padding: 15px 26px; border-radius: var(--r); border: 1px solid transparent;
  margin: 6px 0 28px; text-align: left;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.inner-page-button::after {
  content: ""; width: 14px; height: 9px; flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M15 1l7 7-7 7M22 8H0' stroke='%23000' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16'%3E%3Cpath d='M15 1l7 7-7 7M22 8H0' stroke='%23000' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .22s var(--ease);
}
.inner-page-button:hover { background: var(--brand-500); transform: translateY(-1px); }
.inner-page-button:hover::after { transform: translateX(4px); }
.inner-page-button b, .inner-page-button strong { font-weight: 500; }

/* [focus] → light "answer" card. Orange datum rule on the reading edge. */
.inner-page-focus {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--flag);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  padding: clamp(26px, 2.2vw + 14px, 38px) clamp(22px, 2.2vw + 12px, 38px);
  margin: 48px 0;
  box-shadow: var(--shadow-sm);
}
.inner-page-focus > h2 { margin: 0 0 16px; font-size: clamp(1.4rem, 1.1rem + 1.05vw, 1.95rem); }
.inner-page-focus > h2:only-child { margin-bottom: 0; }
.inner-page-focus > p { font-size: clamp(1rem, .96rem + .28vw, 1.14rem); line-height: 1.62; color: var(--ink-2); }
.inner-page-focus > p:last-child { margin-bottom: 0; }
.inner-page-focus > .inner-page-button:last-child { margin-bottom: 0; }
.inner-page-focus > h3 { margin-top: 28px; }

/* [focus2] → the deep panel. One heavy block, used sparingly. */
.inner-page-focus2 {
  background: var(--brand-600);
  border-radius: var(--r-lg);
  margin: 52px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.inner-page-focus2::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(90% 120% at 92% 4%, rgba(255,255,255,.13) 0%, transparent 58%),
    repeating-linear-gradient(to right, rgba(255,255,255,.05) 0 1px, transparent 1px 72px);
}
.f2-inner { padding: clamp(30px, 2.6vw + 16px, 48px); color: rgba(255,255,255,.84); }
.f2-inner h2, .f2-inner h3, .f2-inner h4 { color: #fff; }
.f2-inner h2 { margin: 0 0 18px; }
.f2-inner h2 + p { font-size: 1.06rem; }
.f2-inner p:last-child { margin-bottom: 0; }
.f2-inner strong, .f2-inner b { color: #fff; }
/* must out-specify `.entry a:not(.inner-page-button):not(.btn)` (0,3,1) or links go dark-on-dark */
.entry .f2-inner a:not(.inner-page-button):not(.btn) { color: #fff; border-bottom-color: rgba(255,255,255,.4); }
.entry .f2-inner a:not(.inner-page-button):not(.btn):hover { color: #fff; border-bottom-color: var(--flag); }
.entry .f2-inner .inner-page-button { border-bottom: 0; }
.f2-inner ul > li::before { border-color: rgba(255,255,255,.6); }
.f2-inner ol > li::marker { color: var(--brand-200); }
.f2-inner .spec-list > li { color: rgba(255,255,255,.84); }
.f2-inner .spec-list > li::before {
  background-color: rgba(255,255,255,.14); border-color: rgba(255,255,255,.24);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.f2-inner .inner-page-button { background: #fff; color: var(--brand-950) !important; }
.f2-inner .inner-page-button:hover { background: var(--brand-50); }
.f2-inner p > strong:first-child:has(+ br), .f2-inner p > b:first-child:has(+ br) { color: #fff; }

/* [focus3] → tinted panel. The light counterweight to focus2. */
.inner-page-focus3 {
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-lg);
  margin: 52px 0;
  position: relative;
}
/* corner tick marks — a quiet nod to a drawing frame */
.inner-page-focus3::before, .inner-page-focus3::after {
  content: ""; position: absolute; width: 12px; height: 12px; pointer-events: none;
}
.inner-page-focus3::before { top: 12px; left: 12px; border-top: 2px solid var(--brand-300); border-left: 2px solid var(--brand-300); }
.inner-page-focus3::after { bottom: 12px; right: 12px; border-bottom: 2px solid var(--brand-300); border-right: 2px solid var(--brand-300); }
.f3-inner { padding: clamp(28px, 2.4vw + 16px, 44px); }
.f3-inner h2 { margin: 0 0 16px; color: var(--brand-700); }
.f3-inner h2 + p { font-size: 1.04rem; }
.f3-inner p:last-child { margin-bottom: 0; }
.f3-inner > .inner-page-button:last-child { margin-bottom: 0; }

/* [showcta] / [showcta2] → the inline CTA banner */
.inner-page-cta-banner {
  border-radius: var(--r-lg);
  margin: 52px 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.inner-page-cta-banner::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
}
.inner-page-cta-banner.ctabg1 { background: var(--brand-950); }
.inner-page-cta-banner.ctabg1::before {
  background:
    radial-gradient(80% 140% at 100% 0%, rgba(66,96,174,.5) 0%, transparent 62%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 1px, transparent 1px 12px);
}
.inner-page-cta-banner.ctabg2 { background: var(--brand-600); }
.inner-page-cta-banner.ctabg2::before {
  background:
    radial-gradient(80% 140% at 0% 100%, rgba(3,16,48,.6) 0%, transparent 60%),
    repeating-linear-gradient(to right, rgba(255,255,255,.06) 0 1px, transparent 1px 64px);
}
.inner-page-cta-banner-content {
  padding: clamp(30px, 2.6vw + 16px, 46px);
  display: grid; grid-template-columns: 1fr auto; gap: 12px 40px; align-items: center;
}
.inner-page-cta-banner-content h4 {
  grid-column: 1; margin: 0 0 8px;
  font-size: clamp(1.3rem, 1.05rem + .85vw, 1.75rem); color: #fff;
  font-variation-settings: "wdth" 110;
}
.inner-page-cta-banner-content > p:not(:last-child) {
  grid-column: 1; margin: 0; color: rgba(255,255,255,.78); font-size: 15.5px; max-width: 62ch;
}
.inner-page-cta-banner-content > p:last-child { grid-column: 2; grid-row: 1 / span 2; margin: 0; }
.inner-page-cta-banner-content > p:last-child a {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  font-family: var(--mono); font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  background: #fff; color: var(--brand-950) !important;
  padding: 16px 28px; border-radius: var(--r); border-bottom: 0 !important;
  transition: background .18s var(--ease), transform .18s var(--ease);
}
.inner-page-cta-banner-content > p:last-child a:hover { background: var(--brand-50); transform: translateY(-1px); }
@media (max-width: 760px) {
  .inner-page-cta-banner-content { grid-template-columns: 1fr; }
  .inner-page-cta-banner-content > p:last-child { grid-column: 1; grid-row: auto; margin-top: 10px; }
}

/* [cta] → the closing block at the end of a page */
.inner-page-cta {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--brand-600);
  border-radius: var(--r-lg);
  padding: clamp(30px, 2.6vw + 16px, 48px);
  margin: 56px 0 0;
  box-shadow: var(--shadow-sm);
}
.inner-page-cta h2 { margin: 0 0 16px; font-size: clamp(1.5rem, 1.15rem + 1.15vw, 2.1rem); }
.inner-page-cta p { color: var(--muted); }
.inner-page-cta .inner-page-button { margin-bottom: 0; }

/* [faqs] → flat h2/p pairs; JS folds them into <details> */
.inner-page-faqs { margin: 36px 0 44px; border-top: 1px solid var(--rule); }
.inner-page-faqs h2 {
  font-size: 1.12rem !important; font-family: var(--display); font-weight: 650;
  margin: 0; padding: 20px 0 8px; border-top: 0; color: var(--ink);
}
.inner-page-faqs h2::before { display: none; }
.inner-page-faqs > p { padding-bottom: 20px; border-bottom: 1px solid var(--rule); color: var(--muted); font-size: 15.8px; }

/* Enhanced state (JS on) */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item > summary {
  list-style: none; cursor: pointer; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--display); font-weight: 650; font-size: 1.1rem; color: var(--ink);
  line-height: 1.35; letter-spacing: -.01em;
  transition: color .16s var(--ease);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { color: var(--brand-600); }
.faq-item > summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  margin-top: -6px;
  background: currentColor; color: var(--brand-400);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v18M3 12h18' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3v18M3 12h18' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .24s var(--ease);
}
.faq-item[open] > summary::after { transform: rotate(45deg); }
.faq-item[open] > summary { color: var(--brand-600); }
.faq-body { padding: 0 44px 22px 0; color: var(--muted); font-size: 15.8px; }
.faq-body > *:last-child { margin-bottom: 0; }

/* [expand_section] / [expand_hidden] */
.expand-section { margin: 32px 0; }
.expand-hidden-content { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.expand-hidden-content.open { max-height: 4000px; }
.expand-toggle {
  margin-top: 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  background: transparent; color: var(--brand-600);
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: 12px 22px; cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.expand-toggle:hover { border-color: var(--brand-300); background: var(--brand-50); }

/* WP core [gallery] */
.entry .gallery { display: grid; gap: 14px; margin: 36px 0; }
.entry .gallery-columns-2 { grid-template-columns: 1fr 1fr; }
.entry .gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.entry .gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 620px) { .entry .gallery { grid-template-columns: 1fr !important; } }
.entry .gallery-item { margin: 0; }
.entry .gallery-icon { position: relative; overflow: hidden; border-radius: var(--r); }
.entry .gallery-icon img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .5s var(--ease); }
.entry .gallery-icon a:hover img { transform: scale(1.04); }
.entry .gallery-caption { font-family: var(--mono); font-size: 11px; color: var(--faint); margin-top: 8px; }

/* --------------------------------------------------------------------------
   17. SIDEBAR
   -------------------------------------------------------------------------- */
.sidebar { align-self: start; }

.sb { margin-bottom: 22px; }
.sb:last-child { margin-bottom: 0; }
.sb-head {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 9px;
}
.sb-head::before { content: ""; width: 6px; height: 6px; background: var(--flag); flex: none; transform: rotate(45deg); }

/* Quote form block */
.sb-quote {
  background: var(--brand-600);
  border-radius: var(--r-lg);
  padding: 26px 24px;
  position: relative; overflow: hidden; isolation: isolate;
}
.sb-quote::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(90% 120% at 100% 0%, rgba(255,255,255,.14) 0%, transparent 58%);
}
.sb-quote .sb-head { color: #fff; border-bottom-color: rgba(255,255,255,.22); }
.sb-quote .sb-note {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .08em;
  color: rgba(255,255,255,.72); margin: 14px 0 0; line-height: 1.6;
}

/* Card blocks */
.sb-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--r-lg); padding: 22px 22px 18px;
}
.sb-list { list-style: none; margin: 0; padding: 0; }
.sb-list li { border-bottom: 1px solid var(--rule-2); }
.sb-list li:last-child { border-bottom: 0; }
.sb-list a {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 0; font-size: 14.8px; color: var(--ink-2);
  transition: color .16s var(--ease), padding-left .16s var(--ease);
}
.sb-list a:hover { color: var(--brand-600); padding-left: 5px; }
.sb-list .idx { font-family: var(--mono); font-size: 10px; color: var(--brand-400); flex: none; }
.sb-list a:hover .idx { color: var(--flag-ink); }
.sb-list li.current a { color: var(--brand-600); font-weight: 600; }
.sb-list li.current .idx { color: var(--flag-ink); }

/* News block */
.sb-post { display: flex; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--rule-2); }
.sb-post:last-child { border-bottom: 0; padding-bottom: 0; }
.sb-post img { width: 74px; height: 56px; object-fit: cover; border-radius: var(--r-sm); flex: none; }
.sb-post .t { font-size: 14px; font-weight: 600; line-height: 1.35; color: var(--ink); transition: color .16s var(--ease); }
.sb-post:hover .t { color: var(--brand-600); }
.sb-post .d { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-top: 6px; }

/* --------------------------------------------------------------------------
   18. FORMS
   -------------------------------------------------------------------------- */
.field { margin-bottom: 13px; }
.field label {
  display: block; font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field label .req { color: var(--flag-ink); }

.input, .textarea, .select {
  width: 100%; display: block;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 12px 14px;
  font-size: 15px; color: var(--ink);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.input::placeholder, .textarea::placeholder { color: var(--faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(33,54,109,.12);
}
.textarea { min-height: 108px; resize: vertical; }
.select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235C6880' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 15px;
  padding-right: 38px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* On the brand-blue sidebar */
.sb-quote .field label { color: rgba(255,255,255,.78); }
.sb-quote .field label .req { color: var(--flag-lite); }
.sb-quote .input, .sb-quote .textarea, .sb-quote .select {
  background-color: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
  color: #fff;
}
.sb-quote .input::placeholder, .sb-quote .textarea::placeholder { color: rgba(255,255,255,.45); }
.sb-quote .input:focus, .sb-quote .textarea:focus, .sb-quote .select:focus {
  background-color: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); box-shadow: none;
}
.sb-quote .select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 15px;
}
.sb-quote .select option { color: var(--ink); }
.sb-quote .btn-on-dark { margin-top: 4px; }

/* Forms placed directly on a dark section (e.g. the newsletter block) */
.section--deep .field label, .section--brand .field label { color: rgba(255,255,255,.78); }
.section--deep .field label .req, .section--brand .field label .req { color: var(--flag-lite); }
.section--deep .input, .section--deep .textarea, .section--deep .select,
.section--brand .input, .section--brand .textarea, .section--brand .select {
  background-color: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: #fff;
}
.section--deep .input::placeholder, .section--brand .input::placeholder { color: rgba(255,255,255,.5); }
.section--deep .input:focus, .section--brand .input:focus {
  background-color: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); box-shadow: none;
}
.section--deep .err, .section--brand .err { color: #FFC9B8; }
.section--deep .form-msg.ok, .section--brand .form-msg.ok {
  background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.34);
}

.form-msg {
  display: none; margin-top: 12px; padding: 11px 14px; border-radius: var(--r);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .05em; line-height: 1.6;
}
.form-msg.is-on { display: block; }
.form-msg.ok { background: rgba(27,138,90,.12); color: var(--ok); border: 1px solid rgba(27,138,90,.3); }
.sb-quote .form-msg.ok { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.34); }
.field.has-error .input, .field.has-error .textarea, .field.has-error .select { border-color: #C8442C; }
.err { display: none; font-family: var(--mono); font-size: 10.5px; color: #C8442C; margin-top: 5px; letter-spacing: .04em; }
.field.has-error .err { display: block; }
.sb-quote .err { color: #FFC9B8; }

/* --------------------------------------------------------------------------
   19. PORTFOLIO — matches [display_portfolio] and [portfolio_grid] output
   -------------------------------------------------------------------------- */
.portfolio-slider { position: relative; }
.portfolio-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px;
}
.portfolio-track::-webkit-scrollbar { display: none; }
.portfolio-item { flex: 0 0 clamp(260px, 30%, 380px); scroll-snap-align: start; }
.portfolio-item > a { display: block; color: inherit; }
.portfolio-item img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-lg); border: 1px solid var(--rule);
  transition: transform .5s var(--ease), border-color .2s var(--ease);
}
.portfolio-item > a:hover img { transform: translateY(-3px); border-color: var(--brand-300); }
.portfolio-item h4 {
  margin: 16px 0 0; font-size: 1.02rem; font-weight: 650; color: var(--ink);
  transition: color .16s var(--ease);
}
.portfolio-item > a:hover h4 { color: var(--brand-600); }
.portfolio-dots { display: flex; gap: 7px; justify-content: center; margin-top: 28px; }
.portfolio-dots button {
  width: 22px; height: 3px; border: 0; padding: 0; cursor: pointer; border-radius: 2px;
  background: var(--rule); transition: background .2s var(--ease), width .2s var(--ease);
}
.portfolio-dots button.is-active { background: var(--flag); width: 34px; }
.section--deep .portfolio-dots button { background: rgba(255,255,255,.24); }
.section--deep .portfolio-dots button.is-active { background: var(--flag); }
.section--deep .portfolio-item h4 { color: #fff; }
.section--deep .portfolio-item img { border-color: rgba(255,255,255,.14); }

/* Archive grid */
.portfolio-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
@media (max-width: 980px) { .portfolio-archive-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 600px)  { .portfolio-archive-grid { grid-template-columns: 1fr; } }

.ast-article-post {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.ast-article-post:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-3px); }
.portfolio-thumbnail { overflow: hidden; background: var(--brand-50); }
.portfolio-thumbnail img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .55s var(--ease); }
.ast-article-post:hover .portfolio-thumbnail img { transform: scale(1.045); }
.portfolio-content { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.portfolio-title { font-size: 1.08rem; margin: 0; line-height: 1.3; }
.portfolio-title a { color: var(--ink); }
.portfolio-title a:hover { color: var(--brand-600); }
.portfolio-location {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); margin: 0; display: flex; align-items: center; gap: 7px;
}
.portfolio-location::before { content: ""; width: 5px; height: 5px; background: var(--flag); transform: rotate(45deg); flex: none; }

/* Filter bar (portfolio archive) */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filters button {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--white); color: var(--muted);
  border: 1px solid var(--rule); border-radius: 100px; padding: 9px 18px; cursor: pointer;
  transition: all .18s var(--ease);
}
.filters button:hover { border-color: var(--brand-300); color: var(--brand-600); }
.filters button.is-active { background: var(--brand-600); border-color: var(--brand-600); color: #fff; }
.is-hidden { display: none !important; }

/* --------------------------------------------------------------------------
   20. TESTIMONIALS — matches [testimonials] output
   (delete the inline <style> block inside the PHP; this replaces it)
   -------------------------------------------------------------------------- */
.mfg-testimonials-wrapper { max-width: none; margin: 0; padding: 0; }
.mfg-testimonials-slider { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
@media (max-width: 980px) { .mfg-testimonials-slider { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .mfg-testimonials-slider { grid-template-columns: 1fr; } }
.mfg-testimonials-single { padding: 0; text-align: left; }
.mfg-testimonials-single-s {
  display: flex; flex-direction: column; height: 100%;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 26px 24px; position: relative;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.mfg-testimonials-single-s:hover { border-color: var(--brand-200); box-shadow: var(--shadow); }
.mfg-testimonials-single-s::before {
  content: "\201C"; position: absolute; top: 10px; right: 20px;
  font-family: var(--display); font-size: 66px; line-height: 1; color: var(--brand-100);
}
.testimonial-img { flex: none; }
.testimonial-header { margin: 0 0 16px; }
.mfg-testimonials-img { width: 46px; height: 46px; border-radius: var(--r); object-fit: cover; margin: 0; display: block; }
.testimonial-content { background: none; padding: 0; border: 0; flex: 1; display: flex; flex-direction: column; }
.testimonial-rating { margin-bottom: 12px; display: flex; gap: 2px; }
.testimonial-rating .star { color: var(--rule); font-size: 14px; }
.testimonial-rating .star.filled { color: var(--flag); }
.mfg-testimonials-content {
  text-align: left; font-size: 15.4px; font-style: normal; line-height: 1.62;
  color: var(--ink-2); margin: 0 0 20px; flex: 1;
}
.mfg-testimonials-name {
  margin: 0 !important; font-size: 13px; text-transform: none; text-align: left;
  font-weight: 650; color: var(--ink); padding-top: 14px; border-top: 1px solid var(--rule-2);
}
.mfg-testimonials-meta {
  color: var(--faint); font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; margin: 5px 0 0;
}

/* --------------------------------------------------------------------------
   21. BLOG
   -------------------------------------------------------------------------- */
.post-card {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; height: 100%;
  transition: border-color .2s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.post-card:hover { border-color: var(--brand-200); box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card .thumb { overflow: hidden; background: var(--brand-50); }
.post-card .thumb img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .55s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.045); }
.post-card .body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 12px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.post-meta .cat { color: var(--brand-600); }
.post-meta .dot { width: 4px; height: 4px; background: var(--rule); border-radius: 50%; }
.post-card h3 { font-size: 1.14rem; margin: 0 0 10px; line-height: 1.32; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--brand-600); }
.post-card .ex { color: var(--muted); font-size: 14.8px; margin: 0 0 18px; flex: 1; }

.post-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 32px;
}
.post-feature .thumb img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.post-feature .body { padding: clamp(26px, 2.4vw + 14px, 44px); display: flex; flex-direction: column; justify-content: center; }
.post-feature h2 { font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem); margin-bottom: 14px; }
.post-feature h2 a { color: var(--ink); }
.post-feature h2 a:hover { color: var(--brand-600); }
.post-feature .ex { color: var(--muted); margin-bottom: 24px; }
@media (max-width: 820px) { .post-feature { grid-template-columns: 1fr; } .post-feature .thumb img { min-height: 220px; } }

/* Article body */
.article-body { font-size: 17.5px; line-height: 1.78; color: var(--ink-2); }
.article-body > h2 { margin: 48px 0 16px; padding-top: 26px; border-top: 1px solid var(--rule); position: relative; scroll-margin-top: 110px; }
.article-body > h2::before { content: ""; position: absolute; top: -1px; left: 0; width: 46px; border-top: 2px solid var(--flag); }
.article-body > h3 { margin: 34px 0 12px; }
.article-body blockquote {
  margin: 34px 0; padding: 4px 0 4px 26px; border-left: 3px solid var(--flag);
  font-family: var(--display); font-size: 1.28rem; font-weight: 600; line-height: 1.45;
  color: var(--ink); letter-spacing: -.015em;
}
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body figure img { border-radius: var(--r-lg); }

.article-hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; border-radius: var(--r-lg); }

.share { display: flex; gap: 8px; align-items: center; }
.share .lbl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); margin-right: 4px; }
.share a {
  width: 34px; height: 34px; border: 1px solid var(--rule); border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--muted);
  transition: all .18s var(--ease);
}
.share a:hover { border-color: var(--brand-300); color: var(--brand-600); background: var(--white); }
.share svg { width: 14px; height: 14px; fill: currentColor; }

.author-box {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: 26px 26px; margin: 44px 0 0;
}
.author-box img { width: 62px; height: 62px; border-radius: var(--r); object-fit: cover; flex: none; }
.author-box .nm { font-family: var(--display); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.author-box .rl { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--flag-ink); margin: 4px 0 10px; }
.author-box p { font-size: 14.8px; color: var(--muted); margin: 0; }
@media (max-width: 520px) { .author-box { flex-direction: column; } }

/* --------------------------------------------------------------------------
   22. CONTACT
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(28px, 3vw, 56px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form-panel { background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-lg); padding: clamp(26px, 2.4vw + 14px, 42px); }
.form-panel .field label { color: var(--muted); }

.info-card { background: var(--brand-950); color: rgba(255,255,255,.76); border-radius: var(--r-lg); padding: 32px 30px; margin-bottom: 20px; position: relative; overflow: hidden; isolation: isolate; }
.info-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 100% 0%, rgba(66,96,174,.4) 0%, transparent 60%); }
.info-card h3 { color: #fff; margin-bottom: 20px; font-size: 1.2rem; }
.info-row { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row .k { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-300); flex: none; width: 56px; padding-top: 4px; }
.info-row .v { font-size: 15px; color: #fff; line-height: 1.5; }
.info-row .v a { color: #fff; }
.info-row .v a:hover { color: var(--brand-200); }
.info-row .v small { display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .06em; color: rgba(255,255,255,.66); margin-top: 4px; }

/* --------------------------------------------------------------------------
   23. MOTION + UTILITIES
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* Placeholder frame used where client screenshots will drop in */
.shotframe {
  background: linear-gradient(155deg, var(--brand-800), var(--brand-950));
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  aspect-ratio: 4/3; display: grid; place-items: center; padding: 24px;
}
.shotframe::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, rgba(255,255,255,.05) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.05) 0 1px, transparent 1px 34px);
}
.shotframe .nm {
  position: relative; font-family: var(--display); font-weight: 800; font-variation-settings: "wdth" 112;
  font-size: 1.3rem; color: #fff; text-align: center; letter-spacing: -.02em; line-height: 1.2;
}
.shotframe .lc {
  position: relative; display: block; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-200); margin-top: 10px; font-weight: 400;
}

@media print {
  .site-header, .topbar, .sidebar, .site-footer, .inner-page-cta-banner { display: none !important; }
  body { background: #fff; }
  .layout { grid-template-columns: 1fr; }
}
