:root {
  --bg: #f5f1e8;
  --bg-alt: #ede8db;
  --fg: #1f1d1a;
  --muted: #6b6a66;
  --accent: #4a7c59;
  --accent-hover: #3d6948;
  --accent-soft: #e6ede7;
  --line: #e2dccb;
  --card: #fbf9f3;
  --card-border: #e2dccb;
  --shadow: 0 1px 3px rgba(31, 29, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(31, 29, 26, 0.06);
  --serif: Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Type scale — golden ratio (φ ≈ 1.618) from 17px base */
  --t-xs: 11px;       /* captions, fine print */
  --t-sm: 14px;       /* meta, labels, tags */
  --t-base: 17px;     /* body — base */
  --t-lg: 21px;       /* lead, large body */
  --t-xl: 28px;       /* h3 large, secondary headlines */
  --t-2xl: 45px;      /* h2 */
  --t-3xl: 73px;      /* h1 */

  /* Line heights */
  --lh-tight: 1.1;    /* headlines */
  --lh-snug: 1.3;     /* h3, leads */
  --lh-base: 1.6;     /* body */
  --lh-loose: 1.75;   /* long-form */

  /* Spacing scale — 8px base, doubling + golden multiples */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;
  --s-10: 160px;

  /* Component */
  --radius: 6px;
  --radius-sm: 4px;
  --radius-lg: 10px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(circle at 1px 1px, rgba(31, 29, 26, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }

/* ============ NAV ============ */

.nav {
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, 0.85);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Brand lockup — measured + golden ratio.
   Primary 'Founder AI' 18px Georgia → 91px wide
   Secondary 'OPERATING SYSTEM' 8px sans bold tracking 0.04em → 91px wide (matched)
   Text block: 18 + 4 (gap) + 8 = 30px
   Logo: 30 × φ = 48px (golden ratio, logo dominates)
   F inside logo: italic Georgia, 32px (more elegant than upright)
   Outer gap: 18px (= primary text size)
*/
.nav-brand {
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  line-height: 1;
}
.nav-brand:hover { text-decoration: none; color: var(--fg); }
.nav-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 5px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  flex-shrink: 0;
  line-height: 1;
  padding-bottom: 4px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  gap: 4px;
}
.brand-primary {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.012em;
  color: var(--fg);
  font-weight: 400;
  line-height: 1;
}
.brand-primary em { font-style: normal; color: var(--fg); }
.brand-secondary {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.012em;
  color: var(--muted);
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}
.brand-secondary .dot { display: none; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--fg); font-size: 14.5px; font-weight: 500; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent);
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.nav-cta:hover { background: var(--accent-hover); text-decoration: none !important; color: #ffffff !important; }

/* ============ LAYOUT ============ */

.wrap { max-width: 1080px; margin: 0 auto; padding: 40px 48px 64px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 40px 48px 64px; }

/* ============ TYPOGRAPHY ============ */

h1 {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.028em;
  margin-bottom: 28px;
  font-weight: 400;
  color: var(--fg);
}
@media (min-width: 720px) { h1 { font-size: 72px; } }

h2 {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.2;
  margin-top: 80px;
  margin-bottom: 20px;
  letter-spacing: -0.018em;
  font-weight: 400;
  color: var(--fg);
}

h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--fg);
}

p { margin-bottom: 16px; color: var(--fg); font-size: 17px; line-height: 1.65; }

