:root {
  --magenta: #b4005a;
  --magenta-dark: #870044;
  --blue: #164194;
  --blue-dark: #0f2a5e;
  --green: #0c7a4a;
  --yellow: #f4c400;
  --ink: #171820;
  --muted: #636776;
  --line: #e2e4ea;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --warm: #f4efe8;
  --night: #111923;
  --shadow: 0 20px 50px rgba(17, 25, 35, 0.14);
  --shadow-soft: 0 10px 28px rgba(17, 25, 35, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8f8fa;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 13px clamp(18px, 3.4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 223, 229, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: clamp(210px, 22vw, 300px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-nav a {
  padding: 10px 9px;
  color: #2f3038;
  border-radius: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--magenta);
  background: rgba(180, 0, 90, 0.08);
  outline: none;
}

.site-nav a.active {
  color: var(--magenta);
  background: rgba(180, 0, 90, 0.08);
}

.site-nav .nav-cta {
  margin-left: 6px;
  padding-left: 14px;
  padding-right: 14px;
  color: #fff;
  background: var(--magenta);
  box-shadow: 0 10px 24px rgba(180, 0, 90, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--magenta-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  background: linear-gradient(180deg, #fff 0%, #f5f6f8 100%);
}

.hero-media {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--night);
}

.hero-media > img {
  width: 100%;
  height: clamp(420px, 35vw, 500px);
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 18, 34, 0.9) 0%, rgba(11, 18, 34, 0.66) 44%, rgba(11, 18, 34, 0.14) 84%),
    linear-gradient(0deg, rgba(180, 0, 90, 0.3), rgba(180, 0, 90, 0));
}

.hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: clamp(28px, 5vw, 80px);
  color: #fff;
}

.eyebrow,
.section-kicker,
.card-label,
.panel-tag {
  margin: 0 0 12px;
  color: var(--magenta);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  color: #fff;
}

.hero h1,
.section h2,
.legal-article h1 {
  margin: 0;
  font-weight: 900;
  line-height: 1.02;
  overflow-wrap: break-word;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.85vw, 4.85rem);
}

.hero h1 span {
  display: block;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.action-panel > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.action-panel > a:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--magenta);
}

.button.primary:hover,
.button.primary:focus-visible,
.action-panel > a:hover,
.action-panel > a:focus-visible {
  background: var(--magenta-dark);
  outline: none;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1180px;
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 0px);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-strip a,
.quick-strip div {
  min-height: 92px;
  padding: 22px 24px;
  background: #fff;
  border-right: 1px solid var(--line);
}

.quick-strip a:hover {
  background: #fbf3f7;
}

.quick-strip a:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.quick-strip div:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-right: 0;
}

.quick-strip strong {
  display: block;
  color: var(--magenta);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.quick-strip span {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-weight: 800;
}

.section {
  padding: clamp(62px, 8vw, 104px) clamp(20px, 4vw, 56px);
}

.section > *,
.footer-inner {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 4vw, 56px);
  background:
    radial-gradient(circle at 85% 12%, rgba(180, 0, 90, 0.24), transparent 34%),
    linear-gradient(135deg, #111923 0%, #1b2431 58%, #2b1025 100%);
  color: #fff;
}

.sub-hero > * {
  max-width: 1180px;
}

.sub-hero h1 {
  margin: 0;
  font-size: clamp(2.3rem, 4.5vw, 5rem);
  line-height: 1;
  font-weight: 900;
  overflow-wrap: break-word;
}

.sub-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.sub-hero img {
  width: 100%;
  height: clamp(260px, 26vw, 420px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.03);
}

.sub-hero .eyebrow {
  color: #ff5ca4;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
}

.section h2 {
  font-size: clamp(2rem, 3.35vw, 3.85rem);
}

.intro-text p {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.fact-row span {
  padding: 18px;
  background: var(--soft);
  border-top: 4px solid var(--magenta);
  border-radius: 8px;
  color: var(--muted);
}

.fact-row strong {
  display: block;
  color: var(--ink);
  font-size: 1.28rem;
}

.brand-band {
  background:
    linear-gradient(180deg, #111923 0%, #121b26 100%);
  color: #fff;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading .eyebrow,
.brand-band .eyebrow {
  color: #ff5ca4;
}

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

.product-card {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
}

.product-card.large {
  grid-column: 1 / -1;
}

.product-card img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  background: var(--soft);
}

.product-card.large img {
  height: 278px;
}

.product-card div {
  padding: 22px;
}

.product-card h3,
.action-panel h3,
.stock-list h3,
.service-list strong,
.fuel-badge strong {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.15;
}

.product-card p:last-child,
.action-panel p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.content-grid,
.inventory-grid,
.rental-list,
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.content-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid.four,
.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card {
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(222, 223, 229, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-band .content-card {
  border-color: rgba(255, 255, 255, 0.08);
}

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

.content-card img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  background: var(--soft);
}

.content-card div {
  padding: 24px;
}

.content-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.15;
}

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

.content-card .card-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(180, 0, 90, 0.08);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--magenta);
  font-weight: 900;
}

.text-link::after {
  content: "→";
  margin-left: 7px;
}

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

.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  background: #fff;
}

