@font-face {
  font-family: "Inter";
  src: url("/demo/Containerdienst/assets/fonts/inter-400-700.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/demo/Containerdienst/assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #171a19;
  --ink-2: #222725;
  --ink-3: #343a37;
  --paper: #f6f3ed;
  --paper-2: #eeeae2;
  --white: #fff;
  --orange: #f36b21;
  --orange-dark: #b83c00;
  --orange-soft: #fff0e7;
  --green: #38624e;
  --green-soft: #e9f0eb;
  --muted: #66706b;
  --line: #d9d9d3;
  --shadow: 0 24px 70px rgba(17, 22, 20, 0.12);
  --shadow-soft: 0 12px 36px rgba(17, 22, 20, 0.08);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1220px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  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,
select,
textarea {
  font: inherit;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.7rem, 7vw, 7.25rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

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

::selection {
  color: var(--ink);
  background: var(--orange);
}

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

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

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-dark {
  color: #d6dcd8;
  background: var(--ink);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

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

.section-muted {
  background: var(--paper-2);
}

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

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-header > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-header h2 {
  max-width: 850px;
  margin-bottom: 0;
}

.eyebrow,
.step-kicker,
.summary-kicker {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #ffe0cd;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: var(--orange);
  box-shadow: 0 12px 30px rgba(243, 107, 33, 0.2);
}

.button-primary:hover {
  background: #e45f1a;
  box-shadow: 0 16px 34px rgba(217, 78, 10, 0.26);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

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

.button-outline,
.button-ghost {
  border-color: var(--line);
  background: transparent;
}

.button-outline:hover,
.button-ghost:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
}

.button-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link span {
  color: var(--orange);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

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

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

/* Header */
.topbar {
  position: relative;
  z-index: 60;
  color: #cbd1cd;
  background: #101211;
  font-size: 0.74rem;
}

.topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.topbar p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #7ad89c;
  box-shadow: 0 0 0 4px rgba(122, 216, 156, 0.11);
}

.topbar-links {
  display: flex;
  gap: 24px;
}

.topbar a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(246, 243, 237, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  border-color: rgba(23, 26, 25, 0.09);
  box-shadow: 0 12px 30px rgba(15, 18, 17, 0.07);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 34px;
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 42px;
  color: var(--orange-dark);
  place-items: center;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.25;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.58rem;
  letter-spacing: 0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}

.desktop-nav > a,
.nav-trigger {
  display: flex;
  height: 100%;
  padding: 0 13px;
  border: 0;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #3e4541;
  background: transparent;
  font-size: 0.79rem;
  font-weight: 650;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"],
.nav-trigger:hover,
.nav-trigger[aria-expanded="true"] {
  color: var(--orange-dark);
}

.nav-group {
  position: relative;
  height: 100%;
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(23, 26, 25, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
}

.nav-group:hover > .dropdown,
.nav-trigger[aria-expanded="true"] + .dropdown,
.dropdown:focus-within {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-small {
  width: 290px;
}

.dropdown-small a {
  display: flex;
  padding: 14px;
  border-radius: 10px;
  flex-direction: column;
}

.dropdown-small a:hover {
  background: var(--paper);
}

.dropdown strong {
  font-size: 0.88rem;
}

.dropdown a span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
}

.mega-menu {
  display: grid;
  width: 700px;
  padding: 0;
  grid-template-columns: 0.72fr 1.28fr;
  overflow: hidden;
}

.mega-intro {
  padding: 30px;
  color: #cdd4d0;
  background: var(--ink);
}

.mega-intro strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.15rem;
}

.mega-intro p {
  color: #aeb7b2;
  font-size: 0.78rem;
}

.mega-intro .text-link {
  color: var(--white);
}

.mega-links {
  display: grid;
  padding: 18px;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.mega-links a {
  display: flex;
  padding: 12px;
  border-radius: 9px;
  flex-direction: column;
  font-size: 0.8rem;
  font-weight: 700;
}

.mega-links a:hover {
  color: var(--orange-dark);
  background: var(--paper);
}

.header-cta {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 18, 17, 0.98) 0%, rgba(15, 18, 17, 0.88) 40%, rgba(15, 18, 17, 0.28) 72%, rgba(15, 18, 17, 0.05) 100%);
}

.hero::after {
  position: absolute;
  z-index: 2;
  bottom: -100px;
  left: 46%;
  width: 360px;
  height: 210px;
  content: "";
  background: var(--orange);
  transform: skewX(-24deg);
}

.hero-background {
  position: absolute;
  inset: -20px;
  background-position: 66% center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.04);
  transform: translate(var(--hero-x, 0), var(--hero-y, 0)) scale(1.025);
  transition: transform 260ms ease-out;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 760px;
  padding: 86px 0 72px;
  grid-template-columns: minmax(0, 760px) minmax(260px, 1fr);
  align-items: center;
}

.hero-copy {
  max-width: 730px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(4.2rem, 8.5vw, 7.8rem);
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: #d5dbd7;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-trust {
  display: flex;
  margin-top: 45px;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: #d6dcd8;
  font-size: 0.79rem;
  font-weight: 600;
}

.hero-trust li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "✓";
  font-weight: 700;
}

.hero-float {
  align-self: end;
  justify-self: end;
  width: 250px;
  margin-bottom: 40px;
  padding: 24px;
  color: var(--ink);
  border-left: 5px solid var(--orange);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-float > span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-float strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-float p {
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-item {
  display: flex;
  min-height: 118px;
  padding: 26px 28px;
  border-right: 1px solid var(--line);
  align-items: center;
  gap: 16px;
}

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

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--orange-dark);
  border-radius: 50%;
  background: var(--orange-soft);
  font-weight: 800;
  place-items: center;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 0.88rem;
}

.trust-item small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.7rem;
}

/* Cards and content */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.waste-card,
.info-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 26, 25, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.waste-card:hover,
.info-card:hover {
  border-color: rgba(243, 107, 33, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--ink-2);
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.service-card:hover .card-image img,
.waste-card:hover .card-image img {
  transform: scale(1.055);
}

.card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 7px 11px;
  color: var(--ink);
  border-radius: 5px;
  background: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-body {
  padding: 26px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-meta {
  display: flex;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.72rem;
}

.card-meta strong {
  color: var(--ink);
  font-size: 0.85rem;
}

.number-card {
  padding: 30px;
  border-top: 3px solid var(--orange);
  background: var(--white);
}

.number-card > span {
  display: block;
  margin-bottom: 26px;
  color: var(--orange-dark);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.2rem;
}

.number-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 560px;
}

.split-visual > img {
  width: calc(100% - 52px);
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-visual::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 62%;
  height: 62%;
  content: "";
  border-radius: var(--radius);
  background: var(--orange);
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  max-width: 260px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.image-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1rem;
}

.image-note span {
  color: #bbc3be;
  font-size: 0.75rem;
}

.check-list,
.x-list,
.summary-includes {
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.x-list li::before {
  color: #a93b2b;
  content: "×";
  font-size: 1.3rem;
  line-height: 1;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat {
  padding: 42px 30px;
  background: var(--ink);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: #c2cac5;
  font-size: 0.8rem;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-grid::before {
  position: absolute;
  top: 26px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: repeating-linear-gradient(90deg, var(--orange), var(--orange) 9px, transparent 9px, transparent 18px);
}

.process-step {
  position: relative;
  z-index: 1;
}

.process-step > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 25px;
  color: var(--ink);
  border: 7px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  place-items: center;
}

.process-step p {
  color: var(--muted);
  font-size: 0.86rem;
}

.finder {
  display: grid;
  padding: 44px;
  border-radius: var(--radius-lg);
  grid-template-columns: 0.68fr 1.32fr;
  gap: 54px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.finder h2 {
  color: var(--white);
}

.finder-intro p {
  color: #aeb7b2;
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.finder-option {
  cursor: pointer;
}

.finder-option input {
  position: absolute;
  opacity: 0;
}

.finder-option span {
  display: flex;
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease;
}

.finder-option span::after {
  color: var(--orange);
  content: "○";
  font-size: 1.2rem;
}

.finder-option input:checked + span {
  border-color: var(--orange);
  background: rgba(243, 107, 33, 0.12);
}

.finder-option input:checked + span::after {
  content: "●";
}

.finder-actions {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 18px;
}

.finder-message {
  color: #ffc5a5;
  font-size: 0.75rem;
}

/* Inner-page hero */
.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.8);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 18, 17, 0.97), rgba(15, 18, 17, 0.78) 50%, rgba(15, 18, 17, 0.18));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  padding: 80px 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(3.6rem, 7vw, 6.6rem);
}

.page-hero .lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: #d4dad6;
}

.breadcrumb-wrap {
  color: #69716d;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
}

.breadcrumb a:hover {
  color: var(--orange-dark);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: start;
}

.intro-aside {
  position: sticky;
  top: 115px;
  padding: 26px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.intro-aside span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.7rem;
}

.intro-aside strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.content-prose h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.content-prose h3 {
  margin-top: 36px;
}

.content-prose p,
.content-prose li {
  color: #555f5a;
}

.accepted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.accepted-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
}

