@font-face {
  font-family: "Carattere";
  src: url("/fonts/carattere.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --green-950: #0b2f1d;
  --green-900: #123f27;
  --green-800: #1f5b34;
  --green-700: #2e7d32;
  --green-100: #e8f5e9;
  --green-50: #f4faf4;
  --red: #a82333;
  --ink: #18211b;
  --muted: #56635a;
  --line: #dce7dd;
  --white: #fff;
  --shadow: 0 18px 48px rgba(11, 47, 29, 0.12);
  --radius: 18px;
  --container: 1180px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green-800);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

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

:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--green-950);
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  letter-spacing: -0.045em;
}

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

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

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

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border-radius: 0.5rem;
  transform: translateY(-150%);
}

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

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

.eyebrow,
.script-label {
  margin-bottom: 0.65rem;
  color: var(--red);
  font-family: "Carattere", cursive;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.section-heading {
  max-width: 740px;
  margin-bottom: 2.2rem;
}

.section-heading p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(31, 91, 52, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 170px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  height: 2px;
  margin: 5px 0;
  content: "";
  background: var(--green-950);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  margin-left: auto;
}

.site-nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--green-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 0.75rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.btn--primary {
  color: var(--white);
  background: var(--green-700);
}

.btn--primary:hover {
  color: var(--white);
  background: var(--green-800);
}

.btn--secondary {
  color: var(--green-950);
  border-color: var(--green-700);
  background: var(--white);
}

.btn--light {
  color: var(--green-950);
  background: var(--white);
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.hero picture,
.hero > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > picture > img {
  object-fit: cover;
  object-position: var(--focus-desktop, center);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 35, 21, 0.82) 0%, rgba(7, 35, 21, 0.64) 52%, rgba(7, 35, 21, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-block: 5.5rem;
}

.hero h1,
.hero p {
  color: var(--white);
}

.hero .eyebrow {
  color: #f4d7dc;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 1.8rem;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -44px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-item {
  min-width: 0;
  padding: 1.4rem;
}

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

.trust-item strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--green-950);
  font-size: 1.08rem;
}

.trust-item span {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(0, 1.25fr);
  min-height: 290px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 35px rgba(11, 47, 29, 0.07);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-desktop, center);
  transition: transform 180ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(31, 91, 52, 0.45);
  box-shadow: 0 18px 42px rgba(11, 47, 29, 0.14);
  transform: translateY(-2px);
}

.service-card:hover img,
.service-card:focus-visible img {
  transform: scale(1.018);
}

.service-card-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.35rem, 3vw, 2rem);
}

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

.service-card-content .text-link {
  margin-top: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.project-grid--two {
  max-width: 920px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: zoom-in;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(31, 91, 52, 0.45);
  box-shadow: 0 16px 38px rgba(11, 47, 29, 0.13);
  transform: translateY(-2px);
}

.project-media {
  overflow: hidden;
  background: #edf4ee;
}

.project-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 5;
  object-fit: contain;
  background: #edf4ee;
  transition: transform 180ms ease;
}

.project-card:hover img,
.project-card:focus-visible img {
  transform: scale(1.018);
}

.project-card--photo img {
  object-fit: cover;
  object-position: var(--focus-desktop, center);
}

.project-view {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: max-content;
  margin-top: auto;
  padding-top: 0.8rem;
  color: var(--green-800);
  font-size: 0;
  font-weight: 800;
}

.project-view::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231f5b34' stroke-width='2.4' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5'/%3E%3Cpath d='m15.5 15.5 5 5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.project-view::after {
  content: "Groß ansehen";
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.project-card figcaption {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem 1.2rem;
  color: var(--muted);
}

.project-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--green-950);
}

.lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(3, 18, 11, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-panel {
  position: relative;
  width: min(96vw, 1400px);
  height: min(92vh, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #071f14;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.lightbox-figure {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  grid-column: 1;
  margin: 0;
}

.lightbox-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(92vh - 120px);
  min-height: 0;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.lightbox-caption {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 1rem;
  padding: 1rem clamp(1rem, 3vw, 1.5rem) 1.1rem;
  color: #dce9df;
}

.lightbox-title {
  color: var(--white);
}

.lightbox-description {
  grid-column: 1;
}

.lightbox-counter {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: #bcd0c2;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 63, 39, 0.82);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
}

.lightbox-close::before,
.lightbox-close::after {
  position: absolute;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.lightbox-nav::before {
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  content: "";
}

.lightbox-previous {
  left: 0.7rem;
}

.lightbox-previous::before {
  transform: translateX(2px) rotate(-135deg);
}

.lightbox-next {
  right: 0.7rem;
}

.lightbox-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.process-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-step,
.feature-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.step-number {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  border-radius: 50%;
  background: var(--green-700);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: var(--focus-desktop, center);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-media--landscape img {
  height: auto;
  aspect-ratio: 4 / 3;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.7rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--green-700);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  max-width: 850px;
}

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

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

.faq-list summary {
  padding: 1.1rem 2.3rem 1.1rem 0;
  color: var(--green-950);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-list details p {
  max-width: 720px;
  padding-bottom: 1.2rem;
  color: var(--muted);
}

.cta-band {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--white);
  background: var(--green-900);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band-copy {
  max-width: 680px;
}

.breadcrumbs {
  padding-block: 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 0.45rem;
  content: "/";
}

.page-hero {
  position: relative;
  min-height: clamp(540px, 66vh, 680px);
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(7, 35, 21, 0.92) 0%, rgba(7, 35, 21, 0.82) 48%, rgba(7, 35, 21, 0.48) 100%);
}

.page-hero-grid {
  min-height: inherit;
  display: flex;
  align-items: center;
}

.page-hero-grid > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.22);
}

.page-hero p {
  color: var(--white);
}

.page-hero .script-label {
  color: #f4d7dc;
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus-desktop, center);
}

.image-focus--home-hero { --focus-desktop: 62% 50%; --focus-mobile: 58% 50%; }
.image-focus--garden-care-hero { --focus-desktop: 50% 35%; --focus-mobile: 50% 30%; }
.image-focus--garden-design-hero { --focus-desktop: 62% 50%; --focus-mobile: 58% 50%; }
.image-focus--hedge-hero { --focus-desktop: 60% 50%; --focus-mobile: 56% 50%; }
.image-focus--tree-hero { --focus-desktop: 50% 29%; --focus-mobile: 50% 24%; }
.image-focus--garden-care-card { --focus-desktop: 50% 28%; --focus-mobile: 50% 25%; }
.image-focus--garden-design-card { --focus-desktop: 58% 50%; --focus-mobile: 58% 50%; }
.image-focus--hedge-card { --focus-desktop: 42% 50%; --focus-mobile: 50% 50%; }
.image-focus--tree-card { --focus-desktop: 50% 25%; --focus-mobile: 50% 23%; }
.image-focus--garden-detail { --focus-desktop: 50% 46%; --focus-mobile: 50% 48%; }
.image-focus--design-detail { --focus-desktop: 50% 50%; --focus-mobile: 50% 50%; }
.image-focus--hedge-detail { --focus-desktop: 50% 44%; --focus-mobile: 50% 45%; }
.image-focus--tree-detail { --focus-desktop: 50% 30%; --focus-mobile: 50% 27%; }

.page-hero .btn--primary {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.content-copy {
  max-width: 760px;
}

.content-copy h2,
.content-copy h3 {
  margin-top: 2rem;
}

.section > .content-copy > .script-label + h2 {
  margin-top: 0;
}

.legal-page {
  max-width: 900px;
  padding-block: 3rem 6rem;
}

.legal-page section + section {
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--line);
}

/* Keep the supplied legal text unchanged while presenting its legacy wrapper cleanly. */
.legal-page .content-copy {
  max-width: 900px;
}

.legal-page .content-copy > p:first-child {
  color: var(--red);
  font-family: "Carattere", cursive;
  font-size: 2rem;
}

