*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --white: #FFFFFF;
  --off: #F7F8FA;
  --light: #EEF0F4;
  --text: #0F0F0F;
  --text2: #444444;
  --muted: #777777;
  --accent: #111111;
  --accent-light: #EEF0F4;
  --dark: #111111;
  --border: #E0E3E8;
  --h: 'Space Grotesk', sans-serif;
  --b: 'Inter', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1280px;
  --px: clamp(20px, 5vw, 64px);
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--b); color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* =========== NAV =========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: var(--h); font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.03em; color: #fff;
  transition: color 0.4s;
}
.nav-logo span { font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  transition: color 0.3s; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: #fff; }
.nav-link.active::after { width: 100%; }
.nav-phone {
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em; transition: color 0.3s;
}
.nav-phone:hover { color: #fff; }
.nav-cta {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dark);
  background: #fff; padding: 11px 28px; border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent); color: #fff; }

.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav.scrolled .nav-logo { color: var(--dark); }
.nav.scrolled .nav-link { color: var(--muted); }
.nav.scrolled .nav-link:hover { color: var(--dark); }
.nav.scrolled .nav-link.active { color: var(--dark); }
.nav.scrolled .nav-phone { color: var(--text2); }
.nav.scrolled .nav-phone:hover { color: var(--dark); }
.nav.scrolled .nav-cta { background: var(--dark); color: #fff; }
.nav.scrolled .nav-cta:hover { background: #333333; }

/* mobile nav */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 201;
}
.nav-toggle span {
  width: 22px; height: 1.5px; background: #fff;
  transition: all 0.4s var(--ease); display: block;
}
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-overlay {
  position: fixed; inset: 0; z-index: 200; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px; border: none; background: none;
  color: rgba(255,255,255,0.65); font-size: 2.2rem; line-height: 1;
  cursor: pointer; z-index: 202; transition: color 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.mobile-close:hover { color: #fff; }
.mobile-overlay a {
  font-family: var(--h); font-size: 1.6rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7); transition: color 0.3s;
}
.mobile-overlay a:hover { color: #fff; }
.mobile-overlay .mob-cta {
  margin-top: 16px; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; padding: 14px 40px;
  background: #fff; color: var(--dark); border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.mobile-overlay .mob-cta:hover { background: var(--accent); color: #fff; }
.mobile-overlay .mob-phone {
  font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 8px;
}

/* =========== HERO =========== */
.hero {
  height: 100vh; min-height: 700px; position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg picture { display: contents; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.5) 100%
  );
}
.hero-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 0 var(--px) clamp(48px, 8vw, 100px);
  max-width: var(--max); margin: 0 auto;
}
.hero-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.2s var(--ease) forwards;
}
.hero-title {
  font-family: var(--h); font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1; letter-spacing: -0.04em; color: #fff;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.4s var(--ease) forwards;
}
.hero-title .thin { font-weight: 300; opacity: 0.7; }
.hero-sub {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); color: rgba(255,255,255,0.65);
  max-width: 520px; line-height: 1.6; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.6s var(--ease) forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========== BUTTONS =========== */
.btn {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 14px 32px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s var(--ease); cursor: pointer;
}
.btn-primary { background: #fff; color: var(--dark); }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: #fff; color: var(--dark); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333333; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: #333333; }
.btn-ghost { background: transparent; color: var(--dark); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--dark); }
.btn svg { width: 14px; height: 14px; }

/* =========== STATS BAR =========== */
.stats {
  background: var(--off); padding: 48px var(--px);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--h); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; color: var(--dark); letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem; font-weight: 400; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 8px;
}

/* =========== SECTION UTILITIES =========== */
.section { padding: clamp(80px, 10vw, 140px) var(--px); }
.section-alt { background: var(--off); }
.section-dark { background: var(--dark); color: #fff; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.section-header {
  text-align: center; margin-bottom: clamp(48px, 6vw, 80px);
}
.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.section-dark .section-label { color: rgba(255,255,255,0.4); }
.section-title {
  font-family: var(--h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}
.section-desc {
  font-size: 1rem; color: var(--text2); max-width: 560px;
  margin: 16px auto 0; line-height: 1.7;
}
.section-dark .section-desc { color: rgba(255,255,255,0.5); }

/* reveal animation */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========== TREATMENTS GRID =========== */
.treatments-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.treat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.treat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.treat-img {
  height: 200px; background: var(--light);
  overflow: hidden;
}
.treat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.treat-card:hover .treat-img img { transform: scale(1.05); }
.treat-body { padding: 24px; }
.treat-cat {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.treat-name {
  font-family: var(--h); font-size: 1.2rem; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.treat-desc {
  font-size: 0.88rem; color: var(--text2); line-height: 1.6;
  margin-bottom: 16px;
}
.treat-price {
  font-family: var(--h); font-size: 0.95rem; font-weight: 600;
  color: var(--dark);
}
.treat-link {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s var(--ease);
}
.treat-link:hover { gap: 12px; }

/* =========== BEFORE/AFTER GALLERY =========== */
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.ba-card {
  border-radius: 12px; overflow: hidden;
  background: var(--light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.ba-img-wrap {
  position: relative; overflow: hidden;
}
.ba-card img {
  width: 100%; aspect-ratio: 1.15; object-fit: cover; display: block;
}
.ba-split {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff;
}
.ba-tags {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 20px;
}
.ba-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; background: rgba(0,0,0,0.6);
  color: #fff; padding: 6px 12px; border-radius: 4px;
  backdrop-filter: blur(8px);
}
/* stacked (top=before, bottom=after) variant */
.ba-vert .ba-split {
  top: 50%; bottom: auto; left: 0; right: 0;
  width: auto; height: 2px;
}
.ba-vert .ba-tags {
  top: 0; bottom: 0; left: 0; right: 0;
  flex-direction: column; justify-content: space-between; align-items: flex-start;
  padding: 16px 20px;
}
.ba-caption {
  padding: 16px 20px;
  font-size: 0.82rem; font-weight: 500; color: var(--text2);
}

/* =========== TEAM =========== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; max-width: 800px; margin: 0 auto;
}
.team-card { text-align: center; }
.team-photo {
  width: 300px; height: 360px; border-radius: 12px;
  background: var(--light); margin: 0 auto 24px;
  overflow: hidden; max-width: 100%;
  display: flex; align-items: center; justify-content: center;
}

.team-name {
  font-family: var(--h); font-size: 1.3rem; font-weight: 600;
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.78rem; font-weight: 500; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.team-bio {
  font-size: 0.9rem; color: var(--text2); line-height: 1.7;
  max-width: 360px; margin: 0 auto;
}

/* =========== TESTIMONIALS =========== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 32px; position: relative;
}
.section-dark .testimonial-card {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1);
}
.testimonial-quote {
  font-size: 0.95rem; line-height: 1.7; color: var(--text2);
  margin-bottom: 20px; font-style: italic;
}
.section-dark .testimonial-quote { color: rgba(255,255,255,0.6); }
.testimonial-author {
  font-family: var(--h); font-size: 0.88rem; font-weight: 600;
}
.section-dark .testimonial-author { color: #fff; }
.testimonial-detail {
  font-size: 0.75rem; color: var(--muted); margin-top: 2px;
}
.section-dark .testimonial-detail { color: rgba(255,255,255,0.35); }

/* =========== VIDEO TESTIMONIALS =========== */
.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.video-card {
  border-radius: 12px; overflow: hidden; position: relative;
  cursor: pointer; aspect-ratio: 16/9; background: #000;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s;
}
.video-card:hover img { opacity: 0.8; }
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.95); display: flex;
  align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease);
}
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); }
.video-play svg { width: 20px; height: 20px; margin-left: 3px; }
.video-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 0.75rem; font-weight: 600; color: #fff;
  background: rgba(0,0,0,0.5); padding: 6px 14px;
  border-radius: 6px; backdrop-filter: blur(8px);
}
.video-card iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* =========== PRICE TABLE =========== */
.price-group { margin-bottom: 48px; }
.price-group:last-child { margin-bottom: 0; }
.price-group-title {
  font-family: var(--h); font-size: 1.3rem; font-weight: 600;
  letter-spacing: -0.02em; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 2px solid var(--dark);
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 0.95rem; font-weight: 500; }
.price-note {
  font-size: 0.82rem; color: var(--muted); margin-left: 8px; font-weight: 400;
}
.price-dots {
  flex: 1; margin: 0 16px;
  border-bottom: 1px dotted var(--border);
  min-width: 40px; align-self: center;
}
.price-val {
  font-family: var(--h); font-size: 1rem; font-weight: 600;
  white-space: nowrap;
}