.home-feature > * {
  max-width: none;
  margin: 0;
}

.home-feature p:not(.eyebrow) {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-stack {
  display: grid;
  gap: 12px;
}

.feature-stack a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: var(--soft);
  border-left: 5px solid var(--magenta);
  border-radius: 8px;
}

.feature-stack a:hover {
  background: #fbf3f7;
}

.feature-stack strong {
  font-size: 1.08rem;
}

.feature-stack span {
  color: var(--muted);
  text-align: right;
}

.workshop-band {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--night);
  color: #fff;
}

.workshop-band > * {
  max-width: none;
  margin: 0;
}

.workshop-band img {
  width: 100%;
  height: clamp(300px, 29vw, 470px);
  object-fit: cover;
  border-radius: 8px;
}

.workshop-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.workshop-band .eyebrow {
  color: #ff5ca4;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.split-section > * {
  max-width: none;
}

.split-section h2 {
  margin: 0 0 14px;
}

.logo-panel {
  width: 100%;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.gallery-grid.small {
  margin-top: 30px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
  background: #fff;
}

.detail-layout > * {
  max-width: none;
  margin: 0;
}

.detail-main,
.detail-aside {
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.detail-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #fafbfc);
}

.detail-aside h3 {
  margin: 0;
}

.button.outline {
  color: var(--magenta);
  border-color: rgba(180, 0, 90, 0.25);
  background: #fff;
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 18px;
  font-size: 0.96rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 13px 14px;
  vertical-align: top;
  border-top: 1px solid var(--line);
  text-align: left;
}

.spec-table tr:first-child th,
.spec-table tr:first-child td {
  border-top: 0;
}

.spec-table th {
  width: 34%;
  color: var(--magenta);
  background: #fbf3f7;
  font-weight: 900;
}

.section.tight {
  padding-top: 28px;
}

.service-section.static {
  max-width: none;
}

.team-grid .content-card img {
  height: 320px;
  object-position: top center;
}

.agb-link {
  margin-top: 22px;
}

.agb-link a {
  color: var(--magenta);
  font-weight: 900;
}

.card-label.green {
  color: var(--green);
}

.card-label.dark {
  color: var(--blue);
}

.sales-section {
  background: var(--warm);
}

.section-heading.compact {
  display: block;
}

.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
}

.action-panel,
.stock-list {
  border-radius: 8px;
  overflow: hidden;
}

.action-panel {
  min-height: 310px;
  padding: 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.action-panel.magenta {
  background:
    linear-gradient(135deg, rgba(180, 0, 90, 0.96), rgba(135, 0, 68, 0.96)),
    url("https://assets.kmu-web.ch/spring-baechler/Lagerfahrzeuge.png") center right / contain no-repeat;
}

.action-panel.blue {
  position: relative;
  grid-row: span 2;
  align-self: start;
  height: 500px;
  min-height: 500px;
  padding: 0;
  background: var(--blue-dark);
}

.action-panel.blue img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.82;
}

.action-panel.blue div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(10, 19, 35, 0.88), rgba(10, 19, 35, 0));
}

.panel-tag {
  color: #fff;
}

.action-panel > a {
  align-self: flex-start;
  color: #fff;
  background: var(--ink);
}

.stock-list {
  padding: 28px;
  background: #fff;
}

.stock-list ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.stock-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.stock-list span {
  color: var(--muted);
}

.stock-list strong {
  font-size: 1rem;
  text-align: right;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 6vw, 82px);
  max-width: 1292px;
  margin: 0 auto;
  align-items: start;
}

.service-section > * {
  max-width: none;
  margin: 0;
}

.service-copy {
  position: sticky;
  top: 116px;
}

.service-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-list {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-list div {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 28px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.service-list div:last-child {
  border-bottom: 0;
}

.service-list span {
  color: var(--muted);
}

.fuel-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--green);
  color: #fff;
}

