:root {
  --ink: #17211f;
  --muted: #5d6762;
  --forest: #1f6f5f;
  --forest-dark: #144a41;
  --copper: #c75f39;
  --gold: #e2aa42;
  --mist: #eaf2f1;
  --paper: #faf8f3;
  --white: #ffffff;
  --line: #d9e1dc;
  --shadow: 0 18px 48px rgba(23, 33, 31, 0.16);
  --radius: 8px;
  --max: 1280px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 17, 15, 0.78), rgba(8, 17, 15, 0.2));
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    min-height 180ms ease;
}

.site-header > * {
  min-width: 0;
}

.site-header.is-scrolled,
.site-header.nav-active {
  min-height: 68px;
  color: var(--ink);
  background: rgba(250, 248, 243, 0.96);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  font-size: 0.75rem;
  opacity: 0.78;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a,
.footer-links a {
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: var(--copper);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  font-weight: 950;
  white-space: nowrap;
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  transform: translateY(-2px);
  background: #ad4f30;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.site-header.is-scrolled .header-call,
.site-header.nav-active .header-call {
  border-color: transparent;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(680px, 82svh, 840px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  background-image: url("assets/hero-debarras-occitanie.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 17, 15, 0.92) 0%, rgba(9, 17, 15, 0.64) 36%, rgba(9, 17, 15, 0.1) 72%),
    linear-gradient(180deg, rgba(9, 17, 15, 0.32), rgba(9, 17, 15, 0.12) 50%, rgba(9, 17, 15, 0.38));
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 96px)));
  margin: 0 auto;
  padding: 112px 0 46px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5.1vw, 5rem);
  line-height: 1;
  font-weight: 700;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button::after {
  content: "→";
  font-weight: 900;
}

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

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ad4f30;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--forest-dark);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
  color: var(--copper);
}

.hero-facts {
  max-width: 740px;
  margin: 34px 0 0;
  padding: 0;
}

.hero-facts div {
  display: grid;
  min-width: 148px;
  gap: 2px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}

.hero-facts dt {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-strip {
  display: flex;
  gap: 0;
  padding-inline: max(0px, calc((100vw - var(--max)) / 2));
  background: var(--forest-dark);
  color: var(--white);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(255, 255, 255, 0.38) transparent;
}

.trust-strip div {
  flex: 1 0 280px;
  min-width: 0;
  min-height: 96px;
  padding: 20px clamp(18px, 3vw, 40px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  scroll-snap-align: start;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 6px;
  color: #f7d387;
  font-size: 1rem;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.section {
  width: min(var(--max), calc(100% - clamp(36px, 8vw, 96px)));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px) 0;
}

.section-muted {
  width: 100%;
  margin: 0;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 48px);
  background: var(--mist);
}

.section-muted > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  padding-bottom: clamp(42px, 6vw, 70px);
}

.intro-grid,
.section-heading,
.pricing-heading,
.pricing-shell,
.zone-section,
.contact-section,
.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro-grid > *,
.section-heading > *,
.pricing-heading > *,
.pricing-shell > *,
.zone-section > *,
.contact-section > *,
.testimonials > * {
  min-width: 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section h2,
.section-muted h2,
.faq h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.85rem);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.section-heading p,
.intro-grid p,
.section-copy p,
.zone-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-copy {
  display: grid;
  gap: 20px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  margin-top: 24px;
}

.section-copy .section-actions,
.zone-copy .section-actions {
  margin-top: 0;
}

.service-grid,
.quote-grid,
.steps {
  display: grid;
  gap: 18px;
}

.service-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--forest) transparent;
}

.service-card,
.step,
.quote-grid figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-card {
  min-height: 0;
  padding: 18px;
  scroll-snap-align: start;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

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

.card-icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--forest-dark);
  background: #d9ebe6;
}

.card-icon::before {
  width: 22px;
  height: 22px;
  background: currentColor;
  content: "";
  mask: var(--icon) center / contain no-repeat;
  -webkit-mask: var(--icon) center / contain no-repeat;
}

.icon-home {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11 12 4l9 7v9a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
}

.icon-storage {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v5H4zm1 7h14v7H5zm5-5v1h4V7z'/%3E%3C/svg%3E");
}

.icon-key {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 14a5 5 0 1 1 4.58-7H22v4h-3v3h-4.42A5 5 0 0 1 8 14Zm0-3a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
}

.icon-briefcase {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v1h5a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h5zm2 1h2V5h-2z'/%3E%3C/svg%3E");
}

.icon-truck {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h11v10H3zm13 3h3l2 3v4h-5zM7 20a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm11 0a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z'/%3E%3C/svg%3E");
}

.service-card h3,
.step h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
}

.service-card p,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.steps {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  grid-template-columns: none;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--forest) transparent;
}

.step {
  position: relative;
  min-height: 0;
  padding: 18px;
  overflow: hidden;
  scroll-snap-align: start;
}

.step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-weight: 900;
}

