/* =========================================================================
   MDC-Verte — design tokens
   Palette derived from the MDC-Verte mark: slate blue field, leaf green,
   coral frame. Slate carries the institutional weight; green and coral are
   accents only.
   ========================================================================= */

:root {
  /* Brand */
  --slate-900: #0e1721;
  --slate-800: #16232f;
  --slate-700: #1f3242;
  --slate-600: #2c4557;
  --slate-400: #5b7488;
  --slate-200: #a8bbc9;

  --green-600: #4a7c2f;
  --green-500: #5f9c3c;
  --green-100: #eaf3e2;

  --coral-600: #d1483f;
  --coral-500: #e8524a;
  --coral-100: #fceceb;

  /* Neutrals */
  --ink: #16232f;
  --ink-muted: #55677a;
  --ink-faint: #8496a6;
  --rule: #dfe5ea;
  --rule-strong: #c3cfd8;
  --surface: #ffffff;
  --surface-alt: #f6f8f9;
  --surface-sunk: #eef2f4;

  /* Type */
  --font-serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype",
    Palatino, Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;

  /* Scale — fluid, clamped */
  --step--1: clamp(0.83rem, 0.8rem + 0.15vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.85rem);
  --step-3: clamp(1.8rem, 1.5rem + 1.4vw, 2.6rem);
  --step-4: clamp(2.2rem, 1.6rem + 2.8vw, 4rem);
  --step-5: clamp(2.6rem, 1.7rem + 4.2vw, 5.2rem);

  /* Space */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 68ch;
  --wrap: 1200px;
  --wrap-narrow: 860px;

  --radius: 3px;
  --shadow-sm: 0 1px 2px rgb(14 23 33 / 6%), 0 2px 8px rgb(14 23 33 / 4%);
  --shadow-md: 0 2px 4px rgb(14 23 33 / 6%), 0 12px 28px rgb(14 23 33 / 8%);
}

/* =========================================================================
   Reset / base
   ========================================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
svg,
iframe {
  max-width: 100%;
  display: block;
}

img {
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--slate-900);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: var(--step-4);
}
h2 {
  font-size: var(--step-3);
}
h3 {
  font-size: var(--step-2);
}
h4 {
  font-size: var(--step-1);
}

p,
ul,
ol {
  margin: 0 0 1.1em;
}

p {
  text-wrap: pretty;
}

a {
  color: var(--green-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-600);
}

:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}

hr {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--slate-900);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
}

.skip-link:focus {
  left: 0;
}

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

/* =========================================================================
   Layout primitives
   ========================================================================= */

.wrap {
  width: min(100% - var(--gutter) * 2, var(--wrap));
  margin-inline: auto;
}

.wrap--narrow {
  width: min(100% - var(--gutter) * 2, var(--wrap-narrow));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--slate-900);
  color: var(--slate-200);
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.prose {
  max-width: var(--measure);
}

.prose h2 {
  margin-top: 2.2em;
}

.prose h3 {
  margin-top: 1.8em;
  font-size: var(--step-1);
}

.prose > :first-child {
  margin-top: 0;
}

.prose li {
  margin-bottom: 0.4em;
}

.prose li::marker {
  color: var(--green-500);
}

/* Section label — small caps eyebrow above headings */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--green-600);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.section--dark .eyebrow {
  color: var(--green-500);
}

.section--dark .eyebrow::after {
  background: rgb(255 255 255 / 15%);
}

.lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 60ch;
}

/* =========================================================================
   Buttons
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}

.btn--primary {
  background: var(--green-600);
  border-color: var(--green-600);
  color: #fff;
}

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

.btn--ghost {
  background: transparent;
  border-color: var(--rule-strong);
  color: var(--slate-900);
}

.btn--ghost:hover {
  border-color: var(--slate-900);
  background: var(--slate-900);
  color: #fff;
}

.section--dark .btn--ghost,
.hero .btn--ghost,
.page-head .btn--ghost {
  border-color: rgb(255 255 255 / 30%);
  color: #fff;
}

.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover,
.page-head .btn--ghost:hover {
  background: #fff;
  border-color: #fff;
  color: var(--slate-900);
}

/* =========================================================================
   Header / navigation
   ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgb(255 255 255 / 92%);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--slate-900);
  flex-shrink: 0;
}

.brand img {
  width: 38px;
  height: auto;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 1.4vw, 1.4rem);
}

.nav a {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav a:hover {
  color: var(--slate-900);
}

.nav a[aria-current="page"] {
  color: var(--slate-900);
  border-bottom-color: var(--green-500);
}

.nav a.nav__cta {
  background: var(--slate-900);
  color: #fff;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius);
  border-bottom: 0;
}

.nav a.nav__cta:hover {
  background: var(--green-600);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  color: var(--slate-900);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    padding: 0.5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
    font-size: var(--step-0);
  }

  .nav a[aria-current="page"] {
    border-bottom-color: var(--rule);
    color: var(--green-600);
  }

  .nav a.nav__cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
  }
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  background: var(--slate-900);
  color: #fff;
  padding-block: clamp(4rem, 11vw, 8.5rem);
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal field, echoes the mark's framed square. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      ellipse 70% 60% at 78% 15%,
      rgb(95 156 60 / 16%),
      transparent 65%
    ),
    radial-gradient(
      ellipse 60% 55% at 10% 90%,
      rgb(232 82 74 / 10%),
      transparent 60%
    );
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero h1 {
  color: #fff;
  font-size: var(--step-5);
  max-width: 15ch;
  margin-bottom: 0.4em;
}

.hero__lede {
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--slate-200);
  max-width: 52ch;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__eyebrow {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--green-500);
  margin-bottom: 1.4rem;
}

/* Page header for interior pages */
.page-head {
  background: var(--slate-900);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
}

