@font-face {
  font-family: "Parkinsans";
  src: url("/assets/fonts/parkinsans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --orange: #e85d4b;
  --green: #10562c;
  --green-deep: #0a3f20;
  --gold: #ffac2f;
  --sage: #a7c4a0;
  --cream: #f9f5ec;
  --white: #fff;
  --ink: #183021;
  --muted: #526258;
  --border: #d8dfd4;
  --shadow: 0 18px 55px rgb(16 86 44 / 10%);
  --radius-sm: 0.75rem;
  --radius: 1.125rem;
  --radius-lg: 2rem;
  --shell: 72rem;
  --font: "Parkinsans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgb(16 86 44 / 4%) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--gold);
  color: var(--green-deep);
}

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

h1,
h2,
h3 {
  color: var(--green);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 7.5vw, 5.2rem);
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

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

.shell {
  width: min(calc(100% - 2.5rem), var(--shell));
  margin-inline: auto;
}

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

.section-tight {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.surface-white {
  background: var(--white);
}

.surface-sage {
  background: color-mix(in srgb, var(--sage) 38%, var(--cream));
}

.surface-green {
  background: var(--green);
  color: var(--white);
}

.surface-green h2,
.surface-green h3 {
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--white);
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgb(16 86 44 / 11%);
  background: rgb(249 245 236 / 92%);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: block;
  width: 11.5rem;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav ul {
  display: flex;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: 1.65rem;
  list-style: none;
}

.site-nav li a {
  position: relative;
  display: inline-block;
  padding-block: 0.5rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav li a::after {
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

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

.menu-button {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0.75rem;
  border: 1px solid rgb(16 86 44 / 25%);
  border-radius: 50%;
  background: transparent;
  color: var(--green);
}

.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin-block: 4px;
  border-radius: 1px;
  background: currentcolor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgb(16 86 44 / 18%);
  background: var(--green-deep);
}

.button-secondary {
  background: transparent;
  color: var(--green);
}

.button-secondary:hover {
  background: var(--green);
  color: var(--white);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
}

.button-light:hover {
  background: var(--gold);
  color: var(--green-deep);
}

.button-row {
  display: flex;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.eyebrow {
  display: inline-flex;
  padding: 0;
  margin-bottom: 1.25rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--white);
}

.eyebrow-light::before {
  background: var(--gold);
}

.lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.centered-heading {
  max-width: 48rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.centered-heading .lead {
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  top: 5%;
  left: -8rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgb(167 196 160 / 24%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
}

.hero-copy h1 {
  max-width: 13ch;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-art {
  position: relative;
  min-height: 31rem;
}

.hero-orb {
  position: absolute;
  inset: 0.5rem 0.5rem 3rem 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 46% 54% 62% 38% / 45% 39% 61% 55%;
  background: linear-gradient(145deg, color-mix(in srgb, var(--gold) 30%, var(--cream)), var(--gold));
  box-shadow: var(--shadow);
  animation: drift 10s ease-in-out infinite alternate;
}

.hero-orb::before,
.hero-orb::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orb::before {
  top: -2rem;
  right: -2rem;
  width: 10rem;
  height: 10rem;
  background: rgb(255 255 255 / 28%);
}

.hero-orb::after {
  bottom: 1rem;
  left: 1rem;
  width: 6rem;
  height: 6rem;
  background: rgb(232 93 75 / 16%);
}

.hero-orb img {
  position: relative;
  z-index: 1;
  width: 84%;
  height: auto;
}

.hero-orb .hero-icon {
  width: 56%;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: -0.25rem;
  bottom: 0;
  width: min(16rem, 66%);
  padding: 1.2rem;
  border: 1px solid rgb(16 86 44 / 11%);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--orange);
  font-size: 1.3rem;
}

@keyframes drift {
  to { border-radius: 55% 45% 38% 62% / 51% 58% 42% 49%; }
}

.trust-strip {
  border-block: 1px solid rgb(16 86 44 / 10%);
  background: var(--white);
}

.trust-grid {
  display: grid;
  padding-block: 1.35rem;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.trust-item strong {
  display: block;
  color: var(--green);
  font-size: 1.02rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card::after {
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  height: 3px;
  transform: scaleX(0.28);
  transform-origin: left;
  border-radius: 0 0 999px 999px;
  background: var(--orange);
  content: "";
  transition: transform 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
}

.card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--orange) 17%, var(--cream));
  color: var(--green);
}

.card-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

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

.text-link {
  display: inline-flex;
  margin-top: 0.65rem;
  align-items: center;
  gap: 0.35rem;
  color: var(--green);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.value-list li {
  display: grid;
  align-items: start;
  gap: 0.85rem;
  grid-template-columns: 2.2rem 1fr;
}

.check {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 800;
}

.value-list strong {
  display: block;
  color: var(--green);
}

.quote-card {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--green);
  color: var(--white);
}

.quote-card::before {
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 0;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: var(--orange);
  content: "";
}

.quote-card::after {
  position: absolute;
  top: -1.5rem;
  right: 2rem;
  color: var(--gold);
  content: "“";
  font-size: 10rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.28;
}

.quote-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.quote-card p {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  color: var(--sage);
}

.cta-panel {
  position: relative;
  display: grid;
  padding: clamp(2rem, 6vw, 4.5rem);
  overflow: hidden;
  align-items: center;
  gap: 2rem;
  border-radius: var(--radius-lg);
  background: var(--green);
  color: var(--white);
  grid-template-columns: 1fr auto;
}

.cta-panel::before {
  position: absolute;
  top: -8rem;
  right: 14%;
  width: 20rem;
  height: 20rem;
  border: 3.5rem solid rgb(255 172 47 / 18%);
  border-radius: 50%;
  content: "";
}

.cta-panel::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgb(232 93 75 / 24%);
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 18ch;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.cta-panel p {
  max-width: 42rem;
  color: rgb(255 255 255 / 78%);
}

.page-hero {
  position: relative;
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -5rem;
  width: clamp(15rem, 32vw, 30rem);
  height: clamp(15rem, 32vw, 30rem);
  transform: translateY(-50%);
  border: clamp(2rem, 5vw, 5rem) solid rgb(167 196 160 / 32%);
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: max(1.25rem, calc((100% - var(--shell)) / 2));
  width: 4.5rem;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--orange);
  content: "";
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero .lead {
  max-width: 38rem;
}

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

.service-detail {
  padding: clamp(1.75rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.service-detail {
  border-top: 4px solid var(--orange);
}

.service-detail:nth-child(3n + 2) {
  border-top-color: var(--gold);
}

.service-detail:nth-child(3n) {
  border-top-color: var(--sage);
}

.service-detail:nth-child(2),
.service-detail:nth-child(5) {
  background: color-mix(in srgb, var(--sage) 35%, var(--cream));
}

.service-detail ul {
  padding-left: 1.2rem;
  margin-bottom: 0;
  color: var(--muted);
}

.service-detail li + li {
  margin-top: 0.4rem;
}

.process-grid {
  display: grid;
  gap: 1.25rem;
  counter-reset: process;
  grid-template-columns: repeat(3, 1fr);
}

.process-step {
  counter-increment: process;
}

.process-step::before {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  content: counter(process, decimal-leading-zero);
  font-weight: 800;
}

.process-step:nth-child(2)::before {
  background: var(--orange);
  color: var(--black);
}

.process-step:nth-child(3)::before {
  background: var(--sage);
}

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

.team-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: minmax(10rem, 0.72fr) minmax(0, 1.28fr);
}

.team-card {
  border-top: 4px solid var(--orange);
}

.team-card:nth-child(even) {
  border-top-color: var(--gold);
}

.team-photo {
  min-height: 100%;
  background: var(--sage);
}

.team-photo img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  object-position: center top;
}

.team-card:nth-child(2) .team-photo img {
  object-position: center 20%;
}

.team-card:nth-child(4) .team-photo img {
  object-position: center 12%;
}

.team-copy {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.team-role {
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-copy p:last-child {
  color: var(--muted);
}

.credential-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.credential {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 10%);
  text-align: center;
}

.credential strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--gold);
  font-size: 1.6rem;
}

.credential span {
  color: rgb(255 255 255 / 82%);
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.contact-methods {
  display: grid;
  margin-top: 2rem;
  gap: 1rem;
}

.contact-method {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.contact-method {
  border-left: 4px solid var(--orange);
}

.contact-method:nth-child(2) {
  border-left-color: var(--gold);
}

.contact-method:nth-child(3) {
  border-left-color: var(--sage);
}

.contact-method span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method a {
  overflow-wrap: anywhere;
  color: var(--green);
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

.form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card {
  border-top: 5px solid var(--orange);
}

.form-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(2, 1fr);
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #aab8ad;
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
}

input,
select {
  min-height: 3.15rem;
  padding-inline: 0.9rem;
}

textarea {
  min-height: 9rem;
  padding: 0.8rem 0.9rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgb(255 172 47 / 45%);
}

.form-note {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status {
  margin-top: 1rem;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 650;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.not-found-mark {
  color: var(--orange);
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.site-footer {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--green-deep);
  color: var(--white);
}

.site-footer {
  border-top: 6px solid var(--orange);
}

.footer-grid {
  display: grid;
  padding-bottom: 3.25rem;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: 1.6fr 0.7fr 1fr;
}

.footer-brand img {
  width: 13rem;
  height: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  max-width: 24rem;
  color: rgb(255 255 255 / 70%);
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
  color: rgb(255 255 255 / 78%);
  font-size: 0.88rem;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.footer-bottom {
  display: flex;
  padding-block: 1.25rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgb(255 255 255 / 13%);
  color: rgb(255 255 255 / 56%);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 64rem) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card { grid-template-columns: 1fr; }
  .team-photo img { min-height: 21rem; aspect-ratio: 4 / 3; }
  .credential-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 52rem) {
  .menu-button { display: block; }
  .menu-button[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
    background: var(--cream);
    box-shadow: var(--shadow);
  }
  .site-nav[data-open] { display: block; }
  .site-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .site-nav li a { display: block; padding: 0.8rem; }
  .site-nav .button { width: 100%; margin-top: 0.8rem; }
  .hero-grid,
  .split,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: 14ch; }
  .hero-art { min-height: 27rem; }
  .hero-orb { right: 8%; left: 8%; }
  .hero-note { right: 4%; }
  .cta-panel { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 38rem) {
  .shell { width: min(calc(100% - 1.5rem), var(--shell)); }
  .brand { width: 10.2rem; }
  .header-inner { min-height: 4.75rem; }
  .hero { padding-top: 3.25rem; }
  .hero-art { min-height: 22rem; }
  .hero-orb { right: 0; left: 0; }
  .hero-note { bottom: -0.5rem; width: 68%; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--border); border-left: 0; }
  .card-grid,
  .team-grid,
  .credential-strip,
  .form-grid { grid-template-columns: 1fr; }
  .team-photo img { aspect-ratio: 1 / 1; }
  .field-full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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