/* ================================================================
   PLUM & SUGAR v2 — Unified Design System
   Cormorant Garamond · DM Sans · Plum · Champagne Gold · Blush
   ================================================================ */

:root {
  --plum:        #4A1942;
  --plum-2:      #6B3D62;
  --plum-soft:   #9E7A96;
  --gold:        #C9A96E;
  --gold-deep:   #A8854A;
  --gold-tint:   rgba(201,169,110,.12);
  --blush:       #F5EDE8;
  --blush-2:     #EEE0D8;
  --off-white:   #FAF7F4;
  --white:       #FFFFFF;
  --text:        #1A1A1A;
  --text-2:      #4A4040;
  --muted:       #7A7070;
  --line:        rgba(74,25,66,.1);
  --line-gold:   rgba(201,169,110,.3);
  --serif:       "Cormorant Garamond", Georgia, serif;
  --sans:        "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --maxw:        1260px;
  --gutter:      clamp(16px, 5vw, 72px);
  --nav-h:       88px;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow:      0 20px 56px -18px rgba(74,25,66,.22);
  --shadow-card: 0 6px 28px -6px rgba(74,25,66,.14);
  --ease:        cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--off-white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
::selection { background: var(--plum); color: #fff; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--plum);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.01em;
}
.h-display { font-size: clamp(48px, 7.5vw, 108px); line-height: .97; }
.h-xl      { font-size: clamp(34px, 5vw, 68px); }
.h-lg      { font-size: clamp(26px, 3.4vw, 46px); }
.h-md      { font-size: clamp(20px, 2.2vw, 30px); }
p { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: clamp(17px, 1.45vw, 20px); color: var(--text-2); line-height: 1.72; }
.muted { color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .75em;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold-deep); }
.eyebrow.no-line::before, .eyebrow.center::before { display: none; }
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

/* ── Layout ── */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-wide { max-width: 1440px; }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section.bg-blush  { background: var(--blush); }
.section.bg-plum   { background: var(--plum); }
.section.bg-white  { background: #fff; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split.r { direction: rtl; }
.split.r > * { direction: ltr; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 2.5vw, 28px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2.2vw, 24px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 1.8vw, 20px); }
.flex    { display: flex; flex-wrap: wrap; }
.gap-s   { gap: 10px; }
.gap-m   { gap: 18px; }
.mt-s    { margin-top: 14px; }
.mt-m    { margin-top: 24px; }
.mt-l    { margin-top: 40px; }
.center  { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-plum  { background: var(--plum); color: #fff; box-shadow: 0 6px 20px -6px rgba(74,25,66,.5); }
.btn-plum:hover  { box-shadow: 0 10px 28px -6px rgba(74,25,66,.58); }
.btn-gold  { background: var(--gold); color: var(--plum); box-shadow: 0 6px 20px -6px rgba(201,169,110,.4); }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-ghost:hover { background: var(--plum); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 17px 34px; font-size: 15px; }
@media (max-width:480px) { .btn-mob-full { width: 100%; justify-content: center; } }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(250,247,244,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px -8px rgba(74,25,66,.1); }
.nav-inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.logo { justify-self: start; }
.logo img { height: 54px; width: auto; display: block; }
.nav-inner > nav { justify-self: center; }
.nav-links { display: flex; align-items: stretch; gap: 4px; justify-content: center; }
.nav-links > li { display: flex; align-items: center; }
.nav-links > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--blush); color: var(--plum); }
.nav-cta { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 13px 28px; font-size: 14.5px; }

/* Locations mega (legacy) */
.has-locs { position: relative; }
.loc-tile {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background .2s;
  text-decoration: none;
}
.loc-tile:hover { background: var(--blush-2); }
.loc-tile h5 { font-family: var(--serif); font-size: 18px; color: var(--plum); margin: 0 0 4px; }
.loc-tile .lt-addr { font-size: 12px; color: var(--muted); line-height: 1.45; }
.loc-tile .lt-ph   { font-size: 12px; color: var(--plum-2); font-weight: 600; margin-top: 6px; }
.loc-tile .lt-cta  { font-size: 12px; font-weight: 700; color: var(--gold-deep); margin-top: 10px; letter-spacing: .02em; }

/* Nav toggle */
.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border: none; background: var(--blush);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  padding: 0;
  transition: background .2s;
}
.nav-toggle:hover { background: var(--blush-2); }
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--plum);
  z-index: 800;
  padding: calc(var(--nav-h) + 20px) var(--gutter) 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mm-link {
  font-family: var(--serif);
  font-size: clamp(28px, 7.5vw, 44px);
  color: rgba(255,255,255,.9);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color .2s, padding-left .2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mm-link:hover { color: var(--gold); padding-left: 8px; }
.mm-locs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.mm-loc {
  background: rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  transition: background .2s, transform .2s;
}
.mm-loc:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.mm-loc b { font-size: 16px; font-weight: 600; color: #fff; }
.mm-loc small { font-size: 12px; color: rgba(255,255,255,.55); }
.mm-book { margin-top: 28px; }
.mm-book .btn { width: 100%; justify-content: center; padding: 18px 22px; font-size: 16px; }
.mm-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mm-close:hover { background: rgba(255,255,255,.18); }

/* ── Cards ── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
  display: block;
  text-decoration: none;
}
.card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.card-thumb { aspect-ratio: 4/3; overflow: hidden; }
.card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-thumb img { transform: scale(1.05); }
.card-body { padding: 20px 22px; }
.card-cat { font-size: 10px; letter-spacing: .28em; font-weight: 700; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 6px; display: block; }
.card-body h4 { font-size: 20px; margin: 0 0 6px; }
.card-body p  { font-size: 14px; color: var(--text-2); margin: 0; line-height: 1.55; }

/* Info rows */
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.info-row:last-child { border-bottom: none; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--plum-2);
}
.info-row b { display: block; font-size: 13px; font-weight: 600; color: var(--plum); margin-bottom: 2px; }
.info-row span { font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* Review card */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  border: 1px solid var(--line);
}
.review-stars { color: var(--gold-deep); letter-spacing: .2em; font-size: 13px; margin-bottom: 12px; }
.review-text  { font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--plum); margin: 0 0 14px; font-style: italic; }
.review-by    { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* Reveal */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .32s; }
[data-reveal][data-delay="4"] { transition-delay: .44s; }

