:root {
  --ink: #081a16;
  --forest: #0a2f27;
  --forest-2: #103f34;
  --forest-3: #1a5949;
  --copper: #d5a06f;
  --copper-light: #efd0ad;
  --ivory: #f6f2ea;
  --paper: #fffdf9;
  --muted: #66716d;
  --line: rgba(10, 47, 39, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(7, 27, 22, 0.14);
  --radius: 1.25rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }

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

button, input, textarea { font: inherit; }

button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--forest);
  background: var(--paper);
  border-radius: 0.5rem;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.announcement {
  padding: 0.55rem 1.25rem;
  color: var(--ivory);
  background: var(--forest-2);
  border-bottom: 1px solid var(--white-line);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(7, 37, 30, 0.96);
  border-bottom: 1px solid var(--white-line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(1180px, calc(100% - 2rem));
  min-height: 4.55rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 9.25rem;
  height: auto;
  max-height: 3.65rem;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.91rem;
  font-weight: 650;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 0.45rem 0;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: #fff; }

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.68rem 1rem;
  color: var(--forest);
  background: var(--copper-light);
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover { background: #fff; transform: translateY(-1px); }

.language-switch {
  display: flex;
  align-items: center;
  padding: 0.18rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--white-line);
  border-radius: 999px;
}

.language-switch button {
  min-width: 2.35rem;
  padding: 0.35rem 0.55rem;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.language-switch button.active {
  color: var(--forest);
  background: var(--copper-light);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  background: transparent;
  border: 1px solid var(--white-line);
  border-radius: 0.7rem;
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 0.31rem 0;
  background: #fff;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow { width: min(780px, calc(100% - 2.5rem)); }

.section { padding: 7rem 0; }

.section-sm { padding: 4.5rem 0; }

.section-dark {
  color: var(--ivory);
  background: var(--forest);
}

.section-ivory { background: var(--ivory); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.15rem;
  color: var(--forest-3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2rem;
  height: 1px;
  content: "";
  background: var(--copper);
}

.section-dark .eyebrow { color: var(--copper-light); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.8vw, 5.4rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 17ch;
  margin-bottom: 1.35rem;
  font-size: clamp(2.35rem, 4.4vw, 4.3rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 60ch;
  color: #4c5d57;
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.72;
}

.section-dark .lead { color: rgba(255, 255, 255, 0.72); }

.muted { color: var(--muted); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--forest-3);
  font-weight: 800;
}

.text-link::after { content: "→"; transition: transform 160ms ease; }

.text-link:hover::after { transform: translateX(0.25rem); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { color: var(--forest); background: var(--copper-light); }
.btn-primary:hover { background: #fff; }
.btn-dark { color: #fff; background: var(--forest); }
.btn-dark:hover { background: var(--forest-2); }
.btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.36); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 9% 8%, rgba(213, 160, 111, 0.2), transparent 27%),
    linear-gradient(135deg, #06241d 0%, #0a352b 58%, #0b2c25 100%);
}

.hero::after {
  position: absolute;
  right: -12rem;
  bottom: -20rem;
  width: 48rem;
  height: 48rem;
  content: "";
  border: 1px solid rgba(213, 160, 111, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 7rem rgba(213, 160, 111, 0.035), 0 0 0 14rem rgba(213, 160, 111, 0.025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 3.25rem 0 4rem;
}

.hero-copy { max-width: 52rem; }
.hero-copy .eyebrow { color: var(--copper-light); }
.hero-copy .lead { color: rgba(255, 255, 255, 0.76); }
.hero-copy h1 em { color: var(--copper-light); font-style: italic; }
.hero-copy h1 { font-size: clamp(2.85rem, 5.2vw, 4.85rem); }

.hero-accent-card {
  width: min(17rem, 100%);
  padding: 1.25rem 1.35rem;
  color: var(--forest);
  background: rgba(255, 253, 249, 0.95);
  border: 1px solid rgba(213, 160, 111, 0.55);
  border-radius: 0.85rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-accent-card::before {
  display: block;
  width: 2.25rem;
  height: 1px;
  margin-bottom: 0.85rem;
  content: "";
  background: var(--copper);
}

.hero-accent-card strong { display: block; font-family: var(--serif); font-size: 1.35rem; }
.hero-accent-card span { color: var(--muted); font-size: 0.82rem; }

.trust-bar {
  position: relative;
  z-index: 2;
  color: var(--forest);
  background: var(--copper-light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 1.4rem 1.5rem;
  border-right: 1px solid rgba(10, 47, 39, 0.14);
  text-align: center;
}

.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-family: var(--serif); font-size: 1.1rem; }
.trust-item span { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.25rem;
}

.section-heading > div { max-width: 720px; }
.section-heading p:last-child { margin-bottom: 0; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card {
  position: relative;
  min-height: 23rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.service-card:nth-child(1),
.service-card:nth-child(4) { color: #fff; background: var(--forest); }

.service-card .number {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 3.4rem;
  place-items: center;
  color: var(--forest);
  background: var(--copper-light);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p { max-width: 52ch; margin-bottom: 1.5rem; color: var(--muted); }
.service-card:nth-child(1) p,
.service-card:nth-child(4) p { color: rgba(255, 255, 255, 0.7); }
.service-card:nth-child(1) .text-link,
.service-card:nth-child(4) .text-link { color: var(--copper-light); }

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-statement {
  display: grid;
  min-height: 25rem;
  align-content: center;
  padding: clamp(2.25rem, 6vw, 4.75rem);
  color: #fff;
  isolation: isolate;
}

.brand-statement::before,
.brand-statement::after {
  position: absolute;
  z-index: -1;
  content: "";
  border: 1px solid rgba(239, 208, 173, 0.22);
  border-radius: 50%;
}

.brand-statement::before {
  top: -8rem;
  right: -6rem;
  width: 21rem;
  height: 21rem;
  box-shadow: 0 0 0 4rem rgba(239, 208, 173, 0.035);
}

.brand-statement::after {
  bottom: -6rem;
  left: -4rem;
  width: 14rem;
  height: 14rem;
}

.brand-statement-kicker {
  margin-bottom: 1.75rem;
  color: var(--copper-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-statement strong {
  display: grid;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.2vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.brand-statement strong span:last-child { color: var(--copper-light); font-style: italic; }
.brand-statement small { margin-top: 2rem; color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }

.feature-list { display: grid; gap: 1rem; margin: 2rem 0 0; padding: 0; list-style: none; }

.feature-list li {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.feature-list li:last-child { border-bottom: 0; }

.check {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: var(--forest);
  background: var(--copper-light);
  border-radius: 50%;
  font-weight: 900;
}

.feature-list strong { display: block; margin-bottom: 0.15rem; }
.feature-list span:not(.check) { color: var(--muted); font-size: 0.94rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}

.process-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--white-line);
  border-radius: var(--radius);
}

.process-card .number { color: var(--copper-light); font-family: var(--serif); font-size: 2.2rem; }
.process-card p { margin-bottom: 0; color: rgba(255, 255, 255, 0.68); }

.founder-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.founder-card img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; }
.founder-copy { padding: clamp(2rem, 6vw, 5rem); }
.signature { margin: 2rem 0 0; color: var(--forest-3); font-family: var(--serif); font-size: 1.3rem; font-style: italic; }

.cta-panel {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5.5rem);
  overflow: hidden;
  color: #fff;
  background: var(--forest);
  border-radius: var(--radius);
}

.cta-panel::after {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 22rem;
  height: 22rem;
  content: "";
  border: 1px solid rgba(213, 160, 111, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(213, 160, 111, 0.05);
}

.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 15ch; }
.cta-panel p { max-width: 56ch; color: rgba(255, 255, 255, 0.7); }

.page-hero {
  position: relative;
  padding: 4.5rem 0 4.25rem;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(125deg, var(--forest) 0%, #10483b 100%);
}

.page-hero::after {
  position: absolute;
  top: -11rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  content: "";
  border: 1px solid rgba(239, 208, 173, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(239, 208, 173, 0.035), 0 0 0 10rem rgba(239, 208, 173, 0.02);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 14ch; font-size: clamp(3rem, 5.2vw, 4.7rem); }
.page-hero .lead { color: rgba(255, 255, 255, 0.72); }
.page-hero .eyebrow { color: var(--copper-light); }

.service-detail {
  display: grid;
  grid-template-columns: 0.54fr 1.46fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child { border-bottom: 0; }
.service-index { color: var(--copper); font-family: var(--serif); font-size: 3rem; line-height: 1; }
.service-detail h2 { max-width: none; font-size: clamp(2rem, 4vw, 3.3rem); }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.5rem; }
.service-tags span { padding: 0.5rem 0.75rem; color: var(--forest-2); background: var(--ivory); border-radius: 999px; font-size: 0.82rem; font-weight: 750; }

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.principle-card { padding: 2rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.principle-card p { margin-bottom: 0; color: var(--muted); }

.fact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact { padding: 1.75rem; background: #fff; }
.fact span { display: block; margin-bottom: 0.35rem; color: var(--muted); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.fact strong { font-family: var(--serif); font-size: 1.24rem; font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 2rem;
  align-items: start;
}

.contact-card, .form-card {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card { color: #fff; background: var(--forest); }
.contact-card h2 { font-size: 2.3rem; }

.contact-list { display: grid; gap: 1.25rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.contact-list li { padding-bottom: 1.2rem; border-bottom: 1px solid var(--white-line); }
.contact-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-list span { display: block; margin-bottom: 0.25rem; color: var(--copper-light); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-list a:hover { color: var(--copper-light); }

.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: 0.4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.86rem; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(213, 160, 111, 0.18); }
.form-note { margin: 1rem 0 0; color: var(--muted); font-size: 0.82rem; }
.hp-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-top: 1rem; padding: 0.8rem 1rem; border-radius: 0.65rem; font-size: 0.9rem; font-weight: 700; }
.form-status.success { color: #14532d; background: #dcfce7; border: 1px solid #86efac; }
.form-status.error { color: #7f1d1d; background: #fee2e2; border: 1px solid #fca5a5; }
.btn:disabled { cursor: wait; opacity: 0.68; transform: none; }

.legal-layout { display: grid; grid-template-columns: 15rem 1fr; gap: 4rem; align-items: start; }
.legal-nav { position: sticky; top: 8rem; padding: 1.25rem; background: var(--ivory); border-radius: 0.8rem; }
.legal-nav strong { display: block; margin-bottom: 0.7rem; }
.legal-nav a { display: block; padding: 0.35rem 0; color: var(--muted); font-size: 0.88rem; }
.legal-nav a:hover { color: var(--forest); }
.legal-content h2 { max-width: none; margin-top: 3rem; font-size: 2rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 2rem; font-family: var(--sans); font-size: 1.1rem; font-weight: 800; }
.legal-content p, .legal-content li { color: #42504b; }
.legal-content li { margin-bottom: 0.5rem; }
.last-updated { color: var(--muted); font-size: 0.9rem; }

.site-footer { color: rgba(255, 255, 255, 0.76); background: #061f19; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 3rem; padding: 5rem 0 3rem; }
.footer-brand img { width: 12.5rem; height: auto; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 38ch; font-size: 0.92rem; }
.footer-col h3 { margin-bottom: 1rem; color: var(--copper-light); font-family: var(--sans); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-col a, .footer-col address { display: block; margin: 0.48rem 0; font-size: 0.9rem; font-style: normal; }
.footer-col a:hover { color: var(--copper-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; border-top: 1px solid var(--white-line); font-size: 0.8rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 4.55rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    align-items: stretch;
    padding: 2rem 1.25rem;
    color: #fff;
    background: var(--forest);
  }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 0.75rem 0; font-size: 1.1rem; }
  .nav-cta { text-align: center; }
  .nav-links .language-switch { width: max-content; margin-top: 0.75rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 4.5rem; }
  .hero-copy { max-width: 780px; }
  .hero-accent-card { width: min(100%, 20rem); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid rgba(10, 47, 39, 0.14); }
  .split-grid, .founder-card, .contact-grid { grid-template-columns: 1fr; }
  .split-grid .brand-panel { order: 2; }
  .process-grid, .principle-grid { grid-template-columns: 1fr; }
  .founder-card img { max-height: 42rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-nav { position: static; }
}

@media (max-width: 700px) {
  .section { padding: 5rem 0; }
  .section-sm { padding: 3.5rem 0; }
  .container, .narrow { width: min(100% - 1.5rem, 1180px); }
  .nav-shell { width: min(100% - 1.25rem, 1180px); min-height: 4.35rem; }
  .brand img { width: 8.35rem; max-height: 3.3rem; }
  .nav-links { top: 4.35rem; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.3rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .hero-grid { gap: 3rem; padding: 3.75rem 0 4.5rem; }
  .hero-accent-card { width: 100%; }
  .section-heading { display: block; }
  .section-heading .text-link { margin-top: 1rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 20rem; }
  .service-detail { grid-template-columns: 1fr; gap: 1rem; }
  .fact-grid, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .page-hero { padding: 3.75rem 0 3.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { display: grid; }
}