.lead {
  font-size: 22px;
  line-height: 1.45;
  color: var(--fg);
  margin-bottom: 36px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.muted { color: var(--muted); font-size: 15px; }
strong { font-weight: 600; }
ul { margin: 0 0 16px 22px; }
li { margin-bottom: 8px; color: var(--fg); font-size: 17px; line-height: 1.65; }

/* ============ KICKER (eyebrow label) ============ */

.kicker {
  display: inline-block;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 5px;
  margin-bottom: 28px;
  font-weight: 600;
  font-family: var(--sans);
}

/* ============ PROOF CHIPS (under hero) ============ */

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.proof-chip {
  background: transparent;
  border: 1px solid var(--card-border);
  padding: 6px 13px;
  border-radius: 100px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: all 0.15s;
}
.proof-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ============ SERVICES (homepage cards) ============ */

.services {
  display: grid;
  gap: 14px;
  margin: 32px 0 8px;
}
@media (min-width: 720px) { .services { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (min-width: 980px) { .services { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 18px; } }
.service {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 32px 28px 28px;
  transition: transform 0.18s ease, border-color 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--accent);
  transition: width 0.25s ease;
}
.service:hover { transform: translateY(-2px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.service:hover::before { width: 100%; }
.service-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
.service-tag {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.2;
}
.service-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ============ SERVICE BLOCK (services page detail) ============ */

.service-block {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 16px 0;
}
.service-block h3 { margin-top: 0; font-size: 18px; font-weight: 600; }
.service-block .meta {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.service-block p { font-size: 15.5px; }
.service-block ul { margin-top: 14px; }
.service-block li { font-size: 15px; line-height: 1.55; margin-bottom: 8px; }

/* ============ METHOD GRID ============ */

.method-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
@media (min-width: 720px) { .method-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.method {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 22px 24px;
}
.method-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.method-title { font-family: var(--serif); font-size: 18px; margin-bottom: 8px; color: var(--fg); }
.method-desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ============ PROGRAMME LIST ============ */

.programme-list { margin: 20px 0; }
.programme {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 16px 22px;
  margin-bottom: 10px;
}
.programme-name { font-family: var(--serif); font-size: 17px; color: var(--fg); margin-bottom: 4px; }
.programme-meta { color: var(--muted); font-size: 13.5px; }

/* ============ EXPERTISE GRID (about) ============ */

.expertise-grid {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
@media (min-width: 720px) { .expertise-grid { grid-template-columns: 1fr 1fr; } }
.expertise {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 4px;
}
.expertise-name { font-weight: 600; font-size: 14.5px; margin-bottom: 4px; color: var(--fg); }
.expertise-detail { color: var(--muted); font-size: 13.5px; line-height: 1.5; }

/* ============ PRINCIPLES (about) ============ */

.principles-list { margin: 24px 0; }
.principle {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 22px 26px;
  margin-bottom: 12px;
}
.principle h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--fg);
}
.principle p { margin-bottom: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ============ CONTACT FORM ============ */

.contact-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 36px 40px;
  margin: 48px 0 0;
}
.contact-box h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.contact-box .intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14.5px;
}
.contact-box a.btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
}
.contact-box a.btn:hover { background: var(--accent-hover); text-decoration: none; }

.contact-form { display: grid; gap: 16px; }
.contact-form label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--card-border);
  border-radius: 4px;
  background: var(--bg);
  font-family: inherit;
  font-size: 15px;
  color: var(--fg);
  -webkit-appearance: none;
  transition: border-color 0.15s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .row { display: grid; gap: 16px; }
@media (min-width: 600px) { .contact-form .row { grid-template-columns: 1fr 1fr; } }
.contact-form button {
  background: var(--accent);
  color: #ffffff;
  padding: 13px 28px;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 6px;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.contact-form button:hover { background: var(--accent-hover); }
.contact-form .honeypot { display: none; }
.contact-note { font-size: 12.5px; color: var(--muted); text-align: center; margin-top: 14px; }

/* ============ LEGAL TABLE ============ */

.legal-table {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 6px 28px;
  margin: 20px 0;
}
.legal-table dl { margin: 0; }
.legal-table dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 18px;
  font-weight: 600;
}
.legal-table dd {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--fg);
}

/* ============ DARK GREEN COLOR BLOCK ============ */

.color-block {
  background: #1f3a2c;
  color: #e8eee9;
  margin: 80px calc(-50vw + 50%) 0;
  padding: 96px 0 96px;
  position: relative;
}
.color-block-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.color-block-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #88a890;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
}
.color-block-title {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: #f5f1e8;
  font-weight: 400;
  margin-bottom: 0;
}
@media (min-width: 720px) { .color-block-title { font-size: 48px; } }
.color-block-title em { font-style: italic; color: #c9d8b9; }
.color-block-attr {
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a9684;
  font-weight: 700;
}

/* ============ STATS BLOCK ============ */

.stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 56px 0;
  padding: 40px 0;
  border-top: 2px solid var(--fg);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
@media (min-width: 720px) { .stats { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; } }
.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-weight: 400;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============ METHODOLOGY DIAGRAM ============ */

.method-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 32px 0;
  position: relative;
}
@media (min-width: 720px) {
  .method-flow {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
  }
}
.method-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 24px 22px;
  position: relative;
  border-radius: 6px;
}
@media (min-width: 720px) {
  .method-step { border-radius: 0; }
  .method-step:first-child { border-radius: 6px 0 0 6px; }
  .method-step:last-child { border-radius: 0 6px 6px 0; border-right: 1px solid var(--card-border); }
  .method-step + .method-step { border-left: none; }
  .method-step::after {
    content: "→";
    position: absolute;
    right: -10px;
    top: 28px;
    color: var(--accent);
    font-size: 18px;
    font-weight: 700;
    background: var(--bg);
    padding: 0 4px;
    z-index: 2;
  }
  .method-step:last-child::after { display: none; }
}
.method-step-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: block;
}
.method-step-title {
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.method-step-desc { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ============ WORK EXAMPLES ============ */

.work-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 24px;
  padding: 12px 16px;
  background: var(--bg-alt);
  border-radius: 4px;
  border-left: 3px solid var(--accent);
}

.work-examples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin: 28px 0;
}
@media (min-width: 720px) { .work-examples { grid-template-columns: 1fr 1fr; gap: 20px; } }
.work {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
}
.work-tag {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}
.work-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  display: block;
}
.work-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.work-section { margin-bottom: 14px; font-size: 14px; line-height: 1.65; }
.work-section:last-child { margin-bottom: 0; }
.work-section .label {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-right: 8px;
  margin-bottom: 4px;
}
.work-section .text { color: var(--fg); }
.work-outcome {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 600;
}