.accepted-card.yes {
  border-top: 4px solid var(--green);
}

.accepted-card.no {
  border-top: 4px solid #a93b2b;
}

.accepted-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accepted-card.yes > span {
  color: var(--green);
  background: var(--green-soft);
}

.accepted-card.no > span {
  color: #8b3125;
  background: #f7e9e6;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

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

.price-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.price-card.is-popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.price-card .popular-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 4px 8px;
  color: var(--ink);
  border-radius: 4px;
  background: var(--orange);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card > span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.price-card > strong {
  display: block;
  margin: 6px 0 14px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.7rem;
  line-height: 1;
}

.price-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.callout {
  display: grid;
  padding: 44px;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: center;
  color: var(--white);
  background: var(--ink);
}

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

.callout h2 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.callout p {
  max-width: 740px;
  color: #bbc3be;
}

/* Sizes */
.size-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.size-table th,
.size-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.size-table th {
  color: var(--white);
  background: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.size-table td {
  color: var(--muted);
  font-size: 0.82rem;
}

.size-table td:first-child strong {
  display: block;
  color: var(--ink);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.8rem;
}

.container-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.compare-card {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
}

.compare-illustration,
.container-sketch {
  position: relative;
  display: block;
  width: 155px;
  height: 84px;
  margin-bottom: 26px;
  border: 3px solid var(--orange);
  background: rgba(243, 107, 33, 0.07);
  transform: skewX(-8deg);
}

.compare-illustration::after,
.container-sketch::after {
  position: absolute;
  right: 15px;
  bottom: -8px;
  left: 15px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.12);
  filter: blur(4px);
}

.compare-illustration i,
.container-sketch i {
  position: absolute;
  top: 13px;
  right: 14px;
  bottom: 13px;
  left: 14px;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.compare-card.rolloff .compare-illustration {
  width: 210px;
  height: 77px;
  border-radius: 2px 2px 0 0;
  transform: none;
}

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

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 80px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  padding: 24px 0;
  border: 0;
  grid-template-columns: 1fr 34px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  background: transparent;
  font-weight: 700;
}

.faq-question span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.faq-item.is-open .faq-question span {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 55px 24px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Forms */
.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field > span {
  font-size: 0.75rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.form-control {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid #cdd0cc;
  border-radius: 7px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 107, 33, 0.12);
}

.field small {
  color: var(--muted);
  font-size: 0.65rem;
}

.privacy-check {
  display: flex;
  margin-top: 22px;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.74rem;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--orange);
}

.privacy-check a {
  color: var(--ink);
  text-decoration: underline;
}

.form-success {
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
  background: var(--green-soft);
}

.success-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-size: 1.8rem;
  font-weight: 800;
  place-items: center;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
}