/* =========== CONTACT =========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 8px;
}
.contact-info-value {
  font-size: 1rem; color: var(--text); line-height: 1.6;
}
.contact-info-value a { text-decoration: underline; text-underline-offset: 3px; }
.contact-info-value a:hover { color: var(--accent); }

.form-group { margin-bottom: 20px; }
.form-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text2); margin-bottom: 8px;
  display: block;
}
.form-input, .form-textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--b); font-size: 0.92rem; color: var(--text);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; outline: none;
  transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { min-height: 120px; resize: vertical; }

/* =========== CTA BAND =========== */
.cta-band {
  background: var(--accent); padding: clamp(64px, 8vw, 100px) var(--px);
  text-align: center;
}
.cta-band .section-inner { max-width: 640px; }
.cta-title {
  font-family: var(--h); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: #fff; letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px;
  line-height: 1.7;
}
.cta-band .btn-primary { background: #fff; color: var(--dark); }
.cta-band .btn-primary:hover { background: rgba(255,255,255,0.82); }

/* =========== FOOTER =========== */
.footer {
  background: var(--dark); padding: 64px var(--px) 32px;
  color: rgba(255,255,255,0.4);
}
.cta-band + .footer { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-inner {
  max-width: var(--max); margin: 0 auto;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--h); font-size: 1.4rem; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.footer-brand span { font-weight: 300; }
.footer-tagline {
  font-size: 0.88rem; line-height: 1.6; max-width: 280px;
}
.footer-col-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.4);
  margin-bottom: 10px; transition: color 0.3s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
/* =========== COOKIE CONSENT =========== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  display: flex; align-items: center; gap: 16px;
  padding: 10px clamp(16px, 4vw, 40px);
  font-size: 0.8rem; color: var(--text2); line-height: 1.45;
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar-text { flex: 1; }
.cookie-bar-text a { color: var(--dark); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--b); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 20px; border-radius: 100px; cursor: pointer; white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.cookie-btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--dark); }
.cookie-btn-ghost:hover { border-color: var(--dark); }
.cookie-btn-solid { background: var(--dark); color: #fff; border: 1px solid var(--dark); }
.cookie-btn-solid:hover { background: #333; }
.cookie-close {
  background: none; border: none; font-size: 1.3rem; line-height: 1;
  color: var(--muted); cursor: pointer; padding: 4px 6px; flex-shrink: 0;
}
.cookie-close:hover { color: var(--dark); }

.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 310; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.cookie-modal-overlay.show { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff; border-radius: 16px; max-width: 620px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 32px clamp(20px, 4vw, 40px);
}
.cookie-modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cookie-modal-head h2 { font-family: var(--h); font-size: 1.4rem; font-weight: 600; letter-spacing: -0.02em; }
.cookie-row {
  padding: 24px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr auto; gap: 10px 24px; align-items: center;
}
.cookie-row h3 { font-family: var(--h); font-size: 1rem; font-weight: 600; }
.cookie-row p { grid-column: 1; font-size: 0.85rem; color: var(--text2); line-height: 1.6; }
.cookie-save-row { text-align: right; margin-top: 24px; }

.cookie-switch { position: relative; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-switch input { opacity: 0; width: 0; height: 0; }
.cookie-slider { position: absolute; inset: 0; background: var(--border); border-radius: 100px; transition: 0.3s var(--ease); cursor: pointer; }
.cookie-slider::before {
  content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%; transition: 0.3s var(--ease);
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.cookie-switch input:checked + .cookie-slider { background: var(--dark); }
.cookie-switch input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-switch input:disabled + .cookie-slider { opacity: 0.45; cursor: not-allowed; }

@media (max-width: 640px) {
  .cookie-bar { flex-wrap: wrap; gap: 8px; padding: 9px 16px; font-size: 0.73rem; line-height: 1.35; }
  .cookie-bar-actions { width: 100%; justify-content: flex-end; gap: 8px; }
  .cookie-btn { padding: 7px 16px; font-size: 0.6rem; }
  .cookie-close { font-size: 1.1rem; padding: 2px 4px; }
}

/* =========== HOME INTRO =========== */
.intro-copy { max-width: 800px; margin: 0 auto; text-align: center; }
.intro-copy p {
  font-size: 0.97rem; color: var(--text2); line-height: 1.85;
  margin-bottom: 16px;
}
.intro-copy p:last-child { margin-bottom: 0; }

/* =========== FAQ =========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-family: var(--h); font-weight: 600; font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--h); font-size: 1.5rem; font-weight: 400;
  color: var(--muted); flex-shrink: 0; margin-left: 20px; line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 40px 22px 0;
  font-size: 0.93rem; color: var(--text2); line-height: 1.8;
}

/* =========== VISIT US =========== */
.visit-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px; max-width: 920px; margin: 0 auto; text-align: center;
}
.visit-serving {
  text-align: center; margin-top: 48px;
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
}

