/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --plum:       #2D1A2E;
  --plum-deep:  #1f1120;
  --plum-soft:  #3D2440;
  --gold:       #C19A5B;
  --gold-deep:  #A07E3F;
  --rose:       #B76E79;
  --rose-soft:  #d99aa4;
  --blush:      #F2D7DD;
  --blush-soft: #F8E9ED;
  --cream:      #FBF6F4;
  --ink:        #3a2b33;
  --muted:      #715c66;
  --line:       #ecdce1;
  --white:      #ffffff;
  --wa:         #25D366;
  --star:       #f5b50a;
  --font-script:'Great Vibes', cursive;
  --font-aniyah:'Aniyah Personal Use', 'Great Vibes', cursive;
  --font-head:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:  'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease:       0.3s ease;
  --radius:     14px;
  --max-w:      1140px;
  --nav-h:      70px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--blush); color: var(--plum); }

/* ── UTILITIES ──────────────────────────────────────────────── */
.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;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
.section { padding: 84px 0; }
.section.alt { background: var(--blush-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 10px;
  opacity: .7;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(30px, 5vw, 46px);
  color: var(--plum);
  line-height: 1.1;
  letter-spacing: .3px;
}
.section-title em { font-family: var(--font-script); font-style: normal; color: var(--rose); font-weight: 400; }
.section-desc {
  font-size: 17px;
  color: var(--muted);
  margin-top: 14px;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; will-change: auto; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 30px; border-radius: 40px;
  transition: var(--ease);
}
.btn-primary { background: var(--plum); color: var(--cream); }
.btn-primary:hover { background: var(--plum-soft); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--plum); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { filter: brightness(.94); transform: translateY(-2px); }

/* ── NAV ────────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(251, 246, 244, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}
#nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(45,26,46,0.05); }
.nav-container {
  max-width: var(--max-w); height: 100%; margin: 0 auto;
  padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  font-family: var(--font-aniyah);
  font-size: 26px; color: var(--plum); line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 14px; letter-spacing: .6px; color: var(--muted);
  position: relative; transition: var(--ease);
}
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1.5px; background: var(--gold); transition: var(--ease);
}
.nav-links a:not(.nav-cta):hover,
.nav-links a.active { color: var(--plum); }
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--plum); color: var(--cream) !important;
  padding: 9px 20px; border-radius: 40px; letter-spacing: 1px;
}
.nav-cta:hover { background: var(--plum-soft); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 30px; height: 24px; justify-content: center;
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%; background: var(--plum);
  border-radius: 2px; transition: var(--ease);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: min(90vh, 780px);
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center; padding: 0 22px 56px;
  background: var(--blush) url('../images/hero.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(31,17,32,0) 28%, rgba(31,17,32,0.32) 60%, rgba(31,17,32,0.70) 100%);
}
.hero-content { position: relative; max-width: 720px; }
.hero-title {
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(28px, 4.8vw, 44px); color: #fff;
  line-height: 1.12; margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(31,17,32,0.55);
}
.hero-title em { font-family: var(--font-script); font-style: normal; color: var(--blush); }
.hero-sub {
  font-size: clamp(15px, 2.4vw, 18px); color: rgba(255,255,255,0.94);
  max-width: 580px; margin: 0 auto 28px;
  text-shadow: 0 1px 12px rgba(31,17,32,0.5);
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline { color: #fff; border-color: rgba(255,255,255,0.65); }
.hero .btn-outline:hover { background: #fff; color: var(--plum); border-color: #fff; }

/* ── TREATMENTS / FAQ ACCORDION ─────────────────────────────── */
.accordion { max-width: 820px; margin: 0 auto; }
details.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--ease);
}
details.acc-item[open] { border-color: var(--gold); box-shadow: 0 10px 30px rgba(45,26,46,0.06); }
.acc-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-head); font-weight: 500;
  font-size: 21px; color: var(--plum);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-icon {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush-soft); color: var(--gold-deep);
}
.acc-icon svg { width: 22px; height: 22px; }
.acc-title { flex: 1; }
.acc-toggle {
  flex: 0 0 auto; width: 26px; height: 26px; position: relative;
}
.acc-toggle::before, .acc-toggle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--gold-deep); transition: var(--ease);
}
.acc-toggle::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.acc-toggle::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
details[open] .acc-toggle::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.acc-body {
  padding: 0 24px 24px 80px;
  color: var(--muted); font-size: 16px; line-height: 1.75;
}
.acc-body p + p { margin-top: 10px; }
.acc-body a { color: var(--gold-deep); border-bottom: 1px solid var(--blush); }
.acc-body a:hover { color: var(--rose); }
.acc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.acc-tag {
  font-size: 12px; letter-spacing: .5px; padding: 5px 12px;
  background: var(--blush-soft); color: var(--plum-soft); border-radius: 30px;
}
.acc-list { list-style: none; margin-top: 6px; display: grid; gap: 11px; }
.acc-list li { position: relative; padding-left: 26px; font-size: 16px; color: var(--ink); line-height: 1.5; }
.acc-list li::before {
  content: ''; position: absolute; left: 4px; top: 3px;
  width: 5px; height: 9px; border: solid var(--gold);
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
@media (max-width: 560px) {
  .acc-item summary { font-size: 18px; padding: 18px; gap: 12px; }
  .acc-body { padding: 0 18px 20px 18px; }
}

/* ── ABOUT (Sobre Marietta) ─────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 56px; align-items: center; max-width: var(--max-w); margin: 0 auto;
}
.about-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; background: var(--blush);
  border: 1px solid var(--line);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-ph {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  color: var(--gold-deep); text-align: center; padding: 20px;
}
.about-photo-ph svg { width: 64px; height: 64px; opacity: .8; }
.about-photo-ph span { font-size: 13px; letter-spacing: 1px; }
.about-text p { color: var(--muted); font-size: 17px; margin-bottom: 16px; }
.about-text p strong { color: var(--plum); font-weight: 400; }
.about-name {
  font-family: var(--font-script); font-size: 44px; color: var(--rose);
  line-height: 1; margin-bottom: 4px;
}
.about-role {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 24px;
}
.about-sign { font-family: var(--font-script); font-size: 34px; color: var(--plum); margin-top: 8px; }

/* ── SEALS / FEATURES ───────────────────────────────────────── */
.seals-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: var(--max-w); margin: 56px auto 0;
}
.seal-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 20px; text-align: center;
  transition: var(--ease);
}
.seal-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 14px 34px rgba(45,26,46,0.06); }
.seal-icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--blush-soft);
  color: var(--gold-deep);
}
.seal-icon svg { width: 34px; height: 34px; }
.seal-num { font-family: var(--font-head); font-weight: 600; font-size: 38px; color: var(--rose); line-height: 1; display: block; }
.seal-title { display: block; font-family: var(--font-head); font-size: 20px; color: var(--plum); margin-bottom: 6px; line-height: 1.2; }
.seal-text { display: block; font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ── REVIEWS MARQUEE ────────────────────────────────────────── */
.reviews-head { text-align: center; margin-bottom: 14px; }
.reviews-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 10px; font-size: 15px; color: var(--muted);
}
.reviews-rating strong { font-family: var(--font-head); font-size: 26px; color: var(--plum); font-weight: 600; }
.gmaps-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }
.gmaps-badge svg { width: 16px; height: 16px; }
.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 16px; height: 16px; }
.reviews-marquee {
  margin-top: 40px; position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  overflow: hidden;
}
.reviews-track { display: flex; gap: 20px; width: max-content; animation: marquee 46s linear infinite; }
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 340px; width: 340px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 26px 22px;
  display: flex; flex-direction: column;
}
.review-card .stars { margin-bottom: 12px; }
.review-card .review-text { flex: 1; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.reviews-cta {
  display: inline-block; margin-top: 16px;
  font-size: 13px; letter-spacing: 1px; color: var(--gold-deep);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px; transition: var(--ease);
}
.reviews-cta:hover { color: var(--rose); border-color: var(--rose); }
.review-text { font-size: 15.5px; color: var(--ink); line-height: 1.7; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: var(--blush); color: var(--plum); font-weight: 400; font-size: 16px;
  font-family: var(--font-head);
}
.review-meta .name { font-size: 15px; color: var(--plum); }
.review-meta .src { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 4px; }
.review-meta .src svg { width: 13px; height: 13px; }
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; flex-wrap: nowrap; overflow-x: auto; }
}

