/* =========================================================================
   Nexai Surfaces — shared stylesheet for the redesigned multi-page site.
   Imported from Claude Design (Home / Services / About / Intelligence / Contact).
   ========================================================================= */

:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --panel: #f0ede5;
  --ink: #1d2529;
  --ink-soft: #3b4850;
  --muted: #5a6870;
  --muted-2: #7d8890;
  --muted-3: #8d999d;
  --teal: #2b7d8f;
  --gold: #c2984e;
  --gold-hi: #d5ad63;
  --serif-num: #e0d5bd;
  --line: #e5e2da;
  --field-line: #d5d0c4;
  --ok: #2e7d5b;
  --err: #c0392b;

  /* on dark sections */
  --on-dark: #faf9f6;
  --on-dark-soft: #c3cccf;
  --on-dark-muted: #9aa6aa;
  --on-dark-quote: #e8ecec;
  --ok-dark: #8fd6b0;

  --pad: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--gold); outline-offset: 2px; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
ul { margin: 0; }

.serif { font-family: "Source Serif 4", serif; }
.mont { font-family: "Montserrat", sans-serif; }

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

/* --- Shared eyebrow / headings --- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 24px;
}
.eyebrow.gold { color: var(--gold); }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 54px; width: auto; }

.nav { display: flex; align-items: center; gap: 44px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 0;
  transition: color 0.15s ease;
}
.nav a:hover { color: var(--ink); }
.nav a.is-current {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.nav a.cta {
  font-weight: 600;
  color: var(--on-dark);
  background: var(--ink);
  padding: 13px 28px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a.cta:hover { background: var(--teal); color: var(--on-dark); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================================
   Buttons / links
   ========================================================================= */
