:root {
  --ink: #0b0b09;
  --muted: #6f6c64;
  --paper: #f6f3ed;
  --paper-strong: #fffdf8;
  --line: #ded8cd;
  --green: #62f06a;
  --olive: #344030;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 24px 80px rgba(20, 18, 12, 0.12);
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --anchor-offset: 118px;
  --home-h2-size: clamp(42px, 4.4vw, 51.7px);
  --home-h2-size-mobile: clamp(25px, 6.8vw, 32px);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html.lenis.lenis-stopped {
  overflow: hidden;
}

html.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Geist, Arial, sans-serif;
}

html.motion-ready body {
  animation: pageIn 520ms var(--motion-ease) both;
}

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

video,
svg,
canvas {
  max-width: 100%;
}

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

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

:where(a, button, summary, input, [role="button"]) {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid color-mix(in srgb, #06451a 70%, white);
  outline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 680ms var(--motion-ease),
    transform 680ms var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.image-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.image-reveal.is-visible {
  opacity: 1;
  transform: none;
}

[data-line-mask-reveal] {
  opacity: 1;
}

[data-line-mask-reveal] .line-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

[data-line-mask-reveal] .line-inner {
  display: block;
}

[data-line-mask-reveal] .split-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  will-change: transform, opacity;
}

[data-line-mask-reveal].is-line-mask-visible .split-word {
  transform: translateY(0%);
  opacity: 1;
  transition:
    transform 740ms var(--motion-ease),
    opacity 740ms var(--motion-ease);
  transition-delay: var(--word-delay, 0ms);
}

[data-line-mask-reveal].line-mask-no-transition .split-word {
  transition: none;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

main#home,
.section-shell[id] {
  scroll-margin-top: var(--anchor-offset);
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  width: min(1120px, calc(100% - 40px));
  margin: 16px auto 0;
  padding: 10px 14px 10px 18px;
  border: 1px solid rgba(222, 216, 205, 0.72);
  border-radius: 28px;
  background: color-mix(in srgb, var(--paper-strong) 78%, transparent);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow: 0 10px 34px rgba(20, 18, 12, 0.07);
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(150px, 13vw, 152.75px);
  height: auto;
  aspect-ratio: 2435 / 805;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo-picture {
  display: block;
  flex: 0 0 auto;
}

.main-nav {
  display: flex;
  gap: 40px;
  color: #5f625c;
  font-size: 16px;
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:active,
.footer-links a:active,
.footer-bottom a:active {
  color: var(--ink);
  opacity: 0.78;
}

.main-nav a,
.footer-links a,
.footer-socials a,
.footer-bottom a {
  transition: color 180ms ease, opacity 180ms ease;
}

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

.menu-toggle {
  position: relative;
  justify-self: end;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #050505;
  cursor: pointer;
  transition:
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  box-shadow: 0 14px 30px rgba(20, 18, 12, 0.13);
}

.menu-toggle:active {
  transform: translateY(1px);
  box-shadow: 0 8px 20px rgba(20, 18, 12, 0.1);
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 220ms var(--motion-ease),
    opacity 160ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

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

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

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

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 10px 8px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition:
    transform 220ms var(--motion-ease),
    box-shadow 220ms ease,
    opacity 180ms ease;
}

.pill-button.dark {
  justify-self: end;
  color: #fff;
  background: #050505;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pill-button:hover,
.pill-button:focus-visible,
.work-button:hover,
.work-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(20, 18, 12, 0.14);
}

.pill-button:active,
.work-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 24px rgba(20, 18, 12, 0.1);
}

.pill-button.light {
  color: #202018;
  background: #fff;
}

.signal,
.button-dot {
  display: inline-block;
  border-radius: 50%;
}

.signal {
  width: 8px;
  height: 8px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation: signalPulse 1.8s ease-in-out infinite;
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 12px rgba(98, 240, 106, 0.65);
  }

  50% {
    opacity: 0.52;
    transform: scale(0.82);
    box-shadow: 0 0 4px rgba(98, 240, 106, 0.28);
  }
}

.button-dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: #050505;
}

.dark .button-dot {
  background: #fff;
}

.button-dot svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pill-button.light .button-dot svg {
  color: #fff;
}

.dark .button-dot svg {
  color: #050505;
}

.hero {
  position: relative;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  isolation: isolate;
  min-height: 584px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background: var(--hero-fallback, #d7c8b4);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.45));
  pointer-events: none;
}

.hero-media-bright::after {
  background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.22));
}

.hero-media-bright {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-border-trail {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.hero-border-trail::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
}

.hero-border-trail-light {
  position: absolute;
  top: -3px;
  left: -34px;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 24%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.24) 76%, transparent 100%);
  box-shadow:
    0 0 8px 2px rgba(255, 255, 255, 0.26),
    0 0 14px 5px rgba(255, 255, 255, 0.12),
    inset 0 0 8px rgba(255, 255, 255, 0.22);
  offset-path: inset(1px round var(--radius-xl));
  offset-anchor: center;
  offset-rotate: auto;
  animation: hero-border-trail 14s linear infinite;
  opacity: 0.68;
  will-change: offset-distance;
}

.hero-border-trail-light.is-opposite {
  animation-delay: -7s;
}

@keyframes hero-border-trail {
  to {
    offset-distance: 100%;
  }
}

.hero-copy {
  position: absolute;
  left: clamp(28px, 7vw, 80px);
  top: 58px;
  bottom: auto;
  z-index: 2;
  display: flex;
  width: min(760px, calc(100% - 56px));
  flex-direction: column;
  align-items: flex-start;
}

.hero-copy p,
.hero-actions,
h1,
.hero-stats div {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: heroItemIn 640ms var(--motion-ease) forwards;
}

h1 {
  animation-delay: 80ms;
}

.hero-copy p {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 280ms;
}

.hero-stats div:nth-child(1) {
  animation-delay: 360ms;
}

.hero-stats div:nth-child(2) {
  animation-delay: 440ms;
}

.hero-stats div:nth-child(3) {
  animation-delay: 520ms;
}

@keyframes heroItemIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-copy p {
  max-width: 750px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.95);
  font-family: Geist, Arial, sans-serif;
  font-size: clamp(19px, 1.35vw, 19px);
  font-weight: 300;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions .pill-button {
  box-sizing: border-box;
  min-width: 178px;
  min-height: 52px;
  height: 52px;
  justify-content: space-between;
  color: #202018;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.055);
}

.hero-actions .pill-button:not(.light) {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.work-showcase > .work-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #233828;
  box-shadow: 0 10px 24px rgba(18, 28, 20, 0.12);
}

.hero-actions .pill-button .button-dot {
  background: #050505;
}

.hero-actions .pill-button .button-dot svg {
  color: #fff;
}

.cta-label-mobile {
  display: none;
}

h1,
h2 {
  margin: 0;
  font-family: Geist, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  position: absolute;
  left: clamp(28px, 7vw, 80px);
  top: 58px;
  z-index: 2;
  width: min(900px, calc(100% - 56px));
  font-family: Geist, Arial, sans-serif;
  font-size: clamp(48px, 4.9vw, 56px);
  font-weight: 600;
  letter-spacing: -0.02rem;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero-copy h1 {
  position: static;
  width: auto;
  margin: 0 0 22px;
  font-size: clamp(46px, 4.65vw, 54px);
  line-height: 1.04;
}

.hero-copy h1 .t-shimmer {
  --shimmer-dur: 8000ms;
  --shimmer-base: #edf5ff;
  --shimmer-highlight: #f3f7fb;
  --shimmer-band: 320%;
  --shimmer-ease: cubic-bezier(0.42, 0, 0.2, 1);
  display: inline-block;
  background-image: linear-gradient(
    90deg,
    var(--shimmer-base) 0%,
    var(--shimmer-base) 45%,
    rgba(243, 247, 251, 0.62) 48%,
    var(--shimmer-highlight) 50%,
    rgba(243, 247, 251, 0.62) 52%,
    var(--shimmer-base) 55%,
    var(--shimmer-base) 100%
  );
  background-size: var(--shimmer-band) 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: t-shimmer var(--shimmer-dur) var(--shimmer-ease) infinite;
}

@keyframes t-shimmer {
  0% {
    background-position: 100% 0;
  }

  92% {
    background-position: 0% 0;
  }

  100% {
    background-position: 0% 0;
  }
}

.hero-stats {
  position: absolute;
  left: clamp(28px, 7vw, 80px);
  bottom: 34px;
  z-index: 2;
  display: grid;
  width: min(640px, calc(100% - 56px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
}

.hero-stats div {
  text-align: center;
}

.hero-stats strong,
.about-stats strong {
  display: block;
  font-family: Geist, Arial, sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
}

.hero-stats span,
.about-stats span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.renovation-benefit-slider {
  margin-top: 36px;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 0;
  contain: layout paint;
}

.renovation-benefit-slider-inner {
  --marquee-bg: #062f1b;
  position: relative;
  isolation: isolate;
  min-height: 68px;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 0;
  border-radius: 999px;
  background: var(--marquee-bg);
  box-shadow: 0 22px 50px rgba(6, 47, 27, 0.18);
  clip-path: inset(0 round 999px);
  contain: paint;
  opacity: 0;
  transform: translateZ(0);
  animation: benefit-slider-enter 720ms cubic-bezier(0.22, 1, 0.36, 1) 220ms forwards;
}

.renovation-benefit-mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  overflow: clip;
  overflow-clip-margin: 0;
  border-radius: inherit;
  clip-path: inset(0 round 999px);
  contain: paint;
  transform: translateZ(0);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 92px, #000 calc(100% - 92px), transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: linear-gradient(to right, transparent 0, #000 92px, #000 calc(100% - 92px), transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  pointer-events: none;
}

.renovation-benefit-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  height: 68px;
  align-items: center;
  will-change: transform;
  animation: service-marquee 34s linear infinite;
}

.renovation-benefit-list {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
  gap: 54px;
  margin: 0;
  padding: 0 42px;
  color: #fff;
  list-style: none;
  white-space: nowrap;
}

.renovation-benefit-list li {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 54px;
  font-size: clamp(0.98rem, 1.2vw, 0.98rem);
  line-height: normal;
}

.renovation-benefit-list li::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

@keyframes service-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes benefit-slider-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 768px) {
  .renovation-benefit-slider,
  .renovation-benefit-slider-inner,
  .renovation-benefit-mask {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    overflow: clip;
  }

  .renovation-benefit-track {
    inset: 0 auto auto 0;
    width: max-content;
    max-width: none;
    min-width: max-content;
    height: 100%;
    overflow: visible;
    animation: service-marquee 34s linear infinite !important;
  }

  .renovation-benefit-list {
    position: static;
    width: auto;
    max-width: none;
    min-width: max-content;
    height: 100%;
    padding: 0 28px;
    gap: 30px;
    overflow: visible;
    animation: none !important;
    transform: none !important;
  }

  .renovation-benefit-list:nth-child(n + 2) {
    display: flex;
  }

  .renovation-benefit-list li {
    min-width: max-content;
    flex: 0 0 auto;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
  }
}