/* =========== LEGAL PAGES =========== */
.legal-body p { font-size: 0.95rem; color: var(--text2); line-height: 1.8; margin-bottom: 18px; }
.legal-body h2 {
  font-family: var(--h); font-size: 1.25rem; font-weight: 600;
  letter-spacing: -0.01em; margin: 36px 0 14px;
}
.legal-body ul { margin: 0 0 18px 22px; color: var(--text2); font-size: 0.95rem; line-height: 1.8; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { transition: color 0.3s; }
.footer-legal a:hover { color: #fff; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: #fff; background: rgba(255,255,255,0.05); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); }
.footer-social a:hover svg { fill: #fff; }

/* =========== PAGE HEADER =========== */
.page-header {
  background: var(--dark); padding: 160px var(--px) 80px;
  text-align: center;
}
.page-header .section-label { color: rgba(255,255,255,0.35); }
.page-header .section-title { color: #fff; }
.page-header .section-desc { color: rgba(255,255,255,0.5); }
@media (max-width: 767px) {
  .page-header { padding: 104px var(--px) 40px; }
}

/* =========== CATEGORY FILTER =========== */
.category-filter {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px; margin-bottom: 48px;
}
.cat-btn {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 10px 20px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--text2);
  transition: all 0.3s var(--ease); cursor: pointer;
}
.cat-btn:hover { border-color: var(--dark); color: var(--dark); }
.cat-btn.active { background: var(--dark); color: #fff; border-color: var(--dark); }

/* =========== ABOUT STORY =========== */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-text h3 {
  font-family: var(--h); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 20px;
  line-height: 1.1;
}
.about-text p {
  font-size: 0.95rem; color: var(--text2); line-height: 1.8;
  margin-bottom: 16px;
}
.about-img-wrap {
  border-radius: 12px; overflow: hidden;
}
.about-img-wrap img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}

/* =========== DEVICES =========== */
.devices-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; text-align: center;
}
.device-item { padding: 32px 20px; }
.device-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--accent-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--h); font-size: 1.4rem; font-weight: 700; color: var(--accent);
}
.device-name {
  font-family: var(--h); font-size: 1rem; font-weight: 600; margin-bottom: 6px;
}
.device-desc {
  font-size: 0.82rem; color: var(--text2); line-height: 1.5;
}

