@import url("./fonts.css");
@import url("./styles-light.css");
@import url("./styles-dark.css");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Hanken Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(244, 98, 0, 0.1), transparent 24rem),
    linear-gradient(180deg, var(--gray-50), var(--white));
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(244, 98, 0, 0.35);
  outline-offset: 3px;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 250, 0.9);
  backdrop-filter: blur(18px) saturate(180%);
}

html[data-theme="dark"] .site-header {
  background: rgba(17, 17, 17, 0.9);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background:
    #ffffff url("../img/favicons/favicon.png") center/cover no-repeat;
  position: relative;
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand__mark::before,
.brand__mark::after {
  content: none;
}

.brand__copy {
  min-width: 0;
}

.brand__eyebrow {
  display: block;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand__title {
  display: block;
  margin-top: 2px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-left: auto;
}

.nav__toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.nav__toggle-bars {
  display: inline-grid;
  gap: 5px;
}

.nav__toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-overlay,
.mobile-menu-header {
  display: none;
}

.mobile-menu-overlay[hidden] {
  display: none !important;
}

.theme-toggle[hidden] {
  display: none !important;
}

.mobile-menu-header {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 2px 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.mobile-menu-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

html[data-theme="dark"] .mobile-menu-close {
  background: #171717;
}

html[data-theme="dark"] .nav__toggle {
  background: #171717;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav__links a,
.nav__group summary {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.nav__group {
  position: relative;
}

.nav__group summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-soft);
  justify-content: space-between;
  gap: 10px;
}

.nav__group summary > a {
  display: inline-flex;
  align-items: center;
  min-height: inherit;
  padding: 0;
  border-radius: 0;
  color: inherit;
}

.nav__group summary::-webkit-details-marker {
  display: none;
}

.nav__group summary::after {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  color: var(--text-soft);
}

.nav__group[open] summary::after {
  content: "-";
}

.nav__submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 6px;
  z-index: 70;
}

details:not([open]) .nav__submenu {
  display: none;
}

.nav__submenu a {
  justify-content: flex-start;
  border-radius: 14px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.nav__submenu a,
.nav__submenu a:hover,
.nav__submenu a.is-active {
  min-height: 38px;
}

.nav__submenu a:last-child {
  border-bottom: none;
}

.nav__submenu a:hover,
.nav__submenu a.is-active {
  color: var(--orange-600);
  background: transparent;
}

.nav__links a,
.nav__group[open] summary,
.nav__group summary:hover,
.nav__group summary.is-active {
  color: var(--text);
}

.nav__links a:hover,
.nav__links a.is-active,
.nav__group[open] summary,
.nav__group summary:hover,
.nav__group summary.is-active {
  color: var(--text);
  background: rgba(244, 98, 0, 0.09);
}

.theme-toggle {
  width: 54px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.theme-toggle__thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange-500);
  color: #ffffff;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.theme-toggle__thumb .fa-solid {
  font-size: 0.85rem;
  line-height: 1;
}

html[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(22px);
  background: var(--green-700);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    border-color var(--transition),
    color var(--transition),
    background var(--transition);
}

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

.button--primary {
  background: var(--orange-500);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--orange-600);
}

.button--secondary {
  background: transparent;
  border-color: var(--green-700);
  color: var(--green-700);
}

html[data-theme="dark"] .button--secondary {
  color: #9ce0a1;
  border-color: #45984c;
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.u-mt-18 {
  margin-top: 18px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-22 {
  margin-top: 22px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-mt-28 {
  margin-top: 28px;
}

.hero {
  padding: 38px 0 0;
}

.hero--photo {
  position: relative;
  overflow: hidden;
  padding: 32px 0;
  background: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1920w.webp") center/cover no-repeat;
}

.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  z-index: 0;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(253, 251, 250, 0.88)),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__panel--floating {
  backdrop-filter: none;
}

.hero--photo .hero__panel {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.hero--photo .hero__panel::before,
.hero--photo .hero__panel::after {
  content: none;
}

.hero--photo .hero__grid {
  padding: clamp(22px, 3.4vw, 39px) 0;
}

.hero--photo .hero__content {
  padding: clamp(26px, 4vw, 36px);
  border-radius: var(--radius-xl);
  background: rgb(215 215 215 / 34%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero--photo h1,
.hero--photo .text-lead,
.hero--photo .hero__stats strong,
.hero--photo .hero__stats span,
.hero--photo .hero__stats li {
  color: #ffffff;
}

.hero--photo .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
}

.hero--photo .hero__accent {
  color: #ffffff;
}

.hero--photo .stat-card {
  background: rgb(215 215 215 / 34%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.hero--photo .button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero--photo .button--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero--faq-photo {
    background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-1920w.webp");
}

.hero--faq-photo h1 {
    max-width: 12ch;
}

.hero--contact-photo {
    background-image: url("../img/images/hauseingang-aussenansicht-1920w.webp");
}

.hero--contact-photo h1 {
    font-size: clamp(2rem, 3.6vw, 3.1rem);
    max-width: 15ch;
}

.hero--location-photo {
    background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1920w.webp");
}

.hero--location-photo h1 {
    max-width: 18ch;
    font-size: clamp(1.95rem, 3.2vw, 3.15rem);
    line-height: 1.06;
    text-wrap: balance;
}

.hero--oschersleben-focus h1 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  max-width: 14ch;
}

.hero--oschersleben-focus .text-lead {
  max-width: 58ch;
}

.hero--location-photo-1 {
    background-image: url("../img/images/wohnzimmer-mit-kartons-und-sofa-1920w.webp");
}

.hero--location-photo-2 {
    background-image: url("../img/images/moebeltransport-vor-wohnung-mit-lkw-1920w.webp");
}

.hero--location-photo-3 {
    background-image: url("../img/images/garage-mit-kartons-und-fahrrad-1920w.webp");
}

.hero--location-photo-4 {
    background-image: url("../img/images/flur-mit-kartons-bei-haushaltsaufloesung-1920w.webp");
}

.hero--location-photo-5 {
    background-image: url("../img/images/vollgestelltes-wohnzimmer-mit-umzugskartons-1920w.webp");
}

.hero--location-photo-6 {
    background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-1920w.webp");
}

.hero--location-photo-7 {
    background-image: url("../img/images/haushaltsaufloesung-essbereich-mit-kartons-1920w.webp");
}

.hero--location-photo-8 {
    background-image: url("../img/images/dachboden-mit-gelagerten-gegenstaenden-1920w.webp");
}

.hero--location-photo-9 {
    background-image: url("../img/images/wohnzimmer-mit-schrankwand-und-kartons-1920w.webp");
}

.hero--location-photo-10 {
    background-image: url("../img/images/haushaltsaufloesung-wohnzimmer-mit-kartons-und-moebeln-1920w.webp");
}

.hero--location-photo-11 {
    background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1920w.webp");
}

@media (max-width: 1279px) {
    .hero--photo { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1280w.webp"); }
    .hero--faq-photo { background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-1280w.webp"); }
    .hero--contact-photo { background-image: url("../img/images/hauseingang-aussenansicht-1280w.webp"); }
    .hero--location-photo { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1280w.webp"); }
    .hero--location-photo-1 { background-image: url("../img/images/wohnzimmer-mit-kartons-und-sofa-1280w.webp"); }
    .hero--location-photo-2 { background-image: url("../img/images/moebeltransport-vor-wohnung-mit-lkw-1280w.webp"); }
    .hero--location-photo-3 { background-image: url("../img/images/garage-mit-kartons-und-fahrrad-1280w.webp"); }
    .hero--location-photo-4 { background-image: url("../img/images/flur-mit-kartons-bei-haushaltsaufloesung-1280w.webp"); }
    .hero--location-photo-5 { background-image: url("../img/images/vollgestelltes-wohnzimmer-mit-umzugskartons-1280w.webp"); }
    .hero--location-photo-6 { background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-1280w.webp"); }
    .hero--location-photo-7 { background-image: url("../img/images/haushaltsaufloesung-essbereich-mit-kartons-1280w.webp"); }
    .hero--location-photo-8 { background-image: url("../img/images/dachboden-mit-gelagerten-gegenstaenden-1280w.webp"); }
    .hero--location-photo-9 { background-image: url("../img/images/wohnzimmer-mit-schrankwand-und-kartons-1280w.webp"); }
    .hero--location-photo-10 { background-image: url("../img/images/haushaltsaufloesung-wohnzimmer-mit-kartons-und-moebeln-1280w.webp"); }
    .hero--location-photo-11 { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-1280w.webp"); }
}

@media (max-width: 767px) {
    .hero--photo { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-768w.webp"); }
    .hero--faq-photo { background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-768w.webp"); }
    .hero--contact-photo { background-image: url("../img/images/hauseingang-aussenansicht-768w.webp"); }
    .hero--location-photo { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-768w.webp"); }
    .hero--location-photo-1 { background-image: url("../img/images/wohnzimmer-mit-kartons-und-sofa-768w.webp"); }
    .hero--location-photo-2 { background-image: url("../img/images/moebeltransport-vor-wohnung-mit-lkw-768w.webp"); }
    .hero--location-photo-3 { background-image: url("../img/images/garage-mit-kartons-und-fahrrad-768w.webp"); }
    .hero--location-photo-4 { background-image: url("../img/images/flur-mit-kartons-bei-haushaltsaufloesung-768w.webp"); }
    .hero--location-photo-5 { background-image: url("../img/images/vollgestelltes-wohnzimmer-mit-umzugskartons-768w.webp"); }
    .hero--location-photo-6 { background-image: url("../img/images/detailansicht-wohnzimmer-mit-umzugskisten-768w.webp"); }
    .hero--location-photo-7 { background-image: url("../img/images/haushaltsaufloesung-essbereich-mit-kartons-768w.webp"); }
    .hero--location-photo-8 { background-image: url("../img/images/dachboden-mit-gelagerten-gegenstaenden-768w.webp"); }
    .hero--location-photo-9 { background-image: url("../img/images/wohnzimmer-mit-schrankwand-und-kartons-768w.webp"); }
    .hero--location-photo-10 { background-image: url("../img/images/haushaltsaufloesung-wohnzimmer-mit-kartons-und-moebeln-768w.webp"); }
    .hero--location-photo-11 { background-image: url("../img/images/haushaltsaufloesung-collage-aussenansicht-leerraum-transport-768w.webp"); }
}

@media (max-width: 767px) {
  .hero--oschersleben-focus h1 {
    font-size: clamp(1.9rem, 7.2vw, 2.6rem);
    max-width: 13ch;
  }
}

html[data-theme="dark"] .hero__panel {
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(18, 18, 18, 0.94)),
    var(--white);
}

html[data-theme="dark"] .hero--photo::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(253, 251, 250, 0.94) 0%, rgba(253, 251, 250, 0.88) 34%, rgba(253, 251, 250, 0.52) 62%, rgba(253, 251, 250, 0.24) 100%),
    linear-gradient(180deg, rgba(7, 28, 10, 0.14), rgba(7, 28, 10, 0.08)),
    linear-gradient(135deg, rgba(10, 107, 17, 0.3), rgba(244, 98, 0, 0.24));
  z-index: 0;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 18px);
  border: 1px dashed rgba(10, 107, 17, 0.24);
  background:
    radial-gradient(circle at 78% 36%, rgba(255, 255, 255, 0.2), transparent 0 18rem),
    radial-gradient(circle at 84% 62%, rgba(244, 98, 0, 0.24), transparent 0 16rem),
    linear-gradient(135deg, rgba(10, 107, 17, 0.1), rgba(244, 98, 0, 0.08));
  z-index: 0;
}

html[data-theme="dark"] .hero__panel::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86) 0%, rgba(17, 17, 17, 0.78) 34%, rgba(17, 17, 17, 0.46) 62%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.18)),
    linear-gradient(135deg, rgba(10, 107, 17, 0.24), rgba(244, 98, 0, 0.18));
}

html[data-theme="dark"] .hero__panel::after {
  border-color: rgba(255, 255, 255, 0.16);
}

.hero__grid {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.68fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(10, 107, 17, 0.1);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 4.7vw, 4rem);
  max-width: 12.5ch;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

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

h3 {
  font-size: 1.42rem;
}

.text-lead {
  margin: 18px 0 0;
  max-width: 64ch;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  color: var(--text-soft);
}

.hero__accent {
  color: var(--orange-500);
}

.hero__stats {
  display: grid;
  gap: 14px;
}

.stat-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(244, 98, 0, 0.08), rgba(10, 107, 17, 0.08));
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 1.14rem;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
}

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

.mini-card {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

html[data-theme="dark"] .mini-card {
  background: rgba(29, 29, 29, 0.88);
}

.mini-card strong {
  display: block;
  font-size: 1rem;
}

.mini-card span {
  display: block;
  margin-top: 5px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.section-band {
  margin-top: 0;
  padding: clamp(42px, 6vw, 74px) 0;
}

.section-band--light {
  background: transparent;
}

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

.section-band--gray {
  background: var(--gray-100);
}

.section-band--cream {
  background: #fff5eb;
}

.section-band--sage {
  background: #eef6ee;
}

.section-band--sand {
  background: #f5f0e8;
}

.section-band--orange {
  background:
    radial-gradient(circle at top right, rgba(255, 244, 236, 0.18), transparent 18rem),
    linear-gradient(135deg, #8b3300 0%, #a43e00 52%, #bb4c00 100%);
  color: #ffffff;
}

.section-band--orange .section-label,
.section-band--orange .section-text {
  color: rgba(255, 247, 241, 0.94);
}

.section-band--orange .card,
.section-band--orange .mini-card,
.section-band--orange .contact-tile,
.section-band--orange .faq,
.section-band--orange .quote-box,
.section-band--orange .process__step {
  background: rgba(253, 251, 250, 0.97);
  border-color: rgba(8, 8, 8, 0.1);
  color: var(--text);
  box-shadow: 0 14px 34px rgba(8, 8, 8, 0.12);
}

.section-band--orange h1,
.section-band--orange h2,
.section-band--orange > .container > h3,
.section-band--orange .section-head h3 {
  color: #ffffff;
}

.section-band--orange .quote-box,
.section-band--orange .quote-box p {
  border-left-color: var(--orange-500);
  color: var(--text-soft);
}

.section-band--orange .quote-box strong {
  color: var(--text);
}

.section-band--green {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 20rem),
    linear-gradient(135deg, #0f7b17 0%, #0a6b11 58%, #08590f 100%);
  color: #ffffff;
}

.section-band--green .section-label,
.section-band--green .section-text,
.section-band--green .card p,
.section-band--green .card li,
.section-band--green .mini-card span,
.section-band--green .service-nav__item span {
  color: rgba(255, 255, 255, 0.9);
}

.section-band--green .card,
.section-band--green .mini-card,
.section-band--green .contact-tile,
.section-band--green .quote-box {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.section-band--green .card h3,
.section-band--green h2,
.section-band--green strong {
    color: #ffffff;
}

.section-band--green .faq summary {
    color: var(--text);
}

.section-band--green .faq__body {
    color: var(--text-soft);
}

.section-band--green .quote-box,
.section-band--green .quote-box p,
.section-band--green .quote-box strong {
  background: rgba(0, 0, 0, 0.12);
  border-left-color: #ffffff;
  color: #ffffff;
}

.section-band--green .service-nav__item {
  background: rgba(253, 251, 250, 0.96);
  border-color: rgba(8, 8, 8, 0.08);
}

.section-band--green .service-nav__item strong {
  color: #101010;
}

.section-band--green .service-nav__item span {
  color: #505050;
}

.section-band--green .service-nav__item:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

.section-label {
  color: var(--orange-500);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-band--green .section-label,
.section-band--orange .section-label {
  color: rgba(255, 255, 255, 0.82);
}

.section-text {
  color: var(--text-soft);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.card__num {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.card p {
  margin: 12px 0 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.card ul,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange-500);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(10, 107, 17, 0.09);
  color: var(--green-700);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-band--green .chip-list li,
.section-band--orange .chip-list li {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

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

.cta-link {
  min-height: 80px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--orange-500);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-link:hover {
  background: var(--orange-600);
}

.cta-link--dark {
  background: #1f1f1f;
  color: #ffffff;
}

.cta-link--dark:hover {
  background: #202020;
}

.arrow {
  flex: 0 0 auto;
  font-size: 1.4rem;
}

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

.process__step {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.section-band--green .process__step,
.section-band--orange .process__step {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-band--orange .process__step {
  background: rgba(253, 251, 250, 0.97);
  border-color: rgba(8, 8, 8, 0.1);
  color: var(--text);
}

.section-band--orange .card h3,
.section-band--orange .mini-card strong,
.section-band--orange .process__step h3,
.section-band--orange .contact-tile strong,
.section-band--orange .faq summary {
  color: var(--text);
}

.section-band--orange .card p,
.section-band--orange .card li,
.section-band--orange .mini-card span,
.section-band--orange .process__step p,
.section-band--orange .faq__body,
.section-band--orange .contact-tile span,
.section-band--orange .contact-tile a {
  color: var(--text-soft);
}

.section-band--orange .contact-tile a:hover,
.section-band--orange .contact-tile a:focus-visible {
  color: var(--text);
}

.process__step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-700);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-band--green .process__step-num {
  background: var(--orange-500);
}

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 0 20px;
}

.faq + .faq {
  margin-top: 14px;
}

.faq-item + .faq-item {
  margin-top: 0;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  font-weight: 800;
}

.faq__question {
  margin: 0;
  flex: 1;
  font-size: 1.34rem;
  line-height: 1.3;
  font-weight: inherit;
  color: var(--text);
}

.section-band--orange .faq__question,
.section-band--green .faq__question {
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--orange-500);
}

.faq[open] summary::after {
  content: "-";
}

.faq__body {
  padding: 0 0 20px;
  color: var(--text-soft);
}

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

.contact-tile {
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.contact-tile__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 800;
}

.contact-tile__icon .fa-solid {
  line-height: 1;
}

.contact-tile strong {
  display: block;
  font-size: 1.08rem;
}

.contact-tile span,
.contact-tile a {
  display: block;
  margin-top: 10px;
  color: inherit;
  opacity: 0.94;
}

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

.service-nav__item {
  min-height: 88px;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.service-nav__item strong {
  display: block;
}

.service-nav__item span {
  display: block;
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.faq-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.faq-category-link {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.section-band--green .faq-category-link {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.section-band--green .faq-category-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.faq-section {
  scroll-margin-top: 120px;
}

.faq-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

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

.quote-box {
  padding: 24px;
  border-left: 6px solid var(--orange-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(244, 98, 0, 0.08);
  color: var(--text-soft);
  font-size: 1rem;
}

.quote-box strong {
  color: var(--text);
}

.media-placeholder,
.media-figure {
  padding: 24px;
  border: 2px solid rgba(10, 107, 17, 0.28);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(10, 107, 17, 0.06), rgba(196, 75, 0, 0.06)),
    var(--white);
}

.media-placeholder strong,
.media-figure strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.media-placeholder p,
.media-figure p {
  margin: 0;
  color: var(--text-soft);
}

.media-figure {
  margin: 0;
}

.media-figure picture {
  display: block;
}

.media-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 10px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.media-figure figcaption {
  margin-top: 16px;
}

.media-placeholder--dark,
.media-figure--dark {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.media-placeholder--dark p,
.media-placeholder--dark strong,
.media-figure--dark p,
.media-figure--dark strong {
  color: #ffffff;
}

.page-hero {
  padding: 34px 0 0;
}

.page-hero__panel {
    position: relative;
    overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(10, 107, 17, 0.96), rgba(6, 84, 13, 0.98));
  color: #ffffff;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .page-hero__panel {
  background:
    linear-gradient(135deg, rgba(10, 107, 17, 0.98), rgba(6, 74, 12, 1));
}

.page-hero__panel::before {
    content: "";
    position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 46, 9, 0.84) 0%, rgba(5, 46, 9, 0.74) 34%, rgba(5, 46, 9, 0.46) 62%, rgba(5, 46, 9, 0.18) 100%),
    linear-gradient(135deg, rgba(10, 107, 17, 0.18), rgba(244, 98, 0, 0.12));
  z-index: 0;
}

.page-hero__panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-xl) - 18px);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.16), transparent 0 13rem),
    radial-gradient(circle at 88% 62%, rgba(244, 98, 0, 0.18), transparent 0 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  z-index: 0;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 320px);
  gap: 22px;
  align-items: start;
}

.page-hero__inner > * {
    min-width: 0;
}

.page-hero__inner h1 {
  max-width: 12ch;
  color: #ffffff;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-hero__inner .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.page-hero__inner .text-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.08rem, 1.8vw, 1.2rem);
}

.page-hero__list {
  display: grid;
  gap: 12px;
}

.page-hero__list .mini-card {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.page-hero__list .mini-card strong {
    color: #ffffff;
}

.page-hero__list .mini-card span {
  color: rgba(255, 255, 255, 0.9);
}


.content-page {
    padding: 42px 0 0;
}

.content-page > .hero:first-child,
.content-page > .page-hero:first-child {
    margin-top: -42px;
}

.footer {
  margin-top: 0;
  padding: 54px 0 52px;
  background:
    linear-gradient(180deg, #0a6412 0%, #084f0f 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 18px 36px rgba(0, 0, 0, 0.08);
  color: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer__title {
  margin: 0 0 18px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand {
  max-width: 260px;
}

.footer__brand-mark {
  width: 118px;
  height: 118px;
  border-radius: 24px;
  display: block;
  object-fit: cover;
  background: #ffffff;
  margin-bottom: 18px;
}

.footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer__list--nested {
  margin-top: 8px;
  padding-left: 16px;
  gap: 8px;
}

.footer__list a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__note {
  margin-top: 16px;
  color: rgba(253, 251, 250, 0.8);
  font-size: 0.94rem;
}

.legal-box {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.legal-box h1 {
  margin-top: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  max-width: 100%;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.legal-box h2 {
  margin-top: 1.8rem;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.legal-box h3 {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.28;
  letter-spacing: -0.01em;
}

.legal-box h4 {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
}

.legal-box + .legal-box {
  margin-top: 18px;
}

.source-list {
  display: grid;
  gap: 14px;
}

.source-item {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--line);
}

.source-item p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.muted {
  color: var(--text-soft);
}

.scroll-top {
  position: fixed;
  right: 0;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #111111;
  border-radius: 16px 0 0 16px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.24);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  z-index: 45;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: #ffffff;
  color: #111111;
  box-shadow: 0 20px 42px rgba(17, 17, 17, 0.2);
  transform: translateY(-2px);
}

.scroll-top__icon {
  display: grid;
  place-items: center;
  font-size: 1rem;
  line-height: 1;
}

.mobile-menu-close .fa-solid,
.scroll-top__icon .fa-solid {
  line-height: 1;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  width: min(calc(100% - 48px), 520px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: var(--radius-md);
  background: rgba(253, 251, 250, 0.98);
  color: var(--text);
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.16);
  transform: translateX(-50%);
  z-index: 44;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice__text {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
}

.cookie-notice__close {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-weight: 800;
}

.cookie-notice__close:hover {
  background: #202020;
}

.project-rail {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 44;
  display: grid;
  gap: 2px;
  transform: translateY(-50%);
}

.project-rail__link {
  min-height: 112px;
  padding: 18px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-right: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.14);
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.project-rail__link:hover,
.project-rail__link:focus-visible {
  transform: translateX(-6px) rotate(180deg);
}

.project-rail__link--service {
  background: var(--orange-500);
  color: #ffffff;
}

.project-rail__link--service:hover,
.project-rail__link--service:focus-visible {
  background: var(--orange-600);
  color: #ffffff;
}

.project-rail__link--tree {
  background: var(--green-700);
  color: #ffffff;
}

.project-rail__link--tree:hover,
.project-rail__link--tree:focus-visible {
  background: #0f5a19;
  color: #ffffff;
}

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

@media (max-width: 1080px) {
  .hero__grid,
  .page-hero__inner,
  .section-head,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .grid--4,
  .contact-tiles,
  .service-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 860px) {
  .project-rail {
    display: none;
  }

  .nav {
    min-height: 72px;
    flex-wrap: nowrap;
    align-items: center;
  }

  .nav__menu {
    width: auto;
    justify-content: flex-end;
    margin-left: 0;
    flex: 0 0 auto;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 81;
  }

  .nav__links {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100dvh;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 24px 24px 32px;
    border-radius: 0;
    border: none;
    background: var(--white);
    box-shadow: none;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    align-content: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 90;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 220ms ease, opacity 220ms ease, visibility 220ms ease;
  }

  html[data-theme="dark"] .nav__links {
    background: #171717;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.12);
    backdrop-filter: blur(2px);
    z-index: 89;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .mobile-menu-header {
    display: flex;
  }

  .nav__menu.is-open .nav__toggle {
    opacity: 0;
    pointer-events: none;
  }

  .nav__menu.is-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__menu.is-open .nav__links {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links a {
    justify-content: flex-start;
    width: 100%;
    min-height: 58px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: none;
    font-size: 1.12rem;
    font-weight: 700;
  }

  .nav__group {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: grid;
    gap: 0;
  }

  .nav__group summary {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    min-height: 58px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: none;
    font-size: 1.12rem;
    font-weight: 700;
  }

  .nav__submenu {
    position: static;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-width: 0;
    margin-top: 0;
    padding: 4px 0 8px 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
  }

  html[data-theme="dark"] .nav__submenu {
    background: transparent;
  }

  .nav__submenu a {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 0;
    padding: 12px 0 12px 18px;
    border-radius: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(17, 17, 17, 0.06);
    box-shadow: none;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-soft);
    text-decoration: none;
    transform: none !important;
    transition: none !important;
  }

  .nav__links a:hover,
  .nav__links a.is-active,
  .nav__group summary:hover,
  .nav__group summary.is-active,
  .nav__group[open] summary {
    color: var(--orange-600);
    background: transparent;
    border-color: rgba(17, 17, 17, 0.08);
  }

  .nav__group summary::after {
    display: none;
  }

  .nav__submenu a:hover,
  .nav__submenu a:focus-visible,
  .nav__submenu a:active,
  .nav__submenu a.is-active {
    color: var(--orange-600);
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    outline-offset: 0;
    line-height: 1.35;
    transform: none;
    transition: none !important;
  }

  .brand {
    gap: 12px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand__copy {
    max-width: min(62vw, 260px);
  }

  .brand__eyebrow {
    font-size: 0.7rem;
    color: var(--text-soft);
    letter-spacing: 0.08em;
  }

  .brand__title {
    font-size: 1.08rem;
    line-height: 1.08;
  }

  .grid--2,
  .grid--3,
  .grid--4,
  .badge-grid,
  .contact-tiles,
  .cta-links,
  .service-nav,
  .process {
    grid-template-columns: 1fr;
  }

  .faq-category-nav {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .cookie-notice {
    left: 50%;
    bottom: 12px;
    width: min(calc(100% - 24px), 420px);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .cookie-notice__close {
    width: 100%;
  }

  .faq__question {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .footer,
  .footer__grid,
  .footer__brand,
  .footer__list,
  .footer__note {
    text-align: center;
  }

  .footer__grid {
    justify-items: center;
  }

  .footer__brand {
    display: grid;
    justify-items: center;
  }

  .footer__brand-mark {
    margin-inline: auto;
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 3rem);
    max-width: 100%;
  }

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

  .brand__title {
    max-width: 54vw;
  }

  .page-hero__inner h1 {
    max-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