/* Footer */
.footer {
  background: var(--plum);
  color: rgba(255,255,255,.68);
  padding-block: clamp(48px,6vw,80px) 28px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 24px;
}
.footer-logo img { height: 34px; margin-bottom: 14px; }
.footer h5 {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer ul { display: flex; flex-direction: column; gap: 8px; }
.footer ul li a { color: rgba(255,255,255,.65); transition: color .2s; }
.footer ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.socials { display: flex; gap: 8px; margin-top: 14px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: border-color .2s, color .2s;
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }

/* Float WA */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
}
.float-wa a {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.38);
  transition: transform .25s;
}
.float-wa a:hover { transform: scale(1.08); }

/* ── Responsive ── */
@media (max-width: 900px) {
  nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .logo { grid-column: 1; justify-self: start; }
  .logo img { height: 44px; }
}
@media (max-width: 430px) {
  .logo img { height: 38px; }
}
@media (max-width: 768px) {
  .split, .split.r { grid-template-columns: 1fr; direction: ltr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Treatment Mega Menu (full-width) ── */
.has-mega { position: relative; }
/* Transparent bridge fills gap between nav item bottom and panel top */
.has-mega::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: -24px;
  right: -24px;
  height: 14px;
  background: transparent;
  pointer-events: none;
}
.has-mega:hover::after { pointer-events: auto; }
.mega-panel {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 28px 72px -12px rgba(74,25,66,.22), 0 0 0 1px var(--line);
  padding: 28px var(--gutter) 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .22s var(--ease) .16s, transform .22s var(--ease) .16s;
  z-index: 850;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel,
.has-mega.mega-pinned .mega-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity .18s var(--ease) 0s, transform .18s var(--ease) 0s;
}
.mega-loc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--blush);
  border-radius: var(--radius);
  padding: 10px 18px;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--text-2);
  flex-wrap: wrap;
  gap: 6px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.mega-loc-bar strong { color: var(--plum); font-weight: 700; }
.mega-loc-bar a { color: var(--plum-2); font-weight: 600; transition: color .2s; }
.mega-loc-bar a:hover { color: var(--plum); }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 210px;
  gap: 22px;
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
}
.mega-col h6 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line-gold);
}
.mega-col ul li a {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 5px 0;
  transition: color .18s, padding-left .18s;
  line-height: 1.4;
  font-weight: 400;
}
.mega-col ul li a:hover { color: var(--plum); padding-left: 6px; }
.mega-col ul li a.sig { color: var(--plum-2); font-weight: 500; }
.mega-col ul li a.sig::after { content: ' ★'; color: var(--gold-deep); font-size: 10px; }
.mega-feature {
  background: var(--plum);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  transition: background .25s;
  align-self: stretch;
  min-width: 180px;
}
.mega-feature:hover { background: var(--plum-2); }
.mf-tag { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.mega-feature h5 { font-family: var(--serif); font-size: 22px; color: #fff; margin: 4px 0; line-height: 1.1; }
.mega-feature p  { font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.5; margin: 0; flex: 1; }
.mf-cta { font-size: 13px; font-weight: 700; color: var(--gold); margin-top: 10px; display: flex; align-items: center; gap: 4px; }

/* Mobile accordion */
.mm-section { border-bottom: 1px solid rgba(255,255,255,.1); }
.mm-section-toggle {
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,.88);
  font-family: var(--serif);
  font-size: clamp(26px, 7vw, 34px);
  text-align: left;
  padding: 10px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
}
.mm-chevron { font-size: 16px; color: var(--gold); transition: transform .3s var(--ease); flex-shrink: 0; }
.mm-section.open .mm-chevron { transform: rotate(180deg); }
.mm-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.mm-section.open .mm-section-body { max-height: 1400px; }
.mm-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  padding: 6px 0 10px;
  text-decoration: none;
}
.mm-section-body ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  padding-bottom: 16px;
}
.mm-section-body ul li a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  padding: 6px 0;
  transition: color .2s;
  min-height: 36px;
  display: flex;
  align-items: center;
}
.mm-section-body ul li a:hover { color: #fff; }
.mm-section-body ul li a.sig { color: rgba(255,255,255,.85); font-weight: 500; }

@media (max-width: 960px) {
  .mega-panel { width: 96vw; }
  .mega-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-feature { display: none; }
}
@media (max-width: 640px) {
  .mega-grid { grid-template-columns: repeat(2, 1fr); }
}