@media (max-width: 620px) {
  .renovation-benefit-slider-inner,
  .renovation-benefit-track {
    min-height: 56px;
    height: 56px;
  }

  .renovation-benefit-list,
  .renovation-benefit-list li {
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .renovation-benefit-track,
  .renovation-benefit-list,
  .renovation-benefit-slider-inner {
    animation: none;
  }

  .renovation-benefit-slider-inner {
    opacity: 1;
    transform: translateZ(0);
  }
}

@media (min-width: 663px) {
  .hero-actions {
    gap: 24px;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  .hero-copy {
    left: 50%;
    width: min(860px, calc(100% - 80px));
    align-items: center;
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-copy h1 {
    max-width: 980px;
    font-size: clamp(58px, 5.88vw, 69px);
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 750px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(19px, 1.65vw, 19.39px);
  }

  .hero-actions {
    justify-content: center;
    gap: 18px;
  }

  .hero-stats {
    left: clamp(70px, 10vw, 117.5px);
    right: clamp(70px, 10vw, 117.5px);
    width: auto;
    gap: 0;
  }

  .hero-stats div:nth-child(2) {
    text-align: center;
  }

  .hero-stats div:nth-child(3) {
    text-align: center;
  }
}

@media (min-width: 1175px) {
  .hero-copy {
    left: 50%;
    width: min(900px, calc(100% - 120px));
    align-items: center;
    text-align: center;
    transform: translateX(-50%);
  }

  .hero-copy h1 {
    max-width: 980px;
    font-size: 69px;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 750px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(19px, 1.35vw, 19px);
  }

  .hero-actions {
    gap: 18px;
    justify-content: center;
  }

  .hero-stats {
    left: clamp(132px, 12vw, 141px);
    right: clamp(132px, 12vw, 141px);
    width: auto;
    gap: 0;
  }

  .hero-stats div:nth-child(2) {
    text-align: center;
  }

  .hero-stats div:nth-child(3) {
    text-align: center;
  }
}

.about,
.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(32px, 7vw, 82.25px);
  align-items: start;
  padding: 112px 0 70px;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--olive);
  font-size: 14px;
  font-weight: 700;
}

h2 {
  font-size: clamp(38px, 5vw, 58.75px);
  line-height: 1;
}

.about-copy p,
.section-title + p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-copy p {
  margin-top: 56px;
}

.about-text-mobile {
  display: none;
}

h3 {
  margin: 10px 0 0;
  font-size: 24px;
  letter-spacing: 0;
}

.offer-services {
  position: relative;
  overflow: hidden;
  overflow-anchor: none;
  width: min(1120px, calc(100% - 40px));
  margin-top: 112px;
  padding: 68px 86px 74px;
  border-radius: var(--radius-xl);
  background-color: var(--paper);
  font-family: "Rethink Sans", Geist, Arial, sans-serif;
  font-weight: 400;
  isolation: isolate;
}

.offer-services::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: url("assets/service-background.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--paper);
  pointer-events: none;
  opacity: 1;
  transform: none;
  transform-origin: top center;
  transition: none;
}

.offer-services.has-service-open::before,
.offer-services.is-service-opening::before {
  transform: none;
}

.offer-services.is-service-closing::before {
  transform: none;
}

.offer-services > * {
  position: relative;
  z-index: 1;
}

.offer-head {
  max-width: 740px;
  margin: 0 auto 44px;
  text-align: center;
}

.offer-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 26px;
  padding: 7px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #06451a;
  font-family: "Rethink Sans", Geist, Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.offer-head h2 {
  font-family: "Rethink Sans", Geist, Arial, sans-serif;
  font-size: clamp(46px, 5.25vw, 61.69px);
  font-weight: 400;
  line-height: 1.02;
}

.offer-head p {
  margin: 22px auto 0;
  max-width: 640px;
  color: #0b0b09;
  font-size: clamp(18px, 1.65vw, 19.39px);
  line-height: 1.3;
}

.service-accordion {
  display: grid;
  gap: 20px;
  width: calc(100% + 128px);
  max-width: 1260px;
  margin-inline: -64px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px) saturate(1.02);
  overflow-anchor: none;
}

.service-card {
  overflow: hidden;
  overflow-anchor: none;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px) saturate(1.02);
}

.service-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  --service-title-center-offset: 12px;
  gap: 24px;
  min-height: 104px;
  padding: 24px 24px 22px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-align: center;
  list-style: none;
  transition:
    box-shadow 240ms ease,
    transform 240ms var(--motion-ease),
    background 240ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card summary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(20, 18, 12, 0.09);
  }
}

.service-card summary:focus {
  outline: none;
}

.service-card summary:focus-visible {
  box-shadow: 0 0 0 3px rgba(6, 69, 26, 0.18);
}

.service-card summary:active {
  transform: translateY(0);
  box-shadow: 0 8px 20px rgba(20, 18, 12, 0.07);
}

.service-card.is-open summary,
.service-card.is-opening summary {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

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

.service-card summary strong {
  flex: 1 1 auto;
  min-width: 0;
  color: #050505;
  font-family: "Rethink Sans", Geist, Arial, sans-serif;
  font-size: clamp(30px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.06;
  hyphens: manual;
  overflow-wrap: break-word;
  text-align: center;
  transform: translateX(var(--service-title-center-offset));
  word-break: normal;
}

.service-card summary i {
  position: relative;
  display: inline-grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f1ede5;
  transition: transform 260ms ease, background 260ms ease;
}

.service-card summary i::before {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 3px solid #06451a;
  border-bottom: 3px solid #06451a;
  transform: translateY(4px) rotate(225deg);
  transition: transform 260ms ease;
}

.service-card.is-opening summary i::before,
.service-card.is-open summary i::before {
  transform: translateY(-4px) rotate(45deg);
}

.service-card.is-closing summary i::before {
  transform: translateY(4px) rotate(225deg);
}

.service-panel {
  --accordion-open-size: 1200px;
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  overflow: hidden;
  min-height: 0;
  max-height: 0;
  text-align: center;
  opacity: 0;
  transition:
    max-height 700ms cubic-bezier(0.45, 0, 0.2, 1),
    opacity 420ms ease;
}

.service-card.is-opening .service-panel,
.service-card.is-open .service-panel {
  max-height: var(--accordion-open-size);
  opacity: 1;
}

.service-card.is-closing .service-panel {
  max-height: 0;
  opacity: 0;
}

.service-panel > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.45, 0, 0.2, 1);
}

.service-card.is-opening .service-panel > *,
.service-card.is-open .service-panel > * {
  opacity: 1;
  transform: translateY(0);
}

.service-card.is-opening .service-panel > * {
  transition-delay: 80ms;
}

.service-card.is-closing .service-panel > * {
  opacity: 0;
  transform: translateY(28px);
}

.service-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.service-panel-content {
  display: grid;
  justify-items: center;
  padding: 42px 44px 58px;
}

.service-panel p {
  max-width: min(760px, 100%);
  margin: 0;
  color: #67635d;
  font-size: clamp(20px, 2.2vw, 25px);
  line-height: 1.38;
}

.service-panel .service-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  min-height: 34px;
  color: #06451a;
  font: inherit;
  font-size: 0.92em;
  font-weight: 600;
  transition: color 220ms ease;
}

.service-panel .service-more-link:hover {
  color: #043313;
}

.service-panel .service-more-link:active {
  color: #043313;
}

.service-panel .service-more-link span {
  display: inline-block;
  transition: transform 220ms var(--motion-ease);
}

.service-panel .service-more-link:hover span {
  transform: translateX(3px);
}

.service-panel .service-more-link:active span {
  transform: translateX(1px);
}

