:root {
  --white: #ffffff;
  --milk: #f5faef;
  --mint: #dff4d4;
  --green: #0f6a3e;
  --deep: #073b24;
  --ink: #123322;
  --muted: #647267;
  --lime: #d5ef51;
  --line: rgba(15, 106, 62, 0.16);
  --shadow: 0 22px 70px rgba(7, 59, 36, 0.18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --header-h: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(213, 239, 81, 0.22), transparent 24rem),
    linear-gradient(180deg, #f9fff4 0%, #fff 36%, #effbe9 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  opacity: 0;
  pointer-events: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  background: var(--deep);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.keyboard-user .skip-link:focus-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(7, 59, 36, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 48px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--green);
}

.brand-mark svg {
  width: 54px;
  height: 30px;
  overflow: visible;
}

.brand-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-name {
  font-size: clamp(20px, 2vw, 30px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 32px);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(18, 51, 34, 0.74);
}

.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

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

.lang-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.lang-switch button,
.menu-toggle,
.back-top {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.lang-switch button {
  min-width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.lang-switch button.active {
  background: var(--green);
  color: white;
}

.phone-chip {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 106, 62, 0.28);
  text-decoration: none;
  color: var(--deep);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 15px;
  width: 20px;
  height: 2px;
  background: var(--deep);
  transition: transform 0.25s ease, top 0.25s ease;
}

.menu-toggle span:first-child {
  top: 19px;
}

.menu-toggle span:last-child {
  top: 28px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 14px auto 14px;
  z-index: 90;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 16px;
  background: var(--milk);
  text-decoration: none;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  isolation: isolate;
  overflow: clip;
}

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

.hero img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 38, 24, 0.92) 0%, rgba(5, 38, 24, 0.78) 34%, rgba(5, 38, 24, 0.24) 70%, rgba(5, 38, 24, 0.06) 100%),
    linear-gradient(180deg, rgba(5, 38, 24, 0.12), rgba(5, 38, 24, 0.34));
}

.lens-ring {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(213, 239, 81, 0.44);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.72;
}

.lens-ring-one {
  width: min(42vw, 620px);
  aspect-ratio: 1;
  left: 8vw;
  top: 17vh;
  animation: scan 7s ease-in-out infinite;
}

.lens-ring-two {
  width: min(19vw, 260px);
  aspect-ratio: 1;
  left: 39vw;
  bottom: 10vh;
  opacity: 0.34;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 8vw, 112px) clamp(20px, 6vw, 92px);
  color: white;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(18, 51, 34, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero .eyebrow,
.hero-note {
  color: rgba(255, 255, 255, 0.72);
}

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

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 {
  max-width: 690px;
  font-size: clamp(54px, 8vw, 128px);
}

h2 {
  font-size: clamp(40px, 5.2vw, 86px);
}

.hero-text {
  max-width: 560px;
  margin: 28px 0 0;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
}

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

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

.btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.09);
}

.btn-outline {
  color: var(--green);
  border-color: rgba(15, 106, 62, 0.24);
  background: white;
}

.hero-note {
  margin: 18px 0 0;
  font-size: 14px;
}

.facts,
.services,
.visit,
.faq,
.contacts,
.footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 28px;
  padding-bottom: 28px;
}

.facts article,
.steps article,
.faq details,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(7, 59, 36, 0.06);
}

.facts article {
  min-height: 150px;
  border-radius: 24px;
  padding: 22px;
}

.facts span,
.service-copy span,
.steps span {
  font-weight: 950;
  color: var(--green);
}

.facts strong {
  display: block;
  margin-top: 14px;
  font-size: 22px;
}

.facts p,
.section-head p,
.steps p,
.faq p,
.contact-card p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.services {
  padding-top: clamp(56px, 8vw, 116px);
  padding-bottom: clamp(52px, 8vw, 108px);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head p:last-child {
  max-width: 620px;
  font-size: 18px;
}

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

.service-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 38% 0 0;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 36, 21, 0.62) 35%, rgba(3, 36, 21, 0.92) 100%);
}

.service-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 24px;
  color: white;
}

.service-copy span {
  color: var(--lime);
}

.service-copy h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.service-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.visit {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: clamp(22px, 5vw, 70px);
  padding-top: clamp(54px, 7vw, 100px);
  padding-bottom: clamp(60px, 8vw, 110px);
  background:
    linear-gradient(135deg, rgba(213, 239, 81, 0.22), transparent 38%),
    var(--milk);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px 18px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
}

