/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary -- Softer, more muted purple palette */
  --color-primary: #6B4C7C;
  --color-primary-dark: #4A3358;
  --color-primary-light: #F5F0F8;
  --color-primary-muted: #9B7FAD;

  /* Accent -- Warm gold, refined */
  --color-accent: #B89B5E;
  --color-accent-light: #F7F1E4;

  /* Neutrals -- Warm, not sterile */
  --color-bg: #FAFAF8;
  --color-bg-alt: #F4F1EE;
  --color-text: #2C2C2C;
  --color-text-secondary: #7A7A7A;
  --color-text-light: #A0A0A0;
  --color-border: #E8E4E0;
  --color-surface: #FFFFFF;

  /* Spacing -- More generous */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-section: 7rem;

  /* Radius -- Subtle */
  --radius: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows -- Very soft */
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);

  --transition: 0.35s ease;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--space-section) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Decorative divider */
.section__divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
  margin: var(--space-md) auto var(--space-lg);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius);
}
.btn--primary:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: #fff;
  color: var(--color-primary-dark);
  border-radius: var(--radius);
  border: 2px solid #fff;
}
.btn--whatsapp:hover {
  background: var(--color-accent-light);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary-dark);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.btn--ghost:hover {
  border-color: var(--color-primary-muted);
  color: var(--color-primary);
}

/* ========== HEADER ========== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header--scrolled {
  position: fixed;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 0.75rem 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.header--scrolled .header__logo {
  color: var(--color-primary-dark);
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}

.nav__link:hover {
  color: #fff;
}

.header--scrolled .nav__link {
  color: var(--color-text-secondary);
}
.header--scrolled .nav__link:hover {
  color: var(--color-primary-dark);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all var(--transition);
}
.header--scrolled .burger span {
  background: var(--color-text);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  display: flex;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.hero__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5% 3rem 8%;
  background: var(--color-bg);
  position: relative;
  z-index: 1;
}

.hero__location {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: var(--color-primary);
  font-weight: 500;
}

.hero__subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__btn-book {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-full);
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  border: none;
}
.hero__btn-book:hover {
  background: var(--color-primary);
  box-shadow: 0 6px 24px rgba(74,51,88,0.3);
}

.hero__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.hero__link:hover { color: var(--color-primary); }

.hero__badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero__card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-primary-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  max-width: fit-content;
}

.hero__card-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
}

.hero__card-text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  max-width: 120px;
}

.hero__right {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.hero__right picture,
.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero__right-badge {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

.hero__right-badge span:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.hero__right-badge span:last-child {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  letter-spacing: 0.04em;
}

/* ========== ABOUT ========== */
.about__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image picture {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: auto;
}

.about__text .section__title {
  margin-bottom: var(--space-md);
}

.about__text p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.about__text .btn {
  margin-top: var(--space-md);
}

/* ========== TREATMENTS ========== */
.treatments__category {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
}

.treatments__category::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 0.75rem auto 0;
}

.treatments__category:first-of-type {
  margin-top: var(--space-sm);
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.treatment-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  border-top: 3px solid var(--color-accent);
}
.treatment-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.treatment-card__badge {
  position: absolute;
  top: calc(var(--space-sm) * -1 - 3px);
  right: var(--space-sm);
  padding: 0.3rem 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.treatment-card__icon {
  display: none;
}

.treatment-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  margin-bottom: var(--space-xs);
  line-height: 1.3;
}

.treatment-card__desc {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

/* Treatment prices dropdown */
.treatment-card__prices {
  border-top: 1px solid var(--color-border);
  margin-top: auto;
}

.treatment-card__prices summary {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  padding: 0.75rem 0 0.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.treatment-card__prices summary::before {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-accent);
  transition: transform var(--transition);
}

.treatment-card__prices[open] summary::before {
  content: '\2212';
}

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

.treatment-card__prices ul {
  padding: var(--space-xs) 0 var(--space-xs);
}

.treatment-card__prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  font-size: 0.82rem;
  gap: 0.75rem;
}
.treatment-card__prices li:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.treatment-card__prices li span:first-child {
  color: var(--color-text-secondary);
  flex: 1;
}
.treatment-card__prices li span:last-child {
  font-weight: 600;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

/* ========== GALLERY ========== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.gallery__item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.04);
}

/* ========== CREDENTIALS ========== */
.credentials__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.credentials__text .section__title {
  margin-bottom: var(--space-md);
}

.credentials__text p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.credentials__list {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: 0;
}

.credentials__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.credentials__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 1px;
  background: var(--color-accent);
}

.credentials__list li strong {
  color: var(--color-text);
  font-weight: 500;
}

.credentials__images {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.credentials__images picture {
  overflow: hidden;
}
.credentials__images img {
  width: 100%;
  height: auto;
}

/* ========== GIFT VOUCHERS ========== */
.vouchers {
  background: linear-gradient(135deg, #3D1449 0%, #5E1F6E 100%);
  color: #fff;
}

.vouchers__inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

.vouchers__icon {
  font-size: 3rem;
  line-height: 1;
}

.vouchers__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #fff;
}

.vouchers__subtitle {
  font-size: 1.1rem;
  color: var(--color-accent-light);
  font-style: italic;
  margin-top: -0.5rem;
}

.vouchers__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
}