.service-panel img {
  width: 100%;
  max-width: 820px;
  height: 460px;
  margin-top: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(28, 24, 17, 0.14);
}

.service-card:nth-of-type(1) .service-panel img {
  object-fit: cover;
  object-position: center center;
}

.service-card:nth-of-type(2) .service-panel img {
  object-fit: cover;
  object-position: center 58%;
}

.service-card:nth-of-type(3) .service-panel img {
  object-fit: cover;
  object-position: center center;
}

.service-card:nth-of-type(4) .service-panel img {
  object-fit: cover;
  object-position: center center;
}

.service-card:nth-of-type(5) .service-panel img {
  object-fit: cover;
  object-position: center center;
}

.service-card:nth-of-type(6) .service-panel img {
  object-fit: cover;
  object-position: center 58%;
}

.service-panel ul {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  width: min(480px, 100%);
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 54px;
  padding: 6px 24px 6px 8px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: clamp(20px, 2vw, 23.5px);
  text-align: left;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.service-chip-label {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.chip-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f1ede5;
  color: #06451a;
  font-size: 13px;
  font-weight: 800;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 350px);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

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

.work-section {
  display: block;
  margin-top: 96px;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.work-showcase {
  display: block;
  margin-top: 38px;
  padding: 48px 22px 58px;
  border-radius: 26px;
  background: #f1ede5;
}

.work-head {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.work-pill,
.work-card-media span,
.comparison-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 16px;
  border-radius: 999px;
  background: #f1ede5;
  color: #06451a;
  font-size: 14px;
  font-weight: 600;
}

.work-pill {
  min-height: 42px;
  padding-inline: 24px;
  font-size: 20px;
  font-weight: 400;
}

.work-head h2 {
  margin: 28px auto 0;
  max-width: 920px;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.02rem;
}

.work-head p {
  max-width: 760px;
  margin: 24px auto 0;
  color: #5b5a55;
  font-size: 18px;
  line-height: 1.55;
}

.comparison {
  --split: 50%;
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 18px;
  background: #ece8df;
  transition: box-shadow 260ms ease, transform 260ms var(--motion-ease);
}

.comparison:hover,
.comparison:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(20, 18, 12, 0.11);
}

.comparison img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  clip-path: inset(0 0 0 var(--split));
}

@media (min-width: 1024px) {
  .comparison-after {
    object-position: center 38%;
  }
}

.comparison-label {
  position: absolute;
  top: 18px;
  z-index: 3;
  background: rgba(255, 253, 248, 0.94);
}

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

.comparison-label-after {
  right: 18px;
}

.comparison-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  z-index: 3;
  width: 2px;
  background: rgba(255, 253, 248, 0.95);
  transform: translateX(-50%);
  pointer-events: none;
}

.comparison-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(15, 35, 18, 0.18);
  transform: translate(-50%, -50%);
}

.comparison-handle::before {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 34px;
  color: #06451a;
  font-family: Geist, Arial, sans-serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1;
  text-align: center;
  transform: translate(-50%, -52%);
}

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

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  margin-top: 18px;
}

.work-card {
  display: grid;
  grid-template-rows: 280px minmax(176px, auto);
  gap: 10px;
  min-width: 0;
  height: 100%;
  transition:
    transform 260ms var(--motion-ease),
    filter 260ms ease;
}

.work-card:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 18px 28px rgba(20, 18, 12, 0.08));
}

.work-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #d8d0c2;
}

.work-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--motion-ease);
}

.work-card:hover .work-card-media img {
  transform: scale(1.025);
}

.work-card-media span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 32px);
  min-height: 34px;
  padding-inline: 18px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.2;
}

.work-card-copy {
  min-height: 176px;
  padding: 24px 24px 22px;
  border-radius: 12px;
  background: #fffdf8;
  overflow: visible;
}

.work-card-copy h3 {
  max-width: 470px;
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02rem;
}

.work-card-copy p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.work-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 54px;
  margin: 44px auto 0;
  padding: 0 34px;
  border-radius: 999px;
  background: #233828;
  color: #fff;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  transition:
    transform 220ms var(--motion-ease),
    box-shadow 220ms ease,
    background 180ms ease;
}

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

.work-dots {
  display: none;
}

.projects-page {
  padding-top: 82px;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.projects-hero {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.projects-hero .work-pill {
  margin-inline: auto;
}

.projects-hero h1 {
  position: static;
  width: auto;
  color: var(--ink);
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: none;
  animation: none;
  opacity: 1;
  transform: none;
}

.projects-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23.5px);
  line-height: 1.45;
}

.legal-page {
  padding-top: 82px;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.legal-hero {
  display: grid;
  gap: 26px;
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.legal-hero .work-pill {
  margin-inline: auto;
}

.legal-hero h1 {
  position: static;
  width: auto;
  color: var(--ink);
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(58px, 8vw, 94px);
  font-weight: 400;
  line-height: 0.96;
  text-transform: none;
  overflow-wrap: anywhere;
  hyphens: auto;
  animation: none;
  opacity: 1;
  transform: none;
}

.legal-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23.5px);
  line-height: 1.45;
}

.legal-content {
  margin-top: 72px;
}

.legal-card {
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 26px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 39.95px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

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

.legal-list div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.legal-list dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.6vw, 18.8px);
  line-height: 1.55;
}

.legal-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-article {
  display: grid;
  gap: 22px;
}

.legal-article h2 {
  margin: 22px 0 0;
}

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

.legal-article p,
.legal-article li {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 17.04px);
  line-height: 1.7;
}

.legal-article ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-article a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.featured-case {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 26px;
  background: #f1ede5;
}

.featured-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 16px;
  background: #d8d0c2;
}

.featured-media img {
  width: 100%;
  height: 100%;
  transform: scale(1.04);
}

.featured-media span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  min-height: 36px;
  padding: 7px 18px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  color: #06451a;
  font-size: 16px;
}

.featured-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 47px);
  border-radius: 16px;
  background: #fffdf8;
}

.featured-copy h2,
.projects-section-head h2,
.projects-cta h2 {
  margin: 24px 0 0;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(30px, 3.4vw, 39.95px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.02rem;
  overflow-wrap: anywhere;
}

.featured-copy p,
.projects-cta p {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 21.15px);
  line-height: 1.55;
}

.case-meta {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
}

.case-meta div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5dfd4;
}

.case-meta dt {
  color: #8a857b;
  font-size: 14px;
}

.case-meta dd {
  margin: 0;
  color: #172315;
  font-size: 16px;
}

.featured-copy .work-button {
  margin: 38px 0 0;
}

.project-gallery-section,
.before-after-section,
.project-process,
.projects-cta {
  margin-top: 112px;
}

.projects-section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.bento-gallery {
  column-count: 3;
  column-gap: 18px;
}

.bento-card {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 430px;
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 18px;
  background: #d8d0c2;
  box-shadow: 0 16px 42px rgba(20, 18, 12, 0.08);
  break-inside: avoid;
  vertical-align: top;
}

.bento-card.large {
  height: 620px;
}

.bento-card.wide {
  height: 360px;
}

.bento-card.tall {
  height: 560px;
}

.bento-card.small {
  height: 340px;
}

.bento-card img {
  width: 100%;
  height: 100%;
  transition: transform 700ms var(--motion-ease);
}

.bento-card:hover img {
  transform: scale(1.03);
}

.bento-card:active img {
  transform: scale(1.01);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(10, 10, 8, 0.06), rgba(10, 10, 8, 0.72));
  color: #fff;
  opacity: 0;
  transition: opacity 260ms ease;
}

.bento-card:hover .bento-overlay,
.bento-card:focus-within .bento-overlay {
  opacity: 1;
}

.bento-overlay span {
  width: fit-content;
  min-height: 28px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: #06451a;
  font-size: 14px;
}

.bento-overlay strong {
  margin-top: 16px;
  font-size: clamp(24px, 2.5vw, 29.38px);
  font-weight: 400;
  line-height: 1;
}

.bento-overlay p {
  max-width: 420px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.bento-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 220ms var(--motion-ease);
}

.bento-card:hover .bento-caption {
  opacity: 0;
  transform: translateY(8px);
}

.bento-caption span {
  color: #06451a;
  font-size: 14px;
}

.bento-caption h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.2vw, 25.85px);
  font-weight: 400;
  line-height: 1;
}

.before-after-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.before-after-grid {
  grid-template-columns: 1fr;
}

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

.mini-case {
  padding: 18px;
  border-radius: 24px;
  background: #f1ede5;
}

.mini-case .comparison {
  height: 340px;
}

.mini-case h3 {
  margin: 24px 6px 0;
  font-size: clamp(26px, 3vw, 35.25px);
  font-weight: 400;
}

.mini-case p {
  margin: 12px 6px 6px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

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

.process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 28px;
  border: 1px solid #e2ddd3;
  border-radius: 22px;
  background: #fffdf8;
  cursor: default;
  transition:
    transform 240ms var(--motion-ease),
    box-shadow 240ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.process-grid article::after {
  content: "";
  position: absolute;
  inset: auto 24px 18px 24px;
  height: 2px;
  border-radius: 999px;
  background: #06451a;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 260ms var(--motion-ease);
}

.process-grid article:hover,
.process-grid article:focus-within,
.process-grid article.is-touch-active {
  transform: translateY(-4px);
  border-color: rgba(6, 69, 26, 0.28);
  background: #fff;
  box-shadow: 0 20px 46px rgba(20, 18, 12, 0.09);
}

.process-grid article:hover::after,
.process-grid article:focus-within::after,
.process-grid article.is-touch-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.process-grid article span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f1ede5;
  color: #06451a;
  font-weight: 600;
  transition:
    transform 240ms var(--motion-ease),
    background 220ms ease,
    color 220ms ease;
}

