@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/dm-sans.woff2") format("woff2");
}

:root {
  --green: #c6d9e2;
  --green-hover: #1f5e7c;
  --dark-green: #123a52;
  --ink: #0b2236;
  --black: #172834;
  --text: #5b6871;
  --muted: #87959e;
  --line: #d8e1e5;
  --surface: #e9eff2;
  --soft: #f7f7f4;
  --white: #fff;
  --container: 1140px;
  --radius: 20px;
  --shadow: 0 22px 70px rgba(11, 34, 54, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #5f91aa;
  outline-offset: 3px;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 4.3vw, 4rem);
}

h2 {
  font-size: clamp(2.25rem, 3.55vw, 3.25rem);
}

h1 span,
h2 span {
  color: var(--green-hover);
}

h3 {
  font-size: 1.4rem;
}

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

main section[id] {
  scroll-margin-top: 96px;
}

.section {
  padding: 104px 0;
}

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

.section-green h2 span {
  color: var(--green);
}

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

.eyebrow {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--green {
  color: var(--green-hover);
}

.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;
}

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

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

.topbar {
  height: 62px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.875rem;
}

.topbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__meta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__meta a {
  transition: opacity 180ms ease;
}

.topbar__meta a:hover,
.topbar__meta a:focus-visible {
  opacity: 0.62;
}

.topbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.28);
}

.site-header {
  position: relative;
  z-index: 100;
  height: 108px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-stuck {
  position: sticky;
  top: 0;
  height: 82px;
  box-shadow: 0 10px 35px rgba(11, 34, 54, 0.1);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.brand__logo-shell {
  width: 52px;
  height: 46px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border-radius: 9px;
}

.brand__logo {
  width: 48px;
  height: 40px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  font-size: 0.96rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a.is-active {
  color: var(--green-hover);
}

.nav-toggle {
  position: relative;
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--ink);
  border: 0;
  border-radius: 50%;
}

.nav-toggle__line {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 1px;
  margin: 0;
  background: var(--white);
  transform-origin: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-toggle__line--top {
  transform: translate(-50%, -4px);
}

.nav-toggle__line--bottom {
  transform: translate(-50%, 4px);
}

.button,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

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

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--dark-green);
}

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

.button--light:hover,
.button--light:focus-visible {
  background: var(--green);
}

.button--small {
  min-height: 46px;
  padding: 12px 20px;
}

.pill {
  min-height: 44px;
  padding: 12px 22px;
  border-radius: 99px;
  font-size: 0.95rem;
}

.pill img {
  width: 16px;
  height: 16px;
}

.pill--green {
  background: var(--dark-green);
  color: var(--white);
}

.hero {
  overflow: hidden;
}

.hero__intro {
  min-height: 350px;
  padding: 72px 0 62px;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: start;
  gap: 90px;
}

.hero__copy {
  padding-top: 16px;
}

.hero__copy p {
  margin-bottom: 28px;
  color: var(--text);
  font-size: 1.08rem;
}

.hero__visual {
  position: relative;
  height: 715px;
  overflow: hidden;
  background: var(--muted);
}

.hero__visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 34, 54, 0.32), transparent 57%);
}