/* =========== MAP =========== */
.map-wrap {
  border-radius: 12px; overflow: hidden; height: 400px;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =========== HOURS =========== */
.hours-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.hours-day {
  padding: 16px; background: var(--off); border-radius: 8px; text-align: center;
}
.hours-day-name {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.hours-day-time {
  font-family: var(--h); font-size: 0.95rem; font-weight: 600;
}
.hours-day.closed .hours-day-time { color: var(--muted); }

/* =========== RESPONSIVE =========== */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 767px) {
  .ba-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 767px) {
  .stats { padding: 32px 16px; }
  .stats-inner { gap: 8px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.6rem; letter-spacing: 0.06em; }
}
@media (max-width: 479px) {
  .hero-title { font-size: 2.6rem; }
  .stat-num { font-size: 1.35rem; }
  .stat-label { font-size: 0.54rem; }
}

/* =========== LOGO IMAGE =========== */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 30px; width: auto; display: block; transition: filter 0.4s; }
.nav:not(.scrolled) .nav-logo-img { filter: invert(1) brightness(2); }

/* =========== TEAM PHOTO (real image) =========== */
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* =========== INDIVIDUAL TREATMENT PAGES =========== */
.treat-hero {
  min-height: 70vh; position: relative; overflow: hidden;
  display: flex; align-items: flex-end; background: var(--dark);
}
.treat-hero-bg {
  position: absolute; inset: 0;
}
.treat-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.treat-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
}
.treat-hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 0 var(--px) clamp(48px, 8vw, 96px);
  max-width: var(--max); margin: 0 auto;
}
.treat-hero-cat {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.treat-hero-title {
  font-family: var(--h); font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700; color: #fff; letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 16px;
}
.treat-hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem); color: rgba(255,255,255,0.65);
  max-width: 560px; line-height: 1.7; margin-bottom: 32px;
}
.treat-hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
}
.treat-meta-badge {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; padding: 8px 20px;
  font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.85);
}
.treat-meta-badge strong { color: #fff; font-weight: 700; }

/* Treatment page body sections */
.treat-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 767px) { .treat-detail-grid { grid-template-columns: 1fr; gap: 40px; } }

