:root {
  --bg: #f7f5ef;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #24442d;
  --muted: #58735f;
  --brand: #408941;
  --brand-deep: #285e33;
  --line: rgba(64, 137, 65, 0.16);
  --shadow: 0 30px 80px rgba(33, 62, 38, 0.16);
  --radius-xl: 32px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  height: auto;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  height: auto;
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  background: url("assets/grass-bg.jpg") center / cover no-repeat;
  color: var(--text);
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

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

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

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar,
.hero,
.intro,
.services,
.reviews,
.benefits,
.process,
.service-area,
.faq,
.partners,
.contact-banner,
.contact {
  margin-bottom: 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
  z-index: 5;
}

.topbar__brand,
.topbar__cta,
.topbar__nav a {
  font-weight: 700;
}

.topbar__brand,
.topbar__cta {
  white-space: nowrap;
}

.topbar__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: var(--brand-deep);
}

.topbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__nav svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 16px;
}

.topbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  min-height: 92vh;
}

.hero__copy,
.hero__brand,
.intro,
.services,
.reviews,
.benefits,
.process,
.service-area,
.faq,
.partners,
.contact-banner,
.contact {
  backdrop-filter: blur(14px);
}

.hero__copy {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
  max-width: 9ch;
}

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

h3 {
  font-size: 2rem;
}

.hero__lead,
.hero__text,
.intro p,
.benefits p,
.contact p,
.service-panel__content p {
  line-height: 1.75;
  color: var(--muted);
}

.hero__lead {
  margin: 20px 0 10px;
  font-size: 1.12rem;
  max-width: 52ch;
}

.hero__text {
  margin: 0;
  max-width: 56ch;
}

.hero__actions,
.contact__actions,
.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 30px rgba(64, 137, 65, 0.22);
}

.button--secondary {
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(64, 137, 65, 0.16);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  color: var(--brand-deep);
  font-weight: 600;
}

.hero__brand {
  position: relative;
}

.hero__logo-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero__logo-card img {
  width: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.hero__phone-hitbox {
  position: absolute;
  left: 25%;
  right: 25%;
  top: 56%;
  height: 12%;
  z-index: 2;
  background: transparent;
}

.hero__logo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 69%;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
  color: var(--brand-deep);
  pointer-events: none;
}

.hero__logo-note strong {
  font-size: 1.02rem;
  font-weight: 800;
}

.hero__logo-note span {
  font-size: 0.92rem;
  color: var(--muted);
}

.intro,
.services,
.reviews,
.benefits,
.process,
.service-area,
.faq,
.partners,
.contact-banner,
.contact {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.section-toggle {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.section-toggle .section-heading {
  margin-bottom: 0;
}

.section-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  color: var(--brand-deep);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.section-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding-top 320ms ease;
}

.collapsible-section.is-open .section-content {
  max-height: 6000px;
  padding-top: 22px;
}

.collapsible-section.is-open .section-toggle__icon {
  transform: rotate(45deg);
}

.about-story .section-content,
.benefits .section-content,
.faq .section-content {
  display: grid;
}

.service-area .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.services__header {
  margin-bottom: 24px;
}

.about-story {
  display: grid;
  gap: 28px;
}

.about-story__lead {
  max-width: 64ch;
  margin: -2px 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.about-story__rows {
  display: grid;
  gap: 24px;
}

.about-story__row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.about-story__row--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.about-story__row--reverse .about-story__copy {
  order: 2;
}

.about-story__row--reverse .about-story__image {
  order: 1;
}

.about-story__copy {
  display: grid;
  gap: 16px;
}

.about-story__copy p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
}

.about-story__image,
.about-story__gallery-item {
  margin: 0;
}

.about-story__image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 20px 44px rgba(33, 62, 38, 0.12);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__image--portrait {
  min-height: 420px;
}

.about-story__image--inline {
  margin: 4px 0;
}

.about-story__gallery-panel {
  display: grid;
  gap: 16px;
}

.about-story__gallery-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  border: 1px solid rgba(64, 137, 65, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--brand-deep);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.08);
}

.about-story__gallery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

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

.about-story__gallery-item {
  min-height: 190px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.1);
}

.about-story__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story__gallery-panel.is-open .about-story__gallery-icon {
  transform: rotate(45deg);
  background: rgba(64, 137, 65, 0.16);
}

.services__accordion {
  display: grid;
  gap: 20px;
}

.service-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.08);
}

.service-panel__toggle {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
}

.service-panel__image {
  position: relative;
  height: clamp(250px, 42vw, 430px);
  overflow: hidden;
}

.service-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 24, 12, 0.02), rgba(9, 24, 12, 0.58));
}

.service-panel__title-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #fff;
}

.service-panel__kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.service-panel__title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.service-panel__title-row h3 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: #fff;
  max-width: 12ch;
}