.steps span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.steps h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.steps p {
  margin: 0;
}

.faq {
  padding-top: clamp(56px, 8vw, 110px);
  padding-bottom: clamp(56px, 8vw, 110px);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq details {
  border-radius: 20px;
  overflow: clip;
}

.faq summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
}

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

.faq p {
  margin: 0;
  padding: 0 22px 20px;
}

.contacts {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.contact-card,
.map-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 45%, rgba(213, 239, 81, 0.34), transparent 9rem),
    linear-gradient(135deg, #eef8e8, #ffffff);
}

.contact-card {
  padding: clamp(24px, 4vw, 44px);
  background:
    radial-gradient(circle at 90% 12%, rgba(213, 239, 81, 0.38), transparent 12rem),
    #fff;
}

.address-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.address-grid article {
  padding: 18px;
  border-radius: 18px;
  background: var(--milk);
  border: 1px solid var(--line);
}

.address-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.address-grid strong {
  display: block;
  font-size: 20px;
}

.address-grid a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--green);
  font-weight: 950;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
}

.brand-footer .brand-name {
  font-size: 22px;
}

.footer a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.float-whatsapp,
.back-top {
  position: fixed;
  z-index: 80;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 14px 40px rgba(7, 59, 36, 0.26);
}

.float-whatsapp {
  left: max(18px, env(safe-area-inset-left));
  color: white;
  background: #1f9d63;
}

.back-top {
  right: max(18px, env(safe-area-inset-right));
  color: var(--green);
  background: white;
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@keyframes scan {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(4vw, 1.5vh, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: inline-grid;
  }
  .service-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contacts,
  .visit {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 66px;
  }
  .site-header {
    padding-inline: 14px;
  }
  .brand-name {
    font-size: 20px;
  }
  .brand-mark {
    width: 42px;
  }
  .phone-chip {
    display: none;
  }
  .lang-switch button {
    min-width: 44px;
    height: 44px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
  }
  .hero {
    min-height: calc(100svh - var(--header-h));
  }
  .hero img {
    object-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 38, 24, 0.92) 0%, rgba(5, 38, 24, 0.72) 42%, rgba(5, 38, 24, 0.34) 100%),
      linear-gradient(90deg, rgba(5, 38, 24, 0.66), rgba(5, 38, 24, 0.1));
  }
  .hero-content {
    min-height: calc(100svh - var(--header-h));
    justify-content: flex-start;
    padding: 52px 20px 30px;
  }
  h1 {
    max-width: 440px;
    font-size: clamp(48px, 14vw, 76px);
  }
  h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .hero-text {
    margin-top: 20px;
    max-width: 420px;
    font-size: 18px;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .btn {
    min-height: 52px;
    padding-inline: 18px;
  }
  .lens-ring-one {
    width: 70vw;
    left: 8vw;
    top: 18vh;
    opacity: 0.42;
  }
  .lens-ring-two {
    display: none;
  }
  .facts {
    grid-template-columns: 1fr;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .facts article {
    min-height: auto;
  }
  .services,
  .visit,
  .faq,
  .contacts,
  .footer {
    padding-inline: 18px;
  }
  .service-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: -18px;
    padding: 0 18px 12px;
  }
  .service-card {
    min-width: min(82vw, 360px);
    min-height: 470px;
    scroll-snap-align: start;
  }
  .service-card img {
    min-height: 470px;
  }
  .service-copy {
    padding: 20px;
  }
  .visit {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .steps article {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .contacts {
    padding-top: 48px;
  }
  .contact-actions {
    align-items: stretch;
  }
  .contact-actions .btn {
    width: 100%;
  }
  .map-card iframe {
    min-height: 390px;
  }
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .float-whatsapp,
  .back-top {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    display: none;
  }
  .brand {
    min-width: 48px;
    justify-content: center;
  }
  .hero-content {
    padding-inline: 16px;
  }
  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }
  .hero-text {
    font-size: 16px;
  }
  .facts,
  .services,
  .visit,
  .faq,
  .contacts,
  .footer {
    padding-inline: 14px;
  }
  .service-track {
    margin-inline: -14px;
    padding-inline: 14px;
  }
}
