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

:root {
  --blush:      #F5C0C8;
  --rose:       #F08898;
  --mauve:      #C67880;
  --plum:       #885868;
  --plum-dk:    #5A3040;
  --silver:     #ABABAB;
  --off-white:  #FDF5F7;
  --white:      #FFFFFF;
  --text:       #3A1E2A;
  --text-muted: #7A5060;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius:    14px;
  --shadow:    0 4px 28px rgba(135, 86, 101, 0.18);
  --shadow-sm: 0 2px 12px rgba(135, 86, 101, 0.12);
  --tr:        0.25s ease;
  --max:       1160px;
  --pad:       clamp(1rem, 4vw, 2rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }
small { font-size: 0.78em; }

/* ===== UTILITY ===== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--plum-dk);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--plum);
}

section { padding: clamp(3.5rem, 9vw, 6rem) 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1;
  padding: 0.75em 1.6em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--tr), color var(--tr), border-color var(--tr), box-shadow var(--tr);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn--primary:hover {
  background: var(--plum-dk);
  border-color: var(--plum-dk);
  box-shadow: 0 4px 16px rgba(90, 48, 64, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--plum-dk);
  border-color: var(--plum-dk);
}
.btn--ghost:hover {
  background: var(--plum-dk);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn--lg {
  font-size: 1rem;
  padding: 0.85em 1.9em;
}

/* ===== PHOTO PLACEHOLDERS ===== */
.photo-ph {
  background: linear-gradient(135deg, #fde8ed 0%, var(--blush) 100%);
  border: 2px dashed var(--rose);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.photo-ph__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ph-icon { font-size: 2.2rem; opacity: 0.6; line-height: 1; }

.photo-ph__body strong {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--plum);
  margin-top: 0.25rem;
}

.ph-what {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mauve);
}

.ph-size {
  font-size: 0.72rem;
  font-family: monospace;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.65);
  padding: 0.2em 0.55em;
  border-radius: 4px;
  margin-top: 0.1rem;
}

.ph-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 220px;
}

.ph--hero  { aspect-ratio: 4 / 3; }
.ph--about { aspect-ratio: 4 / 3; }
.ph--staff { aspect-ratio: 4 / 5; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--blush);
  transition: box-shadow var(--tr);
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.6rem var(--pad);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__brand img {
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
  margin-right: 0.75rem;
}

.nav__link {
  display: block;
  padding: 0.45em 0.85em;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}
.nav__link:hover { color: var(--plum); background: var(--off-white); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform var(--tr), opacity var(--tr);
}

.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 740px) {
  .nav__burger  { display: flex; }
  .nav__cta     { display: none; }
  .nav__links   {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem var(--pad) 1rem;
    border-bottom: 1px solid var(--blush);
    box-shadow: var(--shadow);
    margin: 0;
    gap: 0;
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 0.7em 0.85em; font-size: 0.95rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #fde8ed 0%, var(--blush) 55%, #f0b8c4 100%);
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero .eyebrow { color: var(--plum); }

.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum-dk);
  margin-bottom: 1rem;
}

.hero__headline em {
  color: var(--plum);
  font-style: italic;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 1.75rem;
}

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

.hero__illustration {
  position: absolute;
  top: -5%;
  right: -40px;
  height: 120%;
  width: auto;
  opacity: 0.52;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero__container      { grid-template-columns: 1fr; gap: 2rem; }
  .hero__illustration   { display: none; }
  .ph--hero             { aspect-ratio: 16/9; }
}

/* ===== ABOUT ===== */
.about { background: var(--off-white); position: relative; overflow: hidden; }
.about__container { position: relative; z-index: 1; }

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about__container { grid-template-columns: 1fr; gap: 2rem; }
  .about__visual { order: -1; }
  .ph--about { aspect-ratio: 16/9; }
}

/* ===== TEAM ===== */
.team {
  background: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team > .container { position: relative; z-index: 1; }

.team .eyebrow,
.team .section-title { display: block; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
  text-align: left;
}

.team__card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--blush);
  transition: box-shadow var(--tr), transform var(--tr);
}

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

.team__info {
  padding: 1rem 1.25rem 1.25rem;
}

.team__info h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--plum-dk);
}

.team__info p {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mauve);
  margin-top: 0.2rem;
  letter-spacing: 0.03em;
}

.team__note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 720px) {
  .team__grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===== SERVICES ===== */
.services { background: var(--off-white); position: relative; overflow: hidden; }
.services > .container { position: relative; z-index: 1; }

.tabs { margin-top: 2rem; }

.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blush);
  margin-bottom: 1.75rem;
}

.tab-btn {
  background: var(--white);
  border: 2px solid var(--blush);
  padding: 0.5em 1.15em;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--tr);
}

.tab-btn:hover {
  color: var(--plum);
  border-color: var(--rose);
  background: #fff0f3;
}

.tab-btn.active {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}

.tab-panel { display: none; position: relative; min-height: 280px; overflow: hidden; }
.tab-panel.active { display: block; }

