:root {
  --ink: #182018;
  --muted: #657064;
  --green: #1d6a3e;
  --green-dark: #0f3924;
  --rose: #a81d61;
  --paper: #fffaf0;
  --mist: #e8f0e8;
  --line: #d9decf;
  --wood: #b4773c;
  --sawdust: #eee2c7;
  --shadow: rgba(54, 72, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #edf4f0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 12% 10%, rgba(29, 106, 62, 0.12), transparent 26%),
    radial-gradient(circle at 88% 36%, rgba(180, 119, 60, 0.1), transparent 30%);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 9px 12px;
  border-radius: 4px;
  color: #fff;
  background: var(--green-dark);
  transition: transform 180ms ease;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

a:hover {
  color: var(--rose);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(237, 244, 235, 0.96);
  border-bottom: 1px solid rgba(29, 106, 62, 0.18);
  backdrop-filter: blur(14px);
}

.brand-strip {
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: 260px;
  align-items: center;
  gap: 14px;
  color: var(--ink);
}

.brand img {
  width: 96px;
  border-radius: 3px;
  mix-blend-mode: multiply;
}

.brand strong {
  display: block;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.main-nav a {
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  border-color: rgba(29, 106, 62, 0.2);
  color: var(--green-dark);
  background: rgba(255, 250, 240, 0.72);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 50px;
  align-items: center;
  padding: 48px 0 42px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: -16px 0 28px;
  border: 1px solid rgba(29, 106, 62, 0.16);
  border-radius: 8px;
  background: rgba(29, 106, 62, 0.16);
  box-shadow: 0 12px 30px rgba(56, 77, 62, 0.07);
}

.trust-strip span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.88);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: min(320px, 42vw);
  height: 3px;
  background: linear-gradient(90deg, var(--wood), transparent);
}

.hero-copy {
  padding: 10px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
  line-height: 1.12;
}

h1 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7.2vw, 88px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-wrap: balance;
}

.subheadline {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.3;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: #354137;
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(29, 106, 62, 0.18);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
button:hover {
  color: #fff;
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 57, 36, 0.22);
}

.button:active,
button:active,
.feature-card:active,
.pdf-preview:active {
  transform: translateY(1px);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(168, 29, 97, 0.35);
  outline-offset: 3px;
}

.button.secondary {
  color: var(--green-dark);
  background: #edf4f0;
  border: 1px solid var(--line);
}

.button.secondary:hover {
  color: #fff;
  background: var(--green-dark);
}

.text-link {
  color: var(--green-dark);
  font-weight: 700;
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.72);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  z-index: -1;
  border: 1px solid rgba(23, 108, 58, 0.22);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(238, 226, 199, 0.9), rgba(255, 250, 240, 0.55));
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 22px 54px var(--shadow);
}

.hero-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 4px;
  color: #fff;
  background: rgba(15, 57, 36, 0.9);
  font-size: 13px;
  font-weight: 700;
}

.hero-oil .hero-media img {
  object-position: center;
}

.hero-tour {
  padding-bottom: 24px;
}

.hero-tour .hero-media img {
  aspect-ratio: 16 / 9;
}

.hero-tour .hero-copy > p:not(.eyebrow) {
  font-size: 19px;
}

.hero-tour h1 {
  font-size: clamp(46px, 6vw, 74px);
}

.section {
  margin: 30px 0;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 14px 40px rgba(56, 77, 62, 0.08);
}

.section:nth-of-type(even) {
  transform: translateX(18px);
}

.section p {
  margin: 18px 0 0;
  color: #354137;
}

.text-section {
  max-width: none;
  padding-right: min(18vw, 220px);
}

.text-section h2 + p,
.text-section h2 + ul {
  margin-top: 16px;
}

.text-section h2:not(:first-child) {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(29, 106, 62, 0.14);
}

.text-section a {
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid rgba(29, 106, 62, 0.16);
  border-radius: 10px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.9)),
    linear-gradient(145deg, var(--paper), #f4ead4);
  box-shadow: 0 16px 36px rgba(81, 76, 45, 0.1);
  overflow: hidden;
}

.feature-card:first-child {
  grid-row: span 2;
  min-height: 460px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(232, 240, 232, 0.82)),
    url("../images/saegewerk-jerzens-tvb.jpg") center / cover;
  box-shadow: 0 22px 52px rgba(56, 77, 62, 0.16);
}

