/* ==========================================================================
   Dr. Humaira's Laser & Advanced Aesthetics — Design System
   Luxury med spa aesthetic: ivory, deep rose, champagne gold.
   ========================================================================== */

:root {
  /* Color tokens */
  --ink: #2c2226;
  --ink-soft: #5f5158;
  --ink-faint: #8a7b82;
  --cream: #faf6f1;
  --cream-deep: #f4ebe3;
  --white: #ffffff;
  --rose: #a34e68;
  --rose-deep: #7e3450;
  --rose-tint: #f7e9ee;
  --gold: #9a7b3c;
  --gold-bright: #c6a15b;
  --gold-soft: #e9d9c3;
  --night: #241a1f;
  --night-soft: #362a30;
  --whatsapp: #128c50;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Rhythm */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(44, 34, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(44, 34, 38, 0.1);
  --shadow-lg: 0 24px 60px rgba(44, 34, 38, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rose-deep);
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--night);
  color: #fff;
  padding: 0.75rem 1.25rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

section {
  position: relative;
}

.section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.section--tight {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--alt {
  background: var(--cream-deep);
}

.section--night {
  background: var(--night);
  color: #efe6ea;
}
.section--night h2,
.section--night h3 {
  color: #fdf8f3;
}

/* Eyebrow label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold-bright);
}
.eyebrow--center {
  justify-content: center;
}
.eyebrow--center::after {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold-bright);
}
.section--night .eyebrow {
  color: var(--gold-bright);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}
.section--night .section-head p {
  color: #cdbcc4;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.8rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s, color 0.22s, border-color 0.22s;
  touch-action: manipulation;
}
.btn svg {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--rose-deep);
  color: #fff;
  box-shadow: 0 8px 22px rgba(126, 52, 80, 0.32);
}
.btn--primary:hover {
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(126, 52, 80, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(44, 34, 38, 0.28);
}
.btn--ghost:hover {
  border-color: var(--rose-deep);
  color: var(--rose-deep);
}

.btn--light {
  background: #fff;
  color: var(--rose-deep);
  box-shadow: var(--shadow-sm);
}
.btn--light:hover {
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: linear-gradient(120deg, var(--gold-bright), #b08a45);
  color: var(--night);
  font-weight: 600;
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 22px rgba(18, 140, 80, 0.3);
}
.btn--whatsapp:hover {
  background: #0f7a45;
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1.08rem;
}

/* ---------- Announcement bar ---------- */
.promo-bar {
  background: linear-gradient(100deg, var(--night) 0%, #4a2436 55%, var(--rose-deep) 100%);
  color: #f6ecdd;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
}
.promo-bar a {
  color: var(--gold-bright);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 0.4rem;
}
.promo-bar strong {
  color: #fff;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(44, 34, 38, 0.07);
  transition: box-shadow 0.25s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.7rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--ink);
  white-space: nowrap;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.site-nav a.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0;
}
.site-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--rose-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.site-nav a.nav-link:hover::after,
.site-nav a.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}
.site-nav a.nav-link[aria-current="page"] {
  color: var(--rose-deep);
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}
.header-phone svg {
  width: 1.05em;
  height: 1.05em;
  color: var(--rose-deep);
}
.site-nav .btn {
  min-height: 44px;
  padding: 0.6rem 1.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  color: var(--ink);
  padding: 10px;
}
.nav-toggle svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1023px) {
  /* backdrop-filter would make the header the containing block for the
     fixed full-screen menu below — use a solid background on mobile instead */
  .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--cream);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }
  .site-nav.open {
    opacity: 1;
    visibility: visible;
  }
  .site-nav a.nav-link {
    font-size: 1.35rem;
  }
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }
  .brand__name { font-size: 1.15rem; }
  .brand__name span.brand__full { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88svh, 820px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(24, 14, 19, 0.82) 0%, rgba(36, 20, 28, 0.55) 48%, rgba(36, 20, 28, 0.18) 100%);
  z-index: -1;
}
.hero__content {
  padding: clamp(5rem, 10vw, 8rem) 0;
  max-width: 640px;
}
.hero .eyebrow {
  color: var(--gold-bright);
}
.hero h1 {
  color: #fff;
  margin-bottom: 0.5em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.hero__lede {
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
  color: rgba(255, 245, 238, 0.92);
  max-width: 54ch;
  margin-bottom: 2rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}
.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.2rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: rgba(255, 245, 238, 0.85);
}
.hero__proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__proof svg {
  width: 1.1em;
  height: 1.1em;
  color: var(--gold-bright);
}