.vouchers__cta {
  margin-top: var(--space-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--color-primary-dark);
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
}

.vouchers__cta:hover {
  background: var(--color-accent-light);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}

/* ========== REVIEWS ========== */
.reviews {
  background: var(--color-bg-alt);
}

.reviews__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-secondary);
}

.reviews__rating {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}

.reviews__stars-inline {
  color: #F4B400;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.reviews__count {
  color: var(--color-text-secondary);
}

.reviews__masonry {
  columns: 3;
  column-gap: var(--space-md);
  margin-top: var(--space-xl);
}

.review__card {
  background: #fff;
  border-radius: var(--radius);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: var(--space-md);
  break-inside: avoid;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review__card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review__meta {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.review__author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

.review__date {
  font-size: 0.78rem;
  color: var(--color-text-secondary);
}

.review__google {
  flex-shrink: 0;
  opacity: 0.85;
}

.review__stars {
  color: #F4B400;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.review__text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.reviews__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.reviews__cta .btn {
  display: inline-flex;
  align-items: center;
}

/* ========== CONTACT ========== */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact__card--whatsapp {
  background: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
}
.contact__card--whatsapp:hover {
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.contact__card--info {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.contact__card svg {
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.7;
}

.contact__card--whatsapp svg {
  opacity: 1;
}

.contact__card div {
  display: flex;
  flex-direction: column;
}

.contact__card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact__card--info .contact__card-title {
  color: var(--color-primary-dark);
}

.contact__card-detail {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

.contact__card--whatsapp .contact__card-detail {
  color: rgba(255,255,255,0.8);
}

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* ========== FLOATING WHATSAPP ========== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}

.whatsapp-float:hover {
  background: #1ebe5d;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}

.whatsapp-float__label {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .whatsapp-float__label {
    display: none;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.5);
  padding: var(--space-md) 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.footer__links {
  display: flex;
  gap: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__links a:hover {
  color: rgba(255,255,255,0.8);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section__title { font-size: 2rem; }
  .hero__left { padding: 7rem 4% 5rem 5%; }
  .hero__right { flex: 0 0 44%; }
  .hero__title { font-size: clamp(2.2rem, 3.5vw, 3rem); }
}

@media (max-width: 1024px) {
  .reviews__masonry { columns: 2; }
}

@media (max-width: 768px) {
  :root {
    --space-section: 4.5rem;
  }

  .container { padding: 0 1.25rem; }

  /* Header mobile */
  .header__logo { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
  .header--scrolled .header__logo { color: var(--color-primary-dark); text-shadow: none; }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100svh;
    background: var(--color-surface);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }
  .header__nav.open { right: 0; }
  .header__nav .nav__link {
    color: var(--color-text);
    font-size: 0.85rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  .header__nav .nav__link:hover {
    color: var(--color-primary);
  }
  .burger { display: flex; }

  /* Mobile overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero mobile */
  .hero { flex-direction: column; height: 100svh; }
  .hero__left {
    order: 2;
    flex: 1;
    padding: 1.25rem 1.5rem 1rem;
    justify-content: center;
    gap: 0.6rem;
  }
  .hero__right {
    order: 1;
    flex: 0 0 40vh;
    min-height: 40vh;
    max-height: 40vh;
  }
  .hero__title { font-size: 2rem; margin-bottom: 0; }
  .hero__location { margin-bottom: 0; }
  .hero__subtitle { font-size: 0.88rem; margin-bottom: 0; line-height: 1.6; }
  .hero__cta { flex-direction: column; align-items: flex-start; gap: 0.5rem; margin-bottom: 0; }
  .hero__badges { gap: 0.5rem; }
  .hero__card { padding: 0.55rem 0.75rem; gap: 0.5rem; }
  .hero__card-num { font-size: 1.4rem; }
  .hero__card-text { font-size: 0.75rem; max-width: 80px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__right-badge { bottom: 1rem; left: 1rem; }

  /* About mobile */
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .about__image { max-width: 360px; margin: 0 auto; }

  /* Treatments mobile */
  .treatments__grid { grid-template-columns: 1fr; }

  /* Gallery mobile */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  /* Credentials mobile */
  .credentials__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  /* Reviews mobile */
  .reviews__masonry { columns: 1; }

  /* Contact mobile */
  .contact__layout { grid-template-columns: 1fr; }
  .contact__map { min-height: 280px; }
  .contact__map iframe { min-height: 280px; }

  /* Footer mobile */
  .footer__inner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.85rem; }
  .hero__right { flex: 0 0 45vh; min-height: 45vh; max-height: 45vh; }
  .section__title { font-size: 1.75rem; }
  .gallery__grid { grid-template-columns: 1fr; }
}