.process-grid article:hover span,
.process-grid article:focus-within span,
.process-grid article.is-touch-active span {
  transform: scale(1.06);
  background: #233828;
  color: #fff;
}

.process-grid article h3 {
  margin-top: 36px;
  font-size: 26px;
  font-weight: 400;
}

.process-grid article p {
  color: var(--muted);
  line-height: 1.5;
}

.renovation-process .process-grid {
  gap: 14px;
  margin-top: clamp(22px, 3vw, 32px);
}

.renovation-process .process-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 14px;
  row-gap: 12px;
  min-height: 150px;
  padding: 20px 22px;
  border-radius: 18px;
}

.renovation-process .process-grid article::after {
  inset: auto 22px 14px 22px;
}

.renovation-process .process-grid article span {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.renovation-process .process-grid article h3 {
  min-width: 0;
  margin: 0;
  font-size: clamp(19px, 2vw, 23px);
  font-weight: 520;
  line-height: 1.12;
}

.renovation-process .process-grid article p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 15px;
  line-height: 1.46;
}

.projects-cta {
  display: grid;
  justify-items: center;
  padding: clamp(54px, 7vw, 82.25px) 24px;
  border-radius: 30px;
  background: #fffdf8;
  text-align: center;
}

.projects-cta h2 {
  margin-top: 0;
  max-width: 760px;
}

.projects-cta p {
  max-width: 560px;
}

.projects-cta .work-button {
  margin-top: 34px;
}

.project-back {
  margin-top: 36px;
}

.about-section {
  display: block;
  margin-top: 96px;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.about-head {
  max-width: 900px;
  margin: 0 auto 62px;
  text-align: center;
}

.about-head span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f1ede5;
  color: #06451a;
  font-size: 20px;
  font-weight: 400;
}

.about-copy h2 {
  margin: 0;
  width: min(820px, 100%);
  max-width: 820px;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(42px, 4.4vw, 51.7px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02rem;
}

.about-title-line {
  display: block;
}

.about {
  align-items: start;
  padding-top: 0;
}

.about img {
  width: 100%;
  height: 620px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center center;
  box-shadow: var(--shadow);
}

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

.about-stats div {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.about-stats strong {
  font-family: "Rethink Sans", Arial, sans-serif;
}

.about-stats span {
  color: var(--muted);
}

.client-voices,
.faq {
  padding-top: 86px;
  padding-bottom: 70px;
}

.client-voices {
  display: block;
  margin-top: 96px;
  padding: 72px 22px 58px;
  border-radius: 26px;
  background: #f1ede5;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.work-section + .client-voices {
  margin-top: 48px;
}

.client-voices + .about-section {
  margin-top: 48px;
}

.client-voices-head {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.client-voices-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #f1ede5;
  color: #06451a;
  font-size: 20px;
  font-weight: 400;
}

.client-voices-head h2 {
  margin: 28px auto 0;
  max-width: none;
  color: var(--ink);
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02rem;
  white-space: nowrap;
}

.client-voices-head p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #5b5a55;
  font-size: 18px;
  line-height: 1.55;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 18px;
  margin-top: 46px;
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  height: 100%;
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid rgba(222, 216, 205, 0.88);
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(28, 24, 17, 0.08);
  transition: border-color 220ms ease;
}

.review-card:hover {
  border-color: rgba(189, 181, 166, 0.9);
}

.review-stars {
  color: #06451a;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
}

.review-card blockquote {
  margin: 0;
}

.review-card p {
  margin: 0;
  font-family: "Rethink Sans", Arial, sans-serif;
  color: #4f4c46;
  font-size: 18px;
  line-height: 1.58;
}

.review-card footer {
  display: grid;
  gap: 5px;
  margin-top: 4px;
}

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

.review-card strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.review-card footer span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.1;
}

.reviews-note {
  display: grid;
  justify-items: center;
  gap: 20px;
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
}

.reviews-note p {
  margin: 0;
  color: #5b5a55;
  font-size: 18px;
  line-height: 1.5;
}

.reviews-button {
  margin-top: 0;
}

.reviews-button.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.review-dots {
  display: none;
}

.faq {
  display: block;
  padding-top: 112px;
  padding-bottom: 70px;
  border-top: 0;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.faq-head > span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #f1ede5;
  color: #06451a;
  font-size: 20px;
  font-weight: 400;
}

