:root {
  --green: #108b36;
  --green-dark: #064723;
  --green-soft: #eaf7ef;
  --yellow: #f5c84b;
  --ink: #132218;
  --muted: #627067;
  --white: #ffffff;
  --line: rgba(19, 34, 24, .12);
  --shadow: 0 24px 70px rgba(8, 61, 31, .14);
  --radius-lg: 34px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfdf9;
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: var(--white);
}
.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: .02em;
}
.brand small {
  display: block;
  color: var(--green);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .16em;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}
.main-nav a {
  padding: 10px 11px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .88rem;
  color: #314139;
}
.main-nav a:hover { background: var(--green-soft); color: var(--green-dark); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--green-soft);
  border-radius: 14px;
  padding: 12px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  border-radius: 999px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 14px 32px rgba(16,139,54,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(16,139,54,.26); }
.button-outline { background: transparent; color: var(--green-dark); }
.button-light { background: var(--white); border-color: var(--white); color: var(--green-dark); }
.button-small { min-height: 44px; padding: 10px 18px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(245,200,75,.30), transparent 27%),
    radial-gradient(circle at 90% 12%, rgba(16,139,54,.18), transparent 28%),
    linear-gradient(135deg, #f7fff8 0%, #eef9ee 55%, #fffaf0 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px -10%;
  height: 300px;
  background: var(--white);
  transform: rotate(-3deg);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 58px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow span {
  width: 32px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}
.eyebrow-light { color: var(--white); }
.hero h1, .section-heading h2, .content-panel h2, .mesotherapy-card h2, .contact-card h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  color: var(--green-dark);
}
.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #314139;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-info {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 590px;
}
.hero-info div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 14px 40px rgba(8, 61, 31, .08);
}
.hero-info small { display:block; color: var(--muted); font-weight: 800; }
.hero-info strong { display:block; color: var(--green-dark); font-size: 1.25rem; }
.hero-card {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}
.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(245,200,75,.34);
}
.hero-card::before { width: 260px; height: 260px; top: 20px; right: 10px; }
.hero-card::after { width: 180px; height: 180px; bottom: 28px; left: 30px; background: rgba(16,139,54,.17); }
.hero-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(475px, 92vw);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-logo-wrap img { border-radius: 38px; }

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -38px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 16px;
  background: var(--green-dark);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.quick-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}
.quick-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 950;
}
.quick-grid strong { line-height: 1.2; }

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 38px;
}
.section-heading h2,
.content-panel h2,
.mesotherapy-card h2,
.contact-card h2 {
  font-size: clamp(2.1rem, 4.8vw, 4.4rem);
  color: var(--green-dark);
}
.section-heading p { max-width: 430px; margin: 0; color: var(--muted); font-weight: 650; }
.section-heading-light h2, .section-heading-light p { color: var(--white); }

.service-grid,
.location-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card,
.location-card,
.image-card,
.list-panel,
.content-panel,
.mesotherapy-card {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 58px rgba(8, 61, 31, .10);
}
.service-card {
  min-height: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.service-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
  font-size: 1.35rem;
}
.service-card h3 { margin: 26px 0 10px; font-size: 1.35rem; line-height: 1.2; color: var(--green-dark); }
.service-card p { margin: 0; color: var(--muted); font-weight: 600; }
.service-card a { margin-top: auto; color: var(--green); font-weight: 950; }

.nutrition { background: var(--white); }
.nutrition-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: stretch;
}
.content-panel {
  padding: 36px;
  background:
    radial-gradient(circle at 90% 10%, rgba(245,200,75,.33), transparent 34%),
    linear-gradient(145deg, #fff, #edf9ef);
}
.section-lead { color: var(--muted); font-size: 1.15rem; font-weight: 800; }
.list-panel { padding: 32px; }
.list-panel h3 { margin: 0 0 18px; font-size: 1.65rem; color: var(--green-dark); }
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.check-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  min-height: 92px;
  border-radius: 20px;
  background: #f7fbf7;
  border: 1px solid var(--line);
}
.check-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
}
.check-grid strong { line-height: 1.25; }

.homeopathy {
  background:
    radial-gradient(circle at 4% 12%, rgba(245,200,75,.22), transparent 28%),
    linear-gradient(135deg, var(--green-dark), #0d7433);
}
.condition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.condition-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  padding: 14px;
  text-align: center;
  border-radius: 20px;
  color: var(--white);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 950;
}