/* ============ SCENARIOS BLOCK ============ */

.scenarios {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}
@media (min-width: 720px) { .scenarios { grid-template-columns: 1fr 1fr; } }
.scenario {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 26px 28px;
  position: relative;
  padding-left: 32px;
}
.scenario::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 2px 2px 0;
}
.scenario-when {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.scenario-title {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--fg);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.scenario-text { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ============ FAQ ============ */

.faq { margin: 28px 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.faq-q::before {
  content: "→";
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
}
.faq-a { color: var(--muted); font-size: 15px; line-height: 1.65; padding-left: 28px; }

/* ============ NEGATIVE LIST ("What we don't do") ============ */

.negative {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 28px 0;
}
.negative-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.negative-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.negative-list li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--muted);
  font-size: 14.5px;
  border-top: 1px solid var(--line);
}
.negative-list li:first-child { border-top: none; }
.negative-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #b85a4a;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  top: 12px;
}

/* ============ LANGUAGES CHIP ============ */

.languages {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-left: 14px;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

/* ============ MOBILE NAV ============ */

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

@media (max-width: 700px) {
  .nav-toggle-label {
    display: block;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle-label span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    margin: 5px 0;
    transition: transform 0.2s;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 0 16px;
    align-items: stretch;
    display: none;
  }
  .nav-links a {
    padding: 12px 28px;
    width: 100%;
  }
  .nav-cta {
    margin: 8px 28px 0;
    text-align: center;
    width: auto !important;
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
}

/* ============ FOOTER ============ */

/* ============ HERO LAYOUT (with side meta) ============ */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) 280px; gap: 64px; }
}
.hero-side {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-side::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.hero-side-kicker {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.hero-side-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-side-list li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.hero-side-list li:last-child { border-bottom: none; padding-bottom: 0; }
.hero-side-list .label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-side-list .value {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--fg);
  letter-spacing: -0.005em;
  text-align: right;
}

/* ============ DIFFERENTIATORS STRIP ============ */

.diff-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
@media (min-width: 720px) { .diff-strip { grid-template-columns: 1fr 1fr 1fr; } }
.diff {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .diff { border-bottom: none; border-right: 1px solid var(--line); }
  .diff:last-child { border-right: none; }
}
.diff:last-child { border-bottom: none; }
.diff-num {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}
.diff-name {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.diff-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }

/* ============ PRACTICE AREAS (editorial rows) ============ */

.practice-areas {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
}
.practice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
  position: relative;
}
@media (min-width: 720px) {
  .practice { grid-template-columns: 100px 1fr; gap: 32px; padding: 44px 0; align-items: baseline; }
}
@media (min-width: 980px) {
  .practice { grid-template-columns: 100px 280px 1fr; gap: 40px; }
}
.practice-num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.practice-name {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -0.018em;
  line-height: 1.15;
  font-weight: 400;
}
.practice-desc { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 580px; }
.practice-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.practice-tag {
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ============ MANIFESTO / PULL QUOTE ============ */

.manifesto {
  margin: 96px 0;
  padding: 56px 0 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--fg);
  font-weight: 400;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 720px) { .manifesto-text { font-size: 38px; } }