.offer-pill,
.work-pill,
.about-head span,
.client-voices-head > span,
.faq-head > span {
  border: 1px solid rgba(255, 255, 255, 0.65);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-head h2 {
  margin: 42px 0 72px;
  color: #2b2b2b;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(34px, 6vw, 46px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02rem;
}

.faq-list {
  display: grid;
  border-bottom: 1px solid #c8c8c8;
}

.faq .faq-item {
  border-top: 1px solid #c8c8c8;
  transition: border-color 220ms ease;
}

.faq .faq-item:hover {
  border-color: #9f9f9f;
}

.faq .faq-trigger {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 138px;
  padding: 22px 84px 22px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #2b2b2b;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.14;
  width: 100%;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  user-select: none;
  transition: transform 220ms var(--motion-ease);
}

.faq .faq-trigger:active,
.faq .faq-trigger:focus {
  background: transparent;
  outline: 0;
}

.faq .faq-trigger:active {
  transform: translateY(1px);
}

.faq .faq-trigger:focus-visible {
  outline: 0;
}

html.keyboard-navigation .faq .faq-trigger:focus {
  outline: 2px solid color-mix(in srgb, #06451a 70%, white);
  outline-offset: 4px;
}


.faq .faq-trigger::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 46px;
  height: 46px;
  box-sizing: border-box;
  border: 1px solid #bfbfbf;
  border-radius: 50%;
  background:
    linear-gradient(currentColor, currentColor) center / 18px 2px no-repeat,
    linear-gradient(currentColor, currentColor) center / 2px 18px no-repeat;
  color: #b7b7b7;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center center;
  transition:
    color 360ms ease,
    border-color 360ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq .faq-item.is-open:not(.is-closing) .faq-trigger::after,
.faq .faq-item.is-opening .faq-trigger::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq .faq-item.is-closing .faq-trigger::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq .faq-trigger:hover::after,
.faq .faq-trigger:focus-visible::after {
  border-color: #8f8f8f;
  color: #5e5e5e;
}

.faq-panel {
  display: grid;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.faq-panel > * {
  min-height: 0;
  overflow: hidden;
}

.faq .faq-item.is-open .faq-panel,
.faq .faq-item.is-opening .faq-panel {
  max-height: 900px;
  opacity: 1;
}

.faq .faq-item.is-closing .faq-panel {
  max-height: 0;
  opacity: 0;
}

.faq .faq-panel p {
  max-width: 1040px;
  margin: 8px 0 36px;
  color: #666;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(17px, 1.35vw, 17px);
  font-weight: 400;
  line-height: 1.48;
}

.contact-section {
  display: block;
  margin-top: 92px;
  font-family: "Rethink Sans", Arial, sans-serif;
}

.about-section + .contact-section {
  margin-top: 48px;
}

.contact-head {
  width: min(100%, 820px);
  margin: 0 auto 38px;
  text-align: center;
}

.contact-head h2 {
  margin: 0;
  color: #070705;
  font-family: "Rethink Sans", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 70.5px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.offer-head h2,
.work-head h2,
.client-voices-head h2,
.about-copy h2,
.contact-head h2,
.faq-head h2 {
  font-size: var(--home-h2-size);
}

.contact-head p {
  width: min(100%, 720px);
  margin: 24px auto 0;
  color: #5f5b54;
  font-size: clamp(19px, 2.2vw, 25.85px);
  font-weight: 400;
  line-height: 1.35;
}

.contact-card {
  width: 100%;
  margin: 0 auto;
  padding: 18px 42px;
  border: 1px solid rgba(18, 66, 43, 0.08);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 20px 54px rgba(44, 39, 31, 0.1);
  overflow: hidden;
}

.contact-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 24px;
  min-height: 136px;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    transform 220ms var(--motion-ease);
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(44, 39, 31, 0.1);
}

.contact-row:hover,
.contact-row:focus-visible {
  background: rgba(6, 70, 37, 0.035);
}

.contact-row:active {
  background: rgba(6, 70, 37, 0.055);
  transform: translateY(1px);
}

.contact-row:focus-visible {
  outline: 2px solid rgba(6, 70, 37, 0.28);
  outline-offset: 8px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #eef1e6;
  color: #064625;
  transition:
    background-color 220ms ease,
    color 220ms ease;
}

.contact-row:hover .contact-icon,
.contact-row:focus-visible .contact-icon {
  background: #dfe7d8;
}

.contact-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon .whatsapp-icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}

.contact-row-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.contact-row strong {
  display: block;
  color: #0b0b09;
  font-size: clamp(23px, 2.4vw, 28.2px);
  font-weight: 600;
  line-height: 1.08;
}

.contact-row em {
  display: block;
  color: #064625;
  font-size: clamp(18px, 2vw, 23.5px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.contact-email {
  overflow-wrap: normal;
  word-break: normal;
}

.contact-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #064625;
  color: #fffdf8;
  transition:
    background-color 220ms ease,
    transform 220ms var(--motion-ease);
}

.contact-arrow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-row:hover .contact-arrow,
.contact-row:focus-visible .contact-arrow {
  background: #04351c;
  transform: translateX(4px);
}

.site-footer {
  margin-top: 86px;
  padding: 58px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Rethink Sans", Arial, sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(4, minmax(140px, 1fr));
  gap: 44px;
}

.footer-brand .brand {
  color: var(--ink);
  font-size: 20px;
}

.footer-brand .brand-logo {
  width: clamp(180px, 18vw, 211.5px);
  height: auto;
  aspect-ratio: 2435 / 805;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  line-height: 1.6;
}

.footer-links,
.footer-socials {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3,
.footer-socials h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
}

.footer-links a,
.footer-socials a,
.footer-bottom a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-socials a:hover,
.footer-bottom a:hover {
  color: var(--ink);
}

.footer-socials div {
  display: grid;
  gap: 12px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms var(--motion-ease);
}

.footer-socials a:hover {
  transform: translateX(3px);
}

.footer-socials a:active {
  color: var(--ink);
  transform: translateX(1px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 42px;
  font-size: 14px;
}

.footer-credit {
  margin-left: auto;
  text-align: right;
}

@media (max-width: 899px) {
  :root {
    --anchor-offset: 108px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    top: 10px;
    padding: 9px 12px 9px 14px;
    border-radius: 24px;
    overflow: visible;
  }

  .main-nav {
    display: none;
  }

  .site-header > .pill-button {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(222, 216, 205, 0.78);
    border-radius: 22px;
    background: color-mix(in srgb, var(--paper-strong) 96%, transparent);
    box-shadow: 0 18px 44px rgba(20, 18, 12, 0.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.08);
    backdrop-filter: blur(18px) saturate(1.08);
    transform: translate3d(0, -8px, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 220ms ease,
      transform 260ms var(--motion-ease),
      visibility 0s linear 220ms;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
      opacity 220ms ease,
      transform 260ms var(--motion-ease),
      visibility 0s linear 0s;
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 16px;
    color: #343733;
    font-size: 16px;
    font-weight: 500;
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms var(--motion-ease);
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: #061a0c;
    background: #f1ede5;
    transform: translateX(2px);
  }

  .mobile-menu a:active {
    color: #061a0c;
    background: #f1ede5;
    transform: translateX(1px);
  }

  .hero-media {
    min-height: 700px;
  }

  h1 {
    width: min(720px, calc(100% - 56px));
    font-size: clamp(42px, 6.4vw, 52px);
  }

  .hero-copy h1 {
    width: auto;
    margin-bottom: 20px;
    font-size: clamp(40px, 6vw, 50px);
    line-height: 1.05;
  }

  .hero-copy {
    top: clamp(44px, 6vw, 58px);
    bottom: auto;
    width: min(760px, calc(100% - 56px));
  }

  .hero-stats {
    right: 28px;
    bottom: 38px;
    gap: 20px;
  }

  .about,
  .faq,
  .section-title {
    grid-template-columns: 1fr;
  }

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

  .client-voices-head p {
    margin-top: 48px;
  }

  .review-grid {
    gap: 24px;
    margin-top: 58px;
  }

  .offer-services {
    margin-top: 78px;
    padding: 64px 28px 58px;
  }

  .service-accordion {
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    gap: 16px;
    padding: 16px;
    border-radius: 24px;
  }

  .service-card summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    --service-title-center-offset: 9px;
    gap: 18px;
    min-height: 92px;
    padding: 20px 20px 20px 24px;
    text-align: left;
  }

  .service-card summary strong {
    flex: 1 1 auto;
    min-width: 0;
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.06;
    overflow-wrap: break-word;
    text-align: center;
    transform: translateX(var(--service-title-center-offset));
  }

  .service-card summary i {
    flex: 0 0 48px;
  }

  .service-panel-content {
    padding: 34px 24px 46px;
  }

  .service-panel img {
    height: 340px;
  }

  .work-grid {
    --work-card-width: min(720px, calc(100% - 32px));
    --work-grid-edge: calc((100% - var(--work-card-width)) / 2);
    display: flex;
    grid-template-columns: none;
    align-items: stretch;
    padding: 0 var(--work-grid-edge) 4px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: var(--work-grid-edge);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .work-card {
    flex: 0 0 var(--work-card-width);
    width: var(--work-card-width);
    min-width: var(--work-card-width);
    grid-template-rows: clamp(340px, 56vw, 430px) minmax(176px, auto);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .work-showcase {
    margin-top: 78px;
    padding: 58px 16px 52px;
  }

  .comparison {
    height: 380px;
  }

  .about img {
    height: 420px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .projects-page {
    padding-top: 58px;
  }

  .legal-page {
    padding-top: 58px;
  }

  .featured-case {
    grid-template-columns: 1fr;
  }

  .featured-media {
    min-height: 430px;
  }

  .bento-gallery {
    column-count: 2;
  }

  .bento-card.large,
  .bento-card.tall {
    height: 520px;
  }

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

@media (min-width: 621px) and (max-width: 1174px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > nav.footer-links[aria-label="Navigation"] {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-inner > nav.footer-links[aria-label="Leistungen"] {
    grid-column: 2;
    grid-row: 2 / 5;
  }

  .footer-socials {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .footer-inner > nav.footer-links[aria-label="Rechtliches"] {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0;
  }

  .footer-inner > nav.footer-links[aria-label],
  .footer-socials {
    min-width: 0;
  }

  .footer-brand p {
    max-width: 520px;
  }
}

@media (min-width: 621px) and (max-width: 899px) {
  .hero {
    margin-top: 26px;
  }

  .hero-media {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: clamp(42px, 7vw, 58px) clamp(34px, 7vw, 52px) clamp(34px, 5.5vw, 44px);
    background-position:
      center,
      70% center;
  }

  .hero-copy {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: min(640px, 100%);
    margin-inline: auto;
    align-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: clamp(39px, 6vw, 50px);
    line-height: 1.05;
    text-wrap: balance;
  }

  .hero-copy p {
    max-width: 640px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(17px, 2.35vw, 19px);
  }

  .hero-actions {
    gap: 12px;
    justify-content: center;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-inline: auto;
    margin-top: clamp(36px, 6vw, 48px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 3.2vw, 24px);
  }

  .hero-stats div:nth-child(2) {
    text-align: center;
  }

  .hero-stats div:nth-child(3) {
    text-align: center;
  }

  .hero-stats strong {
    font-size: clamp(31px, 5.5vw, 42px);
  }

  .hero-stats span {
    font-size: 12px;
  }
}

@media (min-width: 663px) and (max-width: 899px) {
  .hero-actions {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  :root {
    --anchor-offset: 104px;
  }

  .reveal {
    transform: translate3d(0, 16px, 0);
    transition-duration: 520ms;
  }

  .section-shell,
  .site-header {
    width: min(100% - 24px, 1120px);
  }

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

  .site-header {
    gap: 12px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 22px;
  }

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

  .brand > span:last-child {
    display: none;
  }

  .brand-logo {
    width: 48px;
    height: auto;
    aspect-ratio: 1815 / 1655;
  }

  .pill-button {
    min-height: 42px;
    padding-left: 15px;
    font-size: 12px;
  }

  .site-header .pill-button {
    max-width: 168px;
    padding-left: 13px;
    overflow: hidden;
  }

  .button-dot {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
  }

  .hero {
    margin-top: 18px;
  }

  .hero-media {
    display: flex;
    min-height: auto;
    flex-direction: column;
    padding: 28px 22px 24px;
    border-radius: 26px;
    background-position:
      center,
      75% center;
  }

  .hero-media::after {
    display: block;
    background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.28));
  }

  .hero-media.hero-media-bright::after {
    background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.34));
  }

  .hero-media.hero-media-home::after {
    background: rgba(0, 0, 0, var(--hero-overlay-alpha, 0.48));
  }

  .hero-border-trail {
    display: none;
  }

  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  h1 {
    left: 18px;
    right: 18px;
    top: 34px;
    width: auto;
    font-size: 38px;
    line-height: 1.02;
  }

  .hero-copy h1 {
    max-width: 100%;
    margin-bottom: 16px;
    font-size: clamp(32px, 8.6vw, 40px);
    line-height: 1.03;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  .hero-copy h1 .desktop-word br {
    content: " ";
  }

  .hero-copy h1 .desktop-word br::after {
    content: " ";
  }

  .hero-copy p {
    max-width: 350px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    gap: 10px;
    justify-content: center;
  }

  .hero-actions .pill-button.light {
    display: none;
  }

  .hero-actions .pill-button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    width: 181px;
    min-width: 0;
    min-height: 46px;
    height: 46px;
    padding-left: 12px;
    padding-right: 6px;
    font-size: 11px;
    column-gap: 4px;
  }

  .hero-actions .pill-button .button-dot {
    width: 26px;
    height: 26px;
  }

  .hero-actions .pill-button .cta-label-mobile,
  .hero-actions .pill-button .cta-label-desktop {
    justify-self: center;
    text-align: center;
  }

  .cta-label-desktop {
    display: none;
  }

  .cta-label-mobile {
    display: inline;
  }

  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    display: grid;
    width: 100%;
    margin-top: 34px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 12px 12px;
    border-radius: 18px;
  }

  .hero-stats div:nth-child(2) {
    text-align: center;
  }

  .hero-stats div:nth-child(3) {
    text-align: center;
  }

  .hero-stats strong {
    font-size: 26px;
  }

  .hero-stats span {
    font-size: 11px;
  }

  .about-section,
  .faq,
  .client-voices,
  .work-showcase {
    padding-top: 68px;
    padding-bottom: 48px;
  }

  .work-showcase {
    padding-top: 40px;
  }

  .client-voices {
    width: min(100% - 24px, 1120px);
    --mobile-review-card-height: clamp(377px, calc(853px - 120vw), 480px);
    padding-right: 0;
    padding-left: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .client-voices::before,
  .client-voices::after,
  .review-grid::before,
  .review-grid::after {
    display: none !important;
    content: none !important;
  }

  h2 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .about img {
    height: 320px;
  }

  .about-head {
    margin-bottom: 34px;
  }

  .about-head span {
    min-height: 36px;
    padding-inline: 18px;
    font-size: 17px;
  }

  .about-head h2 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .about-copy h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(25px, 6.8vw, 32px);
    line-height: 1.06;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .about-title-line {
    display: inline;
  }

  .offer-services {
    width: min(100% - 24px, 1120px);
    margin-top: 58px;
    padding: 30px 12px 32px;
    border-radius: 26px;
  }

  .offer-services::before {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: none;
    transform: none;
  }

  .offer-services.has-service-open::before,
  .offer-services.is-service-opening::before {
    transform: none;
  }

  .offer-services.is-service-closing::before {
    transform: none;
  }

  .offer-head {
    margin-bottom: 20px;
    padding-inline: 10px;
  }

  .offer-pill {
    min-height: 36px;
    margin-bottom: 14px;
    padding-inline: 18px;
    font-size: 17px;
  }

  .offer-head h2 {
    font-size: clamp(32px, 9.4vw, 39px);
  }

  .offer-head p {
    margin-top: 14px;
    max-width: 330px;
    font-size: 16px;
    line-height: 1.34;
  }

  .service-accordion {
    gap: 10px;
    padding: 10px;
    border-radius: 16px;
    overflow-anchor: none;
  }

  .service-card,
  .service-panel {
    overflow-anchor: none;
  }

  .service-card summary {
    --service-title-center-offset: 5px;
    gap: 10px;
    min-height: 78px;
    padding: 12px 10px 12px 14px;
  }

  .service-card summary strong {
    font-size: clamp(17px, 5.3vw, 24px);
    line-height: 1.06;
  }

  .service-card summary i {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
    background: transparent;
  }

  .service-card summary i::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #f1ede5;
    transition: background 260ms ease;
  }

  .service-card summary i::before {
    position: relative;
    z-index: 1;
    width: 12px;
    height: 12px;
    border-width: 2.5px;
  }

  .service-panel-content {
    padding: 18px 14px 30px;
  }

  .service-panel p {
    font-size: 18px;
  }

  .service-panel img {
    height: 220px;
    margin-top: 24px;
  }

  .service-panel ul {
    width: min(380px, 100%);
    margin-top: 28px;
  }

  .service-panel li {
    min-height: 44px;
    font-size: 16px;
  }

  .work-head h2 {
    font-size: clamp(34px, 12vw, 46px);
  }

  .comparison {
    height: 300px;
    border-radius: 14px;
  }

  .comparison-handle::after {
    width: 46px;
    height: 46px;
  }

  .work-card-media img {
    height: 100%;
  }

  .work-card {
    grid-template-rows: clamp(280px, 64vw, 340px) minmax(156px, auto);
    gap: 8px;
  }

  .work-card-copy {
    height: auto;
    min-height: 156px;
    padding: 18px 18px 16px;
    overflow: visible;
  }

  .work-card-copy h3 {
    margin-bottom: 9px;
    font-size: 23px;
    line-height: 1.08;
  }

  .work-card-copy p {
    font-size: 14px;
    line-height: 1.38;
  }

  .work-card-media span {
    top: 12px;
    left: 12px;
    min-height: 28px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .client-voices-head > span {
    min-height: 36px;
    padding: 0 18px;
    font-size: 17px;
  }

  .client-voices-head h2 {
    margin-top: 28px;
    font-size: clamp(38px, 12vw, 54px);
    white-space: normal;
  }

  .client-voices-head p {
    margin-top: 34px;
    font-size: 18px;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 18px 18px 16px;
    border: 0;
    border-radius: 12px;
    background: #fffdf8;
    box-shadow: none;
    overflow: visible;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none !important;
    translate: none !important;
    will-change: auto;
  }

  .review-card:hover,
  .review-card:active,
  .review-card.is-active,
  .review-card.reveal,
  .review-card.reveal.is-visible {
    transform: none !important;
    translate: none !important;
  }

  .review-stars {
    font-size: 19px;
    letter-spacing: 4px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 1.45;
  }

  .review-card strong {
    font-size: 16px;
  }

  .review-card footer span {
    font-size: 15px;
  }

  .review-card footer {
    margin-top: auto;
  }

  .review-grid {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 14px;
    margin-top: 38px;
    padding: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-grid .review-card {
    flex: 0 0 calc(100% - 32px);
    width: calc(100% - 32px);
    height: var(--mobile-review-card-height);
    min-height: var(--mobile-review-card-height);
    margin-inline: 16px;
  }

  .review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .review-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(6, 69, 26, 0.22);
    transform: scale(1);
    transition:
      width 220ms var(--motion-ease),
      background 220ms ease,
      transform 220ms var(--motion-ease);
  }

  .review-dot.is-active {
    width: 22px;
    background: #06451a;
  }

  .faq {
    padding-top: 68px;
    padding-bottom: 22px;
  }
}

@media (max-width: 768px) {
  .client-voices {
    --mobile-review-card-height: clamp(377px, calc(853px - 120vw), 480px);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .client-voices + .about-section {
    margin-top: 40px;
    padding-top: 40px;
  }

  .work-section + .client-voices {
    margin-top: 40px;
    padding-top: 40px;
  }

  .about-section + .contact-section {
    margin-top: 40px;
  }

  .review-card {
    display: flex;
    flex-direction: column;
    padding: 18px 18px 16px;
    border: 0;
    border-radius: 12px;
    background: #fffdf8;
    box-shadow: none;
    overflow: visible;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none !important;
    translate: none !important;
    will-change: auto;
  }

  .review-card:hover,
  .review-card:active,
  .review-card.is-active,
  .review-card.reveal,
  .review-card.reveal.is-visible {
    transform: none !important;
    translate: none !important;
  }

  .review-grid {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 14px;
    margin-top: 38px;
    padding: 0 !important;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-grid .review-card {
    flex: 0 0 calc(100% - 32px);
    width: calc(100% - 32px);
    height: var(--mobile-review-card-height);
    min-height: var(--mobile-review-card-height);
    margin-inline: 16px;
  }

  .review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .review-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(6, 69, 26, 0.22);
    transform: scale(1);
    transition:
      width 220ms var(--motion-ease),
      background 220ms ease,
      transform 220ms var(--motion-ease);
  }

  .review-dot.is-active {
    width: 22px;
    background: #06451a;
  }
}

@media (max-width: 620px) {
  .faq {
    padding-top: 68px;
  }

  .faq-head.reveal,
  .faq .faq-item.reveal {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
      opacity 500ms var(--motion-ease),
      transform 500ms var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
  }

  .faq-head.reveal.is-visible,
  .faq .faq-item.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .faq-head > span {
    min-height: 36px;
    padding: 0 18px;
    font-size: 17px;
  }

  .faq-head h2 {
    margin: 30px 0 34px;
    font-size: clamp(29px, 8.4vw, 38px);
    white-space: nowrap;
  }

  .faq .faq-trigger {
    min-height: 86px;
    padding-right: 46px;
    font-size: clamp(16px, 4.25vw, 21px);
    line-height: 1.08;
  }

  .faq .faq-trigger::after {
    width: 34px;
    height: 34px;
    background:
      linear-gradient(currentColor, currentColor) center / 15px 2px no-repeat,
      linear-gradient(currentColor, currentColor) center / 2px 15px no-repeat;
  }

  .faq .faq-panel p {
    margin-top: 6px;
    margin-bottom: 28px;
    font-size: 16px;
    color: #666;
  }

  .contact-section {
    margin-top: 76px;
  }

  .site-footer {
    margin-top: 28px;
  }

  .contact-head {
    margin-bottom: 30px;
    text-align: left;
  }

  .contact-head h2 {
    font-size: clamp(34px, 8.8vw, 42px);
    line-height: 1.06;
    text-wrap: balance;
  }

  .offer-head h2,
  .work-head h2,
  .client-voices-head h2,
  .about-copy h2,
  .contact-head h2,
  .faq-head h2 {
    font-size: var(--home-h2-size-mobile);
  }

  .contact-head p {
    margin-top: 18px;
    font-size: clamp(16px, 4.4vw, 19px);
    line-height: 1.42;
  }

  .contact-card {
    width: 100%;
    padding: 8px 22px;
    border-radius: 28px;
  }

  .contact-row {
    grid-template-columns: 58px minmax(0, 1fr) 44px;
    gap: 14px;
    min-height: 102px;
    padding: 18px 0;
  }

  .contact-icon {
    width: 58px;
    height: 58px;
  }

  .contact-icon svg {
    width: 27px;
    height: 27px;
  }

  .contact-row strong {
    font-size: 22px;
  }

  .contact-row em {
    font-size: 17px;
  }

  .contact-arrow {
    width: 44px;
    height: 44px;
  }

  .contact-arrow svg {
    width: 22px;
    height: 22px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > nav.footer-links[aria-label="Navigation"] {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-inner > nav.footer-links[aria-label="Leistungen"] {
    grid-column: 2;
    grid-row: 2 / 5;
  }

  .footer-socials {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .footer-inner > nav.footer-links[aria-label="Rechtliches"] {
    grid-column: 1;
    grid-row: 4;
    margin-top: 0;
  }

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

  .footer-bottom {
    display: grid;
  }

  .footer-credit {
    justify-self: end;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .projects-hero {
    gap: 20px;
    margin-bottom: 44px;
  }

  .legal-hero {
    gap: 20px;
    margin-bottom: 44px;
  }

  .projects-hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .legal-hero h1 {
    font-size: clamp(46px, 15vw, 64px);
  }

  .legal-content {
    margin-top: 44px;
  }

  .legal-card {
    padding: 28px 20px;
    border-radius: 24px;
  }

  .legal-list {
    margin-top: 28px;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .featured-case,
  .projects-showcase {
    padding: 12px;
    border-radius: 24px;
  }

  .featured-media {
    min-height: 300px;
    border-radius: 14px;
  }

  .featured-copy {
    padding: 28px 20px;
  }

  .featured-copy h2,
  .projects-section-head h2,
  .projects-cta h2 {
    font-size: clamp(28px, 7.6vw, 36px);
    line-height: 1.08;
    letter-spacing: 0;
  }

  .case-meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-gallery-section,
  .before-after-section,
  .project-process,
  .projects-cta {
    margin-top: 72px;
  }

  .bento-gallery,
  .before-after-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .bento-gallery {
    column-count: 1;
    column-gap: 0;
  }

  .bento-card,
  .bento-card.large,
  .bento-card.wide,
  .bento-card.tall,
  .bento-card.small {
    height: 420px;
    margin-bottom: 14px;
  }

  .bento-overlay {
    opacity: 1;
    padding: 20px;
  }

  .bento-caption {
    display: none;
  }

  .mini-case {
    padding: 12px;
  }

  .mini-case .comparison {
    height: 270px;
  }

  .process-grid article {
    min-height: auto;
    padding: 24px;
  }

  .renovation-process .process-grid {
    gap: 12px;
  }

  .renovation-process .process-grid article {
    min-height: 132px;
    padding: 18px 20px;
  }

  .renovation-process .process-grid article span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .renovation-process .process-grid article h3 {
    margin: 0;
    font-size: clamp(19px, 6vw, 24px);
  }

  .renovation-process .process-grid article p {
    font-size: 15px;
  }

  .process-grid article h3 {
    margin-top: 24px;
  }

  .renovation-process .process-grid article h3 {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .about-text-desktop {
    display: none;
  }

  .about-text-mobile {
    display: block;
  }

  .about-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 30px;
  }

  .about-stats div {
    display: grid;
    justify-items: center;
    align-content: start;
    min-width: 0;
    padding: 0 8px;
    border-top: 0;
    text-align: center;
  }

  .about-stats div + div {
    border-left: 1px solid var(--line);
  }

  .about-stats strong {
    font-size: clamp(24px, 7.2vw, 31px);
    line-height: 1;
    white-space: nowrap;
  }

  .about-stats span {
    max-width: 9.2em;
    margin-top: 8px;
    font-size: clamp(10px, 3vw, 12px);
    line-height: 1.2;
    text-wrap: balance;
  }
}

@media (min-width: 900px) and (max-width: 1040px) {
  .about {
    gap: 32px;
  }

  .about-copy {
    display: contents;
  }

  .about-copy h2,
  .about-copy .about-text-desktop,
  .about-copy .about-text-mobile {
    grid-column: 1;
  }

  .about-copy h2 {
    grid-row: 1;
    font-size: 36px;
  }

  .about-copy .about-text-desktop,
  .about-copy .about-text-mobile {
    grid-row: 2;
  }

  .about-copy .about-text-desktop {
    margin-top: 0;
  }

  .about-title-line {
    display: inline;
  }

  .about > img {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .about-stats {
    grid-column: 1 / 3;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: 100%;
  }

  .about-stats div {
    display: grid;
    justify-items: center;
    min-width: 0;
    text-align: center;
  }
}

@media (min-width: 480px) and (max-width: 620px) {
  .hero-media {
    min-height: auto;
    padding: 30px 28px 26px;
  }

  h1 {
    font-size: clamp(40px, 7.8vw, 46px);
    line-height: 1.01;
  }

  .hero-copy h1 {
    max-width: min(100%, 11.5em);
    font-size: clamp(32px, 6.9vw, 36px);
    line-height: 1.03;
  }

  .hero-copy {
    top: auto;
    bottom: auto;
  }

  .hero-copy p {
    max-width: 410px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  .pill-button {
    min-height: 46px;
    font-size: 13px;
  }

  .hero-stats strong {
    font-size: 31px;
  }

  .hero-stats {
    margin-top: 38px;
  }

  .hero-stats span {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .hero-media {
    min-height: auto;
    padding: 24px 18px 22px;
  }

  .hero-copy h1 {
    font-size: clamp(31px, 8.9vw, 34px);
    line-height: 1.05;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .pill-button {
    min-height: 40px;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .hero-actions .pill-button {
    width: 181px;
  }
}

@media (max-width: 340px) {
  :root {
    --home-h2-size-mobile: 24px;
  }

  .service-card summary strong {
    font-size: 15px;
  }

  .section-shell,
  .site-header {
    width: min(100% - 30px, 1120px);
  }

  .client-voices {
    --mobile-review-card-height: 482px;
  }

  .hero-actions .pill-button {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 26px;
    width: 181px;
    min-width: 181px;
    padding-left: 12px;
    padding-right: 6px;
    font-size: 11px;
    column-gap: 4px;
  }

  .hero-actions .pill-button .button-dot {
    width: 26px;
    height: 26px;
  }

  .hero-actions .pill-button .cta-label-mobile {
    justify-self: center;
    text-align: center;
    transform: translateX(-5px);
  }

  .footer-inner {
    column-gap: 18px;
  }

  .footer-links a,
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-card {
    padding-inline: 18px;
  }

  .contact-row {
    grid-template-columns: 50px minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contact-arrow {
    width: 42px;
    height: 42px;
  }

  .contact-email {
    font-size: 14px !important;
    line-height: 1.16;
  }
}

@media (min-width: 621px) and (max-width: 1023px) {
  .projects-page .mini-case .comparison {
    height: 440px;
  }
}

@media (min-width: 1024px) {
  .projects-page .mini-case .comparison {
    height: 590px;
  }
}

@media (max-width: 340px) {
  .footer-links a,
  .footer-socials a {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-height: 34px;
    min-width: 0;
  }
}

@media (min-width: 620px) and (max-width: 1174px) {
  .projects-page .bento-gallery {
    display: block;
    column-count: 3;
    column-fill: balance;
    column-gap: 12px;
  }

  .projects-page .bento-card,
  .projects-page .bento-card.large,
  .projects-page .bento-card.wide,
  .projects-page .bento-card.tall,
  .projects-page .bento-card.small {
    display: inline-block;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 0 12px;
    grid-column: auto;
    grid-row: auto;
    break-inside: avoid;
    vertical-align: top;
    touch-action: manipulation;
    transition: transform 220ms var(--motion-ease), box-shadow 220ms ease;
  }

  .projects-page .bento-card:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .projects-page .bento-card:nth-child(3n + 2) {
    grid-row: auto;
  }

  .projects-page .bento-card:nth-child(4n + 3) {
    grid-row: auto;
  }

  .projects-page .bento-card:nth-child(5n + 4) {
    grid-row: auto;
  }

  .projects-page .bento-card:nth-child(6n + 5) {
    grid-row: auto;
  }

  .projects-page .bento-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .projects-page .bento-card:hover img {
    transform: none;
  }

  .projects-page .bento-overlay {
    justify-content: flex-end;
    padding: 14px;
    background: linear-gradient(180deg, rgba(10, 10, 8, 0.04), rgba(10, 10, 8, 0.68));
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
  }

  .projects-page .bento-card:hover .bento-overlay {
    opacity: 0;
  }

  .projects-page .bento-card.is-touch-active .bento-overlay,
  .projects-page .bento-card:focus-visible .bento-overlay {
    opacity: 1;
  }

  .projects-page .bento-overlay span {
    display: none;
  }

  .projects-page .bento-overlay strong {
    margin-top: 0;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.05;
  }

  .projects-page .bento-overlay p {
    display: -webkit-box;
    max-width: 100%;
    margin-top: 8px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    line-height: 1.35;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .projects-page .bento-caption {
    display: none;
  }

  .projects-page .bento-card:active {
    transform: scale(0.98);
  }
}

@media (max-width: 619px) {
  .projects-page .bento-gallery {
    display: block;
    column-count: 1;
    column-fill: balance;
    column-gap: 0;
  }

  .projects-page .bento-card,
  .projects-page .bento-card.large,
  .projects-page .bento-card.wide,
  .projects-page .bento-card.tall,
  .projects-page .bento-card.small {
    display: inline-block;
    width: 100%;
    height: auto;
    min-height: 0;
    margin: 0 0 12px;
    grid-column: auto;
    grid-row: auto;
    break-inside: avoid;
    vertical-align: top;
    touch-action: manipulation;
    transition: transform 220ms var(--motion-ease), box-shadow 220ms ease;
  }

  .projects-page .bento-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 767px) {
  .work-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    width: 100%;
    margin: 18px 0 0;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
  }

  .work-grid::-webkit-scrollbar {
    display: none;
  }

  .work-card-media img[src$="projekt-einfahrt-pflasterarbeiten.webp"] {
    object-position: 56% 46%;
    scale: 1.14;
  }

  .work-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: scale(0.97);
    transform-origin: center center;
    transition:
      transform 240ms var(--motion-ease),
      filter 240ms ease;
    will-change: transform;
  }

  .work-card.is-active {
    transform: scale(1);
  }

  .work-card:hover {
    transform: scale(0.97);
    filter: none;
  }

  .work-card.is-active:hover {
    transform: scale(1);
  }

  .work-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .work-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(6, 69, 26, 0.22);
    transform: scale(1);
    transition:
      width 220ms var(--motion-ease),
      background 220ms ease,
      transform 220ms var(--motion-ease);
  }

  .work-dot.is-active {
    width: 22px;
    background: #06451a;
  }
}

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

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

  .reveal,
  .image-reveal,
  [data-line-mask-reveal] .split-word,
  .hero-copy p,
  .hero-actions,
  .service-panel > *,
  h1,
  .hero-stats div {
    opacity: 1 !important;
    transform: none !important;
  }

  .offer-services::before,
  .offer-services.has-service-open::before,
  .offer-services.is-service-opening::before {
    transform: none !important;
  }

  .hero-border-trail-light {
    opacity: 0;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 899px) {
    .home-page .service-accordion,
    .home-page .service-card {
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
    }

    .home-page .service-accordion {
      background: rgba(255, 255, 255, 0.42);
    }

    .home-page .service-card {
      background: rgba(255, 255, 255, 0.36);
    }

  }
}

/* Renovierung & Sanierung service page */
.renovation-page {
  padding-bottom: 0;
}

.renovation-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 68vh, 760px);
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--hero-fallback, #d7c8b4);
  box-shadow: var(--shadow);
}

.renovation-hero-image,
.renovation-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.renovation-hero-image {
  object-fit: cover;
  object-position: center;
}

.renovation-hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.18));
}

.renovation-hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 70.5px);
  padding-block: clamp(44px, 7vw, 82.25px);
  color: #fff;
}

.renovation-hero-copy .work-pill {
  color: #06451a;
  background: rgba(255, 255, 255, 0.86);
}

.renovation-hero-copy h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  color: #fff;
  font-size: clamp(46px, 7vw, 82.25px);
  line-height: 0.95;
  letter-spacing: 0;
}

.renovation-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 1.6vw, 18.8px);
  line-height: 1.58;
}

.renovation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.pill-button.translucent {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(12px);
}

.pill-button.translucent .button-dot {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

.renovation-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 22px;
  padding: 0;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 650;
  list-style: none;
}

.renovation-trust-list li::before {
  margin-right: 8px;
  color: var(--green);
  content: "✓";
}

.service-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.service-breadcrumb a {
  color: var(--ink);
}

.renovation-intro,
.renovation-services,
.renovation-process,
.renovation-why,
.renovation-projects,
.renovation-faq,
.renovation-guides,
.renovation-final-cta {
  margin-top: clamp(72px, 9vw, 105.75px);
}

.renovation-section-head {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-bottom: clamp(28px, 5vw, 48px);
  text-align: center;
}

.renovation-section-head h2,
.renovation-split h2,
.renovation-final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70.5px);
  line-height: 1.02;
  letter-spacing: 0;
}

.renovation-section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.renovation-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 70.5px);
  align-items: start;
  padding: clamp(32px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 60px rgba(20, 18, 12, 0.06);
}

.renovation-split p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.renovation-service-card,
.renovation-why-grid div,
.renovation-guide-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 50px rgba(20, 18, 12, 0.06);
  transition: transform 240ms var(--motion-ease), box-shadow 240ms var(--motion-ease);
}

.renovation-service-card {
  min-height: 220px;
  padding: 26px;
}

.renovation-service-card:hover,
.renovation-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(20, 18, 12, 0.1);
}

.renovation-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #06451a;
  background: var(--paper);
  font-weight: 700;
}

