:root {
  --cream: #FAF6F0;
  --beige: #EFE6DA;
  --beige-deep: #E7DBC9;
  --gold: #C0A062;
  --gold-deep: #A9873F;
  --ink: #3D3A36;
  --ink-soft: #6B655D;
  --white: #FFFFFF;
  --rose: #E8D3CE;
  --shadow: 0 10px 30px rgba(61, 58, 54, 0.08);
  --shadow-lg: 0 20px 50px rgba(61, 58, 54, 0.12);
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, .serif { font-family: 'Playfair Display', serif; font-weight: 600; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 90px 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 3px; font-size: 0.72rem;
  color: var(--gold-deep); font-weight: 600; margin-bottom: 10px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); text-align: center; margin-bottom: 8px; }
.section-head { text-align: center; margin-bottom: 54px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  background: var(--gold); color: var(--white); border: none;
  padding: 14px 30px; border-radius: 50px; font-family: 'Poppins', sans-serif;
  font-weight: 500; font-size: 0.95rem; transition: all .25s ease;
  box-shadow: 0 8px 20px rgba(169, 135, 63, 0.25);
}
.btn:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(169, 135, 63, 0.35); }
.btn-ghost {
  background: transparent; color: var(--gold-deep); border: 1.5px solid var(--gold);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 240, 0.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192, 160, 98, 0.18);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: grid; place-items: center; color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700;
}
.logo-text { line-height: 1.1; }
.logo-text b { font-family: 'Playfair Display', serif; font-size: 1.15rem; display: block; }
.logo-text span { font-size: 0.68rem; letter-spacing: 2px; color: var(--ink-soft); text-transform: uppercase; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 0.92rem; font-weight: 400; color: var(--ink); transition: color .2s; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* HERO */
.hero { position: relative; padding: 70px 0 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 50px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.05; margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero p.lead { font-size: 1.08rem; color: var(--ink-soft); margin-bottom: 30px; max-width: 460px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo {
  position: relative; border-radius: 220px 220px 24px 24px; overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--beige-deep), var(--rose));
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.img-slot { width:100%; height:100%; display: grid; place-items: center; text-align: center; color: var(--ink-soft); font-size: 0.85rem; padding: 20px; }
.hero-badge {
  position: absolute; bottom: 22px; left: -18px; background: var(--white);
  padding: 14px 20px; border-radius: 14px; box-shadow: var(--shadow); font-size: 0.85rem;
}
.hero-badge b { color: var(--gold-deep); font-family: 'Playfair Display', serif; font-size: 1.4rem; display: block; }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); background: linear-gradient(160deg, var(--beige-deep), var(--rose)); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 6px 0 18px; }
.about p { color: var(--ink-soft); margin-bottom: 16px; }
.creds { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.creds li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.creds .dot { width: 26px; height: 26px; border-radius: 50%; background: var(--beige); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; font-size: 0.8rem; }

/* TREATMENTS (home preview) */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid rgba(192,160,98,0.12);
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--rose));
  display: grid; place-items: center; font-size: 2rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 20px; }

/* PROMO */
.promo { background: linear-gradient(120deg, var(--rose), var(--beige-deep)); }
.promo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.promo-badge { display: inline-block; background: var(--white); color: var(--gold-deep); font-weight: 600; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 14px; }
.promo h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.promo ul { list-style: none; display: grid; gap: 10px; }
.promo li { display: flex; gap: 10px; align-items: flex-start; }
.promo li::before { content: "✦"; color: var(--gold-deep); }
.promo-card { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); }
.promo-card h3 { color: var(--gold-deep); font-size: 1.4rem; margin-bottom: 8px; }
.promo-price { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--ink); margin: 10px 0; }
.promo-price small { font-size: 1rem; color: var(--ink-soft); text-decoration: line-through; }

/* RESULTS */
.results { background: var(--white); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ba { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; }
.ba-imgs div { aspect-ratio: 1; background: linear-gradient(160deg, var(--beige-deep), var(--rose)); display: grid; place-items: center; font-size: 0.7rem; color: var(--ink-soft); }
.ba-imgs div:first-child { border-right: 2px solid var(--white); }
.ba p { text-align: center; padding: 12px; font-size: 0.9rem; font-weight: 500; }

/* RESULT GALLERY (branded before/after art) */
.result-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-item {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); cursor: pointer;
  background: var(--cream); transition: transform .28s ease, box-shadow .28s ease;
}
.result-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.result-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(30, 27, 24, 0.9);
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 92%; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox .close { position: absolute; top: 22px; right: 30px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }
@media (max-width: 900px) { .result-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .result-gallery { grid-template-columns: 1fr; } }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testi p { font-style: italic; color: var(--ink-soft); margin-bottom: 16px; }
.testi b { font-size: 0.9rem; }

/* LOCATION */
.location { background: var(--beige); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.loc-info h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 18px; }
.loc-detail { display: flex; gap: 14px; margin-bottom: 18px; }
.loc-detail .ic { width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--gold-deep); display: grid; place-items: center; flex-shrink: 0; }
.loc-detail b { display: block; }
.loc-detail span { color: var(--ink-soft); font-size: 0.92rem; }
.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* FOOTER */
footer { background: var(--ink); color: #D8D2C8; padding: 60px 0 26px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.foot-brand .logo-mark { background: linear-gradient(135deg, var(--gold), var(--rose)); }
.foot-brand .logo-text b, .foot-brand p { color: var(--cream); }
.foot-brand p { margin-top: 14px; font-size: 0.9rem; color: #A9A296; max-width: 280px; }
footer h4 { color: var(--white); font-family: 'Playfair Display', serif; margin-bottom: 18px; font-size: 1.1rem; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a, footer ul li { font-size: 0.9rem; color: #A9A296; transition: color .2s; }
footer ul a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; transition: background .2s; }
.socials a:hover { background: var(--gold); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; font-size: 0.82rem; color: #8A857B; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .2s; animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); } 50% { box-shadow: 0 8px 34px rgba(37,211,102,0.7); } }

/* ===== TREATMENTS PAGE ===== */
.treat-hero { background: linear-gradient(160deg, var(--beige), var(--cream)); padding: 70px 0 50px; text-align: center; }
.treat-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.treat-hero p { color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.filter-tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin: 34px 0 0; }
.filter-tabs button {
  border: 1.5px solid var(--gold); background: transparent; color: var(--gold-deep);
  padding: 9px 24px; border-radius: 50px; cursor: pointer; font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 500; transition: all .2s;
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--gold); color: var(--white); }
.treat-cat-title { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 56px 0 30px; color: var(--ink); }
.treat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.treat-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 24px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(192,160,98,0.12);
  transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column;
}
.treat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.treat-card .t-icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(135deg, var(--beige), var(--rose)); display: grid; place-items: center; font-size: 1.6rem; }
.treat-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.treat-card p { color: var(--ink-soft); font-size: 0.86rem; margin-bottom: 18px; flex: 1; }
.treat-card .consult { margin-top: auto; font-size: 0.85rem; padding: 10px 20px; }
.cta-band { background: linear-gradient(120deg, var(--gold), var(--gold-deep)); text-align: center; padding: 54px 0; color: var(--white); }
.cta-band h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 20px; color: var(--white); }
.cta-band .btn { background: var(--white); color: var(--gold-deep); }
.cta-band .btn:hover { background: var(--ink); color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .promo-inner, .loc-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 380px; margin: 0 auto; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .cards, .testi-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 20px 6%; gap: 18px; box-shadow: var(--shadow);
  }
  .section { padding: 64px 0; }
}
@media (max-width: 540px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; }
}