.footer {
  padding-block: 3rem;
  color: #dce9df;
  background: var(--green-950);
}

.footer > .container,
.copyright > .container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.footer .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer h2,
.footer a {
  color: var(--white);
}

.footer img {
  width: 190px;
  height: auto;
}

.footer .btn-link {
  display: block;
  margin-bottom: 0.5rem;
}

.copyright {
  padding-block: 1rem;
  color: #dce9df;
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.copyright .row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.site-footer {
  padding-block: 3rem 1.2rem;
  color: #dce9df;
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2,
.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: #e8f5e9;
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-contact-links {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.footer-contact-links br {
  display: none;
}

.footer-contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
}

.footer-contact-links a::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-contact-links a[href^="tel:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8f5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.78.62 2.63a2 2 0 0 1-.45 2.11L8 9.73a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.85.29 1.73.5 2.63.62A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E");
}

.footer-contact-links a[href^="mailto:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8f5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.map-address {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  max-width: 100%;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.map-address::before {
  content: "";
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e8f5e9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.map-address:hover,
.map-address:focus-visible {
  color: var(--white);
}

.map-address strong,
.map-address small,
.service-area-note span {
  display: block;
}

.map-address strong {
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
}

.map-address small {
  display: none;
}

.service-area-note {
  margin: 0.9rem 0 0;
  color: #cfe4d3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.service-area-note strong {
  margin-bottom: 0.2rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

.mobile-contact-bar {
  display: none;
}

@media (min-width: 861px) {
  .brand {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 78px;
    flex-basis: 220px;
    margin-right: 0.6rem;
  }

  .brand img {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    transform: translateY(10px);
    filter: drop-shadow(0 7px 10px rgba(11, 47, 29, 0.12));
  }

  .detail-page .brand {
    width: 170px;
    height: auto;
    flex-basis: auto;
    margin-right: 0;
  }

  .detail-page .brand img {
    position: static;
    width: 170px;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1040px) {
  .header-actions .btn--secondary {
    display: none;
  }

  .site-nav {
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem 1rem 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 25px rgba(11, 47, 29, 0.12);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 570px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(7, 35, 21, 0.62) 0%, rgba(7, 35, 21, 0.88) 100%);
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(7, 35, 21, 0.48) 0%, rgba(7, 35, 21, 0.9) 100%);
  }

  .hero > picture > img,
  .page-hero-media img,
  .service-card img,
  .split-media img,
  .project-card--photo img {
    object-position: var(--focus-mobile, var(--focus-desktop, center));
  }

  .hero-content {
    align-self: end;
    padding-block: 4.5rem 5rem;
  }

  .trust-grid,
  .process-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-grid,
  .page-hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

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

  .page-hero-media {
    order: -1;
  }

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

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

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

  .brand img {
    width: 130px;
  }

  .header-inner {
    min-height: 70px;
  }

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

  .page-hero {
    min-height: 620px;
  }

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

  .trust-strip {
    margin-top: 0;
    padding-top: 0.8rem;
  }

  .trust-grid,
  .process-grid,
  .feature-grid,
  .project-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .copyright .row {
    display: grid;
  }

  .trust-item,
  .trust-item + .trust-item,
  .trust-item:nth-child(3) {
    grid-column: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

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

  .service-card > img {
    height: 210px;
  }

  .cta-band-inner {
    display: block;
  }

  .cta-band .cta-actions {
    margin-top: 1.4rem;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px rgba(11, 47, 29, 0.13);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .mobile-contact-bar[data-visible="true"] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-contact-bar .btn {
    min-height: 50px;
    padding-inline: 0.7rem;
    font-size: 0.92rem;
  }

  .lightbox {
    padding: 0;
  }

  .lightbox-panel {
    width: 100%;
    height: 100%;
    grid-template-columns: minmax(0, 1fr);
    border: 0;
    border-radius: 0;
  }

  .lightbox-caption {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .lightbox-image {
    max-height: calc(100vh - 130px);
  }
}

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

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