.service-panel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 220ms ease, background-color 220ms ease;
}

.service-panel__content {
  display: grid;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  transition: max-height 320ms ease, padding 320ms ease;
}

.service-panel__content p {
  margin: 0;
}

.service-panel.is-open .service-panel__content {
  max-height: 280px;
  padding: 24px;
}

.service-panel.is-open .service-panel__icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.24);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand-deep);
  font-weight: 700;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.benefits__grid article,
.process__grid article,
.service-area__list div,
.contact__info div {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.benefits__grid p,
.process__grid p,
.service-area__list span,
.contact__info span {
  margin: 10px 0 0;
}

.process__grid,
.service-area,
.faq__list {
  margin-top: 22px;
}

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

.process__toggle {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.process__toggle .section-heading {
  margin-bottom: 0;
}

.process__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  color: var(--brand-deep);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.process__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding-top 320ms ease;
}

.process.is-open .process__content {
  max-height: 1200px;
  padding-top: 22px;
}

.process.is-open .process__toggle-icon {
  transform: rotate(45deg);
}

.process-step {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  overflow: hidden;
}

.process-step__button {
  width: 100%;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.12);
  color: var(--brand-deep);
  font-weight: 800;
}

.process-step__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.process-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  color: var(--brand-deep);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.process-step h3 {
  font-size: 1.65rem;
}

.process-step__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 280ms ease, padding 280ms ease;
}

.process-step__content p {
  margin: 0;
  padding-bottom: 20px;
}

.process-step.is-open .process-step__content {
  max-height: 140px;
  padding: 0 20px;
}

.process-step.is-open .process-step__icon {
  transform: rotate(45deg);
}

.service-area {
  display: grid;
  gap: 18px;
}

.service-area__panel {
  display: grid;
  gap: 16px;
}

.service-area__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-area__list span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-area__list strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
}

.map-card {
  padding: 0;
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.08);
  text-align: left;
}

.map-card__surface {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 24%, rgba(64, 137, 65, 0.16) 0, rgba(64, 137, 65, 0.16) 10px, transparent 11px),
    radial-gradient(circle at 74% 60%, rgba(64, 137, 65, 0.12) 0, rgba(64, 137, 65, 0.12) 14px, transparent 15px),
    linear-gradient(135deg, #f8f6ef 0%, #eef5eb 100%);
}

.map-card__surface--clean {
  display: grid;
  align-items: center;
  justify-items: start;
  gap: 18px;
  padding: 28px 24px;
  background: linear-gradient(135deg, #f8f6ef 0%, #edf5ea 100%);
}

.map-card__mini-map {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42%;
  min-width: 130px;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(33, 62, 38, 0.12);
}

.map-card__mini-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.map-card__mini-region {
  position: absolute;
  left: 52%;
  top: 57%;
  width: 92%;
  height: 46%;
  border: 3px solid rgba(217, 59, 59, 0.88);
  border-radius: 999px;
  transform: translate(-50%, -50%) rotate(4deg);
  background: transparent;
}

.map-card__mini-marker {
  position: absolute;
  left: 46%;
  top: 63%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d93b3b;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.22);
}

.map-card__mini-marker--eisenach {
  left: 78%;
  top: 58%;
  background: #2f7d3d;
}

.map-card__mini-caption {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  max-width: 72px;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2b5131;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  box-shadow: 0 6px 14px rgba(33, 62, 38, 0.12);
}

.map-card__mini-caption--eisenach {
  left: 78%;
  bottom: 38px;
  transform: translateX(-50%);
  max-width: 64px;
}

.map-card__copy {
  display: grid;
  gap: 10px;
  max-width: 28ch;
  position: relative;
  z-index: 1;
}

.map-card__copy strong {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 0.95;
}

.map-card__copy p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.map-card__pin {
  position: absolute;
  width: 66px;
  height: 66px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 20px 34px rgba(40, 94, 51, 0.24);
}

.map-card__pin--static {
  position: relative;
  top: auto;
  left: auto;
  transform: rotate(-45deg);
  z-index: 1;
}

.map-card__pin span {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: #fff;
}

.map-card__eyebrow,
.map-card__meta span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.map-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 20px;
}

.map-card__meta {
  display: grid;
  gap: 8px;
}

.map-card__action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-weight: 800;
  font: inherit;
  cursor: pointer;
}

.faq-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

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

.faq-item__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  color: var(--brand-deep);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 220ms ease;
}

.faq-item__content {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 280ms ease, padding 280ms ease;
}

.faq-item__content p {
  margin: 0;
  padding-bottom: 20px;
  line-height: 1.7;
  color: var(--muted);
}

.faq-item.is-open .faq-item__content {
  max-height: 180px;
  padding: 0 22px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

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

.partner-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(33, 62, 38, 0.14);
}

