*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #fff6df;
  --lavender:   #f6dfff;
  --mint-light: #dffff6;
  --white:      #FFFFFF;
  --charcoal:   #0B0B0B;
  --muted:      rgba(11,11,11,0.6);
  --gold:       #C9A96E;
  --navy:       #000000;
  --hover-dark: rgba(0,0,0,0.78);
  --brown:         #6c5a56;
  --warm-secondary:#4f4542;
  --warm-dark:     #1e1b19;
  --divider-gold:  #e9c349;
  --beige:      #fff6df;
  --beige-mid:  #E8D4BA;
  --ivory:      #fff6df;
  --card-bg:    #FFFFFF;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  touch-action: pan-y;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.8rem;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(223,255,246,0.18);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; letter-spacing: .06em;
  color: var(--charcoal); text-decoration: none;
}
.nav-center { display: flex; gap: 2.6rem; list-style: none; }
.nav-center a {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: #2d2d2d; text-decoration: none; font-weight: 500;
  transition: color .2s;
}
.nav-center a:hover { color: var(--muted); }
.nav-book {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .6rem 1.5rem;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; transition: background .2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-book:hover { background: var(--hover-dark); }

/* ── HERO ── */
.hero {
  background: var(--cream);
  display: flex; flex-direction: column; align-items: center;
  padding: 164px 40px 64px;
  gap: 48px;
  overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 24px;
}
.hero-eyebrow {
  font-size: .67rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--charcoal);
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.6;
  color: var(--muted); max-width: 480px; font-weight: 300;
}
.hero-image {
  width: 75%; max-width: 1440px; aspect-ratio: 16 / 9; height: auto;
  object-fit: cover; object-position: center 75%;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #C9A47A 0%, #D4A870 50%, #A87845 100%);
  display: block;
  transform: scale(0.85);
  transform-origin: center center;
  will-change: transform;
}
.hero-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: 32px; width: 100%;
}
.hero-stats { display: flex; gap: 3rem; justify-content: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--charcoal); line-height: 1;
  display: flex; align-items: center; gap: .3rem;
}
.stat-num .star { font-size: 1.4rem; color: var(--gold); }
.stat-num--rating { color: var(--charcoal); text-shadow: 0 0 8px rgba(201,169,110,0.55), 0 0 22px rgba(201,169,110,0.25); }
.stat-num--rating .star { color: var(--gold); }
.stat-label {
  font-size: .67rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: .25rem;
}