/* Page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(198, 161, 91, 0.18), transparent 60%),
    linear-gradient(160deg, var(--cream-deep), var(--cream));
  border-bottom: 1px solid rgba(154, 123, 60, 0.16);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  text-align: center;
}
.page-hero p {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--night);
  color: #e9dcd2;
}
.trust-bar__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem 2rem;
  padding: 1.4rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}

.card {
  background: var(--white);
  border: 1px solid rgba(154, 123, 60, 0.14);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 78, 104, 0.35);
}
.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--rose-tint);
  color: var(--rose-deep);
  margin-bottom: 0.4rem;
}
.card__icon svg {
  width: 26px;
  height: 26px;
}
.card h3 {
  margin-bottom: 0.15em;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}
.card .card__link {
  margin-top: auto;
  padding-top: 0.8rem;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card .card__link svg {
  width: 1em;
  height: 1em;
  transition: transform 0.25s var(--ease);
}
.card:hover .card__link svg {
  transform: translateX(4px);
}

/* Service category card w/ image */
.svc-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 0.6s var(--ease);
}
.svc-card:hover img {
  transform: scale(1.06);
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 14, 19, 0) 30%, rgba(24, 14, 19, 0.85) 100%);
  z-index: -1;
}
.svc-card__body {
  padding: 1.6rem;
}
.svc-card__body h3 {
  color: #fff;
  margin-bottom: 0.2em;
}
.svc-card__body p {
  color: rgba(255, 245, 238, 0.85);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

/* ---------- Promo cards ---------- */
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--night) 0%, #55283c 60%, var(--rose-deep) 100%);
  color: #f8eee4;
  padding: clamp(2rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
}
.promo-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.4);
}
.promo-card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(198, 161, 91, 0.25);
}
.promo-card__badge {
  display: inline-block;
  background: var(--gold-bright);
  color: var(--night);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.promo-card h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.promo-card p {
  color: #e8d5cd;
  max-width: 52ch;
}
.promo-card .btn {
  margin-top: 0.8rem;
}

/* ---------- Treatments page ---------- */
.treat-nav {
  position: sticky;
  top: 76px;
  overflow: hidden; /* keeps the edge fades/chevrons from extending the page width */
  z-index: 60;
  background: rgba(250, 246, 241, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 123, 60, 0.16);
  padding: 0.7rem 0;
}
/* Edge fades + chevron so the chip strip reads as swipeable.
   Anchored to the sticky nav (NOT the .container, which is the scroller itself). */
.treat-nav::before,
.treat-nav::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3.2rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 1;
}
.treat-nav::before {
  content: "\2039";
  left: 0;
  background: linear-gradient(to right, var(--cream) 15%, rgba(250, 246, 241, 0));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0.4rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--rose-deep);
  animation: chipNudgeLeft 1.8s var(--ease) infinite;
}
.treat-nav::after {
  content: "\203A";
  right: 0;
  background: linear-gradient(to left, var(--cream) 15%, rgba(250, 246, 241, 0));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.4rem;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--rose-deep);
  animation: chipNudge 1.8s var(--ease) infinite;
}
.treat-nav.can-left::before {
  opacity: 1;
}
.treat-nav.can-right::after {
  opacity: 1;
}
/* Both chevrons nudge inward from the edge — never past it, or the page
   itself gains a few pixels of horizontal scroll on every animation cycle. */