.quote-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: max(calc((100vw - var(--container)) / 2), 24px);
  width: 392px;
  padding: 36px 40px 34px;
  background: rgba(11, 34, 54, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.quote-card__eyebrow {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card h2 {
  margin-bottom: 24px;
  font-size: 1.48rem;
  letter-spacing: -0.02em;
}

.quote-card label {
  display: block;
  margin-bottom: 12px;
}

.quote-card .form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.quote-card label span {
  display: block;
  margin-bottom: 7px;
  color: var(--line);
  font-size: 0.78rem;
}

.quote-card input,
.quote-card select {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
}

.quote-card select {
  color-scheme: light;
}

.quote-card input::placeholder {
  color: #71808a;
}

.quote-card input:focus,
.quote-card select:focus {
  border-color: #5f91aa;
  box-shadow: 0 0 0 3px rgba(95, 145, 170, 0.22);
}

@media (min-width: 821px) {
  .hero__visual {
    height: auto;
    min-height: 720px;
    padding: 24px 0 44px;
    display: flex;
    align-items: flex-start;
  }

  .hero__visual > img {
    position: absolute;
    inset: 0;
    height: 100%;
  }

  .hero__shade {
    height: 100%;
  }

  .hero__visual .quote-card {
    position: relative;
    inset: auto;
    margin: 0 auto 0 max(calc((100vw - var(--container)) / 2), 24px);
    transform: none;
  }
}

.quote-card .button {
  margin-top: 10px;
}

.form-status {
  min-height: 20px;
  margin-top: 12px;
  color: var(--line);
  font-size: 0.76rem;
  line-height: 1.45;
}

.form-status.is-error {
  color: #ffb9b9;
}

.trust-strip {
  padding: 72px 0;
  background: var(--surface);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-strip__grid div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-strip__grid span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--green-hover);
  font-size: 0.78rem;
}

.trust-strip__grid strong {
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.3;
}

.about {
  padding: 96px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: center;
  gap: 120px;
}

.media-card {
  height: 436px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--muted);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
}

.facts div {
  padding: 0 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.42);
}

.facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.facts strong,
.facts span {
  display: block;
}

.facts strong {
  color: var(--white);
  font-size: 2.65rem;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.facts span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.35;
}

.why__grid,
.process__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 120px;
}

.why__content > h2 {
  max-width: 560px;
}

.feature-list {
  margin-top: 54px;
}

.feature-list article {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.feature-list article:last-child {
  margin-bottom: 0;
}

.feature-list__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.feature-list__heading span {
  color: var(--muted);
  font-size: 0.85rem;
}

.feature-list article p {
  max-width: 530px;
  margin-top: 10px;
  color: var(--text);
}

.why__media {
  position: relative;
  align-self: center;
  padding-bottom: 132px;
}

.why__media > img {
  width: 460px;
  height: 436px;
  object-fit: cover;
  border-radius: var(--radius);
}

.rating-card {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 112px;
  padding: 23px 30px;
  background: var(--ink);
  border-radius: 14px;
  color: var(--white);
}

.rating-card div,
.stars {
  color: var(--green);
  letter-spacing: 0.18em;
}

.rating-card strong,
.rating-card span {
  display: block;
}

.rating-card strong {
  margin-top: 5px;
  font-size: 1.05rem;
  font-weight: 500;
}

.rating-card span {
  color: var(--muted);
  font-size: 0.78rem;
}

.services {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 80px;
  margin-bottom: 62px;
}

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

.section-heading__aside {
  padding-top: 12px;
}

.section-heading__aside p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  min-height: 352px;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: 0 18px 44px rgba(11, 34, 54, 0.09);
}

.service-card--featured {
  background: var(--surface);
}

.service-card__icon {
  display: block;
  width: 52px;
  height: 52px;
  background: var(--green-hover);
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
}

.service-card__icon--entruempelung {
  --service-icon: url("assets/service-entruempelung.svg");
}

.service-card__icon--haushaltsaufloesung {
  --service-icon: url("assets/service-haushaltsaufloesung.svg");
}

.service-card__icon--entsanierung {
  --service-icon: url("assets/service-entsanierung.svg");
}

.service-card__icon--gartenpflege {
  --service-icon: url("assets/service-gartenpflege.svg");
}

.service-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.service-card__title h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.service-card__title span {
  padding-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.service-card > p {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.92rem;
}

.service-card > a {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--green-hover);
  font-size: 0.92rem;
}

.service-card > a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.service-card > a:hover span {
  transform: translateX(4px);
}