.btn {
  display: inline-block;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 36px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn.lg { font-size: 17px; padding: 18px 42px; }
.btn.dark { background: var(--ink); color: var(--on-dark); }
.btn.dark:hover { background: var(--teal); color: var(--on-dark); }
.btn.gold { background: var(--gold); color: var(--ink); }
.btn.gold:hover { background: var(--gold-hi); color: var(--ink); }

.link-underline {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  white-space: nowrap;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.link-underline.ink { color: var(--ink); }
.link-underline.ink:hover { color: var(--teal); }

/* =========================================================================
   Forms (contact + newsletter)
   ========================================================================= */
.form-status {
  margin: 0;
  min-height: 1.3em;
  font-weight: 500;
  font-size: 15px;
}
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

/* Inline newsletter form (light + dark variants) */
.subscribe { display: flex; gap: 12px; }
.subscribe input {
  flex: 1;
  font: inherit;
  font-size: 16px;
  padding: 16px 20px;
  border: 1px solid var(--field-line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
}
.subscribe input:focus { outline: none; border-color: var(--teal); }
.subscribe button {
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 30px;
  background: var(--ink);
  color: var(--on-dark);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.subscribe button:hover:not(:disabled) { background: var(--teal); }
.subscribe button:disabled { opacity: 0.65; cursor: default; }

.subscribe.on-dark input {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.subscribe.on-dark input::placeholder { color: rgba(255, 255, 255, 0.6); }
.subscribe.on-dark input:focus { border-color: var(--gold); }
.subscribe.on-dark button { background: var(--gold); color: var(--ink); }
.subscribe.on-dark button:hover:not(:disabled) { background: var(--gold-hi); }

/* =========================================================================
   Footer (shared)
   ========================================================================= */
.site-footer {
  padding: 56px var(--pad);
  background: var(--bg);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-logo { height: 46px; width: auto; }
.footer-brand p { color: var(--muted); max-width: 320px; font-size: 14.5px; }
.footer-meta {
  display: flex;
  gap: 40px;
  color: var(--muted);
  font-size: 14.5px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-meta a { color: var(--muted); }
.footer-meta a:hover { color: var(--ink); }

/* =========================================================================
   Section helpers
   ========================================================================= */
.section { padding: 112px var(--pad); }
.section-pad-sm { padding: 104px var(--pad); }
.band-dark { background: var(--ink); color: var(--on-dark); }

.title-serif {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* =========================================================================
   HOME
   ========================================================================= */
@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.home-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
.home-hero__copy {
  padding: 96px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-hero__copy h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 30px;
  text-wrap: balance;
}
.home-hero__sub {
  font-size: 19.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 44px;
}
.home-hero__actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.home-hero__media { position: relative; overflow: hidden; min-height: 340px; }
.home-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenburns 24s ease-in-out infinite alternate;
}

.stat-band {
  background: var(--ink);
  color: var(--on-dark);
  padding: 36px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: baseline; gap: 14px; }
.stat__num {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 34px;
  color: var(--gold);
}
.stat__label { color: var(--on-dark-muted); font-size: 14.5px; max-width: 180px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
}
.section-head h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 680px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.svc-card {
  display: block;
  background: var(--bg);
  padding: 44px 40px;
  transition: background 0.2s ease;
  color: inherit;
}
.svc-card:hover { background: var(--surface); color: inherit; }
.svc-card__num {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.12em;
}
.svc-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin: 18px 0 12px;
  color: var(--ink);
}
.svc-card p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.showcase { position: relative; height: 440px; overflow: hidden; }
.showcase img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29, 37, 41, 0.75), rgba(29, 37, 41, 0));
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.showcase__overlay p {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  color: var(--on-dark);
  font-size: 38px;
  line-height: 1.3;
  max-width: 620px;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.step__num {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 52px;
  color: var(--serif-num);
  line-height: 1;
}
.step h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin: 20px 0 10px;
  color: var(--ink);
}
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.result-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px;
  transition: border-color 0.2s ease;
}
.result-card:hover { border-color: var(--gold); }
.result-card__metric {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
}
.result-card__label {
  color: var(--on-dark-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin: 10px 0 22px;
}
.result-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 10px;
  color: var(--on-dark);
}
.result-card p { color: var(--on-dark-muted); font-size: 15px; line-height: 1.6; }

.quotes {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 64px;
}
.quotes blockquote p {
  font-family: "Source Serif 4", serif;
  font-size: 25px;
  line-height: 1.5;
  color: var(--on-dark-quote);
  margin: 0 0 20px;
}
.quotes blockquote footer { color: var(--gold); font-size: 14.5px; }

.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 72px; }
.insight { display: block; color: inherit; }
.insight__inner { border-top: 2px solid var(--ink); padding-top: 22px; transition: border-color 0.2s ease; }
.insight:hover .insight__inner { border-top-color: var(--gold); }
.insight__tag { color: var(--teal); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.insight h3 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 25px;
  line-height: 1.3;
  margin: 16px 0 12px;
  color: var(--ink);
}
.insight p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.subscribe-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.subscribe-panel__copy { max-width: 520px; }
.subscribe-panel__copy h3 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 30px;
  margin: 0 0 10px;
  color: var(--ink);
}
.subscribe-panel__copy p { color: var(--muted); font-size: 16px; line-height: 1.55; }
.subscribe-panel__form { flex: 0 0 460px; }

.cta-bleed { position: relative; overflow: hidden; }
.cta-bleed > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-bleed__inner {
  position: relative;
  background: linear-gradient(90deg, rgba(29, 37, 41, 0.92), rgba(29, 37, 41, 0.75));
  padding: 112px var(--pad);
}
.cta-bleed__inner h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 54px;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  color: var(--on-dark);
  max-width: 700px;
}
.cta-bleed__inner p { color: var(--on-dark-soft); font-size: 18.5px; max-width: 540px; margin: 0 0 40px; line-height: 1.6; }

/* =========================================================================
   Page hero (Services / About)
   ========================================================================= */
.page-hero { padding: 104px var(--pad) 88px; border-bottom: 1px solid var(--line); }
.page-hero.tall { padding: 120px var(--pad) 96px; }
.page-hero h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  max-width: 820px;
  text-wrap: balance;
}
.page-hero.tall h1 { line-height: 1.1; max-width: 900px; margin: 0; }
.page-hero__lead { font-size: 19px; line-height: 1.6; color: var(--muted); max-width: 640px; margin: 0; }

/* =========================================================================
   SERVICES — rows
   ========================================================================= */
