:root {
  --ink: #17211d;
  --muted: #5c6d66;
  --soft: #eef7f1;
  --paper: #fbf9f4;
  --mint: #5fb98e;
  --deep: #0f5f55;
  --clay: #c9784a;
  --gold: #d7aa4c;
  --line: rgba(23, 33, 29, .13);
  --shadow: 0 20px 55px rgba(29, 62, 51, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  background: rgba(95, 185, 142, .28);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 249, 244, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}

.site-header.is-raised {
  border-bottom-color: var(--line);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--deep);
}

.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}

button {
  font: inherit;
}

.lang button,
.filters button,
.planner-tabs button {
  border: 0;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
}

.lang button {
  min-width: 42px;
  padding: 9px 10px;
  font-weight: 800;
  font-size: 12px;
}

.lang button.is-active,
.filters button.is-active,
.planner-tabs button.is-active {
  color: white;
  background: var(--deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: white;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(29, 62, 51, .08);
}

.button.small {
  min-height: 38px;
  padding-inline: 14px;
}

.button.primary {
  border-color: var(--deep);
  color: white;
  background: var(--deep);
}

.button.ghost {
  border-color: rgba(15, 95, 85, .22);
  color: var(--deep);
  background: rgba(255,255,255,.76);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 6vw, 84px) clamp(18px, 5vw, 72px) 38px;
  background:
    linear-gradient(115deg, rgba(238,247,241,.94) 0%, rgba(251,249,244,.98) 52%, rgba(242,232,214,.82) 100%);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--deep);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(48px, 6.5vw, 86px);
  line-height: .95;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.lead {
  max-width: 670px;
  margin: 24px 0 26px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-panel {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  max-width: 470px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 8px;
  color: white;
  background: rgba(15, 95, 85, .88);
  backdrop-filter: blur(12px);
}

.hero-panel span {
  color: rgba(255,255,255,.84);
  line-height: 1.5;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 790px;
  margin-top: 34px;
}

.trust-strip span {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
}

.trust-strip strong {
  display: block;
  font-size: 26px;
}

.trust-strip small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.35;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}

.quick-contact a {
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.quick-contact a:last-child {
  border-right: 0;
}

.quick-contact span,
.visit-details span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.quick-contact strong {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.24;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.planner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.planner-tabs,
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.planner-tabs {
  padding: 10px;
  border-bottom: 1px solid var(--line);
}

.planner-tabs button,
.filters button {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  background: var(--soft);
  font-weight: 800;
}

.planner-result {
  min-height: 230px;
  padding: 30px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--deep);
  font-weight: 900;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.filters {
  margin-bottom: 26px;
}

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

.service-card,
.offer-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform .2s ease, border-color .2s ease, opacity .2s ease;
}

.service-card:hover,
.offer-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 95, 85, .32);
}

.service-card.is-hidden {
  display: none;
}

.service-card span {
  color: var(--clay);
  font-weight: 900;
}

.service-card p,
.offer-grid p {
  margin: 0;
  font-size: 15px;
}

.service-card a {
  align-self: end;
  color: var(--deep);
  font-weight: 900;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .76fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #f1f5ef;
}

.quote {
  margin-top: 28px;
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: rgba(255,255,255,.68);
}

.quote p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
}

.quote span {
  color: var(--muted);
  font-size: 14px;
}

.proof-slider {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.proof-slider img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: white;
  background: rgba(15, 95, 85, .78);
  cursor: pointer;
  transform: translateY(-50%);
  font-size: 31px;
  line-height: 1;
}

.slider-nav.prev { left: 14px; }
.slider-nav.next { right: 14px; }

.slider-caption {
  padding: 16px 18px;
  color: var(--muted);
  font-weight: 800;
}

.offer-grid article {
  min-height: 230px;
  background:
    linear-gradient(155deg, white 0%, white 52%, rgba(95,185,142,.16) 100%);
}

.offer-grid small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 36px;
  border-radius: 8px;
  color: white;
  background: var(--clay);
  font-weight: 900;
}

.center-button {
  margin-top: 24px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .62fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: var(--ink);
  color: white;
}

.visit .eyebrow,
.visit p {
  color: rgba(255,255,255,.72);
}

.visit-details {
  display: grid;
  gap: 14px;
}

.visit-details > div {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.visit-details span {
  color: rgba(255,255,255,.6);
}

.contact-actions {
  grid-column: 1 / -1;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: white;
  font-size: 14px;
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(150%);
  transition: transform .2s ease;
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 8px;
  color: white;
  background: var(--deep);
  font-weight: 900;
}

.mobile-cta a:first-child {
  color: var(--deep);
  background: var(--soft);
}

@media (max-width: 1050px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .proof,
  .visit {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 14ch;
  }

  .hero-media,
  .hero-media img {
    min-height: 440px;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 36px;
  }

  h1 {
    max-width: 12ch;
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-strip,
  .quick-contact,
  .service-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .quick-contact a {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-contact a:last-child {
    border-bottom: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .hero-panel {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .planner-result,
  .service-card,
  .offer-grid article {
    padding: 20px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 40px;
  }

  .lang button {
    min-width: 36px;
    padding-inline: 8px;
  }
}