.page-head h1 {
  color: #fff;
  max-width: 20ch;
  font-size: var(--step-4);
  margin-bottom: 0.35em;
}

.page-head__lede {
  color: var(--slate-200);
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 60ch;
  margin: 0;
}

.breadcrumb {
  font-size: var(--step--1);
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--slate-200);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* =========================================================================
   Metrics band
   ========================================================================= */

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}

.metric {
  padding: 2.25rem 1.75rem;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}

.metric:last-child {
  border-right: 0;
}

@media (max-width: 900px) {
  .metric {
    border-right: 0;
  }
}

.metric__value {
  font-family: var(--font-serif);
  font-size: var(--step-3);
  font-weight: 600;
  line-height: 1;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.metric__label {
  font-size: var(--step-0);
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.25rem;
}

.metric__note {
  font-size: var(--step--1);
  color: var(--ink-faint);
  line-height: 1.45;
  margin: 0;
}

/* =========================================================================
   Pull quote / statement block
   ========================================================================= */

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 800px) {
  .statement {
    grid-template-columns: 1fr;
  }
}

.statement__figure {
  font-family: var(--font-serif);
  font-size: var(--step-5);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--coral-600);
  margin: 0 0 0.5rem;
}

/* =========================================================================
   Cards & grids
   ========================================================================= */

.grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card h3 {
  font-size: var(--step-1);
  margin-bottom: 0.5rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card__num {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-600);
  display: block;
  margin-bottom: 0.9rem;
}

/* =========================================================================
   Portfolio
   ========================================================================= */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 0;
  list-style: none;
}

.filters button {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--rule-strong);
  border-radius: 100px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.15s ease;
}

.filters button:hover {
  border-color: var(--slate-600);
  color: var(--slate-900);
}

.filters button[aria-pressed="true"] {
  background: var(--slate-900);
  border-color: var(--slate-900);
  color: #fff;
}

.company {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.company:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--rule-strong);
}

.company[hidden] {
  display: none;
}

.company__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--rule);
  min-height: 150px;
}

.company__logo img {
  max-height: 88px;
  width: auto;
  object-fit: contain;
}

.company__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.company__name {
  font-size: var(--step-1);
  margin-bottom: 0.35rem;
}

.company__name a {
  color: inherit;
  text-decoration: none;
}

.company__name a:hover {
  color: var(--green-600);
}

.company__summary {
  font-size: var(--step--1);
  color: var(--slate-700);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.company__detail {
  font-size: var(--step--1);
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.company__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
}

.tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 100px;
  background: var(--surface-sunk);
  color: var(--slate-600);
}

.tag--graduated {
  background: var(--green-100);
  color: var(--green-600);
}

.tag--funded {
  background: #e6eef5;
  color: var(--slate-600);
}

.tag--pipeline {
  background: var(--coral-100);
  color: var(--coral-600);
}

/* Logo wall.
   The company marks are wide banners with the name and tagline baked in, so
   they need real width to stay legible. Cell borders (rather than a gap over a
   coloured background) keep trailing empty cells from showing as grey blocks. */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: #fff;
}

.logo-wall a,
.logo-wall span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1.75rem 2rem;
  min-height: 130px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background-color 0.15s ease;
}

.logo-wall a:hover {
  background: var(--surface-alt);
}

.logo-wall img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}

/* Stand-in for companies with no logo asset yet. */
.logo-text {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--slate-600);
  text-align: center;
  letter-spacing: -0.01em;
}

/* =========================================================================
   Data table (promoted companies)
   ========================================================================= */

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

.data-table {
  min-width: 780px;
  font-size: var(--step--1);
}

.data-table thead th {
  background: var(--slate-900);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.95rem 1.1rem;
  white-space: nowrap;
}