.zone-section {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  padding: clamp(46px, 6vw, 74px) max(clamp(18px, 4vw, 48px), calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(31, 111, 95, 0.16) 0%, rgba(31, 111, 95, 0.08) 38%, transparent 72%),
    var(--paper);
}

.zone-copy {
  display: grid;
  gap: 18px;
}

.zone-copy .section-kicker {
  margin-bottom: -4px;
}

.zone-copy p {
  max-width: 620px;
}

.zone-map-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(23, 33, 31, 0.14);
}

.zone-map-card img {
  width: 100%;
}

.zone-map-card figcaption {
  padding: 14px 18px 16px;
  color: var(--forest-dark);
  font-weight: 800;
}

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

.comparison-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(23, 33, 31, 0.1);
}

.comparison-slider {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  touch-action: pan-y;
}

.comparison-slider img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  user-select: none;
}

.comparison-before {
  filter: saturate(0.96) contrast(0.98);
}

.comparison-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 0 0 var(--position));
}

.comparison-after img {
  height: 100%;
}

.comparison-label {
  position: absolute;
  top: 12px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.comparison-label-before {
  left: 12px;
}

.comparison-label-after {
  right: 12px;
  background: var(--forest-dark);
  color: var(--white);
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 2;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(23, 33, 31, 0.16);
  transform: translateX(-50%);
}

.comparison-handle::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 0 36%, var(--white) 36% 42%, transparent 42% 58%, var(--white) 58% 64%, transparent 64%),
    var(--copper);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  content: "";
  transform: translate(-50%, -50%);
}

.comparison-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: ew-resize;
  opacity: 0;
}

.comparison-copy {
  padding: 18px 20px 20px;
}

.comparison-copy h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.comparison-copy p {
  margin: 0;
  color: var(--muted);
}

.pricing-section {
  background:
    linear-gradient(135deg, rgba(31, 111, 95, 0.08), rgba(184, 91, 54, 0.05)),
    var(--mist);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 24px;
}

.pricing-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.estimator-panel,
.tariff-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(23, 33, 31, 0.1);
}

.estimator-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 3vw, 32px);
}

.estimator-copy h3 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1.03;
}

.estimator-copy p:last-child,
.estimate-result p,
.pricing-note {
  margin: 0;
  color: var(--muted);
}

.estimator-form {
  display: grid;
  gap: 12px;
}

.estimate-result {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-left: 4px solid var(--copper);
  border-radius: var(--radius);
  background: #fff6ee;
}

.estimate-result strong {
  color: var(--forest-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.95rem);
  line-height: 1.1;
}

.estimate-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tariff-panel {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.5vw, 26px);
}

.tariff-panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.tariff-panel-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.tariff-panel-heading a,
.tariff-panel-heading span {
  color: var(--copper);
  font-weight: 900;
  white-space: nowrap;
}

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

.tariff-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf9;
}

.tariff-row::before {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--forest-dark);
  content: "";
  mask: var(--icon) center / 19px 19px no-repeat;
  -webkit-mask: var(--icon) center / 19px 19px no-repeat;
}

.tariff-few {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h16v13H4zm3-4h10v4H7z'/%3E%3C/svg%3E");
}

.tariff-box {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 5h16v5H4zm1 7h14v7H5zm5-5v1h4V7z'/%3E%3C/svg%3E");
}

.tariff-garage {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 9 12 4l9 5v11h-3v-7H6v7H3zm5 6h8v2H8z'/%3E%3C/svg%3E");
}

.tariff-studio {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 14a5 5 0 1 1 4.58-7H22v4h-3v3h-4.42A5 5 0 0 1 8 14Zm0-3a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z'/%3E%3C/svg%3E");
}

.tariff-apartment {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14v18H5zm3 3v2h2V6zm6 0v2h2V6zm-6 5v2h2v-2zm6 0v2h2v-2zm-6 5v2h2v-2zm6 0v2h2v-2z'/%3E%3C/svg%3E");
}

.tariff-house {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 11 12 4l9 7v9a1 1 0 0 1-1 1h-5v-6H9v6H4a1 1 0 0 1-1-1z'/%3E%3C/svg%3E");
}

.tariff-hard {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3 22 20H2zm-1 6v5h2V9zm0 7v2h2v-2z'/%3E%3C/svg%3E");
}

.tariff-row:last-child {
  border-bottom: 1px solid var(--line);
}

.tariff-row h4 {
  margin: 0 0 3px;
  color: var(--ink);
  font-size: 0.98rem;
}

.tariff-row p {
  display: none;
}

.tariff-row strong {
  display: block;
  grid-column: 2;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}

.pricing-note {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  font-weight: 700;
}

.testimonials {
  display: block;
}

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

.testimonials-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.quote-grid figure {
  margin: 0;
  padding: 20px;
}