.svc-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 64px;
  padding: 72px var(--pad);
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.svc-row.alt { background: var(--surface); }
.svc-row__num {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 52px;
  color: var(--serif-num);
  line-height: 1;
}
.svc-row__group { color: var(--teal); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.svc-row h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.01em;
  margin: 14px 0 16px;
}
.svc-row__body { color: var(--muted); font-size: 17px; line-height: 1.65; }
.svc-points { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 18px; }
.svc-points li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}
.svc-points li::before { content: "•"; color: var(--gold); font-weight: 700; font-size: 14px; }
.svc-points span:last-child { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

.cta-center { background: var(--ink); padding: 104px var(--pad); text-align: center; }
.cta-center h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 46px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--on-dark);
}
.cta-center p { color: var(--on-dark-muted); font-size: 18px; max-width: 520px; margin: 0 auto 40px; line-height: 1.6; }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 96px var(--pad);
  align-items: start;
}
.about-story h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 38px;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.about-story p { color: var(--ink-soft); font-size: 17.5px; line-height: 1.7; margin: 0 0 22px; }
.about-story .btn { margin-top: 14px; }
.founder {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 8px 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.founder__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
}
.founder__name { font-weight: 600; color: var(--ink); }
.founder__role { color: var(--muted); }
.founder__link {
  color: var(--teal);
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}
.pillars { display: grid; gap: 20px; }
.pillar { border: 1px solid var(--line); background: var(--surface); padding: 32px 36px; }
.pillar__num { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 13px; color: var(--gold); letter-spacing: 0.12em; }
.pillar h3 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 21px; margin: 14px 0 8px; }
.pillar p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.image-quote { position: relative; height: 460px; overflow: hidden; }
.image-quote img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-quote__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(29, 37, 41, 0.7), rgba(29, 37, 41, 0));
  display: flex;
  align-items: center;
  padding: 0 var(--pad);
}
.image-quote__overlay p {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  color: var(--on-dark);
  font-size: 36px;
  line-height: 1.35;
  max-width: 600px;
}

.values { padding: 104px var(--pad); }
.values h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.01em;
  margin: 0 0 64px;
}
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.value { border-top: 2px solid var(--ink); padding-top: 24px; }
.value h3 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 20px; margin: 0 0 10px; }
.value p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* =========================================================================
   INTELLIGENCE
   ========================================================================= */
.intel-hero { position: relative; overflow: hidden; }
.intel-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.intel-hero__inner {
  position: relative;
  background: linear-gradient(180deg, rgba(29, 37, 41, 0.92), rgba(29, 37, 41, 0.86));
  padding: 120px var(--pad);
}
.intel-hero__inner h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
  color: var(--on-dark);
  max-width: 860px;
  text-wrap: balance;
}
.intel-hero__lead { font-size: 19px; line-height: 1.6; color: var(--on-dark-soft); max-width: 640px; margin: 0 0 44px; }
.intel-hero__form { max-width: 560px; }
.intel-hero__form .form-status.ok { color: var(--ok-dark); }
.intel-note { color: var(--muted-3); font-size: 14px; margin: 6px 0 0; }

.intel-section { padding: 104px var(--pad); border-bottom: 1px solid var(--line); }
.intel-section:last-of-type { border-bottom: 0; }
.intel-section h2 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.01em;
  margin: 0 0 64px;
}
.contents-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.content-col { border-top: 2px solid var(--ink); padding-top: 24px; }
.content-col__tag { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.content-col h3 { font-family: "Montserrat", sans-serif; font-weight: 700; font-size: 20px; margin: 14px 0 10px; }
.content-col p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

.insight-rows { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.insight-row {
  display: grid;
  grid-template-columns: 160px 1fr 380px;
  gap: 48px;
  background: var(--bg);
  padding: 44px 48px;
  align-items: baseline;
  transition: background 0.2s ease;
}
.insight-row:hover { background: var(--surface); }
.insight-row__tag { color: var(--teal); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.insight-row h3 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 27px;
  line-height: 1.3;
  margin: 0;
}
.insight-row p { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding: 104px var(--pad);
  align-items: start;
}
.contact h1 {
  font-family: "Source Serif 4", serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 26px;
}
.contact__lead { color: var(--ink-soft); font-size: 17.5px; line-height: 1.7; margin: 0 0 40px; max-width: 480px; }
.contact-details { display: grid; gap: 24px; margin-bottom: 48px; }
.detail { display: flex; flex-direction: column; gap: 4px; }
.detail__label { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 700; }
.detail a { color: var(--teal); font-weight: 600; font-size: 17px; }
.detail__value { font-size: 17px; }
.contact-photo { width: 100%; max-height: 280px; object-fit: cover; object-position: center 62%; }

.contact-form {
  display: grid;
  gap: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 48px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 14.5px; }
.field input, .field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--field-line);
  background: var(--bg);
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  background: var(--surface);
  border-color: var(--teal);
}
.field input:focus-visible, .field textarea:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
#contact-form { scroll-margin-top: 110px; }
.contact-form .btn { justify-self: start; }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1080px) {
  :root { --pad: 48px; }
  .quotes { gap: 40px; }
}

