:root {
  --color-ink: #161a1d;
  --color-ink-soft: #343a40;
  --color-paper: #f7f4ef;
  --color-surface: #fffaf2;
  --color-line: #ded6ca;
  --color-muted: #746e66;
  --color-red: #c62828;
  --color-red-dark: #9f1f1f;
  --color-red-soft: #fde8e6;
  --color-alert: #f2b705;
  --color-forest: #235347;
  --shadow-sm: 0 1px 2px rgba(22, 26, 29, 0.08), 0 8px 24px rgba(22, 26, 29, 0.06);
  --shadow-md: 0 16px 48px rgba(22, 26, 29, 0.14);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shell: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Work Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

a,
button,
summary {
  touch-action: manipulation;
}

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

button {
  border: 0;
}

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-180%);
  border-radius: var(--radius-sm);
  background: var(--color-red);
  color: white;
  padding: 10px 14px;
  transition: transform 160ms var(--ease);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(22, 26, 29, 0.82);
  color: white;
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.24));
}

.brand-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 180ms var(--ease);
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--color-alert);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: white;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transition: background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease),
    transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-1px);
  }
}

.button:active {
  transform: scale(0.985);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.56);
  outline-offset: 3px;
}

.button-sm {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-lg {
  min-height: 54px;
  padding: 0 22px;
}

.button-primary {
  background: var(--color-red);
  color: white;
  box-shadow: 0 12px 24px rgba(198, 40, 40, 0.24);
}

.button-primary:hover {
  background: var(--color-red-dark);
  box-shadow: 0 16px 36px rgba(198, 40, 40, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.15);
}

.button-light {
  background: white;
  color: var(--color-red-dark);
  box-shadow: var(--shadow-sm);
}

.section {
  padding: 96px 0;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(7px);
  transition:
    opacity 680ms var(--ease),
    transform 760ms var(--ease),
    filter 760ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-drop {
  transform: translate3d(0, -26px, 0) scale(0.985);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-band {
  position: relative;
  overflow: hidden;
}

.hero {
  min-height: calc(100dvh - 74px);
  color: white;
}

.hero-media,
.hero-media img,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(22, 26, 29, 0.96) 0%, rgba(22, 26, 29, 0.84) 44%, rgba(22, 26, 29, 0.3) 100%),
    linear-gradient(180deg, rgba(22, 26, 29, 0.12), rgba(22, 26, 29, 0.76));
}

.hero-shell {
  position: relative;
  display: grid;
  min-height: calc(100dvh - 74px);
  align-items: center;
  padding: 82px 0 64px;
}

.hero-content {
  max-width: 760px;
}

.hero-content > * {
  animation: hero-drop 820ms var(--ease) both;
}

.hero-content > :nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 180ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 270ms;
}

.hero-content > :nth-child(5) {
  animation-delay: 360ms;
}

@keyframes hero-drop {
  from {
    opacity: 0;
    transform: translate3d(0, -24px, 0);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}


.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-alert);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 5.2vw, 4.7rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.22rem;
  font-weight: 750;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-proof div {
  padding: 16px;
  background: rgba(22, 26, 29, 0.42);
}

.hero-proof dt {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.risk-strip {
  background: var(--color-ink);
  color: white;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-grid article {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.risk-grid svg {
  color: var(--color-alert);
  flex: 0 0 auto;
  font-size: 1.35rem;
}

.split-layout,
.proof-layout,
.contact-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

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

.problem-list > p,
.section-heading > p,
.proof-copy > p,
.contact-copy > p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-ink-soft);
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-red);
  content: "";
  box-shadow: inset 0 0 0 4px var(--color-red-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-services {
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.75), rgba(247, 244, 239, 1)),
    var(--color-paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.78);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.featured-service {
  background: var(--color-ink);
  color: white;
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--color-red-soft);
  color: var(--color-red-dark);
  margin-bottom: 24px;
}

.featured-service .card-icon {
  background: rgba(242, 183, 5, 0.14);
  color: var(--color-alert);
}

.service-card p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.featured-service p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 28px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  list-style: none;
}

.featured-service ul {
  color: rgba(255, 255, 255, 0.84);
}

.service-card li {
  border-top: 1px solid rgba(116, 110, 102, 0.18);
  padding-top: 10px;
}

.featured-service li {
  border-color: rgba(255, 255, 255, 0.14);
}

.section-process {
  background: var(--color-ink);
  color: white;
}

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

.field-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.field-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-ink);
  box-shadow: var(--shadow-sm);
}

.field-card-large {
  grid-row: span 2;
  min-height: 620px;
}

.field-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 450ms var(--ease);
}

.field-card:hover img {
  transform: scale(1.025);
}

.field-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 6px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(22, 26, 29, 0), rgba(22, 26, 29, 0.88));
  color: white;
}

.field-card figcaption span {
  color: var(--color-alert);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-card figcaption strong {
  max-width: 520px;
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.28rem;
  line-height: 1.16;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 44px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  list-style: none;
  overflow: hidden;
}

.process-steps li {
  min-height: 260px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.process-steps span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--color-alert);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 800;
}