.partner-card__label {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.partner-card__logo-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.partner-card__logo-wrap--greenway {
  gap: 14px;
}

.partner-card__logo {
  display: block;
  max-width: 100%;
  height: auto;
}

.partner-card__logo--jemako {
  width: min(240px, 100%);
}

.partner-card__logo--icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.partner-card__logo--sprintus {
  width: min(220px, 100%);
}

.partner-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.partner-card__url {
  margin-top: auto;
  color: var(--brand-deep);
  font-weight: 700;
}

.partner-card--jemako strong {
  color: #1e5b34;
  letter-spacing: 0.04em;
}

.partner-card--greenway strong {
  color: #3f7d35;
  letter-spacing: 0.04em;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
}

.reviews {
  display: grid;
  gap: 22px;
}

.reviews__intro,
.reviews__actions p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}

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

.reviews__empty {
  margin: 0;
  grid-column: 1 / -1;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(64, 137, 65, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.7;
}

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

.review-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(33, 62, 38, 0.08);
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card__meta strong {
  font-size: 1rem;
}

.review-card__meta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card__stars {
  color: #d1a94c;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.reviews__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.contact {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.contact-banner {
  overflow: hidden;
}

.contact-banner__header {
  margin-bottom: 18px;
}

.contact-banner__header .eyebrow {
  margin-bottom: 0;
}

.contact-banner__media {
  position: relative;
  min-height: 620px;
  border-radius: calc(var(--radius-xl) - 6px);
  overflow: hidden;
}

.contact-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: 40px;
  background: linear-gradient(90deg, rgba(247, 245, 239, 0.94) 0%, rgba(247, 245, 239, 0.72) 24%, rgba(247, 245, 239, 0) 52%);
}

.contact-banner__overlay h2 {
  max-width: 10ch;
}

.contact-banner__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.contact-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(64, 137, 65, 0.16);
  box-shadow: 0 12px 28px rgba(33, 62, 38, 0.12);
  color: var(--brand-deep);
  font-weight: 700;
}

.contact-banner__link svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}

.contact-banner__mobile-links {
  display: none;
}

.request-modal[hidden] {
  display: none;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.request-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 14, 0.5);
  backdrop-filter: blur(6px);
}

