:root {
  --green: #1f8a4c;
  --green-dark: #126136;
  --green-soft: #e8f6ee;
  --mint: #c8efd7;
  --ink: #132019;
  --muted: #637168;
  --line: #dbe8df;
  --paper: #fbf8ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(19, 32, 25, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(200, 239, 215, 0.78), transparent 34rem),
    radial-gradient(circle at 94% 14%, rgba(255, 239, 193, 0.75), transparent 26rem),
    var(--paper);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 50;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 239, 0.82);
  border-bottom: 1px solid rgba(219, 232, 223, 0.75);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(31, 138, 76, 0.16);
  object-fit: cover;
  background: var(--white);
}
.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.brand em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
}
.site-nav a { transition: color .2s ease, transform .2s ease; }
.site-nav a:hover { color: var(--green-dark); transform: translateY(-1px); }
.nav-phone {
  color: var(--green-dark) !important;
  font-weight: 800;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.55);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 11px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  margin: 5px 0;
}

.section-pad { padding: 86px 0; }
.hero { padding-top: 72px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 850;
  font-size: 12px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: .95;
  letter-spacing: -0.07em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -0.035em;
}
.lead {
  max-width: 660px;
  color: #415147;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  margin-bottom: 30px;
}
.hero-actions, .booking-actions, .contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(31, 138, 76, 0.28);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 20px 40px rgba(31, 138, 76, 0.34); }
.btn-secondary {
  background: rgba(255,255,255,.72);
  color: var(--green-dark);
  border: 1px solid var(--line);
}
.btn-text {
  color: var(--green-dark);
  padding-inline: 10px;
}
.quick-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  max-width: 660px;
}
.quick-points li {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
}
.quick-points span {
  display: block;
  color: var(--green-dark);
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.05em;
}

.hero-card {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(232,246,238,.78)),
    radial-gradient(circle at 48% 48%, rgba(31,138,76,.16), transparent 22rem);
  box-shadow: var(--shadow);
}
.insoles-img {
  position: relative;
  z-index: 3;
  width: min(78%, 420px);
  filter: drop-shadow(0 34px 32px rgba(31, 77, 47, 0.18));
}
.soft-circle {
  position: absolute;
  border-radius: 50%;
  opacity: .9;
}
.circle-one {
  width: 320px;
  height: 320px;
  background: var(--mint);
  top: 58px;
  right: -68px;
}
.circle-two {
  width: 220px;
  height: 220px;
  background: #f7e7aa;
  left: -52px;
  bottom: 56px;
}
.floating-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 4;
  width: min(260px, calc(100% - 56px));
  border-radius: 24px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: 0 18px 44px rgba(19, 32, 25, .14);
}
.floating-note strong { display: block; font-size: 18px; }
.floating-note span { display: block; color: var(--muted); font-size: 14px; margin-top: 4px; }

.strip {
  background: var(--ink);
  color: var(--white);
}
.strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.strip p { margin: 0; font-size: 18px; color: rgba(255,255,255,.78); }
.strip a { color: #bff0ce; font-weight: 850; }

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.step {
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 260px;
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}
.step p, .muted-text { color: var(--muted); margin-bottom: 0; }
.muted {
  background: rgba(232, 246, 238, .72);
  border-block: 1px solid rgba(219, 232, 223, .85);
}
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.chips span {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #3d5044;
  font-weight: 750;
  box-shadow: 0 12px 28px rgba(19,32,25,.06);
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 34px;
  align-items: center;
  border-radius: 42px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.booking-card:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(31,138,76,.35);
}
.booking-card > * { position: relative; z-index: 1; }
.booking-card .eyebrow { color: #bff0ce; }
.booking-card p { color: rgba(255,255,255,.74); max-width: 720px; }
.qr-box {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 24px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
  font-weight: 850;
}
.qr-box img { width: 170px; height: 170px; }

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
  gap: 24px;
  align-items: stretch;
}
.contact-panel, .map-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: 0 14px 50px rgba(19,32,25,.08);
}
dl { display: grid; gap: 18px; margin: 26px 0 30px; }
dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
dt { color: var(--muted); }
dd { margin: 0; font-weight: 800; }
dd a { color: var(--green-dark); }
.map-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-link {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.map-link:hover {
  transform: translateY(-3px);
  border-color: rgba(31,138,76,.34);
  box-shadow: 0 20px 60px rgba(19,32,25,.12);
}
.map-visual {
  flex: 1;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(31,138,76,.10) 1px, transparent 1px),
    linear-gradient(rgba(31,138,76,.10) 1px, transparent 1px),
    linear-gradient(145deg, #eef9f1, #fff8dc);
  background-size: 34px 34px, 34px 34px, auto;
  isolation: isolate;
}
.map-visual:before,
.map-visual:after {
  content: "";
  position: absolute;
  inset: auto;
  z-index: 1;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 0 0 8px rgba(255,255,255,.34);
}
.map-visual:before {
  width: 520px;
  height: 32px;
  left: -88px;
  top: 118px;
  transform: rotate(-16deg);
}
.map-visual:after {
  width: 420px;
  height: 28px;
  right: -90px;
  bottom: 86px;
  transform: rotate(24deg);
}
.map-road {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 0 0 7px rgba(255,255,255,.28);
}
.road-one { width: 340px; height: 22px; left: -84px; bottom: 94px; transform: rotate(42deg); }
.road-two { width: 300px; height: 18px; right: -78px; top: 86px; transform: rotate(68deg); }
.road-three { width: 260px; height: 16px; left: 80px; top: 214px; transform: rotate(6deg); }
.map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(19,32,25,.08);
}
.metro-mark {
  position: absolute;
  left: 58px;
  bottom: 54px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(31,138,76,.28);
}
.map-pin-dot {
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 4;
  width: 34px;
  height: 34px;
  border-radius: 50% 50% 50% 0;
  background: var(--green);
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 14px 26px rgba(31,138,76,.3);
}
.map-pin-dot:before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: var(--white);
}
.map-label {
  position: absolute;
  left: 50%;
  top: calc(45% + 32px);
  z-index: 5;
  transform: translateX(-50%);
  width: min(240px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  text-align: center;
  box-shadow: 0 16px 34px rgba(19,32,25,.12);
}
.map-label strong {
  display: block;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.map-label span,
.map-card p { color: var(--muted); }
.map-card p { margin-bottom: 0; }
.map-card p strong { color: var(--green-dark); }

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}
.footer-brand strong { color: var(--ink); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .hero-grid, .split, .contacts-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-card { min-height: 480px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 72px; }
  .brand strong { font-size: 16px; }
  .brand em { font-size: 12px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .site-nav a { padding: 12px; }
  .nav-phone { text-align: center; }
  .section-pad { padding: 58px 0; }
  .hero { padding-top: 44px; }
  .hero-grid { gap: 34px; }
  .hero-card { min-height: 390px; border-radius: 32px; }
  .quick-points { grid-template-columns: 1fr; }
  .strip-inner { align-items: flex-start; flex-direction: column; padding: 22px 0; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .booking-card { grid-template-columns: 1fr; border-radius: 30px; }
  .qr-box { max-width: 220px; }
  dl div { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