@keyframes chipNudge {
  0%, 100% { transform: translateX(-4px); }
  50% { transform: translateX(0); }
}
@keyframes chipNudgeLeft {
  0%, 100% { transform: translateX(4px); }
  50% { transform: translateX(0); }
}
.treat-nav__inner {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.treat-nav__inner::-webkit-scrollbar {
  display: none;
}
.chip {
  flex-shrink: 0;
  padding: 0.5rem 1.15rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(44, 34, 38, 0.18);
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.chip:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}
.chip.active {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
}

.treat-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid rgba(44, 34, 38, 0.16);
  border-radius: 999px;
  padding: 0.35rem 0.5rem 0.35rem 1.2rem;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.treat-search svg {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.treat-search input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  min-height: 44px;
  outline: none;
  min-width: 0;
}

.treat-section {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  scroll-margin-top: 56px; /* adds to html scroll-padding (100px) to clear header + chip bar */
}

/* Price menu items (each links to its Setmore booking page) */
.menu-grid {
  display: grid;
  gap: 0.9rem;
  /* min() keeps the track from exceeding the container on 320px phones */
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border: 1px solid rgba(154, 123, 60, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.2rem;
  min-height: 64px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(163, 78, 104, 0.4);
}
.menu-item__name {
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.3;
}
.menu-item__dur {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  margin-top: 0.15rem;
}
.menu-item__desc {
  display: block;
  font-weight: 400;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}
/* On devices with a real cursor, tuck the description away until hover/focus */
@media (hover: hover) and (pointer: fine) {
  .menu-item__desc {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), opacity 0.3s, margin-top 0.3s var(--ease);
  }
  .menu-item:hover .menu-item__desc,
  .menu-item:focus-visible .menu-item__desc {
    max-height: 5em;
    opacity: 1;
    margin-top: 0.35rem;
  }
}
.menu-item__right {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rose-deep);
  white-space: nowrap;
}
.menu-item__price--free {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-item__go {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-tint);
  color: var(--rose-deep);
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}
.menu-item__go svg {
  width: 16px;
  height: 16px;
}
.menu-item:hover .menu-item__go {
  background: var(--rose-deep);
  color: #fff;
  transform: translateX(2px);
}
.treat-note {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin-top: 1.2rem;
}
.treat-section + .treat-section {
  border-top: 1px solid rgba(154, 123, 60, 0.14);
}
.treat-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  margin-bottom: 1.6rem;
}
.treat-section__head p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.no-results {
  text-align: center;
  color: var(--ink-soft);
  padding: 3rem 1rem;
  display: none;
}

/* ---------- Stats / numbers ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--rose-deep);
  line-height: 1;
}
.section--night .stat b {
  color: var(--gold-bright);
}
.stat span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section--night .stat span {
  color: #cdbcc4;
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--wide-text {
    grid-template-columns: 1.15fr 0.85fr;
  }
}
.split__media {
  position: relative;
}
.split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}
.split__media--frame::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--gold-bright);
  border-radius: var(--radius);
  z-index: -1;
}
.split__media--stack {
  display: grid;
  gap: 1.2rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.8rem;
  display: grid;
  gap: 0.85rem;
}
.checklist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.checklist svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.checklist b {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.t-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  align-items: start;
}
.t-card {
  margin: 0;
  position: relative;
  background: var(--white);
  border: 1px solid rgba(154, 123, 60, 0.16);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.t-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.t-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.4rem;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold-soft);
  pointer-events: none;
}
.t-card__stars {
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 0.18em;
}
.t-card__text {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
  padding: 0;
  flex: 1;
}
.t-card__who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid rgba(154, 123, 60, 0.14);
  padding-top: 1rem;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose-tint);
  color: var(--rose-deep);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.t-card__who b {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.2;
}
.t-card__who > span:not(.t-avatar) {
  display: block;
}
.t-card__who > span:not(.t-avatar) > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
}
.t-card__who svg {
  width: 0.85rem;
  height: 0.85rem;
}

/* ---------- Editorial service index (home) ---------- */
.svc-index {
  border-top: 1px solid rgba(154, 123, 60, 0.25);
}
.svc-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.7rem 0.8rem;
  border-bottom: 1px solid rgba(154, 123, 60, 0.25);
  transition: background 0.3s, padding 0.3s var(--ease);
}
.svc-row:hover {
  background: linear-gradient(90deg, rgba(163, 78, 104, 0.05), transparent 70%);
  padding-left: 1.2rem;
}
.svc-row__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}
.svc-row h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0;
  transition: color 0.25s;
}
.svc-row:hover h3 {
  color: var(--rose-deep);
}
.svc-row__body p {
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 56ch;
}
.svc-row__price {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.svc-row__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(44, 34, 38, 0.2);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.3s var(--ease);
}
.svc-row__arrow svg {
  width: 18px;
  height: 18px;
}
.svc-row:hover .svc-row__arrow {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  transform: translateX(4px);
}
@media (max-width: 700px) {
  .svc-row {
    grid-template-columns: 1fr auto;
    gap: 0.4rem 1rem;
  }
  .svc-row__num {
    display: none;
  }
  .svc-row__body {
    grid-column: 1;
  }
  .svc-row__price {
    grid-column: 1;
    order: 3;
  }
  .svc-row__arrow {
    grid-row: 1 / span 2;
    grid-column: 2;
  }
}

/* ---------- Reviews (legacy carousel) ---------- */
.reviews-carousel {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  overflow: hidden;
}
.reviews-carousel__track {
  display: flex;
  transition: transform 0.7s var(--ease);
}
.reviews-carousel__slide {
  min-width: 100%;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}