.quote-grid blockquote {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.quote-grid figcaption {
  display: grid;
  gap: 4px;
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.quote-grid figcaption span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: var(--radius);
  background: #fff1e9;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quote-grid figcaption strong {
  color: var(--forest-dark);
  font-size: 1rem;
}

.contact-section {
  align-items: stretch;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  padding: 0 22px;
  border-radius: var(--radius);
  background: var(--forest-dark);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(20, 74, 65, 0.2);
  font-size: 1.18rem;
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.field-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6d0;
  border-radius: var(--radius);
  background: #fffdf9;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.file-field {
  padding: 14px;
  border: 1px dashed #b8c8c0;
  border-radius: var(--radius);
  background: #fffdf9;
}

.file-field input {
  padding: 10px;
  background: var(--white);
}

.file-field > span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(31, 111, 95, 0.16);
}

.checkbox-label {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--forest);
}

.form-button {
  width: 100%;
  cursor: pointer;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

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

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  min-height: 58px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 900;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-weight: 800;
}

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

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .brand {
    order: 1;
  }

  .main-nav {
    order: 4;
    display: none;
  }

  .header-call {
    order: 2;
    justify-self: end;
    display: inline-flex;
    min-height: 38px;
    padding: 0 10px;
    border-color: transparent;
    font-size: 0.82rem;
    letter-spacing: 0;
  }

  .nav-toggle {
    order: 3;
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    color: inherit;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span[aria-hidden="true"],
  .nav-toggle span[aria-hidden="true"]::before,
  .nav-toggle span[aria-hidden="true"]::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 160ms ease;
  }

  .nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(-7px);
  }

  .nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(5px);
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"] {
    background: transparent;
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"]::before {
    transform: translateY(1px) rotate(45deg);
  }

  .site-header.nav-active .nav-toggle span[aria-hidden="true"]::after {
    transform: translateY(-1px) rotate(-45deg);
  }

  .main-nav.is-open {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    justify-items: stretch;
    padding: 8px clamp(18px, 4vw, 48px) 22px;
    background: rgba(250, 248, 243, 0.98);
    color: var(--ink);
    box-shadow: 0 24px 40px rgba(23, 33, 31, 0.12);
  }

  .main-nav.is-open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 104px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .trust-strip div {
    flex-basis: 300px;
    min-height: auto;
    border-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .intro-grid,
  .section-heading,
  .pricing-heading,
  .pricing-shell,
  .before-after-grid,
  .zone-section,
  .contact-section,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps {
    grid-auto-columns: minmax(260px, 74%);
  }

  .quote-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(260px, 74%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--forest) transparent;
  }

  .service-card,
  .step,
  .quote-grid figure {
    scroll-snap-align: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    padding-inline: 10px;
  }

  .brand {
    grid-template-columns: 34px auto;
    gap: 7px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 34px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 17, 15, 0.94), rgba(9, 17, 15, 0.68)),
      linear-gradient(180deg, rgba(9, 17, 15, 0.34), rgba(9, 17, 15, 0.28));
  }

  .hero-content {
    width: calc(100% - 30px);
    padding: 92px 0 36px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    gap: 18px;
  }

  .hero-facts div {
    min-width: calc(50% - 9px);
  }

  .trust-strip {
    gap: 10px;
    padding: 12px 15px;
  }

  .trust-strip div {
    flex: 0 0 86%;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
  }

  .trust-strip strong {
    font-size: 0.92rem;
  }

  .trust-strip span {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .section,
  .section-muted {
    width: 100%;
    padding: 38px 15px;
  }

  .section h2,
  .section-muted h2,
  .faq h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .section-actions {
    display: grid;
    gap: 8px;
    margin-top: 18px;
  }

  .section-actions .button,
  .section-actions .text-link {
    width: 100%;
  }

  .section-actions .text-link {
    justify-content: center;
    min-height: 42px;
    padding: 0 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.66);
  }

  .field-pair,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .pricing-heading {
    gap: 14px;
  }

  .pricing-heading p,
  .section-heading p,
  .intro-grid p,
  .section-copy p,
  .zone-copy p,
  .contact-copy p {
    font-size: 0.98rem;
  }

  .pricing-shell {
    gap: 16px;
  }

  .estimator-panel {
    gap: 14px;
    padding: 16px;
  }

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

  .estimate-result {
    padding: 14px;
  }

  .estimate-result strong {
    font-size: 1.25rem;
  }

  .tariff-panel {
    padding: 14px;
  }

  .tariff-panel-heading {
    align-items: flex-start;
  }

  .tariff-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(184px, 76%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    scrollbar-color: var(--forest) transparent;
  }

  .tariff-row {
    min-height: 116px;
    scroll-snap-align: start;
  }

  .tariff-row strong {
    text-align: left;
    white-space: normal;
    font-size: 1rem;
  }

  .estimate-actions,
  .estimate-actions .button {
    width: 100%;
  }

  .service-grid,
  .steps,
  .quote-grid {
    grid-auto-columns: minmax(252px, 86%);
  }

  .service-card,
  .step {
    padding: 16px;
  }

  .service-card p,
  .step p {
    font-size: 0.9rem;
  }

  .comparison-copy {
    padding: 14px 15px 16px;
  }

  .comparison-label {
    top: 9px;
    padding: 6px 8px;
    font-size: 0.7rem;
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 390px) {
  .brand > span:last-child {
    display: none;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .header-call {
    justify-self: center;
  }
}

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