.renovation-service-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.renovation-service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.renovation-why-layout {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  margin-top: 44px;
}

.renovation-why-image {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 70px rgba(18, 18, 14, 0.1);
}

.renovation-why-image img {
  display: block;
  width: 100%;
  height: clamp(340px, 46vw, 540.5px);
  object-fit: cover;
  object-position: center center;
}

.renovation-why-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.renovation-why-card {
  display: grid;
  min-height: clamp(124px, 15vw, 168px);
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 18.8px);
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 16px 46px rgba(20, 18, 12, 0.06);
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.renovation-why-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 18, 12, 0.11);
}

.renovation-why-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #06451a;
  background: rgba(6, 69, 26, 0.09);
}

.renovation-why-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
}

.renovation-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.renovation-timeline li {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(222, 216, 205, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 50px rgba(20, 18, 12, 0.05);
}

.renovation-timeline li:not(:last-child)::after {
  position: absolute;
  top: 46px;
  right: -12px;
  width: 20px;
  height: 1px;
  background: var(--line);
  content: "";
}

.renovation-timeline span,
.renovation-why-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #06451a;
  background: var(--paper);
  font-weight: 700;
}

.renovation-timeline strong {
  display: block;
  font-size: 22px;
}

.renovation-timeline p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.renovation-why-grid div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: 650;
}