.contact-panel {
  padding: 40px;
  border-radius: var(--radius);
  color: #d0d7d2;
  background: var(--ink);
}

.contact-panel h2,
.contact-panel h3 {
  color: var(--white);
}

.contact-list {
  display: grid;
  margin-top: 32px;
  gap: 0;
}

.contact-list > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: #909b95;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list strong,
.contact-list a {
  margin-top: 5px;
  color: var(--white);
  font-size: 0.92rem;
}

/* Calculator */
.calculator-section {
  padding: 70px 0 120px;
  background: var(--paper-2);
}

#calculator {
  scroll-margin-top: 90px;
}

.calc-progress {
  display: grid;
  max-width: 980px;
  margin: 0 auto 40px;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.calc-progress li {
  position: relative;
}

.calc-progress li::after {
  position: absolute;
  z-index: 0;
  top: 19px;
  left: calc(50% + 22px);
  width: calc(100% - 44px);
  height: 2px;
  content: "";
  background: #cfd2ce;
}

.calc-progress li:last-child::after {
  display: none;
}

.calc-progress li.is-complete::after {
  background: var(--orange);
}

.calc-progress button {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  padding: 0;
  border: 0;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
}

.calc-progress button:disabled {
  cursor: default;
}

.calc-progress button > span {
  display: grid;
  width: 40px;
  height: 40px;
  color: #7b837f;
  border: 2px solid #cfd2ce;
  border-radius: 50%;
  background: var(--paper-2);
  font-size: 0.78rem;
  font-weight: 700;
  place-items: center;
}

.calc-progress small {
  margin-top: 9px;
  color: #777f7b;
  font-size: 0.67rem;
  font-weight: 700;
}

.calc-progress .is-current button > span,
.calc-progress .is-complete button > span {
  color: var(--ink);
  border-color: var(--orange);
  background: var(--orange);
}

.calc-progress .is-current small,
.calc-progress .is-complete small {
  color: var(--ink);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 26px;
  align-items: start;
}

.calculator-main {
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.calc-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.calc-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

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

.choice-grid {
  display: grid;
  gap: 14px;
}

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

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

.choice-card {
  position: relative;
  display: grid;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.choice-card:hover {
  border-color: rgba(243, 107, 33, 0.55);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.choice-card.is-selected {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
}

.choice-visual {
  min-height: 115px;
  background-position: center;
  background-size: cover;
}

.choice-copy {
  display: flex;
  padding: 18px;
  flex-direction: column;
}

.choice-copy strong {
  font-size: 0.96rem;
}

.choice-copy small,
.choice-copy > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.choice-copy em {
  margin-top: 12px;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.choice-check {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  width: 28px;
  height: 28px;
  color: var(--ink);
  border-radius: 50%;
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
}

.choice-card.is-selected .choice-check {
  display: grid;
}

.size-card {
  min-height: 250px;
  padding: 24px;
}

.size-card .container-sketch {
  width: calc(94px + var(--size-grow, 0px));
  height: 58px;
  margin: 8px auto 18px;
}

.size-card .choice-copy {
  padding: 0;
  text-align: center;
}

.calc-help,
.review-notice {
  display: flex;
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  color: #4d5b54;
  background: var(--green-soft);
  font-size: 0.74rem;
}

.calc-help a {
  font-weight: 700;
  text-decoration: underline;
}

.calc-footnote {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.68rem;
}

.special-notice {
  display: grid;
  padding: 32px;
  border: 1px solid #e1c15e;
  border-radius: var(--radius);
  grid-template-columns: 48px 1fr;
  gap: 22px;
  background: #fff8df;
}

.notice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  color: #6d5513;
  border: 2px solid #d7b84d;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
  place-items: center;
}

.radio-panel,
.extras-panel {
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.radio-panel legend,
.extras-panel legend {
  margin-bottom: 13px;
  font-size: 0.78rem;
  font-weight: 700;
}

.radio-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.radio-panel legend {
  grid-column: 1 / -1;
}

.radio-panel label,
.extra-option {
  display: flex;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 9px;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.radio-panel input,
.extra-option input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--orange);
}

.radio-panel strong,
.radio-panel small,
.extra-option strong,
.extra-option small {
  display: block;
}

.radio-panel small,
.extra-option small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.65rem;
}

.extras-panel {
  display: grid;
  margin-bottom: 34px;
  gap: 9px;
}

.extra-option em {
  margin-left: auto;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.contact-fields {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.calc-navigation {
  display: flex;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
}

.calc-error {
  margin: 14px 0 0;
  color: #a93b2b;
  text-align: right;
  font-size: 0.74rem;
  font-weight: 650;
}

.calc-summary {
  position: sticky;
  top: 105px;
  padding: 30px;
  color: #c9d0cc;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.calc-summary h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.35rem;
}

.summary-kicker {
  color: #ffba91;
}

.summary-size {
  color: #9da8a2;
  font-size: 0.72rem;
}

.summary-lines {
  margin: 26px 0;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-lines > div {
  display: flex;
  padding: 5px 0;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.7rem;
}

.summary-lines p {
  color: #9da8a2;
  font-size: 0.72rem;
}

.summary-lines strong {
  color: var(--white);
  white-space: nowrap;
}

.summary-total span,
.summary-total strong,
.summary-total small {
  display: block;
}

.summary-total span {
  color: #9da8a2;
  font-size: 0.68rem;
}

.summary-total strong {
  margin: 3px 0;
  color: var(--white);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.summary-total small {
  color: #8f9994;
  font-size: 0.6rem;
}

.summary-includes {
  margin: 24px 0;
  color: #b6bfba;
  font-size: 0.7rem;
}

.summary-includes li {
  padding: 5px 0;
}

.summary-includes li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "✓";
}

.calc-summary .text-link {
  color: var(--white);
  font-size: 0.72rem;
}

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

.review-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card-head button {
  padding: 0;
  border: 0;
  color: var(--orange-dark);
  cursor: pointer;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
}

.review-card dl {
  margin: 18px 0 0;
}

.review-card dl div {
  display: grid;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  font-size: 0.7rem;
}

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

.review-card dd {
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
  font-weight: 650;
}

.review-notice span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--white);
  border-radius: 50%;
  background: var(--green);
  font-weight: 700;
  place-items: center;
}

.review-notice p {
  margin: 0;
}

.calc-success {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-lg);
  text-align: center;
  background: var(--white);
  box-shadow: var(--shadow);
}

.calc-success > p {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.reference {
  display: inline-flex;
  margin: 22px auto 30px;
  padding: 12px 18px;
  border-radius: 7px;
  flex-direction: column;
  background: var(--paper-2);
}

.reference span {
  color: var(--muted);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.reference strong {
  letter-spacing: 0.05em;
}

.success-summary {
  display: grid;
  margin-bottom: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.success-summary > div {
  padding: 20px 12px;
  border-right: 1px solid var(--line);
}

.success-summary > div:last-child {
  border-right: 0;
}

.success-summary span,
.success-summary strong {
  display: block;
}

.success-summary span {
  color: var(--muted);
  font-size: 0.62rem;
}

.success-summary strong {
  margin-top: 4px;
  font-size: 0.8rem;
}

.calc-success .button-row {
  margin-top: 28px;
  justify-content: center;
}

/* Legal */
.legal-content {
  max-width: 860px;
}

.legal-content h2 {
  margin-top: 55px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.6rem;
  text-transform: none;
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Footer */
.prefooter {
  color: var(--white);
  background: var(--orange);
}

.prefooter-inner {
  display: grid;
  min-height: 275px;
  padding-block: 55px;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.prefooter h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
}

.prefooter .eyebrow-light,
.prefooter .button-outline-light {
  color: var(--ink);
}

.prefooter .button-outline-light {
  border-color: rgba(23, 26, 25, 0.55);
}

.prefooter .button-outline-light:hover {
  border-color: var(--ink);
  background: rgba(23, 26, 25, 0.08);
}

.site-footer {
  color: #aeb7b2;
  background: #101211;
}

.footer-main {
  display: grid;
  padding: 78px 0 64px;
  grid-template-columns: 1.6fr 0.75fr 0.75fr 1fr;
  gap: 55px;
}

.brand-light .brand-copy strong {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: #7f8984;
}

.footer-brand > p {
  max-width: 380px;
  margin: 26px 0;
  font-size: 0.82rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-badges span {
  padding: 6px 9px;
  color: #bac3be;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  font-size: 0.58rem;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.85rem;
}

.footer-column a,
.footer-column p {
  color: #8f9994;
  font-size: 0.73rem;
}

.footer-column > a:hover {
  color: var(--white);
}

.footer-column .footer-phone {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  font-size: 0.67rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: var(--white);
}

.mobile-action {
  display: none;
}

/* Reveal */
.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 12px 10px;
    border: 0;
    flex-direction: column;
    cursor: pointer;
    background: transparent;
    justify-content: center;
    gap: 5px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 49;
    top: calc(34px + var(--header-height));
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    overflow-y: auto;
    background: var(--paper);
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-scrolled .mobile-menu {
    top: var(--header-height);
  }

  .mobile-menu-inner {
    display: flex;
    padding: 35px 0 60px;
    flex-direction: column;
  }

  .mobile-menu-inner > a {
    padding: 16px 2px;
    border-bottom: 1px solid var(--line);
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-size: 1.55rem;
    text-transform: uppercase;
  }

  .mobile-menu-inner > a[aria-current="page"] {
    color: var(--orange-dark);
  }

  .mobile-menu-contact {
    display: flex;
    margin-top: 35px;
    padding: 24px;
    color: #bfc7c2;
    border-radius: var(--radius-sm);
    flex-direction: column;
    background: var(--ink);
  }

  .mobile-menu-contact span,
  .mobile-menu-contact small {
    color: #8d9792;
    font-size: 0.67rem;
  }

  .mobile-menu-contact a {
    margin: 6px 0;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
  }

  .calculator-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
  }

  .footer-main {
    grid-template-columns: 1.35fr repeat(3, 0.75fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 85px 0;
  }

  .section-header,
  .split-section,
  .intro-grid,
  .faq-layout,
  .finder,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero,
  .hero-inner {
    min-height: 690px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-float {
    display: none;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

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

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 24px;
  }

  .process-grid::before {
    display: none;
  }

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

  .intro-aside {
    position: static;
  }

  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calc-summary {
    position: static;
    order: -1;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }

  .prefooter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 62px;
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar-inner > p {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-links {
    width: 100%;
    justify-content: space-between;
  }

  .brand-mark {
    width: 39px;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .hero,
  .hero-inner {
    min-height: 650px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(15, 18, 17, 0.96), rgba(15, 18, 17, 0.74));
  }

  .hero-background {
    background-position: 70% center;
  }

  .hero-inner {
    padding: 58px 0;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 17vw, 5.5rem);
  }

  .hero-trust {
    display: grid;
    gap: 8px;
  }

  .button-row .button {
    width: 100%;
  }

  .trust-strip-inner,
  .card-grid,
  .stat-grid,
  .process-grid,
  .accepted-grid,
  .price-cards,
  .container-compare,
  .form-grid,
  .review-grid,
  .success-summary {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    min-height: 88px;
    padding: 18px 12px;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .split-visual {
    min-height: 440px;
  }

  .split-visual > img {
    width: calc(100% - 24px);
    height: 410px;
  }

  .image-note {
    max-width: 230px;
  }

  .finder {
    padding: 28px 20px;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

  .finder-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero,
  .page-hero-inner {
    min-height: 470px;
  }

  .page-hero h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .callout {
    padding: 30px 24px;
    grid-template-columns: 1fr;
  }

  .size-table-wrap {
    margin-right: -14px;
    margin-left: -14px;
    overflow-x: auto;
  }

  .size-table {
    min-width: 720px;
  }

  .faq-layout {
    gap: 20px;
  }

  .form-card,
  .contact-panel {
    padding: 27px 20px;
  }

  .field-wide {
    grid-column: auto;
  }

  .calc-progress small {
    display: none;
  }

  .calc-progress li::after {
    top: 16px;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
  }

  .calc-progress button > span {
    width: 34px;
    height: 34px;
  }

  .calculator-main {
    padding: 26px 18px;
  }

  .waste-choice-grid,
  .size-choice-grid,
  .radio-panel {
    grid-template-columns: 1fr;
  }

  .waste-choice-grid .choice-card {
    grid-template-columns: 105px 1fr;
  }

  .choice-visual {
    min-height: 126px;
  }

  .size-card {
    min-height: 205px;
  }

  .calc-navigation {
    gap: 10px;
  }

  .calc-navigation .button {
    min-height: 49px;
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .success-summary > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .success-summary > div:last-child {
    border-bottom: 0;
  }

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

  .review-card dd {
    text-align: left;
  }

  .prefooter-inner {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-action {
    position: fixed;
    z-index: 70;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 62px;
    grid-template-columns: 0.85fr 1.15fr;
    background: var(--ink);
    box-shadow: 0 -8px 24px rgba(15, 18, 17, 0.18);
  }

  .mobile-action a {
    display: flex;
    color: var(--white);
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .mobile-action a:last-child {
    color: var(--ink);
    background: var(--orange);
  }
}

@media print {
  #site-header,
  #site-footer,
  .mobile-action,
  .calc-progress,
  .button-row,
  .breadcrumb-wrap {
    display: none !important;
  }

  body,
  .calculator-section {
    padding: 0;
    background: var(--white);
  }

  .calc-success {
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