/* ── CONTACT / TURNOS ───────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  max-width: var(--max-w); margin: 0 auto; align-items: stretch;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-row .ic {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush-soft); color: var(--gold-deep);
}
.contact-row .ic svg { width: 22px; height: 22px; }
.contact-row .lbl { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-deep); }
.contact-row .val { font-size: 17px; color: var(--plum); }
.contact-row .val a:hover { color: var(--rose); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.contact-map {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  min-height: 320px; background: var(--blush-soft);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--plum-deep); color: var(--blush);
  text-align: center; padding: 64px 22px 40px;
}
.footer-brand { font-family: var(--font-aniyah); font-size: 52px; color: var(--white); line-height: 1; margin-bottom: 6px; }
.footer-tagline { font-size: 11px; letter-spacing: 6px; text-transform: uppercase; color: var(--gold); margin-bottom: 30px; }
.footer-nav { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.footer-nav a { font-size: 14px; color: var(--blush); opacity: .85; transition: var(--ease); }
.footer-nav a:hover { opacity: 1; color: var(--gold); }
.footer-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.social-icons { display: flex; gap: 14px; justify-content: center; margin-bottom: 30px; }
.social-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(193,154,91,0.4); color: var(--blush);
  transition: var(--ease);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--plum-deep); transform: translateY(-3px); }
.social-icon svg { width: 20px; height: 20px; }
.footer-copy { font-size: 13px; color: rgba(242,215,221,0.55); border-top: 1px solid rgba(193,154,91,0.18); padding-top: 26px; max-width: 720px; margin: 0 auto; }

/* ── FAB WHATSAPP ───────────────────────────────────────────── */
.fab-wa {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 8px 26px rgba(37,211,102,0.4);
  transition: var(--ease);
}
.fab-wa:hover { transform: scale(1.08); }
.fab-wa svg { width: 30px; height: 30px; }
.fab-tooltip {
  position: absolute; right: 70px; white-space: nowrap;
  background: var(--plum); color: var(--cream); font-size: 13px;
  padding: 7px 13px; border-radius: 8px; opacity: 0; pointer-events: none;
  transition: var(--ease);
}
.fab-wa:hover .fab-tooltip { opacity: 1; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .seals-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 0; transform: translateY(-130%);
    transition: transform 0.35s ease; box-shadow: 0 12px 30px rgba(45,26,46,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 24px; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin: 8px 24px; text-align: center; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .seals-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 280px; width: 280px; }
}