.mesotherapy { background: #f5fbf4; }
.mesotherapy-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  padding: 34px;
  align-items: center;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.area-grid div {
  min-height: 115px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--green-dark);
  background: linear-gradient(135deg, #eff9ee, #fff8e4);
  border: 1px solid var(--line);
}
.area-grid strong { font-size: 1.3rem; }

.locations { background: var(--white); }
.location-grid { grid-template-columns: repeat(2, 1fr); }
.location-card { padding: 30px; }
.location-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}
.location-head span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--yellow);
  font-weight: 950;
}
.location-head h3 { margin: 0; color: var(--green-dark); font-size: 1.7rem; }
.address {
  margin: 0 0 18px;
  color: #25362c;
  font-weight: 900;
  font-size: 1.06rem;
}
.schedule-box {
  margin: 20px 0;
  padding: 20px;
  border-radius: 22px;
  background: var(--green-soft);
  border: 1px solid rgba(16,139,54,.18);
}
.schedule-box small { display:block; color: var(--muted); font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.schedule-box strong { display:block; color: var(--green-dark); font-size: 1.23rem; margin-top: 4px; }
.schedule-box p { margin: 6px 0 0; color: var(--ink); font-weight: 850; }
.facade-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 18px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 950;
}

.facade-section {
  background:
    linear-gradient(180deg, #f5fbf4 0%, #ffffff 100%);
}
.facade-button-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.facade-button-grid a {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 8%, rgba(245,200,75,.34), transparent 32%),
    var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 52px rgba(6, 71, 35, .16);
}
.facade-button-grid a span { color: var(--yellow); font-weight: 950; letter-spacing: .12em; font-size: .8rem; }
.facade-button-grid a strong { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.1; }
.visual-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.image-card { overflow: hidden; margin: 0; }
.image-open {
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.image-open img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f2f6f0;
}
.image-card-tall .image-open img { aspect-ratio: 1 / 1; }
.zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(6,71,35,.92);
  color: var(--white);
  font-weight: 900;
  font-size: .85rem;
}
figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
}
figcaption span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--green-dark);
  font-weight: 950;
}
figcaption strong { display:block; color: var(--green-dark); }
figcaption small { display:block; color: var(--muted); font-weight: 700; }

.contact {
  background:
    radial-gradient(circle at 12% 10%, rgba(245,200,75,.27), transparent 28%),
    linear-gradient(135deg, var(--green-dark), #0b7b34);
}
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-color: rgba(255,255,255,.17);
  background: rgba(255,255,255,.10);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.contact-card h2 { color: var(--white); }
.contact-card p { max-width: 680px; margin: 14px 0 0; color: rgba(255,255,255,.84); font-weight: 700; }
.contact-actions { display: grid; gap: 12px; text-align: center; min-width: 250px; }
.contact-actions strong { color: var(--yellow); font-size: 1.6rem; }

.site-footer {
  padding: 28px 0;
  background: #031d10;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 54px; height: 54px; border-radius: 16px; object-fit: contain; background: var(--white); }
.footer-brand strong, .footer-brand span { display:block; }
.footer-brand span { color: rgba(255,255,255,.68); font-size: .9rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.78); font-weight: 800; }
.footer-phone { color: var(--yellow); font-weight: 950; font-size: 1.1rem; }
.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 42px rgba(16,139,54,.32);
  font-weight: 950;
}
.to-top {
  position: fixed;
  right: 18px;
  bottom: 78px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: none;
  place-items: center;
  color: var(--green-dark);
  background: var(--yellow);
  font-weight: 950;
  cursor: pointer;
}
.to-top.visible { display: grid; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(2, 19, 8, .88);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  background: var(--white);
}
.lightbox-close {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .16s; }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .main-nav a { padding: 9px 8px; font-size: .82rem; }
  .condition-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 880px) {
  .section-pad { padding: 72px 0; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 16px; font-size: 1rem; }
  .hero-grid,
  .nutrition-grid,
  .mesotherapy-card,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { min-height: auto; }
  .hero-logo-wrap { width: min(390px, 100%); transform: none; }
  .quick-grid,
  .service-grid,
  .location-grid,
  .visual-grid,
  .facade-button-grid { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .contact-card { display: grid; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 58px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .brand strong { font-size: .92rem; }
  .brand small { font-size: .65rem; }
  .hero h1 { font-size: clamp(2.65rem, 15vw, 4.2rem); }
  .hero-info,
  .check-grid,
  .condition-grid,
  .area-grid { grid-template-columns: 1fr; }
  .service-card,
  .location-card,
  .content-panel,
  .list-panel,
  .mesotherapy-card,
  .contact-card { padding: 22px; border-radius: 24px; }
  .floating-call span:last-child { display: none; }
  .floating-call { width: 54px; height: 54px; padding: 0; justify-content: center; }
  .to-top { bottom: 84px; }
}