.request-modal__dialog {
  position: relative;
  width: min(680px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  margin: 12px auto;
  overflow: auto;
  padding: 28px;
  border-radius: 28px;
  background: rgba(247, 245, 239, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.request-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.1);
  color: var(--brand-deep);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transform: rotate(45deg);
}

.request-modal__header p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.request-form label {
  display: grid;
  gap: 8px;
}

.request-form label span {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(64, 137, 65, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
}

.request-form textarea {
  resize: vertical;
}

.request-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.review-form__note,
.review-form__status {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.review-form__status {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(64, 137, 65, 0.08);
  color: var(--brand-deep);
  font-weight: 700;
  border: 1px solid rgba(64, 137, 65, 0.2);
  box-shadow: 0 12px 24px rgba(33, 62, 38, 0.08);
}

.review-stars {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 10px;
}

.review-stars legend {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-deep);
}

.review-stars__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-stars__options label {
  position: relative;
  display: inline-flex;
}

.review-stars__options input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.review-stars__options span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 46px;
  padding: 0 12px;
  border-radius: 50%;
  background: rgba(64, 137, 65, 0.08);
  color: #d1a94c;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid rgba(64, 137, 65, 0.14);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.review-stars__options input:checked + span {
  background: rgba(209, 169, 76, 0.14);
  border-color: rgba(209, 169, 76, 0.45);
  transform: translateY(-1px);
}

.contact__card {
  padding: 12px 6px 6px 0;
}

.contact__card p:last-child {
  margin-bottom: 0;
}

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

.contact__info span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contact__info strong {
  font-size: 1.04rem;
}

.footer {
  display: grid;
  gap: 14px;
  gap: 16px;
  padding: 18px 20px;
  color: #ffffff;
  background: rgba(18, 38, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer__brand {
  display: grid;
  gap: 6px;
}

.footer__brand p {
  margin: 0;
  font-weight: 700;
}

.footer__brand span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.credits {
  margin: 12px 4px 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer__phone {
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

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

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

@media (max-width: 980px) {
  .topbar,
  .hero,
  .about-story__row,
  .about-story__row--reverse,
  .contact,
  .reviews__list,
  .reviews__grid,
  .reviews__actions,
  .benefits__grid,
  .process__grid,
  .partners__grid,
  .service-area,
  .map-card__footer,
  .service-area__list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__brand {
    order: -1;
  }

  .hero__copy,
  .hero__brand,
  .intro,
  .services,
  .reviews,
  .benefits,
  .process,
  .service-area,
  .faq,
  .partners,
  .contact-banner,
  .contact {
    padding: 24px;
  }

  .topbar {
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar__nav {
    width: 100%;
    justify-content: flex-start;
  }

  .service-panel__title-row h3 {
    max-width: none;
  }

  .service-area .section-content {
    grid-template-columns: 1fr;
  }

  .reviews__actions {
    justify-content: start;
  }

  .about-story__row--reverse .about-story__copy,
  .about-story__row--reverse .about-story__image {
    order: initial;
  }

  .about-story__image,
  .about-story__image--portrait {
    min-height: 320px;
  }

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

@media (max-width: 640px) {
  html {
    scroll-behavior: auto;
    height: 100%;
    overflow: hidden;
  }

  body {
    height: 100%;
    min-height: 100%;
    overflow: hidden;
  }

  .page-shell {
    width: min(100% - 18px, 1180px);
    padding-top: 10px;
    padding-bottom: 24px;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  h1 {
    max-width: none;
  }

  .hero__phone-hitbox {
    left: 23%;
    right: 23%;
    top: 56%;
    height: 12%;
  }

  .hero__logo-note {
    left: 16px;
    right: 16px;
    top: 69%;
  }

  .hero__logo-note strong {
    font-size: 0.92rem;
  }

  .hero__logo-note span {
    font-size: 0.82rem;
  }

  .hero__copy,
  .hero__brand,
  .intro,
  .services,
  .reviews,
  .benefits,
  .process,
  .service-area,
  .faq,
  .partners,
  .contact-banner,
  .contact {
    padding: 20px;
    border-radius: 24px;
  }

  .contact-banner__media {
    height: 360px;
    min-height: 360px;
  }

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

  .contact-banner__overlay {
    inset: auto 18px 18px 18px;
    width: auto;
    max-width: none;
    padding: 0;
    gap: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-banner__overlay h2 {
    display: none;
  }

  .contact-banner__links {
    display: none;
  }

  .contact-banner__mobile-links {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .contact-banner__mobile-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(64, 137, 65, 0.16);
    box-shadow: 0 12px 28px rgba(33, 62, 38, 0.12);
    color: var(--brand-deep);
  }

  .contact-banner__mobile-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .map-card__surface {
    min-height: 220px;
  }

  .map-card__surface--clean {
    padding: 22px 18px;
  }

  .map-card__mini-map {
    width: 40%;
    min-width: 108px;
    border-radius: 18px;
  }

  .map-card__mini-map {
    width: 40%;
    min-width: 110px;
    border-radius: 20px;
  }

  .map-card__footer {
    display: grid;
    align-items: start;
  }

  .topbar {
    position: static;
    padding: 14px 16px;
    border-radius: 22px;
  }

  .topbar__nav {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
    font-size: 0.85rem;
  }

  .topbar__nav a {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 9px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(64, 137, 65, 0.14);
    text-align: center;
  }

  .topbar__nav a span {
    white-space: nowrap;
  }

  .topbar__nav svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
  }

  .topbar__cta {
    display: none;
  }

  .hero__copy,
  .hero__brand,
  .intro,
  .services,
  .reviews,
  .benefits,
  .process,
  .service-area,
  .faq,
  .contact-banner,
  .contact {
    backdrop-filter: none;
  }

  .footer {
    gap: 12px;
  }

  .service-panel__image {
    height: 245px;
  }

  .service-panel__title-wrap {
    padding: 18px;
  }

  .service-panel__title-row {
    align-items: center;
  }

  .service-panel__title-row h3 {
    font-size: 2.35rem;
  }

  .review-stars__options {
    gap: 8px;
  }

  .review-stars__options span {
    width: 42px;
    height: 42px;
  }

  .about-story {
    gap: 22px;
  }

  .about-story__row {
    padding: 16px;
    gap: 16px;
  }

  .about-story__image,
  .about-story__image--portrait {
    min-height: 240px;
    border-radius: 20px;
  }

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

  .about-story__gallery-item {
    min-height: 220px;
  }

  .about-story__gallery-toggle {
    padding: 16px 18px;
    border-radius: 24px;
  }

  .service-panel__content {
    padding: 0 18px;
  }

  .service-panel.is-open .service-panel__content {
    max-height: 360px;
    padding: 18px;
  }

  .button {
    width: 100%;
  }

  .mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 20px;
    margin-top: 20px;
    width: 100%;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    box-shadow: 0 18px 36px rgba(33, 62, 38, 0.28);
  }

  .request-modal__dialog {
    width: min(100% - 16px, 680px);
    max-height: calc(100dvh - 16px);
    margin: 8px auto;
    padding: 22px 16px 18px;
    border-radius: 24px;
  }

  .credits {
    padding-bottom: 0;
  }

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