@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/fonts/DMSerifDisplay-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Libre Franklin";
  src: url("/assets/fonts/LibreFranklin-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/* ------------------------------------------------------------------
   Tokens. One dark, one paper, one accent. No radius, no shadow.
   ------------------------------------------------------------------ */
:root {
  --navy-950: #0a1630;
  --navy-900: #0f2044;
  --navy-800: #16295a;
  --gold: #c9a84c;
  --gold-deep: #a8883a;
  --ink: #121826;
  --slate: #4a5260;
  --muted: #7a818e;
  --line: #d8d4cb;
  --line-dark: rgba(255, 255, 255, .16);
  --paper: #f2f0eb;
  --paper-deep: #e6e2d9;
  --white: #ffffff;
  --content: 1240px;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Libre Franklin", Arial, Helvetica, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { color: var(--navy-950); background: var(--gold); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: .7rem 1rem;
  transform: translateY(-160%);
  color: var(--navy-950);
  background: var(--gold);
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

/* ------------------------------------------------------------------
   Layout primitives
   ------------------------------------------------------------------ */
.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.narrow { width: min(calc(100% - 48px), 820px); margin-inline: auto; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.section-soft { background: var(--paper); }
.section-blue { background: var(--paper); }
.section-dark { color: var(--white); background: var(--navy-950); }
.grid { display: grid; gap: 0; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* Rules between grid cells instead of card boxes */
.grid.three-col > *, .grid.two-col > * { border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.grid.three-col > :nth-child(3n+1), .grid.two-col > :nth-child(2n+1) { border-left: 0; }
.grid.three-col > :nth-child(-n+3), .grid.two-col > :nth-child(-n+2) { border-top: 0; }
.section-dark .grid > * { border-color: var(--line-dark); }

/* ------------------------------------------------------------------
   Type
   ------------------------------------------------------------------ */
.eyebrow {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-deep);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: var(--gold); }
.display {
  max-width: 14ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .94;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; text-wrap: balance; }
h2 { margin-bottom: 24px; font-size: clamp(2.2rem, 4.4vw, 4rem); letter-spacing: -.03em; line-height: 1; }
h3 { margin-bottom: 12px; font-size: 1.45rem; letter-spacing: -.015em; line-height: 1.2; }
.lead { max-width: 640px; color: var(--slate); font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; }
.section-dark .lead, .hero .lead, .page-hero .lead { color: rgba(255,255,255,.72); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 60px; margin-bottom: 64px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.section-dark .section-heading { border-color: var(--line-dark); }
.section-heading h2 { margin-bottom: 0; }
.section-heading p { max-width: 460px; margin-bottom: 4px; color: var(--slate); }
.section-dark .section-heading p { color: rgba(255,255,255,.7); }
.kicker { color: var(--gold-deep); font-weight: 700; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.text-link::after { content: "\2192"; transition: transform .2s ease; }
.text-link:hover { color: var(--gold-deep); }
.text-link:hover::after { transform: translateX(5px); }
.section-dark .text-link, .hero .text-link { color: var(--white); }
.section-dark .text-link:hover, .hero .text-link:hover { color: var(--gold); }

/* ------------------------------------------------------------------
   Buttons. Flat. Rectangular. Two states.
   ------------------------------------------------------------------ */
.button-row { display: flex; flex-wrap: wrap; gap: 0; margin-top: 40px; }
.button-row .btn + .btn { margin-left: -1px; }
.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1px solid var(--navy-950);
  border-radius: 0;
  color: var(--navy-950);
  background: transparent;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.15;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { color: var(--white); background: var(--navy-950); }
.btn-primary:hover { color: var(--navy-950); background: var(--gold); border-color: var(--gold); }
.btn-outline { color: var(--navy-950); }
.btn-outline:hover { color: var(--white); background: var(--navy-950); }
.btn-light { color: var(--navy-950); border-color: var(--white); background: var(--white); }
.btn-light:hover { color: var(--navy-950); border-color: var(--gold); background: var(--gold); }
.btn-on-dark { color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-on-dark:hover { border-color: var(--white); background: var(--white); color: var(--navy-950); }
.section-dark .btn-outline, .hero .btn-outline { color: var(--white); border-color: rgba(255,255,255,.4); }

/* ------------------------------------------------------------------
   Header: dark, single plane, gold hairline.
   ------------------------------------------------------------------ */
.topbar { color: rgba(255,255,255,.62); background: var(--navy-950); border-bottom: 1px solid var(--line-dark); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.topbar-inner { display: flex; min-height: 40px; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-list { display: flex; align-items: center; gap: 28px; }
.topbar a:hover { color: var(--gold); }
.site-header { position: sticky; top: 0; z-index: 100; color: var(--white); background: var(--navy-950); border-bottom: 1px solid var(--gold); }
.nav-shell { display: flex; min-height: 88px; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 16px; color: var(--white); }
.brand img { width: 46px; height: 46px; }
.brand-word { display: grid; line-height: 1; }
.brand-word strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: .16em; text-transform: uppercase; }
.brand-word span { margin-top: 5px; color: var(--gold); font-size: .6rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 8px; }
.desktop-nav > a, .nav-dropdown > button {
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: rgba(255,255,255,.78);
  background: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav > a:hover, .desktop-nav > a[aria-current="page"], .nav-dropdown > button:hover { color: var(--white); border-bottom-color: var(--gold); }
.nav-dropdown { position: relative; }
.nav-dropdown > button::after { margin-left: 8px; font-size: .65em; content: "\25BE"; color: var(--gold); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  display: grid;
  width: 340px;
  padding: 8px 0;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--gold);
  background: var(--navy-950);
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.dropdown-menu a { padding: 12px 20px; color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 600; border-top: 1px solid var(--line-dark); }
.dropdown-menu a:first-child { border-top: 0; }
.dropdown-menu a:hover { color: var(--navy-950); background: var(--gold); }
.dropdown-menu .dropdown-all { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
.nav-actions { display: flex; align-items: center; gap: 0; }
.nav-actions .btn { min-height: 46px; padding: 10px 18px; font-size: .74rem; }
.nav-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,.4); }
.nav-actions .btn-outline:hover { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.nav-actions .btn-primary { margin-left: -1px; color: var(--navy-950); background: var(--gold); border-color: var(--gold); }
.nav-actions .btn-primary:hover { color: var(--white); background: transparent; border-color: var(--white); }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: 10px; padding: 0; border: 1px solid rgba(255,255,255,.4); background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { display: block; width: 20px; height: 1.5px; margin: 5px auto; background: var(--white); content: ""; transition: .2s ease; }
.mobile-menu { display: none; }

/* ------------------------------------------------------------------
   Home hero
   ------------------------------------------------------------------ */
.hero { position: relative; padding: 112px 0 104px; color: var(--white); background: var(--navy-950); overflow: hidden; }
/* One photograph, Carroll County farmland, held under a heavy navy tint so the type still leads. */
.hero::before {
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero-carroll-county.jpg") center 40% / cover no-repeat;
  opacity: .32;
  content: "";
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,22,48,.9) 0%, rgba(10,22,48,.5) 55%, rgba(10,22,48,.25) 100%), linear-gradient(180deg, rgba(10,22,48,.2) 0%, rgba(10,22,48,.85) 100%);
  content: "";
}
.hero > .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); align-items: end; gap: 80px; }
.hero .display { max-width: 13ch; }
.hero .lead { max-width: 560px; margin: 40px 0 0; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.62); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.hero-proof span { padding-right: 28px; }
.hero-proof span + span { padding-left: 28px; border-left: 1px solid var(--line-dark); }
.hero-index { padding-bottom: 6px; }
.hero-index-label { margin-bottom: 8px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.hero-index a { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 16px; padding: 22px 0; border-top: 1px solid var(--line-dark); color: var(--white); transition: color .15s ease; }
.hero-index a:last-child { border-bottom: 1px solid var(--line-dark); }
.hero-index a:hover { color: var(--gold); }
.hero-index a:hover .hero-index strong { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; letter-spacing: -.01em; }
.hero-index small { display: block; margin-top: 3px; color: rgba(255,255,255,.55); font-size: .82rem; }
.hero-index .idx-arrow { color: rgba(255,255,255,.4); font-size: 1.1rem; transition: transform .2s ease; }
.hero-index a:hover .idx-arrow { color: var(--gold); transform: translateX(4px); }

/* Audience strip */
.audience-band { border-bottom: 1px solid var(--line); background: var(--paper); }
.audience-grid { display: grid; grid-template-columns: auto 1fr 1fr; align-items: stretch; }
.audience-title { display: flex; align-items: center; padding: 26px 44px 26px 0; color: var(--gold-deep); font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.audience-item { padding: 26px 40px; border-left: 1px solid var(--line); }
.audience-item strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); }
.audience-item span { color: var(--slate); font-size: .92rem; }

/* ------------------------------------------------------------------
   Services: an index, not a card grid
   ------------------------------------------------------------------ */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 120px minmax(0, .8fr) minmax(0, 1.2fr) 60px;
  align-items: start;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background .18s ease, color .18s ease, padding .18s ease;
}
.service-row:hover { color: var(--white); background: var(--navy-950); padding-left: 28px; padding-right: 28px; margin-inline: -28px; }
.service-index { color: var(--gold-deep); font-size: .72rem; font-weight: 700; letter-spacing: .2em; line-height: 2.2; text-transform: uppercase; }
.service-row:hover .service-index { color: var(--gold); }
.service-row h3 { margin: 0; font-size: clamp(1.5rem, 2.2vw, 2.1rem); letter-spacing: -.02em; line-height: 1.1; }
.service-row p { margin: 0; color: var(--slate); font-size: 1rem; }
.service-row:hover p { color: rgba(255,255,255,.72); }
.service-row .row-arrow { justify-self: end; color: var(--muted); font-family: var(--serif); font-size: 1.6rem; line-height: 1.2; transition: transform .2s ease, color .2s ease; }
.service-row:hover .row-arrow { color: var(--gold); transform: translateX(6px); }
.service-row.featured .service-index::after { margin-left: 12px; content: "\2014 Core"; letter-spacing: .1em; }

/* Legacy card class kept for inner pages; restyled flat */
.service-card { position: relative; display: flex; min-height: 300px; flex-direction: column; padding: 34px 30px; color: var(--ink); background: var(--white); transition: background .18s ease, color .18s ease; }
.service-card:hover { color: var(--white); background: var(--navy-950); }
.service-card .service-index { margin-bottom: 42px; }
.service-card h3 { max-width: 280px; font-size: 1.5rem; }
.service-card p { color: var(--slate); }
.service-card:hover p { color: rgba(255,255,255,.72); }
.service-card .text-link { margin-top: auto; }
.service-card:hover .text-link { color: var(--gold); }
.service-card.featured { color: var(--white); background: var(--navy-950); }
.service-card.featured .service-index { color: var(--gold); }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-card.featured .text-link { color: var(--white); }

/* ------------------------------------------------------------------
   Process
   ------------------------------------------------------------------ */
.principles { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.principle-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.principle { display: grid; grid-template-columns: 1fr; gap: 0; padding: 32px 0; border-bottom: 1px solid var(--line); }
.principle h3 { margin-bottom: 8px; font-size: 1.6rem; }
.principle p { margin-bottom: 0; color: var(--slate); }
.section-dark .principle, .section-dark .principle-list { border-color: var(--line-dark); }
.section-dark .principle p { color: rgba(255,255,255,.7); }

.value-card { padding: 40px 36px; }
.value-card span { display: block; margin-bottom: 30px; color: var(--gold-deep); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.value-card p { margin-bottom: 0; color: var(--slate); }

/* ------------------------------------------------------------------
   Clients: typeset, not logos
   ------------------------------------------------------------------ */
.client-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 96px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.client { position: relative; display: flex; flex-direction: column; gap: 10px; padding: 40px 40px 40px 0; border-left: 1px solid var(--line); color: var(--ink); transition: background .18s ease, color .18s ease; }
.client:first-child { border-left: 0; }
.client + .client { padding-left: 40px; }
.client:hover { color: var(--white); background: var(--navy-950); }
.client-sector { color: var(--gold-deep); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.client:hover .client-sector { color: var(--gold); }
.client strong { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; letter-spacing: -.02em; line-height: 1.1; }
.client-desc { color: var(--slate); font-size: .94rem; }
.client:hover .client-desc { color: rgba(255,255,255,.72); }
.client .row-arrow { position: absolute; top: 34px; right: 24px; color: var(--muted); font-family: var(--serif); font-size: 1.4rem; }
.client:hover .row-arrow { color: var(--gold); }

/* ------------------------------------------------------------------
   About (typographic; no portrait)
   ------------------------------------------------------------------ */
.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; align-items: start; }
.founder-name { margin: 0 0 8px; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.035em; line-height: .95; }
.founder-title { color: var(--gold-deep); font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.founder p { color: var(--slate); font-size: 1.1rem; }
.credential-list { display: grid; gap: 0; margin: 36px 0 40px; border-top: 1px solid var(--line); }
.credential-list span { display: grid; grid-template-columns: 40px 1fr; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .92rem; font-weight: 600; letter-spacing: .02em; }
.credential-list span::before { color: var(--gold-deep); font-family: var(--serif); content: "\2014"; }
.section-dark .credential-list, .section-dark .credential-list span { border-color: var(--line-dark); }
.section-dark .credential-list span::before { color: var(--gold); }

/* Legacy profile classes (retained for any page still using them) */
.profile-card { display: grid; grid-template-columns: .82fr 1.18fr; background: var(--navy-900); }
.profile-image { min-height: 520px; background: var(--paper-deep); }
.profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.profile-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 76px); color: var(--white); }
.profile-content p { color: rgba(255,255,255,.72); }

/* ------------------------------------------------------------------
   CTA band: the one place gold is the ground
   ------------------------------------------------------------------ */
.cta-band { padding: 96px 0; color: var(--navy-950); background: var(--gold); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.cta-inner h2 { max-width: 14ch; margin-bottom: 18px; font-size: clamp(2.6rem, 5.4vw, 5rem); letter-spacing: -.035em; line-height: .95; }
.cta-inner p { max-width: 560px; margin-bottom: 0; color: rgba(10, 22, 48, .78); font-size: 1.08rem; }
.cta-inner .button-row { flex: 0 0 auto; margin: 0; }
.cta-band .btn-light { color: var(--white); border-color: var(--navy-950); background: var(--navy-950); }
.cta-band .btn-light:hover { color: var(--navy-950); background: transparent; }

/* ------------------------------------------------------------------
   Inner pages
   ------------------------------------------------------------------ */
.page-hero { padding: 96px 0 88px; color: var(--white); background: var(--navy-950); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 80px; align-items: end; }
.page-hero h1 { max-width: 14ch; margin-bottom: 32px; font-size: clamp(2.8rem, 6.4vw, 5.8rem); letter-spacing: -.035em; line-height: .95; }
.page-hero .lead { margin-bottom: 0; }
.page-hero-aside { padding: 0 0 0 28px; border-left: 1px solid var(--gold); }
.page-hero-aside strong { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.page-hero-aside p { margin-bottom: 0; color: rgba(255,255,255,.66); font-size: .95rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span::before { margin-right: 10px; color: var(--gold); content: "/"; }

.fit-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; padding: 52px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.check-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); color: var(--slate); }
.check-list li::before { position: absolute; top: 14px; left: 0; color: var(--gold-deep); font-family: var(--serif); content: "\2014"; }
.deliverable-card { padding: 34px 30px; border-top: 2px solid var(--navy-950); background: var(--paper); }
.deliverable-card p { margin-bottom: 0; color: var(--slate); }
.process-grid { counter-reset: step; }
.process-card { position: relative; padding: 36px 32px; background: var(--white); }
.process-card::before { display: none; margin-bottom: 32px; color: var(--gold-deep); counter-increment: step; content: "0" counter(step); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.offer-price { display: block; margin: -4px 0 10px; color: var(--gold-deep); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.process-card p { margin-bottom: 0; color: var(--slate); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.related-card { padding: 28px 26px; border-left: 1px solid var(--line); transition: background .15s ease, color .15s ease; }
.related-card:first-child { border-left: 0; }
.related-card:hover { color: var(--white); background: var(--navy-950); }
.related-card span { display: block; margin-bottom: 10px; color: var(--gold-deep); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.related-card:hover span { color: var(--gold); }
.related-card strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; line-height: 1.2; }

.about-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 80px; align-items: center; }
.portrait-frame { position: relative; padding: 0; background: var(--paper-deep); }
.portrait-frame img { width: 100%; max-height: 610px; object-fit: contain; object-position: bottom; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 36px; border-top: 1px solid var(--line); }
.proof-item { padding: 20px 24px 20px 0; border-bottom: 1px solid var(--line); }
.proof-item:nth-child(2n) { padding-left: 24px; border-left: 1px solid var(--line); }
.proof-item strong { display: block; margin-bottom: 2px; font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.proof-item span { color: var(--slate); font-size: .88rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid .value-card { border-left: 1px solid var(--line); }
.values-grid .value-card:first-child { border-left: 0; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.contact-details { display: grid; gap: 0; margin-top: 32px; border-top: 1px solid var(--line); }
.contact-detail { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-detail small { display: block; margin-bottom: 4px; color: var(--gold-deep); font-size: .68rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.contact-detail strong, .contact-detail a { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
.contact-form { padding: clamp(28px, 5vw, 52px); border: 1px solid var(--navy-950); background: var(--white); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--white); }
.field textarea { min-height: 160px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--navy-950); box-shadow: inset 0 0 0 1px var(--navy-950); }
.form-note { margin: 22px 0 26px; padding: 14px 18px; border-left: 2px solid var(--gold); color: var(--slate); background: var(--paper); font-size: .86rem; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(1px,1px,1px,1px) !important; }

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */
.site-footer { padding: 88px 0 28px; color: rgba(255,255,255,.7); background: var(--navy-950); border-top: 1px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .9fr .9fr; gap: 56px; }
.footer-brand { display: block; width: 300px; max-width: 100%; margin-bottom: 24px; }
.footer-brand img { width: 100%; height: auto; max-height: 76px; object-fit: contain; object-position: left center; }
.footer-about p { max-width: 380px; color: rgba(255,255,255,.62); }
.footer-column h2 { margin-bottom: 20px; color: var(--gold); font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 64px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.48); font-size: .76rem; letter-spacing: .04em; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal a:hover { color: var(--gold); }

/* ------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------ */
@media (max-width: 1050px) {
  .desktop-nav, .nav-actions .btn-outline { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { position: fixed; top: 129px; right: 0; bottom: 0; left: 0; z-index: 90; overflow: auto; padding: 24px 24px 40px; color: var(--white); background: var(--navy-950); }
  .mobile-menu.open { display: block; }
  .mobile-menu nav { display: grid; gap: 0; width: min(100%, 680px); margin: 0 auto; }
  .mobile-menu a { padding: 16px 0; border-bottom: 1px solid var(--line-dark); font-family: var(--serif); font-size: 1.4rem; }
  .mobile-menu .mobile-label { margin: 28px 0 6px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-index { max-width: 620px; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .three-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid.three-col > :nth-child(3n+1) { border-left: 1px solid var(--line); }
  .grid.three-col > :nth-child(2n+1) { border-left: 0; }
  .grid.three-col > :nth-child(3) { border-top: 1px solid var(--line); }
  .service-row { grid-template-columns: 90px 1fr 40px; }
  .service-row p { grid-column: 2; }
  .service-row .row-arrow { grid-row: 1; grid-column: 3; }
  .principles, .founder { gap: 56px; }
  .client-list { grid-template-columns: 1fr; margin-bottom: 72px; }
  .client, .client + .client { padding: 28px 44px 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .client:first-child { border-top: 0; }
  .profile-card { grid-template-columns: .9fr 1.1fr; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .container, .narrow { width: min(calc(100% - 32px), var(--content)); }
  .topbar-inner { min-height: 36px; justify-content: center; }
  .topbar-list span:first-child { display: none; }
  .topbar-list { gap: 18px; }
  .topbar-list a:last-child { display: none; }
  .nav-shell { min-height: 76px; }
  .brand img { width: 38px; height: 38px; }
  .brand-word strong { font-size: 1.35rem; }
  .brand-word span { font-size: .52rem; }
  .mobile-menu { top: 113px; }
  .section { padding: 84px 0; }
  .section-sm { padding: 60px 0; }
  .hero { padding: 76px 0 72px; }
  .hero .lead { margin-top: 30px; }
  .hero-proof { display: grid; gap: 10px; }
  .hero-proof span + span { padding-left: 0; border-left: 0; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-title, .audience-item { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .audience-item:last-child { border-bottom: 0; }
  .section-heading { margin-bottom: 40px; }
  .two-col, .three-col, .principles, .fit-panel, .about-grid, .contact-layout, .founder { grid-template-columns: 1fr; }
  .grid.three-col > *, .grid.two-col > * { border-left: 0; border-top: 1px solid var(--line); }
  .grid.three-col > :first-child, .grid.two-col > :first-child { border-top: 0; }
  .service-row { grid-template-columns: 1fr 40px; gap: 12px 20px; padding: 30px 0; }
  .service-row:hover { padding-left: 16px; padding-right: 16px; margin-inline: -16px; }
  .service-index { grid-column: 1; }
  .service-row h3, .service-row p { grid-column: 1; }
  .service-row .row-arrow { grid-row: 2; grid-column: 2; align-self: start; }
  .service-card { min-height: 0; }
  .principles { gap: 44px; }
  .principle { padding: 26px 0; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-image { min-height: 440px; }
  .cta-band { padding: 72px 0; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-inner .button-row { margin-top: 32px; }
  .page-hero { padding: 68px 0 64px; }
  .page-hero-aside { padding: 24px 0 0; border-left: 0; border-top: 1px solid var(--gold); }
  .fit-panel { gap: 32px; padding: 36px 0; }
  .related-grid, .values-grid { grid-template-columns: 1fr; }
  .related-card, .values-grid .value-card { border-left: 0; border-top: 1px solid var(--line); }
  .related-card:first-child, .values-grid .value-card:first-child { border-top: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
}

@media (max-width: 500px) {
  body { font-size: 15.5px; }
  .display { font-size: 3rem; }
  .nav-actions .btn-primary { display: none; }
  .btn { width: 100%; }
  .button-row .btn + .btn { margin: -1px 0 0; }
  .hero-index strong { font-size: 1.3rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-item:nth-child(2n) { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-about { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