.renovation-why-grid span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  margin: 0;
}

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

.renovation-project-grid .comparison {
  height: clamp(340px, 34vw, 399.5px);
}

.renovation-project-grid .comparison img {
  object-fit: cover;
}

.renovation-center {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.renovation-faq-list details {
  overflow: hidden;
  border: 1px solid rgba(222, 216, 205, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 42px rgba(20, 18, 12, 0.05);
}

.renovation-faq-list summary {
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  transition:
    box-shadow 220ms ease,
    transform 220ms var(--motion-ease);
}

.renovation-faq-list summary:active {
  transform: translateY(1px);
  box-shadow: 0 8px 20px rgba(20, 18, 12, 0.06);
}

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

.renovation-faq-list p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.renovation-guide-card {
  overflow: hidden;
  color: inherit;
}

.renovation-guide-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.renovation-guide-card span {
  display: block;
  margin: 20px 20px 10px;
  color: #06451a;
  font-weight: 700;
}

.renovation-guide-card h3 {
  margin: 0 20px 18px;
  font-size: 24px;
  line-height: 1.12;
}

.renovation-guide-card p {
  margin: 0 20px 22px;
  color: var(--muted);
  font-weight: 700;
}

.renovation-final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(44px, 7vw, 76px);
  border-radius: var(--radius-xl);
  color: #fff;
  background: #102316;
  box-shadow: var(--shadow);
  text-align: center;
}

.renovation-final-cta p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.renovation-final-cta .work-button {
  color: var(--ink);
  background: #fff;
}

@media (max-width: 1024px) {
  .renovation-card-grid,
  .renovation-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .renovation-timeline li:not(:last-child)::after {
    display: none;
  }

  .renovation-split,
  .renovation-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .renovation-hero {
    min-height: 640px;
    margin-top: 16px;
    border-radius: 26px;
  }

  .renovation-hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.34));
  }

  .renovation-hero-copy {
    width: calc(100% - 32px);
    margin-inline: auto;
    text-align: center;
  }

  .renovation-hero-copy h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .renovation-actions {
    justify-content: center;
  }

  .renovation-trust-list {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .renovation-split {
    padding: 28px 20px;
  }

  .renovation-card-grid,
  .renovation-why-grid,
  .renovation-guide-grid,
  .renovation-timeline {
    grid-template-columns: 1fr;
  }

  .renovation-why-layout {
    max-width: 620px;
    margin-inline: auto;
  }

  .renovation-section-head h2,
  .renovation-split h2,
  .renovation-final-cta h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .renovation-process .renovation-section-head h2 {
    width: min(100%, 12em);
    font-size: clamp(29px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: balance;
  }

  .renovation-why .renovation-section-head h2 {
    width: 100%;
    font-size: clamp(20px, 5.35vw, 24px);
    line-height: 1.08;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .renovation-projects .renovation-section-head h2 {
    width: 100%;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.08;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  #leistungen .renovation-section-head h2 {
    width: 100%;
    font-size: clamp(22px, 6vw, 27px);
    line-height: 1.08;
    white-space: nowrap;
    text-wrap: nowrap;
  }

  .renovation-project-grid .comparison {
    height: 330px;
  }

  .renovation-why-image img {
    height: clamp(280px, 78vw, 390px);
  }

  .renovation-why-benefit-grid {
    gap: 12px;
  }

  .renovation-why-card {
    min-height: auto;
    aspect-ratio: 1 / 1;
    padding: 14px 10px;
    border-radius: 18px;
    font-size: clamp(13px, 3.6vw, 16px);
  }

  .renovation-why-icon {
    width: 32px;
    height: 32px;
  }
}