.feature-card:nth-child(4) {
  grid-column: 1 / -1;
  min-height: 170px;
  padding: 26px 30px;
  border-color: rgba(180, 119, 60, 0.28);
  background:
    linear-gradient(90deg, rgba(15, 57, 36, 0.94), rgba(29, 106, 62, 0.86)),
    url("../images/zirbenoel-destille-sepp.jpg") center / cover;
  color: #fff;
}

.feature-card::before {
  content: "";
  width: 48px;
  height: 4px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green);
}

.feature-card:nth-child(2)::before {
  background: var(--rose);
}

.feature-card:nth-child(3)::before {
  background: var(--wood);
}

.feature-card:nth-child(4)::before {
  background: var(--green-dark);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(81, 76, 45, 0.16);
}

.feature-card small {
  color: var(--wood);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-card span {
  display: block;
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 700;
}

.feature-card:first-child span {
  max-width: 9ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
}

.feature-card:nth-child(4) span,
.feature-card:nth-child(4) p,
.feature-card:nth-child(4) small,
.feature-card:nth-child(4) em {
  color: #fff;
}

.feature-card:nth-child(4) span {
  font-size: clamp(26px, 3vw, 38px);
}

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

.feature-card:first-child p {
  max-width: 44ch;
  color: #2c3a31;
  font-size: 18px;
}

.feature-card:nth-child(4) p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
}

.feature-card em {
  display: inline-block;
  margin-top: 24px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 700;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(238, 226, 199, 0.72)),
    url("../images/legacy-header.jpg") center top / cover;
}

.story-copy {
  max-width: 720px;
}

.story-facts {
  display: grid;
  gap: 10px;
}

.story-facts div {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: inset 0 0 0 1px rgba(180, 119, 60, 0.18);
}

.story-facts strong {
  display: block;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 0.95;
}

.story-facts span {
  display: block;
  margin-top: 5px;
  color: var(--green-dark);
  font-weight: 700;
}

.split,
.map-section,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: start;
}

.split {
  align-items: center;
}

.timber-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 32px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(232, 240, 232, 0.9));
}

.practical-section {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: 30px;
  align-items: start;
  border-color: rgba(29, 106, 62, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(238, 226, 199, 0.5));
}

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

.practical-list article {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(29, 106, 62, 0.12);
}

.practical-list span {
  display: block;
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 700;
}

.practical-section .button {
  margin-top: 24px;
}

.phone-line {
  display: inline-block;
  margin-top: 18px;
  font-size: 20px;
}

.contact-guide {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(232, 240, 232, 0.78));
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  border-top: 1px solid rgba(29, 106, 62, 0.16);
  border-bottom: 1px solid rgba(29, 106, 62, 0.16);
}

.guide-grid article {
  padding: 20px 22px 22px;
  border-right: 1px solid rgba(29, 106, 62, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.guide-grid article:last-child {
  border-right: 0;
}

.guide-grid span {
  display: block;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.guide-grid p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
}

.timber-intro {
  position: sticky;
  top: 112px;
}

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

.timber-list article {
  padding: 20px;
  border-left: 5px solid var(--wood);
  border-radius: 7px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: inset 0 0 0 1px rgba(180, 119, 60, 0.13);
}

.timber-list span,
.process-steps span {
  display: block;
  color: var(--green-dark);
  font-size: 22px;
  font-weight: 700;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(15, 57, 36, 0.92), rgba(29, 106, 62, 0.78)),
    url("../images/saegewerk.jpg") center / cover;
}

.process-section h2,
.process-section .eyebrow {
  color: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.process-steps article {
  min-height: 160px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
}

.process-steps small {
  display: block;
  margin-bottom: 14px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.gallery-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(238, 226, 199, 0.62));
}

.split img,
.map-section img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
}

.pdf-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.28fr);
  gap: 32px;
  align-items: stretch;
  border-color: rgba(168, 29, 97, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(238, 226, 199, 0.74));
}

.pdf-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}

.fact-row span {
  padding: 7px 10px;
  border: 1px solid rgba(23, 108, 58, 0.18);
  border-radius: 999px;
  color: var(--green-dark);
  background: #f2f7f3;
  font-size: 13px;
  font-weight: 700;
}

.pdf-preview {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(24, 32, 27, 0.12);
}

.pdf-preview::after {
  content: "PDF öffnen";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 9px 12px;
  border-radius: 4px;
  color: #fff;
  background: rgba(15, 57, 36, 0.94);
  font-size: 13px;
  font-weight: 700;
}