.process-steps p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

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

.story-video {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(18px, 3vw, 30px);
}

.story-video-on-surface {
  border: 1px solid var(--color-line);
  background:
    linear-gradient(135deg, rgba(22, 26, 29, 0.045), rgba(255, 250, 242, 0.92)),
    var(--color-surface);
  box-shadow: var(--shadow-md);
}

.story-video-dark {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
  color: white;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
}

.story-video-proof {
  grid-column: 1 / -1;
  border: 1px solid var(--color-line);
  background: white;
  box-shadow: var(--shadow-md);
}

.story-video-flipped {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
}

.story-video-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  background: #0a0d0f;
  box-shadow: 0 24px 60px rgba(22, 26, 29, 0.22);
}

.story-video-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
}

.story-video.is-playing .story-video-media {
  border-color: rgba(242, 183, 5, 0.56);
  box-shadow:
    0 28px 78px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(242, 183, 5, 0.12);
}

.story-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 13;
  background: #0a0d0f;
  object-fit: cover;
  transition: filter 320ms var(--ease);
}

.story-video.is-playing video {
  filter: saturate(1.08) contrast(1.04);
}

.story-video-copy {
  max-width: 650px;
}

.story-video-copy h3 {
  max-width: 600px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.story-video-copy p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.story-video-dark .story-video-copy p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.story-video-dark .section-kicker {
  color: var(--color-alert);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.metric-row div {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 20px;
  background: white;
}

.metric-row strong {
  display: block;
  color: var(--color-red-dark);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 1.35rem;
}

.metric-row span {
  display: block;
  margin-top: 6px;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.proof-collage {
  display: grid;
  grid-template-columns: 0.9fr 0.7fr;
  gap: 16px;
  align-items: end;
}

.proof-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.proof-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.proof-image-main {
  grid-row: span 2;
}

.proof-image-main img {
  min-height: 520px;
}

.section-segments {
  background: var(--color-paper);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.segment-grid article {
  display: grid;
  min-height: 126px;
  place-items: center;
  gap: 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  color: var(--color-ink-soft);
  font-weight: 800;
  text-align: center;
}

.segment-grid svg {
  color: var(--color-red-dark);
  font-size: 1.4rem;
}

.cta-band {
  background: var(--color-red);
  color: white;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-shell h2 {
  max-width: 820px;
}

.cta-shell .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

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

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

summary::marker {
  color: var(--color-red);
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.section-contact {
  background:
    linear-gradient(180deg, rgba(22, 26, 29, 0.92), rgba(22, 26, 29, 0.97)),
    url("./assets/media/hero-water-wide.jpg") center / cover;
  color: white;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.contact-cards a {
  display: grid;
  min-height: 104px;
  place-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.contact-cards a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.lead-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 242, 0.97);
  color: var(--color-ink);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-row.two-columns {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfc6ba;
  border-radius: var(--radius-sm);
  background: white;
  color: var(--color-ink);
  padding: 12px 14px;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #a99c8f;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--color-forest);
  font-weight: 700;
}

.site-footer {
  background: #0f1214;
  color: rgba(255, 255, 255, 0.78);
  padding: 30px 0;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-shell strong {
  color: white;
}

.footer-shell a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-alert);
  font-weight: 800;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }

  .service-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-video {
    grid-template-columns: 1fr;
  }

  .story-video-flipped {
    grid-template-columns: 1fr;
  }

  .story-video video {
    aspect-ratio: 4 / 5;
  }

  .segment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .proof-layout,
  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .header-shell {
    min-height: 68px;
    gap: 12px;
  }

  .brand-copy {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .button-sm {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 78px 0 48px;
  }

  h1 {
    font-size: 2.18rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-lg {
    width: 100%;
    min-height: 52px;
  }

  .hero-proof,
  .risk-grid,
  .service-grid,
  .process-steps,
  .metric-row,
  .segment-grid,
  .contact-cards,
  .form-row.two-columns {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
  }

  .hero-proof div {
    padding: 12px 9px;
  }

  .hero-proof dt {
    font-size: 0.9rem;
    line-height: 1.12;
  }

  .hero-proof dd {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .section {
    padding: 70px 0;
  }

  .service-card,
  .process-steps li {
    min-height: auto;
  }

  .process-steps span {
    margin-bottom: 24px;
  }

  .proof-collage {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .story-video {
    gap: 20px;
    margin-top: 30px;
    padding: 16px;
  }

  .story-video-copy {
    order: -1;
  }

  .story-video video {
    aspect-ratio: 4 / 5;
  }

  .story-video-copy h3 {
    font-size: 1.55rem;
  }

  .field-card,
  .field-card-large {
    min-height: 360px;
  }

  .proof-image-main img,
  .proof-image img {
    min-height: 280px;
  }

  .cta-shell,
  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero-content > *,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