.treat-steps { list-style: none; counter-reset: steps; }
.treat-step {
  counter-increment: steps;
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.treat-step:last-child { border-bottom: none; }
.treat-step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--h); font-size: 1.4rem; font-weight: 700;
  color: var(--accent); opacity: 0.4; flex-shrink: 0;
  width: 40px; line-height: 1.2;
}
.treat-step-title {
  font-family: var(--h); font-size: 1rem; font-weight: 600;
  margin-bottom: 6px;
}
.treat-step-desc { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

.treat-benefits-list { list-style: none; }
.treat-benefit {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.treat-benefit:last-child { border-bottom: none; }
.treat-benefit::before {
  content: ''; flex-shrink: 0; width: 20px; height: 20px;
  margin-top: 2px; border-radius: 50%;
  background: var(--accent-light);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l4 4 6-7' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}
.treat-benefit-text { font-size: 0.92rem; color: var(--text2); line-height: 1.6; }
.treat-benefit-text strong { color: var(--text); font-weight: 600; }

/* =========== PRICES REDESIGN =========== */
.price-intro {
  max-width: 640px; margin: 0 auto 64px;
  text-align: center;
}
.price-intro p { font-size: 1rem; color: var(--text2); line-height: 1.7; }

.price-cat-section { margin-bottom: 64px; }
.price-cat-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 2px solid var(--dark);
}
.price-cat-label {
  font-family: var(--h); font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.02em;
}
.price-cat-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px;
  background: var(--accent-light); color: var(--accent);
}
.price-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.price-card-name {
  font-family: var(--h); font-size: 1.05rem; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.01em;
}
.price-card-desc {
  font-size: 0.82rem; color: var(--muted); line-height: 1.5;
  flex: 1; margin-bottom: 16px;
}
.price-card-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.price-card-val {
  font-family: var(--h); font-size: 1.1rem; font-weight: 700; color: var(--dark);
}
.price-card-link {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.3s var(--ease);
}
.price-card-link:hover { gap: 8px; }
.price-card-link svg { width: 12px; height: 12px; }
.addon-time {
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
  letter-spacing: 0.02em;
}
.addon-price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0 48px;
}
.addon-price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.addon-price-name { font-size: 0.95rem; font-weight: 500; }
.addon-price-val {
  font-family: var(--h); font-size: 1rem; font-weight: 600;
  white-space: nowrap; color: var(--dark);
}
.addon-price-val .addon-time { font-family: var(--b); font-weight: 500; }

/* =========== STRUCTURED DATA (hidden) =========== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