/* ── BUTTONS ── */
.btn-dark {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .75rem 2.2rem;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.btn-dark:hover { background: var(--hover-dark); }
.btn-link {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; color: var(--charcoal);
  background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  text-decoration: underline; text-underline-offset: 4px;
  transition: color .2s;
}
.btn-link:hover { color: var(--brown); }
.btn-lavender {
  font-size: .67rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 500; padding: .6rem 1.4rem;
  background: var(--lavender); color: #000000;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.btn-lavender:hover { background: #e0c4ff; }
.btn-about {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .85rem;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; width: 100%;
  font-family: 'DM Sans', sans-serif; transition: background .2s;
}
.btn-about:hover { background: var(--hover-dark); }

/* ── TICKER ── */
.ticker {
  background: var(--mint-light); color: var(--charcoal);
  padding: .65rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(0,0,0,0.05);
  width: 100%;
}
.ticker-inner {
  display: inline-flex; gap: 3.5rem;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-item {
  font-size: .67rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
}
.ticker-dot { color: var(--charcoal); opacity: 0.35; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SHARED SECTION LABELS ── */
.section-eyebrow {
  font-size: .66rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--charcoal);
  margin-bottom: 3rem; line-height: 1.2;
}
.section-title em { font-style: italic; }

/* ── SERVICES ── */
.services { padding: 5rem; background: var(--cream); }
.services .section-title { margin-bottom: 0; }

/* Slider wrapper */
.services-slider-wrap { position: relative; padding-top: 3rem; }
.services-slider { overflow: hidden; }
.services-track { display: flex; transition: transform 1.1s cubic-bezier(.25,0,.2,1); }
.services-slide { flex: 0 0 33.333%; min-width: 0; padding: 0 .5rem; box-sizing: border-box; }

/* Arrow buttons */
.services-arrow {
  position: absolute; top: calc(50% - 1rem); transform: translateY(-50%);
  width: 2.4rem; height: 2.4rem; display: flex; align-items: center; justify-content: center;
  background: var(--white); border: 1px solid rgba(45,45,45,0.18); cursor: pointer;
  font-size: .95rem; color: var(--charcoal); z-index: 2;
  transition: background .15s, border-color .15s, color .15s;
}
.services-arrow:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.services-arrow:disabled { opacity: .3; pointer-events: none; }
.services-arrow--prev { left: -1.4rem; }
.services-arrow--next { right: -1.4rem; }

/* Dot indicators */
.services-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.5rem; }
.services-dot {
  width: .42rem; height: .42rem; border-radius: 50%; padding: 0; border: none;
  background: rgba(45,45,45,0.2); cursor: pointer; transition: background .2s;
}
.services-dot.is-active { background: var(--charcoal); }

/* Cards */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.8rem 2.4rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  transition: box-shadow .25s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.service-card-img {
  width: 100%; aspect-ratio: 3/2; overflow: hidden; position: relative;
}
.service-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-natural  { background: linear-gradient(145deg, #D4B8A0 0%, #C4A888 30%, #B89870 60%, #D0B898 100%); }
.img-acrylic  { background: linear-gradient(145deg, #B8A0C8 0%, #9880B8 30%, #C8B0D8 60%, #E0D0F0 100%); }
.img-gel      { background: linear-gradient(145deg, #C8A080 0%, #D4B890 30%, #B89070 60%, #E0C8A8 100%); }
.img-pedicure { background: linear-gradient(145deg, #E8C4B8 0%, #D8A898 30%, #C89080 60%, #E0B8A8 100%); }
.img-nailart  { background: linear-gradient(145deg, #C9A96E 0%, #D4B880 30%, #B89050 60%, #E0C890 100%); }
.img-waxing   { background: linear-gradient(145deg, #C8C4B8 0%, #B8B4A8 30%, #D0CCC0 60%, #E0DCD4 100%); }
.service-card-body { display: flex; flex-direction: column; gap: 0.55rem; padding: 0; }
.service-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--charcoal); padding-top: 0.85rem;
}
.service-card-desc {
  font-size: .84rem; line-height: 1.75; color: var(--charcoal); font-weight: 300;
}
.service-card-price {
  font-size: .8rem; letter-spacing: .08em; color: var(--brown);
  font-weight: 500; display: block; padding-top: 0.85rem;
}

/* ── MENU ── */
.menu-title { margin-bottom: 0; }
.menu-section {
  background: var(--white);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; align-items: center;
}
.menu-inner {
  width: 100%; max-width: 1214px;
  display: flex; flex-direction: column; gap: 3rem; align-items: stretch;
}
.menu-tabs-wrap {
  position: relative;
}
.menu-tabs-wrap::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, rgba(255,255,255,0), var(--white));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.menu-tabs-wrap.tabs-at-end::after { opacity: 0; }
.menu-tabs {
  display: flex; gap: 1.5rem;
  border-bottom: 1px solid rgba(210,195,192,0.3);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  padding: 1rem 0 1.125rem;
  margin-bottom: -1px;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  color: var(--warm-secondary);
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: color .2s, border-color .2s;
  flex-shrink: 0;
}
.menu-tab.is-active { color: var(--brown); border-bottom-color: var(--brown); }
.menu-tab:hover:not(.is-active) { color: var(--brown); }
.menu-panel { display: flex; flex-direction: column; gap: 3rem; }
.menu-panel.is-hidden { display: none; }
.menu-category-header {
  display: flex; align-items: center; gap: 1.5rem;
}
.menu-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500; color: var(--brown);
  line-height: 1.2; white-space: nowrap;
}
.menu-divider {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(233,195,73,0), var(--divider-gold) 50%, rgba(233,195,73,0));
  opacity: 0.4;
}
.menu-items { display: flex; flex-direction: column; gap: 3rem; }
.menu-item { display: flex; flex-direction: column; gap: .45rem; }
.menu-item-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--warm-dark); line-height: 1.3;
}
.menu-item-name--medium { font-weight: 500; }
.menu-item-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.125rem; font-weight: 400; color: var(--brown); line-height: 1.6;
}
.menu-item-desc {
  font-size: 1rem; line-height: 1.6; color: var(--warm-secondary);
  font-weight: 300; max-width: 576px;
}
.menu-item-desc.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
}
.menu-subcategory { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-items--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.2rem;
  column-gap: 3rem;
}
.menu-items--grid .menu-item-name { font-size: 1.1rem; }
.menu-items--grid .menu-item-price { font-size: .95rem; white-space: nowrap; }
.menu-item-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem; font-style: italic;
  color: var(--warm-secondary); line-height: 1.4;
}
.menu-item-duration {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown); font-weight: 500;
}
.btn-view-more {
  display: block;
  background: none; border: none; padding: 0;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  letter-spacing: 0; color: var(--muted); text-align: left;
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 3px; transition: color .15s;
}
.btn-view-more:hover { color: var(--charcoal); }
.menu-item-perk {
  font-size: .8rem; color: var(--warm-secondary);
  font-style: italic; margin-top: .15rem;
}
.menu-panel-note {
  font-size: .82rem; color: var(--warm-secondary);
  font-weight: 300; line-height: 1.7;
  padding: .6rem 1rem;
  background: rgba(233,195,73,0.06);
  border-left: 2px solid rgba(233,195,73,0.3);
}
.menu-addons-header {
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(210,195,192,0.3);
}
.menu-pros-list {
  list-style: none;
  display: flex; flex-direction: column; gap: .5rem;
}
.menu-pros-list li {
  font-size: .85rem; color: var(--warm-secondary);
  font-weight: 300; line-height: 1.6;
  padding-left: 1.2rem; position: relative;
}
.menu-pros-list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--divider-gold); opacity: 0.8;
}

/* ── ABOUT ── */
.about { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.about-left {
  background: var(--lavender);
  overflow: hidden; padding: 0;
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-right {
  background: var(--mint-light);
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 4rem;
}
.about-right .section-eyebrow { color: var(--muted); }
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; font-style: italic;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 1.6rem;
}
.about-body {
  font-size: .84rem; line-height: 1.85;
  color: var(--muted); font-weight: 300;
  max-width: 380px; margin-bottom: 2.4rem;
}

/* ── GALLERY ── */
.gallery { padding: 6rem 4rem; background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 3px; margin-top: 2.5rem;
}
.gallery-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-fill {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 1rem;
  transition: transform .35s ease; position: relative;
}
.gallery-item:hover .gallery-fill { transform: scale(1.04); }

/* ── GALLERY LIGHTBOX (mobile) ── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.gallery-lightbox.is-open { opacity: 1; pointer-events: auto; }
.gallery-lightbox-img {
  max-width: 94vw; max-height: 88vh;
  object-fit: contain; display: block;
  border-radius: 4px;
}
.gallery-lightbox-close {
  position: absolute; top: 1.1rem; right: 1.4rem;
  width: 2.2rem; height: 2.2rem;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%; color: #fff; font-size: 1rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .18s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.24); }
.gallery-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block;
}
/* Focal-point helpers — add one of these classes to any <img class="gallery-img"> */
.gallery-img.focus-top         { object-position: center top; }
.gallery-img.focus-bottom      { object-position: center bottom; }
.gallery-img.focus-left        { object-position: left center; }
.gallery-img.focus-right       { object-position: right center; }
.gallery-img.focus-top-left    { object-position: left top; }
.gallery-img.focus-top-right   { object-position: right top; }
.gallery-img.focus-bottom-left { object-position: left bottom; }
.gallery-img.focus-bottom-right{ object-position: right bottom; }
.g1 { background: linear-gradient(135deg, #2A2018 0%, #4A3A28 100%); }
.g2 { background: linear-gradient(135deg, #3A5A8A 0%, #A0C4E8 100%); }
.g3 { background: linear-gradient(135deg, rgb(212,175,122) 0%, rgb(184,134,11) 100%); }
.g4 { background: linear-gradient(135deg, rgb(26,10,46) 0%, rgb(45,16,82) 100%); }
.g5 { background: linear-gradient(135deg, rgb(250,246,240) 0%, rgb(232,224,216) 100%); }
.gallery-label {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 500; position: relative; z-index: 2;
}
.gallery-label-dark { color: rgba(45,35,25,0.5); }

/* ── REVIEWS ── */
.reviews { padding: 6rem 4rem; background: var(--mint-light); }
.reviews .section-eyebrow { color: var(--muted); }
.reviews .section-title { color: var(--charcoal); margin-bottom: 3rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card {
  background: var(--white);
  padding: 1.5rem; border-radius: 16px;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 7px 3.5px rgba(0,0,0,0.09), 0 2px 2px rgba(0,0,0,0.1);
  transition: box-shadow .25s;
}
.review-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.review-user { display: flex; align-items: center; gap: 1rem; justify-content: space-between; }
.review-google { width: 18px; height: 18px; flex-shrink: 0; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #00897b;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 1rem; color: white; flex-shrink: 0;
}
.review-meta { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.reviewer-name { font-size: 1rem; font-weight: 600; color: #1a1a1a; line-height: 1.25; }
.review-date { font-size: .75rem; color: rgba(0,0,0,0.5); }
.stars { font-size: .85rem; letter-spacing: .08em; color: #C9920A; text-shadow: 0 0 6px rgba(211,155,10,0.45), 0 0 12px rgba(211,155,10,0.2); }
.review-title { font-size: .83rem; line-height: 1.5; color: #333a4b; font-weight: 400; }

/* ── BOOKING ── */
.booking {
  padding: 7rem 4rem; background: var(--cream);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
}
.booking-left { padding-top: .5rem; }
.booking-left .section-title { margin-bottom: 1.2rem; }
.booking-desc {
  font-size: .84rem; line-height: 1.85; color: var(--muted);
  font-weight: 300; max-width: 320px; margin-bottom: 2.2rem;
}
.booking-info {
  font-size: .72rem; line-height: 1.5; letter-spacing: .06em;
  color: var(--charcoal); font-weight: 400; margin-top: 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.booking-info span { color: var(--charcoal); margin-right: .5rem; }
.phone-link { color: inherit; text-decoration: none; pointer-events: none; }
.booking-info-addr { display: flex; align-items: flex-start; }
.booking-info-addr-text { display: flex; flex-direction: column; }
.booking-info .location-hint { color: rgba(0, 0, 0, 0.836); font-size: .63rem; font-weight: 300; letter-spacing: .04em; margin-right: 0; margin-top: .2rem; }
.booking-map {
  margin-top: 1.5rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.booking-map iframe { display: block; }
.booking-form { background: var(--white); padding: 2.8rem; border: 1px solid rgba(0,0,0,0.07); }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: var(--charcoal); margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .45rem; font-weight: 500;
}
.form-group input,
.form-group select {
  width: 100%; padding: .75rem .9rem;
  border: 1px solid rgba(45,45,45,0.15); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .84rem; color: var(--charcoal);
  outline: none; transition: border-color .2s; appearance: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; padding: 1rem;
  background: var(--navy); color: var(--white);
  border: none; font-family: 'DM Sans', sans-serif;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; margin-top: .6rem;
  transition: background .2s;
}
.btn-submit:hover { background: var(--hover-dark); }
.custom-listbox {
  border: 1px solid rgba(45,45,45,0.15);
  max-height: 220px;
  overflow-y: auto;
  background: var(--white);
  outline: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(45,45,45,0.15) transparent;
}
.custom-listbox:focus { border-color: rgba(45,45,45,0.4); }
.listbox-group-label {
  padding: .4rem .9rem .25rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0,0,0,0.04);
  pointer-events: none;
}
.listbox-option {
  padding: .55rem .9rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background .12s;
  border-bottom: 1px solid rgba(210,195,192,0.12);
}
.listbox-option:last-child { border-bottom: none; }
.listbox-option:hover { background: rgba(201,169,110,0.1); }
.listbox-option.is-selected { background: var(--charcoal); color: var(--white); }
.svc-addons-wrap { margin-top: 1.4rem; }
.svc-addons-label {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: .7rem;
}
.addon-category-label {
  font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: .7rem;
}
.addon-category + .addon-category {
  margin-top: 1.4rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(45,45,45,0.08);
}
/* ── REVIEW STEP ── */
.review-section {
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(45,45,45,0.08);
}
.review-section-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .65rem;
}
.review-section-label {
  font-size: .58rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.btn-review-edit {
  background: none; border: none; padding: 0;
  font-family: 'DM Sans', sans-serif; font-size: .68rem;
  letter-spacing: .04em; color: var(--muted);
  cursor: pointer; text-decoration: underline;
  text-underline-offset: 2px; transition: color .15s;
}
.btn-review-edit:hover { color: var(--charcoal); }
.review-item {
  font-family: 'DM Sans', sans-serif; font-size: .84rem;
  color: var(--charcoal); line-height: 1.7; font-weight: 400;
}
.review-item-cat {
  font-size: .7rem; color: var(--muted); font-weight: 300;
  letter-spacing: .04em; margin-bottom: .15rem;
}
.review-item-addon {
  font-size: .76rem; color: var(--warm-secondary);
  font-weight: 300; padding-left: .75rem;
  line-height: 1.7;
}
.review-slot + .review-slot {
  margin-top: .9rem; padding-top: .9rem;
  border-top: 1px solid rgba(45,45,45,0.06);
}
.review-none {
  font-size: .78rem; color: var(--muted);
  font-style: italic; font-weight: 300;
}
.review-info-row {
  font-family: 'DM Sans', sans-serif; font-size: .8rem;
  line-height: 1.95;
}
.review-info-label { color: var(--muted); font-weight: 300; }
.review-info-value { color: var(--charcoal); font-weight: 400; }
.review-total {
  border: 1px solid rgba(45,45,45,0.1);
  padding: 1rem 1.2rem; margin-bottom: 1.6rem;
  background: rgba(0,0,0,0.02);
}
.review-total-label {
  display: block; font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 600; margin-bottom: .3rem;
}
.review-total-price {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--charcoal); font-weight: 400;
}
.review-total-note {
  font-size: .65rem; color: var(--muted);
  font-weight: 300; margin-top: .3rem;
}
.btn-add-service {
  display: block; width: 100%; margin-top: 1rem; padding: .65rem 1rem;
  background: none; border: 1px dashed rgba(45,45,45,0.2);
  color: var(--muted); font-family: 'DM Sans', sans-serif;
  font-size: .7rem; letter-spacing: .1em; text-align: center;
  cursor: pointer; transition: border-color .15s, color .15s;
}
.btn-add-service:hover { border-color: rgba(45,45,45,0.45); color: var(--charcoal); }
.service-slot + .service-slot {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(45,45,45,0.1);
}
.slot-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .8rem;
}
.slot-num {
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.btn-remove-slot {
  background: none; border: none; color: var(--muted);
  font-family: 'DM Sans', sans-serif; font-size: .65rem;
  letter-spacing: .06em; cursor: pointer; padding: 0;
  transition: color .15s;
}
.btn-remove-slot:hover { color: #b94a48; }
.svc-selected-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem .9rem;
  border: 1px solid rgba(45,45,45,0.15);
  cursor: pointer; transition: background .12s;
}
.svc-selected-row:hover { background: rgba(0,0,0,0.03); }
.svc-selected-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .84rem; color: var(--charcoal);
}
.btn-svc-change {
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem; letter-spacing: .06em;
  color: var(--muted); cursor: pointer; padding: 0;
  text-decoration: underline; text-underline-offset: 2px;
  flex-shrink: 0; transition: color .15s;
}
.btn-svc-change:hover { color: var(--charcoal); }
.form-addons-hint {
  font-size: .6rem; color: var(--muted);
  font-weight: 300; text-transform: none;
  letter-spacing: 0; margin-left: .4rem;
}
.addon-pills { display: flex; flex-wrap: wrap; gap: .45rem; }
.addon-pill {
  display: inline-flex; align-items: center;
  padding: .38rem .85rem;
  border: 1px solid rgba(45,45,45,0.2); background: none;
  font-family: 'DM Sans', sans-serif; font-size: .72rem;
  letter-spacing: .04em; color: var(--charcoal);
  cursor: pointer; user-select: none;
  transition: background .15s, border-color .15s, color .15s;
}
.addon-pill:hover:not(.is-selected) { border-color: rgba(45,45,45,0.5); }
.addon-pill.is-selected {
  background: var(--charcoal); color: var(--white); border-color: var(--charcoal);
}
/* ── FORM WIZARD ── */
.form-steps {
  display: flex; align-items: center; margin-bottom: 2rem;
}
.form-step-indicator {
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
}
.step-num {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(45,45,45,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem; font-weight: 600;
  color: var(--muted);
  transition: background .25s, border-color .25s, color .25s;
}
.step-label {
  font-size: .56rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap; transition: color .25s;
}
.form-step-indicator.is-active .step-num,
.form-step-indicator.is-done  .step-num {
  background: var(--charcoal); border-color: var(--charcoal); color: var(--white);
}
.form-step-indicator.is-active .step-label { color: var(--charcoal); font-weight: 500; }
.form-step-indicator.is-done  .step-label { color: var(--muted); }
.form-step-connector {
  flex: 1; height: 1px; background: rgba(45,45,45,0.15);
  margin: 0 .75rem; margin-bottom: 1.05rem;
}
.form-step-panel { display: none; }
.form-step-panel.is-active { display: block; }
.form-step-heading {
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem; font-weight: 500;
}
.form-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.6rem; gap: 1rem;
}
.form-nav--end { justify-content: flex-end; }
.btn-step-next {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .75rem 1.8rem;
  background: var(--navy); color: var(--white);
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background .2s;
}
.btn-step-next:hover { background: var(--hover-dark); }
.btn-step-back {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: .75rem 1.5rem;
  background: none; color: var(--charcoal);
  border: 1px solid rgba(45,45,45,0.2);
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: border-color .2s;
}
.btn-step-back:hover { border-color: rgba(45,45,45,0.6); }
.btn-step-next[aria-disabled="true"] {
  background: rgba(45,45,45,0.12);
  color: rgba(45,45,45,0.3);
  cursor: not-allowed;
}
.form-field-error {
  font-size: .68rem; color: #b94a48;
  margin-top: .4rem; display: none;
  font-weight: 400; letter-spacing: 0; text-transform: none;
}
.form-field-error.is-visible { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--white); color: var(--muted);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--charcoal);
  display: block; margin-bottom: .9rem; text-decoration: none;
}
.footer-tagline { font-size: .8rem; line-height: 1.8; font-weight: 300; }
.footer-col h4 {
  font-size: .64rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 1.1rem; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li {  font-size: .8rem; color: var(--muted); text-decoration: none;
  font-weight: 300;}
.footer-col ul li a {
  font-size: .8rem; color: var(--muted); text-decoration: none;
  font-weight: 300; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--charcoal); }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 1.8rem; display: flex;
  justify-content: space-between; align-items: center;
}
.footer-copy { font-size: .72rem; }
.socials { display: flex; gap: 1.2rem; align-items: center; }
.social-link {
  font-size: 1.15rem;
  color: var(--muted); text-decoration: none; transition: color .2s;
  display: flex; align-items: center;
}
.social-instagram:hover { color: #E1306C; }
.social-facebook:hover  { color: #1877F2; }
.social-youtube:hover   { color: #FF0000; }
.social-yelp:hover      { color: #D32323; }
.social-tiktok:hover    { color: #EE1D52; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 1rem 1.4rem; }
  .nav-center { display: none; }
  .hero { padding: 80px 20px 48px; gap: 32px; }

  .about, .booking { grid-template-columns: 1fr; }
  .about-left { padding: 0; min-height: 260px; }
  .about-right { padding: 3rem 1.5rem; }

  /* Hero — larger image, no scale effect */
  .hero-image { width: 90%; transform: scale(1) !important; }

  /* Phone tap-to-call */
  .phone-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; pointer-events: auto; }

  /* Services slider — 1 card per slide, no arrows */
  .services { padding: 4rem 1.5rem; }
  .services-slide { padding: 0; }
  .services-arrow { display: none; }
  .services-slider-wrap { padding-top: 2rem; }

  .gallery { padding: 4rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-fill { min-height: 180px; }
  .reviews { padding: 4rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .menu-section { padding: 3rem 1.5rem; }
  .menu-items--grid { grid-template-columns: 1fr; }

  /* Booking form */
  .booking { padding: 3rem 1.2rem; gap: 2rem; }
  .booking-form { padding: 1.6rem 1.2rem; }
  .form-steps { gap: 0; }
  .step-label { display: none; }
  .form-step-connector { margin: 0 .4rem .65rem; }
  .btn-step-next, .btn-submit { width: 100%; text-align: center; }
  .form-nav { flex-wrap: wrap; }

  /* Footer */
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* ── FADE-UP ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Slight delay on title so eyebrow leads */
.fade-up + .fade-up { transition-delay: 0.12s; }