.data-table td,
.data-table tbody th {
  padding: 1.1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
  color: var(--ink-muted);
  font-weight: 400;
  text-align: left;
}

.data-table tbody th a {
  text-decoration: none;
}

.data-table tbody tr:last-child td,
.data-table tbody tr:last-child th {
  border-bottom: 0;
}

.data-table tbody tr:hover {
  background: var(--surface-alt);
}

.data-table img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.4rem;
}

.data-table .col-company {
  min-width: 220px;
}

.data-table .company-name {
  display: block;
  font-weight: 600;
  color: var(--slate-900);
  font-size: var(--step--1);
  line-height: 1.3;
}

.data-table a .company-name:hover {
  color: var(--green-600);
}

.data-table .num {
  font-variant-numeric: tabular-nums;
  color: var(--slate-900);
  font-weight: 600;
  white-space: nowrap;
}

/* =========================================================================
   People
   ========================================================================= */

.people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.person__photo {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--surface-sunk);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.person:hover .person__photo {
  filter: grayscale(0%);
}

.person__name {
  font-size: var(--step-1);
  margin-bottom: 0.2rem;
}

.person__name a {
  color: inherit;
  text-decoration: none;
}

.person__name a:hover {
  color: var(--green-600);
  text-decoration: underline;
}

.person__role {
  font-size: var(--step--1);
  color: var(--ink-muted);
  line-height: 1.45;
  margin-bottom: 0.6rem;
}

.person__links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  font-size: var(--step--1);
}

.person__links a {
  display: inline-flex;
  color: var(--ink-faint);
  text-decoration: none;
}

.person__links a:hover {
  color: var(--green-600);
}

.person__links svg {
  width: 17px;
  height: 17px;
}

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

.faq-list {
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-item > summary {
  font-family: var(--font-serif);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--slate-900);
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover {
  color: var(--green-600);
}

.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--slate-400);
  border-bottom: 2px solid var(--slate-400);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] > summary::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
  padding: 0 3rem 1.75rem 0;
  max-width: var(--measure);
  color: var(--ink-muted);
}

.faq-answer > :last-child {
  margin-bottom: 0;
}

/* =========================================================================
   Figures
   ========================================================================= */

.figure {
  margin: 0;
}

.figure img {
  width: 100%;
  border-radius: var(--radius);
}

.figure figcaption {
  font-size: var(--step--1);
  color: var(--ink-faint);
  line-height: 1.5;
  margin-top: 0.75rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--green-500);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse > :first-child {
  order: 2;
}

/* Portrait beside prose — the photo column is fixed, the text takes the rest. */
.split--bio {
  grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
  align-items: start;
}

@media (max-width: 820px) {
  .split,
  .split--bio {
    grid-template-columns: 1fr;
  }
  .split--reverse > :first-child {
    order: 0;
  }
  .split--bio .person__photo {
    max-width: 240px;
  }
}

/* =========================================================================
   Contact form
   ========================================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.info-block {
  margin-bottom: 2rem;
}

.info-block h3 {
  font-size: var(--step-0);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.info-block p {
  margin-bottom: 0;
  color: var(--ink-muted);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: var(--step-0);
  color: var(--ink);
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgb(95 156 60 / 15%);
}

.field textarea {
  resize: vertical;
  min-height: 150px;
}

/* Honeypot — hidden from humans, visible to naive bots. */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
  display: none;
}

.form-status[data-state="sending"] {
  display: block;
  background: var(--surface-sunk);
  color: var(--ink-muted);
}

.form-status[data-state="ok"] {
  display: block;
  background: var(--green-100);
  color: var(--green-600);
  font-weight: 600;
}

.form-status[data-state="error"] {
  display: block;
  background: var(--coral-100);
  color: var(--coral-600);
  font-weight: 600;
}

.map-embed {
  width: 100%;
  height: 340px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}

/* =========================================================================
   CTA band
   ========================================================================= */

.cta-band {
  text-align: center;
}

.cta-band h2 {
  max-width: 22ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: var(--slate-200);
  font-size: var(--step-1);
  line-height: 1.5;
}

.cta-band .hero__actions {
  justify-content: center;
}

/* =========================================================================
   Footer
   ========================================================================= */

.site-footer {
  background: var(--slate-900);
  color: var(--slate-200);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: var(--step--1);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 40px;
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.site-footer address {
  font-style: normal;
  line-height: 1.7;
}

.site-footer a {
  color: var(--slate-200);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius);
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background: var(--green-600);
  border-color: var(--green-600);
}

.footer-social svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--slate-400);
  font-size: 0.82rem;
}

/* =========================================================================
   Utilities
   ========================================================================= */

.stack > * + * {
  margin-top: 1.1em;
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

.note {
  font-size: var(--step--1);
  color: var(--ink-faint);
  line-height: 1.55;
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .filters {
    display: none;
  }
}