@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; }
  .home-hero__media { min-height: 380px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .results-grid { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; gap: 32px; }
  .subscribe-panel { flex-direction: column; align-items: flex-start; }
  .subscribe-panel__form { flex: 1 1 auto; width: 100%; }
  .contents-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .svc-row { grid-template-columns: 64px 1fr; }
  .svc-row .svc-points { grid-column: 1 / -1; }
  .insight-row { grid-template-columns: 1fr; gap: 12px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  :root { --pad: 24px; }
  .site-header { height: 84px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--pad) 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(29, 37, 41, 0.08);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; }
  .nav a.is-current { border-bottom-color: var(--gold); }
  .nav a.cta { margin-top: 16px; text-align: center; border-bottom: 0; padding: 14px 28px; }
  .section, .section-pad-sm { padding: 64px var(--pad); }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .home-hero__copy { padding: 64px var(--pad); }
  .page-hero, .page-hero.tall { padding: 64px var(--pad) 48px; }
  .page-hero h1, .page-hero.tall h1 { font-size: 40px; }
  .intel-hero__inner { padding: 72px var(--pad); }
  .intel-hero__inner h1 { font-size: 38px; }
  .intel-section, .values, .cta-center { padding: 64px var(--pad); }
  .contact { padding: 56px var(--pad); }
  .contact h1 { font-size: 40px; }
  .contact-form { padding: 32px 24px; }
  .section-head h2,
  .cta-bleed__inner h2 { font-size: 34px; }
  .showcase__overlay p, .image-quote__overlay p { font-size: 26px; }
  .subscribe { flex-direction: column; }
  .subscribe input, .subscribe button { width: 100%; }
  .svc-row { grid-template-columns: 1fr; gap: 20px; padding: 48px var(--pad); }
  .about-story h2, .values h2, .intel-section h2 { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-hero__media img { animation: none; }
}

/* --- News section --- */
.news-head { padding-bottom: 0; }
.news-head__lead {
  color: var(--muted);
  font-size: 17px;
  max-width: 60ch;
  margin-top: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 0 0 24px;
  background: var(--surface);
}
.news-card:hover { color: inherit; border-color: var(--teal); }
.news-card__art { display: block; }
.news-card__art svg { width: 100%; height: auto; display: block; }
.news-card__tag {
  color: var(--teal);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 20px 24px 0;
}
.news-card h3 {
  font-family: "Source Serif 4", serif;
  font-size: 21px;
  line-height: 1.3;
  padding: 0 24px;
}
.news-card p { color: var(--muted); font-size: 15.5px; padding: 0 24px; }
.news-card__meta { color: var(--muted-3); font-size: 13.5px; padding: 0 24px; }

.news-article { max-width: 720px; margin: 0 auto; }
.news-article h1 {
  font-family: "Source Serif 4", serif;
  font-size: 40px;
  line-height: 1.2;
  margin-top: 10px;
}
.news-article__dek { color: var(--ink-soft); font-size: 19px; margin-top: 14px; }
.news-article__meta { color: var(--muted-3); font-size: 14px; margin-top: 10px; }
.news-article__art { margin: 36px 0; }
.news-article__art svg { width: 100%; height: auto; display: block; }
.news-article__body p { margin-bottom: 20px; font-size: 17px; line-height: 1.7; }
.news-article__source {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  color: var(--muted);
  font-size: 15px;
}
.news-article__source a { color: var(--teal); text-decoration: underline; }
.news-article__back { margin-top: 28px; }

@media (max-width: 1100px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-article h1 { font-size: 30px; }
}