.pdf-preview img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.pdf-preview:hover img {
  transform: scale(1.015);
}

.pdf-feature-compact {
  grid-template-columns: minmax(0, 1fr) 320px;
  padding: 32px;
}

.pdf-feature-compact .pdf-preview img {
  min-height: 220px;
}

.pdf-feature-compact .pdf-copy p:nth-of-type(n+3) {
  display: none;
}

.contact-data {
  min-height: 100%;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  background:
    linear-gradient(rgba(15, 57, 36, 0.88), rgba(15, 57, 36, 0.82)),
    url("../images/saegewerk-jerzens-tvb.jpg") center / cover;
}

.contact-data h2,
.contact-data p,
.contact-data a {
  color: #fff;
}

.contact-data h2 {
  max-width: 11ch;
}

.contact-data span {
  color: rgba(255, 255, 255, 0.78);
}

.contact-data p:first-of-type {
  margin-top: 12px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 8px 0 0;
  opacity: 0.96;
}

.contact-form h2 {
  margin-bottom: 4px;
  font-size: clamp(24px, 2.4vw, 30px);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(29, 106, 62, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(29, 106, 62, 0.24);
  border-color: rgba(29, 106, 62, 0.52);
  background: #fff;
}

.contact-form input:invalid,
.contact-form textarea:invalid {
  border-color: rgba(168, 29, 97, 0.55);
}

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

.contact-form .consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
}

.contact-form .consent input {
  margin-top: 5px;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.9fr 180px;
  gap: 28px;
  width: min(1120px, calc(100% - 32px));
  margin: 48px auto 0;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: #354137;
}

.site-footer nav,
.site-footer .partner {
  display: grid;
  align-content: start;
  gap: 6px;
}

.site-footer strong {
  color: var(--green-dark);
}

.site-footer a {
  color: #354137;
}

.partner img {
  width: 150px;
  margin-top: 8px;
}

@media (max-width: 860px) {
  .brand-strip,
  .main-nav,
  .hero-actions {
    align-items: flex-start;
  }

  .brand-strip {
    flex-direction: column;
    padding: 14px 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .map-section,
  .timber-section,
  .practical-section,
  .pdf-feature,
  .story-section,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 14px;
    padding: 10px 0 16px;
  }

  .hero::after {
    display: none;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 20px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero-compact-title h1 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.05;
  }

  .hero-tour h1 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .hero-tour {
    gap: 10px;
    padding-bottom: 12px;
  }

  .hero-tour .hero-media img {
    max-height: 150px;
  }

  .hero-tour .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .gallery,
  .process-steps,
  .guide-grid,
  .link-list {
    grid-template-columns: 1fr;
  }

  .guide-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 106, 62, 0.16);
  }

  .guide-grid article:last-child {
    border-bottom: 0;
  }

  .timber-intro {
    position: static;
  }

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

  .feature-card:first-child,
  .feature-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
    padding: 24px;
  }

  .feature-card:first-child span {
    max-width: none;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 26px;
    line-height: 1.12;
  }

  .feature-card:first-child p,
  .feature-card:nth-child(4) p {
    max-width: none;
    font-size: 15px;
  }

  .text-section {
    padding-right: 26px;
  }

  .section {
    margin: 24px 0;
    padding: 24px;
  }

  .section:nth-of-type(even) {
    transform: none;
  }

  .pdf-preview img {
    min-height: 280px;
  }

  .pdf-feature-compact {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  main,
  .brand-strip,
  .site-footer {
    width: min(100% - 22px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 62px;
  }

  .brand-strip {
    gap: 8px;
    min-height: 0;
    padding: 7px 0;
  }

  .brand {
    gap: 10px;
    width: 100%;
  }

  .brand strong {
    font-size: 14px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 11px;
  }

  .main-nav {
    width: 100%;
    gap: 3px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .main-nav a {
    padding: 5px 6px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.45;
    margin-top: 10px;
  }

  .subheadline {
    margin-top: 10px;
    font-size: 17px;
  }

  .trust-strip {
    display: none;
  }

  .hero-media {
    display: block;
    margin-top: 12px;
  }

  .hero-media img {
    aspect-ratio: 16 / 9;
    max-height: 190px;
  }

  .hero-media figcaption {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 7px 9px;
    font-size: 12px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 12px;
  }

  .button,
  button {
    min-height: 42px;
    padding: 10px 14px;
  }

  .trust-strip span {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 10px;
    line-height: 1.15;
  }
}