.reviews-carousel__slide img {
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  background: #fff;
  border: 1px solid rgba(154, 123, 60, 0.2);
  width: 100%;
  max-width: 760px;
  object-fit: contain;
}
.reviews-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}
.reviews-carousel__dots button {
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.reviews-carousel__dots button::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(126, 52, 80, 0.25);
  transition: background 0.2s, transform 0.2s;
}
.reviews-carousel__dots button.active::after {
  background: var(--rose-deep);
  transform: scale(1.3);
}
.rating-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--ink);
}
.rating-line .stars {
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  font-size: 1.05rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq details {
  background: #fff;
  border: 1px solid rgba(154, 123, 60, 0.16);
  border-radius: var(--radius-sm);
  margin-bottom: 0.9rem;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.faq details[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(163, 78, 104, 0.3);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 3.2rem 1.1rem 1.4rem;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  min-height: 48px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rose-deep);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq .faq__body {
  padding: 0 1.4rem 1.2rem;
  color: var(--ink-soft);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.contact-card {
  background: #fff;
  border: 1px solid rgba(154, 123, 60, 0.16);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--rose-tint);
  color: var(--rose-deep);
  margin-bottom: 0.5rem;
}
.contact-card__icon svg {
  width: 26px;
  height: 26px;
}
.contact-card--whatsapp .contact-card__icon {
  background: #e4f6ec;
  color: var(--whatsapp);
}
.contact-card h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0;
}
.contact-card a.contact-card__value {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-card a.contact-card__value:hover {
  color: var(--rose-deep);
}
.contact-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.map-frame {
  border: 0;
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: block;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.hours-table td {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(154, 123, 60, 0.14);
  color: var(--ink-soft);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(900px 300px at 15% 0%, rgba(198, 161, 91, 0.15), transparent 60%),
    var(--night);
  color: #f3e9e0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  color: #cdbcc4;
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: #cdbcc4;
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  font-size: 0.95rem;
}
.site-footer a {
  color: #e6d8de;
}
.site-footer a:hover {
  color: var(--gold-bright);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(230, 216, 222, 0.14);
}
.footer-brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-brand b {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.6rem;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.1rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.footer-contact svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 1.2rem;
}
.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(230, 216, 222, 0.25);
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold-bright);
  background: rgba(198, 161, 91, 0.12);
}
.footer-social svg {
  width: 1.2rem;
  height: 1.2rem;
}
.footer-bottom {
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: #9d8b93;
}

/* ---------- Floating actions ---------- */
.fab-stack {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}
.fab-whatsapp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(18, 140, 80, 0.4);
  transition: transform 0.25s var(--ease);
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.05);
}
.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* Mobile sticky CTA bar */
.mobile-cta {
  display: none;
}
@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }
  .fab-stack {
    bottom: 84px;
  }
  .mobile-cta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 85;
    background: rgba(36, 26, 31, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.6rem calc(0.5rem + env(safe-area-inset-bottom));
    gap: 0.5rem;
  }
  .mobile-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #efe2d8;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.2rem;
    border-radius: 10px;
    min-height: 52px;
    justify-content: center;
  }
  .mobile-cta a svg {
    width: 1.3rem;
    height: 1.3rem;
  }
  .mobile-cta a.mobile-cta__book {
    background: var(--rose-deep);
    color: #fff;
  }
  .mobile-cta a.mobile-cta__wa svg {
    color: #4ade80;
  }
}

/* ---------- Booking modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(24, 14, 19, 0.65);
  backdrop-filter: blur(4px);
  padding: 1rem;
}
.modal.open {
  display: flex;
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  width: min(560px, 94vw);
  height: min(760px, 86svh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.modal__close svg {
  width: 20px;
  height: 20px;
}
.modal__frame {
  flex: 1;
}
.modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal--left {
  transform: translateX(-30px);
}
.reveal--right {
  transform: translateX(30px);
}
/* Below 1240px the container has less than 30px of side margin, so a
   horizontal reveal would sit past the viewport edge and allow the page
   to pan sideways. Fall back to the vertical reveal there. */
@media (max-width: 1239px) {
  .reveal.reveal--left,
  .reveal.reveal--right {
    transform: translateY(26px);
  }
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.4s; }
.d6 { transition-delay: 0.48s; }

/* Hero load-in */
.hero .rise {
  animation: heroRise 0.9s var(--ease) both;
}
.hero .rise:nth-child(2) { animation-delay: 0.12s; }
.hero .rise:nth-child(3) { animation-delay: 0.24s; }
.hero .rise:nth-child(4) { animation-delay: 0.36s; }
.hero .rise:nth-child(5) { animation-delay: 0.48s; }
@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero .rise {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