.manifesto-text em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-attr {
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ============ SUBSIDY LIST (homepage redesign) ============ */

.subsidies {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}
.subsidy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 600px) {
  .subsidy { grid-template-columns: 220px 1fr; gap: 24px; align-items: baseline; }
}
.subsidy-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.subsidy-meta { color: var(--muted); font-size: 14.5px; }

.footer {
  border-top: 1px solid var(--line);
  margin-top: 96px;
  background: var(--bg);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 48px 48px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}
.footer-brand-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  gap: 4px;
}
.footer-monogram { display: none; }
.footer-brand {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--fg);
  margin: 0;
  display: block;
  letter-spacing: -0.01em;
}
.footer-brand em {
  font-style: normal;
  color: var(--fg);
}
.footer-tagline {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.footer-links { margin-bottom: 8px; }
.footer-links a { color: var(--muted); margin: 0 10px; font-size: 13.5px; }
.footer-links a:hover { color: var(--accent); }
.footer-links-small { margin-top: 8px; font-size: 12.5px; }
.footer-links-small a { font-size: 12.5px; }

/* ============ FIT 4 AI PAGE ============ */

/* Funding info box */
.f4a-funding-box {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 28px 0;
}
.f4a-funding-box h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--fg);
}
.f4a-funding-box dl { margin: 0; }
.f4a-funding-box dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-top: 16px;
}
.f4a-funding-box dt:first-of-type { margin-top: 0; }
.f4a-funding-box dd {
  font-size: 15px;
  color: var(--fg);
  margin: 4px 0 0;
  line-height: 1.6;
}

/* Landscape / competitor context box */
.f4a-landscape {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 24px 28px;
  margin: 32px 0;
  border-left: 3px solid var(--accent);
}
.f4a-landscape h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.f4a-landscape p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* Diagnostic modules */
.f4a-modules {
  margin: 28px 0;
  display: grid;
  gap: 14px;
}
.f4a-module {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 26px 30px;
  position: relative;
  overflow: hidden;
}
.f4a-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.f4a-module--optional {
  border-style: dashed;
}
.f4a-module--optional::before {
  background: var(--muted);
}
.f4a-module-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
}
.f4a-module-num {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.f4a-module--optional .f4a-module-num {
  color: var(--muted);
}
.f4a-module-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.f4a-module-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--fg);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.f4a-optional-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  border: 1px solid var(--line);
  padding: 2px 8px;
  border-radius: 100px;
  vertical-align: middle;
  margin-left: 6px;
}
.f4a-module ul {
  margin: 0 0 0 20px;
  padding: 0;
}
.f4a-module li {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 6px;
}
.f4a-module li:last-child { margin-bottom: 0; }

/* Timeline table */
.f4a-timeline {
  margin: 24px 0;
  border-top: 2px solid var(--fg);
}
.f4a-timeline-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .f4a-timeline-row {
    grid-template-columns: 1fr 140px 200px;
    gap: 24px;
    align-items: center;
  }
}
.f4a-timeline-engagement {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.f4a-timeline-duration {
  font-size: 14px;
  color: var(--muted);
}
.f4a-timeline-funding {
  font-size: 14px;
  color: var(--muted);
}
.f4a-funded-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Co-funding steps */
.f4a-steps {
  margin: 28px 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}
.f4a-step {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.f4a-step:first-child {
  border-top: 1px solid var(--line);
}
.f4a-step-num {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}
.f4a-step p {
  margin: 0;
  font-size: 15.5px;
  color: var(--fg);
  line-height: 1.6;
}

/* ============ PRINT ============ */

@media print {
  body { background: #ffffff; color: #000000; font-size: 11pt; line-height: 1.4; }
  .nav, .footer, .contact-box, .nav-cta { display: none; }
  .wrap, .wrap-narrow { padding: 0; max-width: 100%; }
  a { color: #000000; text-decoration: underline; }
  h1 { font-size: 24pt; margin-bottom: 12pt; }
  h2 { font-size: 16pt; margin-top: 20pt; margin-bottom: 8pt; }
  .practice, .service-block, .scenario { page-break-inside: avoid; border: 1px solid #ccc; }
  .color-block { background: none; color: #000000; padding: 20pt 0; }
}