.price-list { max-width: 560px; }

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--blush);
}

.price-list li:last-child { border-bottom: none; }

.pi__name {
  font-size: 0.95rem;
  color: var(--text);
  flex: 1;
}

.pi__name small { color: var(--text-muted); }

.pi__note {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.2rem;
}

.pi__price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-footnote {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== HOURS & CONTACT ===== */
.hours-contact {
  background: var(--plum-dk);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hours-contact .eyebrow { color: var(--rose); }

.hours-contact .section-title { color: var(--white); }

.hours-contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.75rem;
}

.hours-table th,
.hours-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.hours-table th {
  text-align: left;
  font-weight: 600;
  color: var(--blush);
  padding-right: 1rem;
  width: 42%;
}

.hours-table td { text-align: right; }

.hours-table td.closed {
  color: var(--silver);
  font-style: italic;
}

.hours-table td small {
  display: block;
  font-size: 0.7rem;
  color: var(--silver);
  margin-top: 0.1rem;
}

.contact-details { margin-bottom: 1.75rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.contact-icon {
  font-size: 1.1rem;
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 0.05em;
  width: 1.4em;
  text-align: center;
}

.contact-item a,
.contact-item address {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-item a:hover { color: var(--blush); }

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hours-contact .btn--ghost {
  color: var(--blush);
  border-color: rgba(245, 192, 200, 0.5);
}

.hours-contact .btn--ghost:hover {
  background: rgba(245, 192, 200, 0.15);
  border-color: var(--blush);
}

.map-col iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

@media (max-width: 768px) {
  .hours-contact__container { grid-template-columns: 1fr; gap: 2rem; }
  .map-col { order: -1; }
  .map-col iframe { height: 280px; }
}

/* ===== GIFT CARDS ===== */
.gift-cards {
  background: linear-gradient(135deg, var(--plum) 0%, var(--mauve) 100%);
  color: var(--white);
}

.gift-cards__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.gift-cards h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
}

.gift-cards p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .gift-cards__inner { flex-direction: column; text-align: center; }
}

/* ===== DECORATIVE ILLUSTRATIONS ===== */
/* White-bg sketch PNGs use mix-blend-mode:multiply so white backgrounds
   disappear against light sections, leaving only the colored ink.
   All deco images hidden on screens < 900px to keep mobile clean.          */

.deco-img {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: multiply;
  display: block;
}

/* Spray bottle — about section, bottom-right corner */
.deco-img--spray {
  right: -30px;
  bottom: -60px;
  width: 340px;
  opacity: 0.22;
}

/* Scissors + hair swirl — team section, lower-right */
.deco-img--scissors {
  right: -50px;
  bottom: -20px;
  width: 460px;
  opacity: 0.25;
}

/* White woman portrait — hours section (dark bg, white-line art) */
.deco-img--woman-white {
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 130%;
  width: auto;
  opacity: 0.14;
  mix-blend-mode: normal;   /* white-on-transparent; no multiply needed */
}

/* ── Per-tab service illustrations ─────────────────────────────────────────
   Each tab panel shows a contextual illustration positioned behind the price
   list (price-list is lifted to z-index:1 to stay readable).               */

.tab-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 480px;
  max-height: 420px;
  width: auto;
  height: auto;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: multiply;
  opacity: 0.22;
}

/* Pedicure Bath and Nail Polish have colored (non-white) backgrounds —
   boost opacity slightly so the illustration reads through the blend */
#tab-pedicures .tab-bg,
#tab-nails     .tab-bg { opacity: 0.32; }

/* Waxing uses the woman silhouette — keep it light */
#tab-waxing .tab-bg { opacity: 0.13; }

/* Spray bottle (Perms): flip horizontally so nozzle points left, tilt slightly */
#tab-perms .tab-bg {
  transform: translateY(-50%) scaleX(-1) rotate(17deg);
  max-height: 270px;
  right: 80px;
}

/* Lift price list and footnotes above the tab illustration */
.tab-panel .price-list,
.tab-panel .price-footnote { position: relative; z-index: 1; }

@media (max-width: 900px) {
  .deco-img { display: none !important; }
  .tab-bg   { display: none !important; }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--plum-dk);
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand img {
  height: 58px;
  border-radius: 8px;
  margin-bottom: 0.9rem;
}

.footer__tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--blush);
  line-height: 1.55;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.98rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer__col p,
.footer__col address,
.footer__col li {
  font-size: 0.87rem;
  margin-bottom: 0.4rem;
  line-height: 1.55;
}

.footer__col a { color: rgba(255, 255, 255, 0.7); }
.footer__col a:hover { color: var(--blush); }

.staff-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--silver) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.3em 0.75em;
  border-radius: 6px;
  transition: border-color var(--tr), color var(--tr);
}

.staff-link:hover {
  border-color: var(--blush) !important;
  color: var(--blush) !important;
}

.footer__bottom {
  padding: 1.25rem var(--pad);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