.cta-banner {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.cta-banner__image,
.cta-banner__overlay {
  position: absolute;
  inset: 0;
}

.cta-banner__image {
  background: url("assets/hero-entruempelung.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.cta-banner__overlay {
  background: linear-gradient(90deg, rgba(11, 34, 54, 0.9), rgba(11, 34, 54, 0.2));
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__content p {
  margin-bottom: 12px;
  color: var(--green);
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
}

.cta-banner__content h2 {
  max-width: 790px;
  margin-bottom: 32px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.process__grid {
  align-items: center;
  grid-template-columns: 460px 1fr;
}

.process__media {
  position: relative;
}

.process__media > img {
  width: 460px;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}

.process__note {
  position: absolute;
  right: -34px;
  bottom: 32px;
  width: 240px;
  padding: 20px 22px;
  background: var(--green);
  border-radius: 12px;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.process__note span,
.process__note strong {
  display: block;
}

.process__note span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process__note strong {
  margin-top: 3px;
  font-size: 1.05rem;
  font-weight: 500;
}

.process__content h2 {
  max-width: 620px;
}

.steps {
  padding: 0;
  margin: 48px 0 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--green-hover);
  font-size: 1.15rem;
}

.steps h3 {
  font-size: 1.2rem;
}

.steps p {
  margin-top: 4px;
  color: var(--text);
}

.promise {
  background: var(--surface);
}

.promise__heading {
  max-width: 720px;
  margin-bottom: 56px;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promise-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
}

.promise-card__number {
  align-self: flex-end;
  color: var(--muted);
  font-size: 0.82rem;
}

.promise-card .stars {
  margin-top: 28px;
}

.promise-card p {
  margin-top: 18px;
  color: var(--text);
}

.promise-card strong {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--green-hover);
  font-weight: 500;
}

.contact {
  padding: 94px 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 110px;
}

.contact__content > p:last-child {
  max-width: 630px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.contact__actions {
  padding-bottom: 4px;
}

.contact__direct {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__direct a {
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact__direct span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.site-footer {
  padding: 70px 0 24px;
  background: var(--ink);
  color: var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 70px;
  padding-bottom: 56px;
}

.brand--footer {
  color: var(--green);
}

.brand--footer .brand__logo-shell {
  background: var(--white);
}

.footer__brand > p {
  max-width: 330px;
  margin: 24px 0;
  color: var(--muted);
}

.footer__grid > div:not(.footer__brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer__grid h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.2rem;
}

.footer__grid a:not(.brand):not(.button),
.footer__contact address {
  color: var(--muted);
  font-size: 0.93rem;
}

.footer__contact address {
  margin-top: 4px;
  font-style: normal;
  line-height: 1.55;
}

.footer__grid a:not(.brand):not(.button):hover {
  color: var(--green);
}

.footer__bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(222, 226, 221, 0.18);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__bottom > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__bottom button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.footer__bottom a:hover,
.footer__bottom a:focus-visible,
.footer__bottom button:hover,
.footer__bottom button:focus-visible {
  color: var(--green);
}

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

.cookie-consent {
  position: fixed;
  z-index: 2200;
  inset: auto 16px 16px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-panel {
  position: relative;
  width: min(100%, 980px);
  max-height: min(760px, calc(100vh - 32px));
  padding: 32px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 28px 90px rgba(2, 18, 31, 0.34);
  color: var(--white);
  pointer-events: auto;
  scrollbar-width: thin;
}

.cookie-panel:focus {
  outline: none;
}

.cookie-panel__eyebrow {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-panel h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.cookie-panel h2 + p,
#cookie-description {
  max-width: 760px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.cookie-panel__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-panel__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 16px;
  color: var(--green);
  font-size: 0.88rem;
}

.cookie-panel__legal a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-panel__actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-top: 24px;
}

.cookie-choice {
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid var(--white);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-choice--accept {
  background: var(--white);
  color: var(--ink);
}

.cookie-choice--reject {
  background: transparent;
  color: var(--white);
}

.cookie-choice--customize {
  border-color: transparent;
  background: transparent;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.cookie-categories {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  cursor: pointer;
}

.cookie-category--locked {
  background: rgba(255, 255, 255, 0.05);
  cursor: default;
}

.cookie-category span {
  display: grid;
  gap: 2px;
}

.cookie-category strong {
  color: var(--white);
}

.cookie-category small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.cookie-category input {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  accent-color: var(--green-hover);
}

body.cookie-consent-open .whatsapp-button,
body.cookie-consent-open .mobile-actions {
  opacity: 0;
  pointer-events: none;
}

.legal-service-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.legal-service-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}

.legal-service-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.legal-service-card p + p {
  margin-top: 8px;
}

/* Subpages */
.subpage-body {
  background: var(--white);
}

.page-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.page-hero::before {
  position: absolute;
  inset: auto auto -44% -13%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(198, 217, 226, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 76px;
  padding: 84px 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero .eyebrow {
  color: var(--green);
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 6vw, 5.7rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.page-hero h1 span {
  color: var(--green);
}

.page-hero__copy {
  max-width: 590px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.page-hero__media {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  transform: rotate(1.4deg);
}

.page-hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 56%, rgba(198, 217, 226, 0.28));
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__mark {
  width: min(36vw, 390px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(198, 217, 226, 0.54);
  border-radius: 50%;
  color: var(--green);
}

.page-hero__mark span {
  font-size: clamp(5rem, 11vw, 9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.08em;
}

.page-hero__index {
  position: absolute;
  right: -0.03em;
  bottom: -0.29em;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(18rem, 35vw, 34rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.09em;
  user-select: none;
}

.page-hero--compact {
  min-height: 480px;
}

.page-hero--compact .page-hero__grid {
  padding: 78px 0;
}

.page-hero--compact .page-hero__content {
  max-width: 800px;
}

.page-hero--compact .page-hero__mark {
  width: min(28vw, 300px);
}

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

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 100px;
}

.split-copy h2,
.contact-page__direct h2 {
  max-width: 620px;
}

.rich-copy {
  padding-top: 34px;
  color: var(--text);
  font-size: 1.04rem;
}

.rich-copy p + p {
  margin-top: 20px;
}

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

.value-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card > span {
  color: var(--green-hover);
  font-size: 0.8rem;
  font-weight: 600;
}

.value-card h2 {
  margin-top: auto;
  font-size: 1.6rem;
}

.value-card p {
  margin-top: 14px;
  color: var(--text);
}

.subpage-cta {
  padding: 80px 0;
}

.subpage-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.subpage-cta__inner h2 {
  max-width: 770px;
}

.service-details {
  background: var(--soft);
}

.service-detail-list {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 54px;
  padding: 50px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scroll-margin-top: 120px;
  min-width: 0;
  max-width: 100%;
}

.service-detail > div {
  min-width: 0;
}

.service-detail > div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.service-detail .service-card__icon {
  width: 66px;
  height: 66px;
}

.service-detail__number {
  color: var(--muted);
  font-size: 0.8rem;
}

.service-detail h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.service-detail p {
  max-width: 750px;
  margin-top: 14px;
  color: var(--text);
  font-size: 1.03rem;
}

.service-detail ul {
  margin: 24px 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
}

.service-detail li {
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 10px;
  color: var(--black);
  font-size: 0.88rem;
}

.service-detail a,
.legal-aside a,
.legal-aside button {
  color: var(--green-hover);
  font-weight: 600;
}

.legal-aside button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.service-detail a {
  overflow-wrap: anywhere;
}

.timeline-page {
  display: grid;
}

.timeline-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 54px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-step:first-child {
  padding-top: 0;
}

.timeline-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.timeline-step > span {
  color: var(--green-hover);
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.timeline-step h2 {
  max-width: 800px;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.timeline-step div > p:last-child {
  max-width: 720px;
  margin-top: 16px;
  color: var(--text);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding-top: 28px;
}

.check-grid span {
  position: relative;
  padding: 18px 18px 18px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.check-grid span::before {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  background: var(--green);
  border-radius: 50%;
  color: var(--ink);
  content: "✓";
  font-size: 0.68rem;
  font-weight: 600;
}

.contact-page {
  background: var(--soft);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.75fr);
  align-items: start;
  gap: 100px;
}

.contact-page__direct > h2 {
  margin-bottom: 38px;
}

.contact-method {
  padding: 22px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

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

.contact-method > span {
  color: var(--text);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-method > strong {
  max-width: 330px;
  text-align: right;
  font-weight: 500;
  line-height: 1.45;
}

a.contact-method:hover strong {
  color: var(--green-hover);
}

.quote-card--page {
  position: relative;
  inset: auto;
  width: 100%;
  padding: 42px;
  transform: none;
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 38px;
}

.contact-note > span {
  color: var(--green-hover);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note p {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.legal-page {
  background: var(--soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.legal-aside {
  position: sticky;
  top: 120px;
  padding: 26px;
  background: var(--ink);
  border-radius: 14px;
  color: var(--white);
}

.legal-aside > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  margin: 46px 0 14px;
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text);
}

.legal-content a {
  color: var(--green-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__intro > *,
.about__grid > *,
.why__grid > *,
.process__grid > *,
.contact__grid > *,
.page-hero__grid > *,
.split-copy > *,
.contact-page__grid > *,
.legal-layout > *,
.area-faq__grid > * {
  min-width: 0;
}

.area-faq {
  background: var(--soft);
}

.area-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 86px;
}

.area-card {
  padding: 42px;
  background: var(--surface);
  border-radius: var(--radius);
}

.area-card h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.area-card > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--text);
}

.area-card__tags {
  margin: 28px 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.area-card__tags span {
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--dark-green);
  font-size: 0.82rem;
}

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

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

.faq summary {
  position: relative;
  padding: 24px 52px 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 1.35;
}

.faq summary:focus-visible {
  border-radius: 6px;
}

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

.faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border-radius: 50%;
  color: var(--green-hover);
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
}

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

.faq details p {
  max-width: 680px;
  padding: 0 52px 24px 0;
  color: var(--text);
}

.mobile-actions {
  display: none;
}

.whatsapp-button {
  position: fixed;
  z-index: 95;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 14px 38px rgba(11, 34, 54, 0.24);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  background: #20bd5a;
  box-shadow: 0 17px 44px rgba(11, 34, 54, 0.3);
  transform: translateY(-2px);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  :root {
    --container: 920px;
  }

  .about__grid,
  .why__grid,
  .process__grid {
    gap: 64px;
  }

  .about__grid {
    grid-template-columns: 400px 1fr;
  }

  .why__grid {
    grid-template-columns: 1fr 400px;
  }

  .process__grid {
    grid-template-columns: 400px 1fr;
  }

  .media-card,
  .why__media > img,
  .process__media > img {
    width: 100%;
  }

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

  .footer__grid {
    gap: 38px;
  }

  .page-hero__grid,
  .split-copy,
  .contact-page__grid,
  .legal-layout {
    gap: 58px;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .topbar__meta {
    display: none;
  }

  .site-header,
  .site-header.is-stuck {
    height: 82px;
  }

  .site-header.is-stuck {
    backdrop-filter: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] {
    position: fixed;
    top: 18px;
    right: 16px;
    background: var(--white);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line {
    background: var(--ink);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line--top {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line--bottom {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding: 116px 28px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    overflow-y: auto;
    background: var(--ink);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .main-nav a.is-active {
    color: var(--green);
  }

  .main-nav a::after {
    background: var(--green);
  }

  .hero__intro,
  .section-heading,
  .about__grid,
  .why__grid,
  .process__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__intro {
    gap: 28px;
    min-height: 0;
    padding: 58px 0;
  }

  .hero__copy {
    max-width: 620px;
    padding-top: 0;
  }

  .hero__visual {
    height: 850px;
  }

  .hero__visual > img {
    height: 470px;
    object-position: 60% center;
  }

  .hero__shade {
    height: 470px;
    background: linear-gradient(0deg, rgba(11, 34, 54, 0.4), transparent);
  }

  .quote-card {
    top: auto;
    right: 24px;
    bottom: 28px;
    left: 24px;
    width: auto;
    transform: none;
  }

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

  .about__grid,
  .why__grid,
  .process__grid {
    gap: 50px;
  }

  .about__content {
    order: -1;
  }

  .media-card,
  .why__media > img {
    height: min(580px, 76vw);
  }

  .why__media {
    width: min(100%, 560px);
  }

  .section-heading {
    gap: 22px;
  }

  .section-heading__aside {
    padding-top: 0;
  }

  .process__media {
    width: min(100%, 560px);
  }

  .process__media > img {
    height: min(680px, 105vw);
  }

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

  .promise-card {
    min-height: 270px;
  }

  .contact__grid {
    gap: 36px;
  }

  .page-hero {
    min-height: 0;
  }

  .page-hero__grid,
  .split-copy,
  .contact-page__grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .page-hero__grid {
    gap: 46px;
    padding: 68px 0;
  }

  .page-hero__media {
    width: min(100%, 620px);
    height: min(520px, 76vw);
    transform: none;
  }

  .page-hero__mark {
    width: min(62vw, 360px);
    justify-self: start;
  }

  .page-hero__index {
    display: none;
  }

  .rich-copy {
    padding-top: 0;
  }

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

  .value-card {
    min-height: 250px;
  }

  .subpage-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding: 36px;
  }

  .service-detail ul {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 130px 1fr;
    gap: 34px;
  }

  .quote-card--page {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .legal-aside {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__grid > div:last-child {
    grid-column: 2;
  }
}

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

  .section {
    padding: 78px 0;
  }

  .brand__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero__visual {
    height: 905px;
  }

  .hero__visual > img,
  .hero__shade {
    height: 350px;
  }

  .quote-card {
    right: 16px;
    bottom: 20px;
    left: 16px;
    padding: 28px 24px;
  }

  .trust-strip {
    padding: 52px 0;
  }

  .trust-strip__grid,
  .facts,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .facts {
    gap: 24px;
  }

  .facts div,
  .facts div:first-child {
    padding: 0 0 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.42);
  }

  .service-card {
    min-height: 330px;
  }

  .cta-banner {
    min-height: 560px;
  }

  .cta-banner__overlay {
    background: rgba(11, 34, 54, 0.72);
  }

  .process__note {
    right: 12px;
    bottom: 18px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer__bottom > div {
    flex-wrap: wrap;
  }

  .page-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .page-hero__grid,
  .page-hero--compact .page-hero__grid {
    padding: 56px 0;
  }

  .page-hero__media {
    height: 105vw;
  }

  .page-hero__mark,
  .page-hero--compact .page-hero__mark {
    width: min(76vw, 310px);
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 26px;
    width: 100%;
    padding: 28px 24px;
  }

  .service-detail > div:first-child {
    align-items: center;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 0;
  }

  .timeline-step > span {
    font-size: 4.2rem;
  }

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

  .contact-method {
    flex-direction: column;
    gap: 6px;
  }

  .contact-method > strong {
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .quote-card--page {
    padding: 30px 24px;
  }

  .contact-note {
    flex-direction: column;
    gap: 14px;
  }

  .legal-layout {
    gap: 46px;
  }
}

/* Responsive hardening */
@media (max-width: 960px) {
  .area-faq__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .topbar {
    height: auto;
    min-height: 52px;
    padding: 9px 0;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .site-header,
  .site-header.is-stuck {
    position: sticky;
    top: 0;
  }

  .nav-toggle[aria-expanded="true"] {
    top: max(18px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
  }

  .main-nav {
    padding:
      calc(104px + env(safe-area-inset-top))
      max(28px, env(safe-area-inset-right))
      calc(40px + env(safe-area-inset-bottom))
      max(28px, env(safe-area-inset-left));
  }

  .hero__visual {
    height: auto;
    overflow: visible;
    padding-bottom: 32px;
    background: var(--surface);
  }

  .hero__visual > img {
    height: clamp(330px, 64vw, 470px);
  }

  .hero__shade {
    right: 0;
    bottom: auto;
    height: clamp(330px, 64vw, 470px);
    background: linear-gradient(0deg, rgba(11, 34, 54, 0.46), transparent 62%);
  }

  .quote-card {
    position: relative;
    inset: auto;
    width: min(calc(100% - 48px), 560px);
    margin: -48px auto 0;
    transform: none;
  }

  .area-card {
    padding: 36px;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__grid > div:last-child {
    grid-column: auto;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: 72px;
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -12px 34px rgba(11, 34, 54, 0.12);
    backdrop-filter: blur(14px);
  }

  .mobile-actions a {
    min-width: 0;
    min-height: 54px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 9px;
    line-height: 1.15;
    text-align: center;
  }

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

  .mobile-actions span {
    color: var(--text);
    font-size: 0.68rem;
  }

  .mobile-actions a:last-child span {
    color: var(--green);
  }

  .mobile-actions strong {
    margin-top: 3px;
    font-size: 0.88rem;
    font-weight: 600;
  }

  body.nav-open .mobile-actions {
    opacity: 0;
    pointer-events: none;
  }

  .whatsapp-button {
    right: 12px;
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: 54px;
    height: 54px;
  }

  .whatsapp-button img {
    width: 28px;
    height: 28px;
  }

  body.nav-open .whatsapp-button {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.65rem);
    line-height: 1.1;
  }

  .section {
    padding: 68px 0;
  }

  .hero__intro {
    padding: 46px 0 52px;
  }

  .hero__copy p {
    font-size: 1rem;
  }

  .hero__visual {
    padding-bottom: 24px;
  }

  .hero__visual > img,
  .hero__shade {
    height: clamp(270px, 78vw, 340px);
  }

  .quote-card {
    width: calc(100% - 24px);
    margin-top: -30px;
    padding: 28px 20px 24px;
  }

  .quote-card h2 {
    font-size: 1.34rem;
  }

  .quote-card input,
  .quote-card select {
    height: 52px;
    font-size: 16px;
  }

  .quote-card .button,
  .contact__actions > .button,
  .subpage-cta .button,
  .area-card > .button {
    width: 100%;
  }

  .trust-strip__grid {
    gap: 18px;
  }

  .trust-strip__grid div {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip__grid div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .about,
  .contact,
  .subpage-cta {
    padding: 68px 0;
  }

  .media-card,
  .why__media > img {
    height: min(440px, 92vw);
  }

  .why__media {
    padding-bottom: 0;
  }

  .rating-card {
    position: relative;
    height: auto;
    margin-top: 12px;
  }

  .service-card {
    min-height: 300px;
  }

  .cta-banner {
    min-height: 500px;
  }

  .cta-banner__content h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .process__media > img {
    height: min(520px, 118vw);
  }

  .process__note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -24px 12px 0;
  }

  .promise-card {
    min-height: 250px;
  }

  .area-card {
    padding: 28px 22px;
  }

  .area-card__tags {
    margin: 24px 0 28px;
  }

  .faq summary {
    padding: 21px 46px 21px 0;
    font-size: 1.04rem;
  }

  .faq details p {
    padding: 0 0 22px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.35rem);
  }

  .page-hero__grid,
  .page-hero--compact .page-hero__grid {
    gap: 36px;
    padding: 50px 0;
  }

  .page-hero__mark,
  .page-hero--compact .page-hero__mark {
    display: none;
  }

  .page-hero__media {
    height: min(430px, 102vw);
  }

  .value-card {
    min-height: 230px;
    padding: 26px;
  }

  .service-card,
  .service-detail,
  .value-card,
  .promise-card,
  .page-hero__media,
  .media-card,
  .why__media > img,
  .process__media > img {
    border-radius: 14px;
  }

  .contact-page__grid {
    gap: 52px;
  }

  .legal-aside {
    padding: 22px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand,
  .footer__grid > div:last-child {
    grid-column: auto;
  }
}

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

  .brand {
    gap: 8px;
    font-size: 1.08rem;
  }

  .brand__logo-shell {
    width: 46px;
    height: 42px;
    flex-basis: 46px;
  }

  .brand__logo {
    width: 42px;
    height: 36px;
  }

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

  .main-nav a {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .footer__bottom > div {
    gap: 7px;
  }
}

@media (max-width: 820px) and (max-height: 560px) {
  .main-nav {
    gap: 6px;
    padding-top: calc(78px + env(safe-area-inset-top));
  }

  .main-nav a {
    font-size: clamp(1.55rem, 7vh, 2.2rem);
  }
}

@media (max-width: 720px) {
  .cookie-consent {
    inset: auto 8px 8px;
  }

  .cookie-panel {
    max-height: calc(100dvh - 16px);
    padding: 26px 20px 20px;
    border-radius: 14px;
  }

  .cookie-panel h2 {
    padding-right: 34px;
    font-size: 1.7rem;
  }

  .cookie-panel__close {
    top: 12px;
    right: 12px;
  }

  .cookie-panel__actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .cookie-choice {
    width: 100%;
  }

  .cookie-category {
    padding: 14px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