.fuel-section > * {
  max-width: 1180px;
}

.fuel-section p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.fuel-section .eyebrow {
  color: var(--yellow);
}

.fuel-badge {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  margin-left: auto;
  border: 6px solid var(--yellow);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  text-align: center;
}

.fuel-badge span {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.team-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.team-section > * {
  max-width: none;
  margin: 0;
}

.team-image {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.team-image img {
  width: 100%;
  height: clamp(260px, 28vw, 430px);
  object-fit: cover;
}

.team-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.team-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.team-roles span {
  padding: 9px 12px;
  color: var(--blue);
  background: rgba(22, 65, 148, 0.08);
  border: 1px solid rgba(22, 65, 148, 0.18);
  border-radius: 8px;
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  background: var(--soft);
}

.contact-section > * {
  max-width: none;
  margin: 0;
}

.contact-card,
.map-wrap {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.contact-card {
  padding: clamp(26px, 4vw, 42px);
}

address {
  margin: 22px 0;
  font-style: normal;
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
}

.contact-links a {
  display: block;
  padding: 13px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.hours {
  margin: 24px 0 0;
}

.hours div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.hours dt {
  color: var(--magenta);
  font-weight: 900;
}

.hours dd {
  margin: 0;
  color: var(--muted);
}

.map-wrap {
  min-height: 430px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(23, 23, 28, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.site-footer {
  padding: 44px clamp(20px, 4vw, 56px);
  background: #111923;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.8fr) minmax(0, 0.7fr);
  gap: 28px;
}

.footer-inner img {
  width: 250px;
  padding: 8px;
  background: #fff;
}

.footer-inner p {
  margin: 16px 0 0;
}

.footer-inner nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.legal-main {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 4vw, 56px);
  background: var(--soft);
}

.legal-article {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.legal-article h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.legal-article h2 {
  margin: 38px 0 12px;
  font-size: 1.2rem;
}

.legal-article p,
.legal-article li {
  color: var(--muted);
}

.legal-article a {
  color: var(--magenta);
  font-weight: 800;
}

.legal-back {
  margin-top: 38px;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 74px;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    white-space: normal;
  }

  .site-nav.is-open {
    display: grid;
    gap: 2px;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .quick-strip,
  .fact-row,
  .product-grid,
  .content-grid,
  .content-grid.three,
  .content-grid.four,
  .inventory-grid,
  .rental-list,
  .gallery-grid,
  .split-section,
  .sub-hero,
  .detail-layout,
  .action-grid,
  .service-section,
  .team-section,
  .contact-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .home-feature,
  .workshop-band {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: 0;
    padding: 0;
    box-shadow: none;
  }

  .quick-strip a,
  .quick-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .product-card.large {
    grid-column: auto;
  }

  .service-copy {
    position: static;
  }

  .detail-aside {
    position: static;
  }

  .action-panel.blue,
  .action-panel.blue img {
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: min(220px, 68vw);
  }

  .hero-media > img {
    height: 460px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(11, 18, 34, 0.84), rgba(11, 18, 34, 0.22));
  }

  .hero-copy {
    justify-content: flex-end;
    padding: 26px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.18rem);
  }

  .hero-copy .eyebrow {
    font-size: 0.64rem;
  }

  .hero-copy p:not(.eyebrow) {
    font-size: 0.98rem;
    max-width: 33ch;
  }

  .section h2,
  .legal-article h1,
  .sub-hero h1 {
    font-size: clamp(1.78rem, 8vw, 2.25rem);
  }

  .sub-hero {
    padding-top: 34px;
  }

  .sub-hero img {
    height: 240px;
  }

  .content-card img,
  .gallery-grid img,
  .team-grid .content-card img {
    height: 210px;
  }

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

  .feature-stack a {
    display: block;
  }

  .feature-stack span {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .spec-table {
    font-size: 0.9rem;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .spec-table td {
    padding-top: 0;
  }

  .button,
  .action-panel > a {
    width: 100%;
  }

  .split,
  .section-heading,
  .service-list div,
  .fuel-section,
  .stock-list li {
    display: block;
  }

  .product-card img,
  .product-card.large img {
    height: 210px;
  }

  .action-panel {
    min-height: 280px;
  }

  .action-panel.blue,
  .action-panel.blue img {
    height: 390px;
    min-height: 390px;
  }

  .stock-list strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }

  .fuel-badge {
    width: 138px;
    height: 138px;
    margin: 30px 0 0;
  }

  .contact-links a {
    overflow-wrap: anywhere;
  }
}
