/* VIP Nails Sugar Land — Genova-inspired luxury system (VIP identity) */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --gold: #E8C97A;
  --gold-bright: #E8C97A;
  --gold-soft: #E8C97A;
  --gold-dim: rgba(232, 201, 122, 0.18);
  --champagne: #E8C97A;
  --charcoal: #1d1d1d;
  --charcoal-2: #242424;
  --charcoal-3: #2a2a2a;
  --ivory: #fbfbf4;
  --ivory-soft: #f3f1e8;
  --muted: #9a9590;
  --muted-dark: #5c574f;
  --text: #f5f1e8;
  --text-dark: #1d1d1d;
  --radius: 2px;
  --radius-sm: 2px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --header-h: 130px;
  --callbar-h: 112px;
  --font: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-padding-top: calc(var(--header-h) + 1.25rem); scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--callbar-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--gold-bright); }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #1d1d1d;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ivory);
  flex-shrink: 0;
}
.logo-link img {
  width: 88px;
  height: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  text-transform: uppercase;
}
.logo-text span {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: 0;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 600;
}
.nav-toggle[aria-expanded="true"] { background: rgba(255,255,255,0.08); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
  background: transparent;
}
.site-nav .nav-cta {
  margin-left: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #fff !important;
  padding: 0.55rem 1.15rem;
  letter-spacing: 0.12em;
  background: transparent !important;
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  border-color: var(--gold);
  color: var(--gold-soft) !important;
  background: transparent !important;
}

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .site-nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--charcoal);
    border-bottom: 1px solid rgba(201, 168, 76, 0.22);
    display: none;
    padding: 0.75rem 1rem 1.15rem;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .site-nav a { display: block; padding: 0.9rem 1rem; }
  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
    margin-top: 0.35rem;
  }
}

/* —— Buttons (outlined luxury) —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.95rem 1.65rem;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: none; }
.btn-primary {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-soft);
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
  filter: none;
}
.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: transparent;
}
.btn-outline-dark {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: #fff;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.35rem 0 0.75rem;
}

/* —— Hero (full-bleed centered) —— */
.hero {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  background: var(--charcoal);
  text-align: center;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.62) 45%, rgba(8,8,8,0.82) 100%),
    url("../images/lobby-welcome.webp") center 45%/cover no-repeat;
  z-index: 0;
}
.hero-bg::after { display: none; }
.hero .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  width: min(100% - 2rem, 820px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo {
  width: min(140px, 28vw);
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.45));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 1rem;
}
.stars { color: var(--gold-bright); letter-spacing: 0.08em; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 .line2 {
  display: block;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  margin-top: 0.15em;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 0.35rem;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  margin: 0.75rem auto 0;
  font-weight: 400;
}
.trust-line {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.25rem 0 0;
}
.hero .btn-row { justify-content: center; }

/* —— Sections —— */
section { padding: 4.25rem 0; }
.section-ivory,
.section-cream {
  background: var(--ivory);
  color: var(--text-dark);
}
.section-ivory a,
.section-cream a { color: #8a6b1f; }
.section-ivory a:hover,
.section-cream a:hover { color: #6b5215; }
.section-alt,
.section-dark {
  background: var(--charcoal);
  color: var(--text);
}
.section-charcoal {
  background: var(--charcoal-2);
  color: var(--text);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.75rem;
  color: var(--charcoal);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-dark .section-title,
.section-alt .section-title,
.section-charcoal .section-title {
  color: #fff;
}
.section-title.center,
.text-center .section-title { text-align: center; }
.section-lead {
  max-width: 40rem;
  margin: 0 0 2rem;
  color: var(--muted-dark);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
}
.section-dark .section-lead,
.section-alt .section-lead,
.section-charcoal .section-lead {
  color: rgba(255, 255, 255, 0.65);
}
.section-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 0 1.35rem;
  border: 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }

/* —— Perk / drinks callout —— */
.perk-band {
  background: var(--charcoal-2);
  border-block: 1px solid rgba(201, 168, 76, 0.22);
  padding: 1.65rem 0;
  text-align: center;
  color: var(--text);
}
.perk-band p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}
.perk-band strong {
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

/* —— Intro split —— */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: center;
}
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; }
}
.photo-frame {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 168, 76, 0.28);
}
.photo-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.meta-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.meta-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(29, 29, 29, 0.08);
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.meta-list strong {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 0.2rem;
}
.section-dark .meta-list li,
.section-alt .meta-list li {
  border-color: rgba(255, 255, 255, 0.08);
}

/* —— Service preview cards —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.15rem;
}
.card {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 0;
  padding: 1.65rem 1.4rem;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--gold); transform: none; }
.card h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--muted-dark); font-size: 0.95rem; }
.section-dark .card,
.section-alt .card {
  background: var(--charcoal-3);
  border-color: rgba(201, 168, 76, 0.22);
}
.section-dark .card h3,
.section-alt .card h3 { color: var(--gold-soft); }
.section-dark .card p,
.section-alt .card p { color: rgba(255, 255, 255, 0.72); }

/* —— Gallery 4-col —— */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
.gallery figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  aspect-ratio: 1;
  background: var(--charcoal-2);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }

/* —— Trust band —— */
.trust-band {
  background: var(--charcoal);
  border-block: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.25rem 0;
  text-align: center;
  color: #fff;
}
.trust-band p { margin: 0; font-size: 0.95rem; color: rgba(255,255,255,0.65); }
.trust-band .big {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  color: var(--gold-soft);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* —— FAQ —— */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid rgba(201, 168, 76, 0.22); }
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1.15rem;
  color: var(--muted-dark);
}
.section-dark .faq-item summary,
.section-alt .faq-item summary { color: #fff; }
.section-dark .faq-item p,
.section-alt .faq-item p { color: rgba(255,255,255,0.65); }

/* —— Page hero (inner) —— */
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.72), rgba(29,29,29,0.92)),
    url("../images/lobby-welcome.webp") center/cover;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  text-align: center;
  color: #fff;
}
.page-hero--lobby {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.7), rgba(29,29,29,0.9)),
    url("../images/lobby-welcome.webp") center/cover;
}
.page-hero--exterior {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.68), rgba(29,29,29,0.9)),
    url("../images/exterior-day.webp") center/cover;
}


.page-hero--services,
.page-hero--services-lux {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.52), rgba(29,29,29,0.86)),
    url("../images/lobby-welcome.webp") center 40%/cover no-repeat !important;
}

.page-hero--pedicures {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45), rgba(29,29,29,0.78)),
    url("../images/hero-pedicures.webp") center 40%/cover;
}
.page-hero--services-lux {
  padding: 5.5rem 0 4.25rem;
  min-height: 42vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
}
.page-hero--services-lux .gold-title {
  color: var(--gold-soft);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.page-hero--services-lux .hero-tagline {
  margin-top: 0.35rem;
  max-width: 34rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  margin: 0 0 0.85rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.page-hero p {
  margin: 0 auto;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
}
.page-hero .eyebrow { justify-content: center; }

/* —— Contact —— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 0;
  padding: 2rem 1.75rem;
  color: #fff;
}
.contact-card h2 {
  font-family: var(--font);
  color: #fff;
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-card dl { margin: 0; }
.contact-card dt {
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 1.15rem;
  font-weight: 600;
}
.contact-card dt:first-child { margin-top: 0; }
.contact-card dd {
  margin: 0.3rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}
.contact-card a { color: var(--gold-soft); }
.map-wrap {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.25);
  min-height: 380px;
  background: var(--charcoal-3);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.map-wrap.find-us-wrap {
  display: block;
  min-height: 380px;
  background: #111;
}
.map-wrap .find-us-video {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  background: #111;
  border: 0;
}


.book-note {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border-radius: 0;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}
.book-note strong { color: var(--gold-soft); }

/* —— CTA band —— */
.cta-band {
  text-align: center;
  padding: 4rem 0;
  background: var(--ivory);
  border-block: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--charcoal);
}
.cta-band h2 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.cta-band p { color: var(--muted-dark); margin: 0 0 1.35rem; font-family: var(--font-display); font-style: italic; font-size: 1.1rem; }
.cta-band .btn-row { justify-content: center; }
.cta-band .btn-primary {
  border-color: var(--charcoal);
  color: var(--charcoal);
}
.cta-band .btn-primary:hover {
  background: var(--charcoal);
  color: #fff;
}
.cta-band .btn-secondary {
  border-color: var(--gold);
  color: #8a6b1f;
}
.cta-band.cta-band-dark {
  background: var(--charcoal-2);
  color: #fff;
  border-block-color: rgba(201, 168, 76, 0.2);
}
.cta-band.cta-band-dark h2 { color: #fff; }
.cta-band.cta-band-dark p { color: rgba(255,255,255,0.65); }
.cta-band.cta-band-dark .btn-primary {
  border-color: var(--gold);
  color: var(--gold-soft);
}
.cta-band.cta-band-dark .btn-primary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* —— Footer —— */
.site-footer {
  background: var(--charcoal);
  padding: 3.5rem 0 6rem;
  border-top: 1px solid rgba(201, 168, 76, 0.18);
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 2.25rem;
  align-items: start;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.site-footer h3 {
  color: #fff;
  font-family: var(--font);
  font-size: 0.75rem;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-brand img { width: 72px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255, 255, 255, 0.7); line-height: 1.7; }
.footer-brand .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-brand .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.footer-brand .footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-map {
  border: 1px solid rgba(201, 168, 76, 0.22);
  overflow: hidden;
  min-height: 320px;
  background: var(--charcoal-3);
}
.footer-map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  display: block;
}
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* —— Sticky mobile call bar —— */
.call-bar {
  position: fixed;
  left: 0; right: 0;
  bottom: max(44px, calc(env(safe-area-inset-bottom, 0px) + 44px));
  z-index: 9999;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.35);
  padding: 0.55rem 0.75rem 0.55rem;
  box-shadow: 0 -8px 30px rgba(0,0,0,0.4);
}
.call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 0.5rem;
  border-radius: 0;
  margin: 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.call-bar .call {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}
.call-bar .book {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
}
@media (min-width: 900px) {
  .call-bar { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 3rem; }
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Visit strip —— */
.visit-strip {
  padding: 4rem 0;
  background: var(--ivory);
}
.visit-strip-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 800px) {
  .visit-strip-inner { grid-template-columns: 1fr; }
}
.visit-strip .section-title { color: var(--charcoal); }
.visit-strip p { color: var(--muted-dark); margin: 0 0 0.5rem; }

.salon-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 700px) {
  .salon-gallery { grid-template-columns: 1fr; }
}
.salon-gallery figure { margin: 0; }
.salon-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.contact-photos { padding: 2.5rem 0 0.5rem; }
.contact-photos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (max-width: 700px) {
  .contact-photos-grid { grid-template-columns: 1fr; }
}
.contact-photos .photo-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* —— Services jump (legacy text chips; kept for other pages) —— */
.svc-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.svc-jump a {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.svc-jump a:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

/* —— Category photo tiles —— */
.cat-tiles-band {
  background: var(--ivory);
  padding: 2rem 0 1.25rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .cat-tiles { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 700px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); gap: 0.55rem; }
}
.cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(201, 168, 76, 0.32);
  aspect-ratio: 4/3;
  background: var(--charcoal);
  color: #fff;
}
.cat-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
  filter: brightness(0.72);
}
.cat-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 10, 10, 0.78) 100%);
  pointer-events: none;
}
.cat-tile span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 0.85rem 0.65rem 0.9rem;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.cat-tile:hover img { transform: scale(1.06); filter: brightness(0.82); }
.cat-tile:hover { border-color: var(--gold); }
.cat-tile:focus-visible { outline-offset: 2px; }

/* —— Editorial menu (Genova-style + luxury brochure) —— */
.menu-panel {
  background: var(--charcoal);
  color: #fff;
  padding: 4rem 0 4.5rem;
}
.menu-panel--alt {
  background: var(--charcoal-2);
}
.menu-panel--pedi {
  padding-top: 3.5rem;
}
.menu-panel .container { max-width: 920px; }
.menu-panel .container--wide { max-width: 1100px; }

.menu-cat {
  text-align: center;
  margin-bottom: 2.5rem;
}
.menu-kicker {
  margin: 0 0 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.menu-cat h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-soft);
  margin: 0 0 0.75rem;
}
.menu-cat .menu-disclaimer {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.02rem;
  margin: 0;
}

/* Section heroes */
.section-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 2.25rem;
}
.section-hero--split {
  grid-template-columns: 1fr 1fr 1.15fr;
}
.section-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.32);
  background: var(--charcoal-3);
}
.section-hero-media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.section-hero .menu-cat,
.section-hero-copy {
  margin-bottom: 0;
  text-align: left;
}
.section-hero .menu-cat h2,
.section-hero-copy h2 { text-align: left; }
@media (max-width: 800px) {
  .section-hero,
  .section-hero--split {
    grid-template-columns: 1fr;
  }
  .section-hero-media--second { display: none; }
  .section-hero-media img { aspect-ratio: 16/10; }
  .section-hero .menu-cat,
  .section-hero-copy { text-align: center; }
  .section-hero .menu-cat h2,
  .section-hero-copy h2 { text-align: center; }
}

/* Pedicure visual cards */
.pedi-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
@media (max-width: 980px) {
  .pedi-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pedi-card-grid { grid-template-columns: 1fr; }
}
.pedi-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(201, 168, 76, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.pedi-card:hover {
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.pedi-card-media {
  position: relative;
  overflow: hidden;
  background: #111;
}
.pedi-card-media img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s var(--ease);
}
.pedi-card:hover .pedi-card-media img { transform: scale(1.03); }
.pedi-card-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(29, 29, 29, 0.88);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.7rem;
  line-height: 1;
}
.pedi-card-body {
  padding: 1.15rem 1.15rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pedi-card-top {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 0.55rem;
}
.pedi-card-thumb {
  width: 56px;
  height: 56px;
}
.pedi-card-body h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.35;
}
.pedi-meta {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.pedi-card .menu-desc {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.pedi-card .menu-benefits {
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  margin-top: auto;
}

/* Two-column editorial menus */
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}
.menu-columns--narrow {
  max-width: 640px;
  margin-inline: auto;
  grid-template-columns: 1fr;
}
@media (max-width: 760px) {
  .menu-columns { grid-template-columns: 1fr; gap: 0; }
}

.menu-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}
.menu-row:last-child { border-bottom: 0; }
.menu-row.no-thumb {
  grid-template-columns: 1fr;
}
.menu-thumb {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
  background: var(--charcoal-3);
}
.menu-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-row-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0 0 0.35rem;
}
.menu-row-head h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.menu-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.45);
  min-width: 1.5rem;
  height: 0.65em;
}
.menu-price {
  font-family: var(--font);
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.menu-price.call {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.menu-desc {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.98rem;
}
.menu-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem 1.5rem;
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.menu-benefits li { margin: 0.2rem 0; }
.menu-benefits li::marker { color: var(--gold); }
@media (max-width: 640px) {
  .menu-row {
    grid-template-columns: 68px 1fr;
    gap: 0.85rem;
  }
  .menu-thumb { width: 68px; height: 68px; }
  .menu-benefits { grid-template-columns: 1fr; }
  .menu-row-head h3 { white-space: normal; font-size: 0.72rem; }
  .pedi-card-body h3 { font-size: 0.74rem; }
}

.menu-subhead {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 2.25rem 0 0.75rem;
  font-weight: 600;
  text-align: center;
}
.menu-subhead--left {
  text-align: left;
  margin-top: 1.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.22);
}
.menu-col > .menu-subhead--left:first-child { margin-top: 0; }

.menu-columns .menu-row-head h3 {
  white-space: normal;
}
@media (max-width: 640px) {
  .addon-list .name { white-space: normal; }
  .cat-tile span { font-size: 0.62rem; letter-spacing: 0.1em; padding: 0.7rem 0.4rem; }
}


.addon-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 560px;
}
.addon-list--wide {
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
@media (max-width: 640px) {
  .addon-list--wide { grid-template-columns: 1fr; }
}
.addon-list li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}
.addon-list li:last-child { border-bottom: 0; }
.addon-list .name { white-space: nowrap; }
.addon-list .dots {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 168, 76, 0.4);
  height: 0.65em;
  min-width: 1rem;
}
.addon-list strong {
  color: var(--gold-soft);
  font-weight: 600;
  white-space: nowrap;
  font-size: 0.92rem;
}
.addon-list em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

/* Elegant pedi card strip (optional showcase) */
.elegant-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0 0 2.5rem;
}
@media (max-width: 800px) {
  .elegant-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .elegant-strip { grid-template-columns: 1fr; }
}
.elegant-strip figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: var(--charcoal-3);
}
.elegant-strip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.looks-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
@media (max-width: 700px) {
  .looks-strip { grid-template-columns: 1fr 1fr; }
}
.looks-strip figure { margin: 0; }
.looks-strip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.pricing-disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.35rem 1.5rem 0.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft, #5c564c);
  line-height: 1.55;
  background: var(--ivory);
}
.pricing-disclaimer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.menu-panel .pricing-disclaimer,
.menu-panel .pricing-note a {
  color: rgba(255, 255, 255, 0.65);
}
.pricing-note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 1.75rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
}

/* —— Utility —— */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* —— Readability bump (owner: captions/text too small) —— */
.site-nav a { font-size: 0.85rem !important; }
.logo-text strong { font-size: 1.25rem !important; }
.logo-text span { font-size: 0.78rem !important; }
.eyebrow { font-size: 0.85rem !important; }
.hero-tagline,
.hero p,
.page-hero p { font-size: clamp(1.2rem, 2.4vw, 1.45rem) !important; }
.hero-trust,
.hero-sub { font-size: 1.05rem !important; }
.section-lead { font-size: 1.2rem !important; }
.section-title { font-size: clamp(2.2rem, 4.8vw, 3.25rem) !important; }
.card p,
.trust-band p,
.meta-list li,
.menu-desc,
.pedi-card-body p,
.faq-item p,
.footer p,
.footer li,
.pricing-disclaimer,
.perk-band p,
.caption { font-size: 1.05rem !important; line-height: 1.65 !important; }
.menu-row-head h3,
.pedi-card-body h3,
.cat-tile span { font-size: 1rem !important; letter-spacing: 0.06em !important; }
.menu-price,
.pedi-card .menu-price,
.price-badge { font-size: 1.15rem !important; font-weight: 600 !important; }
.menu-benefits li,
.pedi-card-body li { font-size: 1rem !important; }
.btn, .nav-cta, .callbar a { font-size: 0.95rem !important; }
.svc-jump a { font-size: 0.9rem !important; }
.footer small,
.copyright { font-size: 0.9rem !important; }
@media (max-width: 720px) {
  body { font-size: 1.1rem !important; }
  .menu-row-head h3,
  .pedi-card-body h3 { font-size: 1.02rem !important; }
  .menu-price { font-size: 1.12rem !important; }
  .cat-tile span { font-size: 0.9rem !important; padding: 0.85rem 0.5rem !important; }
}


/* Dual VIP perks (drinks + 7-day redo) */
.perk-band-grid {
  display: grid;
  gap: 1.25rem 2rem;
}
@media (min-width: 768px) {
  .perk-band-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
.perk-band-grid p {
  margin: 0;
  font-size: 1.1rem !important;
  line-height: 1.55 !important;
  color: #f5f1e8 !important;
}
.perk-band-grid strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

/* Weekday specials */
.specials-band {
  padding: 3.5rem 0;
  background: var(--ivory);
  border-block: 1px solid rgba(201, 168, 76, 0.28);
}
.specials-eyebrow { text-align: center; color: #8a6b1f; }
.specials-lead { color: #2a2a2a !important; font-size: 1.15rem !important; max-width: 36rem; }
.specials-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .specials-grid { grid-template-columns: repeat(3, 1fr); }
}
.special-card {
  background: var(--charcoal);
  color: #f5f1e8;
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  text-align: center;
}
.special-day {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}
.special-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
}
.special-off {
  margin: 0 0 0.75rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.special-card p:last-child {
  margin: 0;
  font-size: 1.05rem !important;
  color: #f0ebe0 !important;
  line-height: 1.5;
}


/* Pedicure sale banner */
.sale-banner {
  background: linear-gradient(135deg, #2a2210 0%, #1d1d1d 55%, #241a10 100%);
  border-block: 2px solid var(--gold);
  padding: 1.75rem 0;
  text-align: center;
}
.sale-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
  font-weight: 700;
}
.sale-headline {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  color: #fff !important;
  line-height: 1.25;
}
.sale-headline strong { color: var(--gold-bright); }
.sale-sub {
  margin: 0 auto;
  font-size: 1.1rem !important;
  color: #f0ebe0 !important;
  max-width: 40rem;
}
.cat-tile { position: relative; }
.cat-sale-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  margin: 0;
  background: var(--gold-bright);
  color: #1d1d1d;
  font-style: normal;
  font-size: 0.85rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
}


/* —— Services HUB cards —— */
.hub-section { padding: 2.5rem 0 4rem; background: var(--ivory); }
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 1.5rem;
}
@media (max-width: 960px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hub-grid { grid-template-columns: 1fr; }
}
.hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #f5f1e8;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hub-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  color: #f5f1e8;
}
.hub-card-media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #111;
}
.hub-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
  filter: none;
}
.hub-card:hover .hub-card-media img {
  transform: scale(1.04);
  filter: none;
}
.hub-card-media {
  background: #f5f1e8;
}
.hub-sale-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 1;
  background: var(--gold-bright);
  color: #1d1d1d;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}
.hub-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.hub-card-body h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--gold-soft);
  letter-spacing: 0.04em;
}
.hub-card-body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #f5f1e8;
}
.hub-card-cta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Breadcrumb on detail pages */
.breadcrumb {
  padding: 1rem 0 0.25rem;
  font-size: 1.05rem;
  color: #2a2a2a;
}
.breadcrumb a {
  color: #1d1d1d;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 168, 76, 0.55);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span[aria-hidden] { color: #6a655c; margin: 0 0.15rem; }

/* Sale banner aliases (detail pages) */
.sale-banner {
  margin: 0 0 2rem;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(135deg, #2a2210 0%, #1d1d1d 55%, #241a10 100%);
  border: 2px solid var(--gold);
  text-align: center;
}
.sale-banner-kicker,
.sale-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 1rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
  font-weight: 700;
}
.sale-banner-title,
.sale-headline {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
  color: #fff !important;
  line-height: 1.25;
  font-weight: 600;
}
.sale-banner-copy,
.sale-sub {
  margin: 0 auto;
  font-size: 1.12rem !important;
  line-height: 1.65 !important;
  color: #f5f1e8 !important;
  max-width: 42rem;
}

/* Dark-panel readability overrides (owner: no tiny grey captions) */
.menu-panel,
.menu-panel--alt,
.menu-panel--pedi {
  color: #f5f1e8;
}
.menu-desc,
.pedi-card .menu-desc,
.menu-disclaimer,
.menu-cat .menu-disclaimer,
.pricing-note,
.menu-panel .pricing-note,
.addon-list em {
  color: #f5f1e8 !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
  opacity: 1 !important;
}
.menu-benefits,
.pedi-card .menu-benefits,
.menu-benefits li,
.pedi-card-body li,
.addon-list li {
  color: #f5f1e8 !important;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}
.menu-row-head h3,
.pedi-card-body h3 {
  font-size: 1.05rem !important;
  color: #fff !important;
}
.menu-price,
.pedi-card-badge,
.addon-list strong {
  color: var(--gold-bright) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
}
.menu-price.call { font-size: 1rem !important; }
.pedi-meta, .pedi-time {
  font-size: 0.95rem !important;
  color: var(--gold-soft) !important;
}
.pricing-disclaimer {
  color: #2a2a2a !important;
  font-size: 1.1rem !important;
}
.section-ivory .section-lead,
.visit-strip p,
.card p {
  color: #2a2a2a !important;
}
.section-charcoal .section-lead,
.section-charcoal .card p {
  color: #f5f1e8 !important;
}
.faq-item p,
.faq-item summary {
  font-size: 1.08rem !important;
  color: #f5f1e8 !important;
  line-height: 1.65 !important;
}
.perk-band-grid p {
  font-size: 1.12rem !important;
  color: #f5f1e8 !important;
}
.specials-lead {
  margin-left: auto;
  margin-right: auto;
}

/* —— Clarity pass: bigger logo + pedicure titles —— */
.site-header { min-height: var(--header-h); }
.header-inner { min-height: var(--header-h) !important; padding-block: 0.25rem; }
.logo-link { gap: 0.85rem !important; }
.logo-link img {
  width: 78px !important;
  height: auto !important;
  max-height: 68px !important;
  object-fit: contain;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.logo-text strong {
  font-size: 2rem !important;
  color: #E8C97A !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
}
.logo-text span {
  font-size: 1.1rem !important;
  color: #fff !important;
  letter-spacing: 0.14em !important;
  font-weight: 600 !important;
}
.hero-logo {
  width: min(340px, 70vw) !important;
  height: auto !important;
  filter: drop-shadow(0 8px 28px rgba(0,0,0,0.55));
}
.page-hero .eyebrow,
.menu-kicker,
.menu-cat .menu-kicker {
  font-size: 1.15rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  color: var(--gold-bright) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
.page-hero h1,
.page-hero .gold-title,
#pedicure-title,
.menu-cat h2 {
  font-size: clamp(2.8rem, 7vw, 4.25rem) !important;
  color: var(--gold-bright) !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.page-hero p {
  font-size: 1.25rem !important;
  color: #f5f1e8 !important;
}
.site-footer .logo-link img,
.site-footer img[src*="logo"] {
  width: 120px !important;
  height: auto !important;
}
@media (max-width: 720px) {
  :root { --header-h: 88px; }
  .site-header { min-height: var(--header-h); }
  .header-inner { min-height: var(--header-h) !important; padding-block: 0.2rem; }
  .logo-link img { width: 72px !important; }
  .logo-text strong { font-size: 1.55rem !important; }
  .logo-text span { font-size: 0.95rem !important; }
}

/* logo-only header — mark lives in the logo artwork */
.logo-link .logo-text { display: none !important; }
.footer-brand .footer-name { font-family: var(--font-display, Georgia, serif); font-weight: 500; letter-spacing: 0.04em; color: var(--gold, #c9a86c); margin: 0.35rem 0 0.75rem; }
.hero .hero-logo { display: none !important; }

/* Gallery title must stay readable under sticky header */
#gallery {
  scroll-margin-top: calc(var(--header-h) + 1rem);
  padding-top: 3.5rem;
}
#gallery .section-title,
#gallery-title {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  transform: none !important;
  color: #1a1a1a !important;
  font-size: clamp(2.4rem, 5vw, 3.5rem) !important;
  letter-spacing: 0.12em !important;
  margin-bottom: 0.85rem !important;
  text-shadow: none;
  background: transparent;
}
#gallery .gold-rule {
  position: relative;
  z-index: 2;
  margin-bottom: 1rem;
}
#gallery .section-lead {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  transform: none !important;
}


/* Pedicure readability: large body text, shorter photo */
.menu-panel--pedi .pedi-card-media img {
  aspect-ratio: 4 / 3 !important;
  object-position: center center !important;
}
.menu-panel--pedi .pedi-card-body {
  padding: 1.35rem 1.25rem 1.6rem !important;
  gap: 0.35rem;
}
.menu-panel--pedi .pedi-card-body h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
  text-transform: none !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.menu-panel--pedi .pedi-meta,
.menu-panel--pedi .pedi-time {
  font-size: 1.05rem !important;
  letter-spacing: 0.06em !important;
  color: var(--gold-bright, #e8c76a) !important;
}
.menu-panel--pedi .pedi-card .menu-desc,
.menu-panel--pedi .menu-desc {
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  line-height: 1.55 !important;
  color: #fff !important;
  font-weight: 500 !important;
  margin: 0.35rem 0 0.85rem !important;
}
.menu-panel--pedi .pedi-card .menu-benefits,
.menu-panel--pedi .pedi-card .menu-benefits li,
.menu-panel--pedi .pedi-card-body li {
  font-size: clamp(1.08rem, 1.8vw, 1.22rem) !important;
  line-height: 1.7 !important;
  color: #f5f1e8 !important;
}
.menu-panel--pedi .pedi-card-badge {
  font-size: 1.15rem !important;
  padding: 0.45rem 0.8rem !important;
}
.menu-panel--pedi .pedi-card-thumb {
  width: 72px !important;
  height: 72px !important;
}
@media (max-width: 720px) {
  .menu-panel--pedi .pedi-card-body h3 { font-size: 1.35rem !important; }
  .menu-panel--pedi .pedi-card .menu-desc { font-size: 1.25rem !important; }
  .menu-panel--pedi .pedi-card .menu-benefits li { font-size: 1.15rem !important; }
}

.menu-panel--pedi .pedi-card-top--text { margin-bottom: 0.35rem !important; }
.menu-panel--pedi .pedi-card-top--text > div { width: 100%; }


/* Client-friendly: oversized page-top wording */
.site-nav a {
  font-size: 1.05rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 600 !important;
}
.site-nav .nav-cta {
  font-size: 1.05rem !important;
  padding: 0.7rem 1.15rem !important;
}
.page-hero {
  padding: 5.5rem 0 4.25rem !important;
}
.page-hero .eyebrow,
.menu-kicker,
.menu-cat .menu-kicker,
.specials-eyebrow,
.sale-banner-kicker {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
  letter-spacing: 0.16em !important;
  font-weight: 700 !important;
  color: var(--gold-bright, #e8c76a) !important;
  line-height: 1.4 !important;
}
.page-hero h1,
.page-hero .gold-title,
#gallery-title,
#pedicure-title,
.menu-cat h2,
.section-title {
  font-size: clamp(2.85rem, 8vw, 5rem) !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}
.page-hero p,
.page-hero .hero-tagline,
.menu-cat .menu-disclaimer,
.section-lead {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem) !important;
  line-height: 1.55 !important;
  color: #f5f1e8 !important;
  font-weight: 500 !important;
  max-width: 44rem !important;
}
.section-ivory .section-lead,
#gallery .section-lead {
  color: #1a1a1a !important;
}

/* Specials sit on ivory — must stay dark after client-friendly .section-lead light override */
.specials-band .section-lead,
.specials-band .specials-lead,
.specials-lead {
  color: #2a2a2a !important;
}
.specials-band .section-title,
#specials-title {
  color: #1a1a1a !important;
}
.breadcrumb {
  font-size: 1.25rem !important;
  padding: 1.25rem 0 0.5rem !important;
}
.breadcrumb a,
.breadcrumb span {
  font-size: 1.25rem !important;
}
.sale-banner-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem) !important;
}
.sale-banner-copy {
  font-size: 1.2rem !important;
  line-height: 1.6 !important;
}
.cat-tile span,
.svc-hub-card h3,
.cat-card h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
}
@media (max-width: 720px) {
  .site-nav a { font-size: 1.15rem !important; }
  .page-hero h1,
  .page-hero .gold-title,
  #gallery-title { font-size: 2.75rem !important; }
  .page-hero p,
  .page-hero .hero-tagline { font-size: 1.35rem !important; }
  .page-hero .eyebrow { font-size: 1.15rem !important; }
}

/* Home hero client size */
.hero #hero-title,
.hero h1 {
  font-size: clamp(2.85rem, 8vw, 5rem) !important;
  line-height: 1.08 !important;
}
.hero .hero-tagline,
.hero .hero-lead,
.hero .trust-line,
.hero .eyebrow {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem) !important;
  line-height: 1.5 !important;
}



/* SITEWIDE: bold high-contrast readable type */
:root {
  --vip-gold: #E8C97A;          /* soft champagne — titles, prices, stars, accents */
  --vip-gold-deep: #E8C97A;     /* unified: no second darker gold */
  --vip-gold-mid: #E8C97A;
}

.hero-bg {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.72) 45%, rgba(0,0,0,0.88) 100%),
    url("../images/lobby-welcome.webp") center 45%/cover no-repeat !important;
}

/* Home: title + rating SAME bright gold */
.hero #hero-title,
.hero h1 {
  font-size: clamp(3rem, 8.5vw, 5.25rem) !important;
  font-weight: 800 !important;
  color: var(--vip-gold) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 8px 28px rgba(0,0,0,0.55) !important;
  letter-spacing: 0.06em !important;
}
.hero h1 .line2 {
  color: var(--vip-gold) !important;
  font-weight: 700 !important;
  font-size: 0.78em !important;
}
.hero .eyebrow,
.hero .eyebrow .stars,
.hero .stars {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem) !important;
  font-weight: 700 !important;
  color: var(--vip-gold) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9) !important;
  opacity: 1 !important;
  letter-spacing: 0.12em !important;
}

/* Home: tagline / lead / hours — darker complementary gold */
.hero .hero-tagline,
.hero .hero-lead,
.hero .trust-line {
  font-size: clamp(1.3rem, 2.6vw, 1.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  color: #F5F1E8 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85) !important;
  opacity: 1 !important;
}

/* Page heroes sitewide — same hierarchy */
.page-hero h1,
.page-hero .gold-title,
.page-hero--services-lux .gold-title {
  font-size: clamp(3rem, 8vw, 5rem) !important;
  font-weight: 800 !important;
  color: var(--vip-gold) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.85), 0 8px 24px rgba(0,0,0,0.5) !important;
}
.page-hero .eyebrow {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem) !important;
  font-weight: 700 !important;
  color: var(--vip-gold) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85) !important;
  opacity: 1 !important;
}
.page-hero p,
.page-hero .hero-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem) !important;
  font-weight: 700 !important;
  color: #F5F1E8 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.85) !important;
  opacity: 1 !important;
}
.menu-kicker {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  font-weight: 700 !important;
  color: var(--vip-gold) !important;
  opacity: 1 !important;
}

.page-hero,
.page-hero--lobby,
.page-hero--exterior,
.page-hero--services,
.page-hero--services-lux,
.page-hero--pedicures {
  background-color: #111 !important;
}

/* Section titles — bright gold on dark panels; charcoal on ivory */
.section-title,
#gallery-title,
#pedicure-title,
.menu-cat h2 {
  font-weight: 800 !important;
}
.section-ivory .section-title,
.visit-strip .section-title,
#gallery-title,
#specials-title,
.specials-band .section-title {
  color: #1a1a1a !important;
}
.section-charcoal .section-title,
.section-dark .section-title,
.section-alt .section-title,
.menu-panel .menu-cat h2,
.menu-panel #pedicure-title,
.cta-band h2,
.hub-card-body h2 {
  color: var(--vip-gold) !important;
  font-weight: 800 !important;
}

/* Leads / supporting copy — darker gold on dark; dark charcoal on light */
.section-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
  font-weight: 600 !important;
}
.section-ivory .section-lead,
#gallery .section-lead,
.visit-strip p {
  color: #1a1a1a !important;
}
.section-charcoal .section-lead,
.menu-disclaimer,
.menu-cat .menu-disclaimer,
.cta-band p,
.hub-card-body p,
.menu-panel .pricing-note {
  color: #F5F1E8 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

body { font-weight: 500; }
.card h3,
.pedi-card-body h3,
.menu-row-head h3,
.contact-card h2,
.footer-brand .footer-name,
.site-footer h3 {
  font-weight: 800 !important;
}
.section-charcoal .card h3 { color: var(--vip-gold) !important; }
.section-charcoal .card p,
.menu-desc,
.pedi-card .menu-desc,
.menu-benefits li,
.pedi-card-body li,
.perk-band-grid p {
  font-weight: 600 !important;
  opacity: 1 !important;
  color: #f3e6c0 !important;
}
.perk-band-grid strong { color: var(--vip-gold) !important; }

.site-nav a {
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #fff !important;
}
.site-nav a[aria-current="page"] { color: var(--vip-gold) !important; }
.site-nav .nav-cta { font-weight: 800 !important; border-width: 2px !important; }
.btn { font-weight: 800 !important; font-size: 1.05rem !important; }

.breadcrumb, .breadcrumb a, .breadcrumb span {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
}

/* Keep specials readable on ivory */
.specials-band .section-lead,
.specials-lead {
  color: #2a2a2a !important;
  font-weight: 600 !important;
}
.specials-band .section-title,
#specials-title { color: #1a1a1a !important; }

@media (max-width: 720px) {
  .hero #hero-title, .hero h1 { font-size: 2.85rem !important; }
  .hero .hero-tagline, .hero .hero-lead, .hero .eyebrow, .hero .trust-line {
    font-size: 1.3rem !important;
  }
  .page-hero h1, .page-hero .gold-title { font-size: 2.85rem !important; }
  .page-hero p, .page-hero .hero-tagline, .page-hero .eyebrow {
    font-size: 1.25rem !important;
  }
}

/* Services hero category jump chips */
.svc-jump--hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
  max-width: 52rem;
}
.svc-jump--hero a {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  padding: 0.55rem 0.95rem !important;
  border: 2px solid var(--vip-gold, #E8C97A) !important;
  color: var(--vip-gold, #E8C97A) !important;
  background: rgba(0,0,0,0.35) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em;
}
.svc-jump--hero a:hover {
  background: var(--vip-gold, #E8C97A) !important;
  color: #1a1a1a !important;
}
.hub-section { padding-top: 2.75rem; }
.hub-section .section-lead { color: #1a1a1a !important; }


/* Giant simple service name list — foolproof */
.svc-big-list-section {
  background: var(--ivory, #f7f3ea);
  padding: 3rem 0 3.75rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.svc-list-title {
  font-family: var(--font-display, Georgia, serif);
  font-size: clamp(2.5rem, 6vw, 3.75rem) !important;
  font-weight: 800 !important;
  text-align: center;
  margin: 0 0 0.5rem;
  color: #1a1a1a !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.svc-list-lead {
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem) !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin: 0 0 1.75rem;
}
.svc-big-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}
.svc-big-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: center;
  padding: 1.55rem 1.5rem;
  background: #1d1d1d;
  border: 3px solid var(--vip-gold, #E8C97A);
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
}
.svc-big-link:hover,
.svc-big-link:focus-visible {
  background: #2a2410;
  transform: translateY(-1px);
}
.svc-big-name {
  grid-column: 1;
  grid-row: 1;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem) !important;
  font-weight: 800 !important;
  color: var(--vip-gold, #E8C97A) !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}
.svc-big-hint {
  grid-column: 1;
  grid-row: 2;
  font-size: clamp(1.05rem, 2vw, 1.25rem) !important;
  font-weight: 600 !important;
  color: #f3e6c0 !important;
  margin-top: 0.2rem;
}
.svc-big-arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 2rem !important;
  font-weight: 800;
  color: var(--vip-gold, #E8C97A) !important;
}
@media (max-width: 560px) {
  .svc-big-link { padding: 1.1rem 1rem; }
  .svc-big-name { font-size: 1.85rem !important; }
}


/* Pedicure sale — huge & clear it is for MOST pedicures */
.hero-sale-line {
  margin: 0.85rem 0 0.65rem !important;
  font-size: clamp(1.85rem, 5.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--vip-gold, #E8C97A) !important;
  text-shadow: 0 2px 12px rgba(0,0,0,0.85) !important;
  line-height: 1.15 !important;
}
.page-hero--pedicures .hero-tagline--sub {
  margin-top: 0.35rem !important;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem) !important;
  color: #F5F1E8 !important;
}
.sale-banner--top {
  margin: 0 !important;
  padding: 1.75rem 1.25rem !important;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-top: 3px solid var(--vip-gold, #E8C97A) !important;
  border-bottom: 3px solid var(--vip-gold, #E8C97A) !important;
}
.sale-banner--top .sale-banner-title {
  font-size: clamp(2rem, 6vw, 3.5rem) !important;
  font-weight: 800 !important;
  color: var(--vip-gold, #E8C97A) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin: 0.35rem 0 0.75rem !important;
}
.sale-banner--top .sale-banner-kicker {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem) !important;
  color: var(--vip-gold, #E8C97A) !important;
}
.sale-banner--top .sale-banner-copy {
  font-size: clamp(1.15rem, 2.3vw, 1.4rem) !important;
  font-weight: 600 !important;
  max-width: 46rem !important;
}
.sale-banner--top .sale-banner-copy strong {
  color: var(--vip-gold, #E8C97A) !important;
  font-weight: 800 !important;
}
.hub-sale-tag {
  font-size: 0.95rem !important;
  max-width: 11rem;
  line-height: 1.25 !important;
  white-space: normal !important;
}


/* MANI AESTHETIC THREE TIER */
.menu-panel--mani-aesthetic .pedi-card-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 980px) {
  .menu-panel--mani-aesthetic .pedi-card-grid { grid-template-columns: 1fr; }
}
.menu-panel--mani-aesthetic .pedi-card {
  background: linear-gradient(180deg, #2a2723 0%, #1a1816 100%);
  border: 1px solid rgba(240, 215, 140, 0.28);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.menu-panel--mani-aesthetic .pedi-card:hover {
  border-color: #E8C97A;
  box-shadow: 0 22px 56px rgba(0,0,0,0.45);
}
.menu-panel--mani-aesthetic .pedi-card-media {
  background: #f5f1e8;
}
.menu-panel--mani-aesthetic .pedi-card-media img {
  aspect-ratio: 4/5;
  object-position: center;
}
.menu-panel--mani-aesthetic .pedi-card-badge {
  background: rgba(15,14,12,0.82);
  border: 1px solid #E8C97A;
  color: #E8C97A;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.85rem;
  backdrop-filter: blur(6px);
}
.menu-panel--mani-aesthetic .pedi-card-body {
  padding: 1.35rem 1.25rem 1.6rem;
  gap: 0.75rem;
}
.menu-panel--mani-aesthetic .pedi-card-body h3 {
  font-size: 1.35rem !important;
  color: #E8C97A !important;
  letter-spacing: 0.02em;
}
.menu-panel--mani-aesthetic .pedi-meta {
  color: #F5F1E8;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.menu-panel--mani-aesthetic .menu-desc {
  color: #f5f1e8 !important;
  font-size: 1.05rem !important;
  line-height: 1.45;
  font-style: italic;
}
.mani-steps {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mani-steps li {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #f5f1e8 !important;
  font-size: 1.02rem !important;
  line-height: 1.35;
}
.mani-step-num {
  color: #E8C97A;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  padding-top: 0.12rem;
}
.mani-step-text {
  color: inherit;
}


/* MANI ULTRA STEP GALLERY */
.pedi-card--ultra,
.pedi-card--deluxe {
  border-color: rgba(240, 215, 140, 0.55) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.pedi-card-tag {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  z-index: 1;
  background: #E8C97A;
  color: #1d1d1d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}
.mani-ultra-lead {
  margin: 0.25rem 0 0;
  color: #F5F1E8 !important;
  font-size: 1rem !important;
  font-weight: 600;
}
.mani-ultra-steps {
  margin: 2.5rem 0 1.5rem;
  padding: 1.75rem 1.25rem 1.5rem;
  border: 1px solid rgba(240, 215, 140, 0.32);
  background: linear-gradient(180deg, rgba(42,39,35,0.95), rgba(20,18,16,0.98));
}
.mani-ultra-steps-head {
  text-align: center;
  margin-bottom: 1.25rem;
}
.mani-ultra-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
/* Express (5) + Deluxe (10): auto-fit so leftover columns collapse — no empty black cell */
.mani-ultra-steps--express .mani-ultra-step-grid,
.mani-ultra-steps--deluxe .mani-ultra-step-grid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
@media (min-width: 1101px) {
  .mani-ultra-steps--express .mani-ultra-step-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .mani-ultra-steps--deluxe .mani-ultra-step-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .mani-ultra-step-grid,
  .mani-ultra-steps--express .mani-ultra-step-grid,
  .mani-ultra-steps--deluxe .mani-ultra-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mani-ultra-steps--express .mani-ultra-step:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}
@media (max-width: 560px) {
  .mani-ultra-step-grid,
  .mani-ultra-steps--express .mani-ultra-step-grid,
  .mani-ultra-steps--deluxe .mani-ultra-step-grid {
    grid-template-columns: 1fr;
  }
  .mani-ultra-steps--express .mani-ultra-step:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }
}

.mani-ultra-step {
  margin: 0;
  background: #141210;
  border: 1px solid rgba(240, 215, 140, 0.22);
  overflow: hidden;
}
.mani-ultra-step img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.mani-ultra-step figcaption {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.85rem 0.9rem 1rem;
}
.mani-ultra-step .mani-step-num {
  color: #E8C97A;
  font-weight: 800;
  font-size: 0.95rem;
}
.mani-ultra-step .mani-step-text {
  color: #f5f1e8;
  font-size: 1.02rem;
  line-height: 1.35;
  font-weight: 600;
}




/* ============================================================
   MANI COMPARE — Express vs Deluxe side-by-side
   ============================================================ */
.mani-compare {
  margin: 0 0 2.25rem;
  padding: 1.75rem 1.35rem 1.6rem;
  border: 1px solid rgba(240, 215, 140, 0.35);
  background: linear-gradient(180deg, #f7f3ea 0%, #efe8d8 55%, #e8dfcc 100%);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}
.mani-compare-head {
  text-align: center;
  margin-bottom: 1.35rem;
}
.mani-compare-title {
  font-size: clamp(1.55rem, 3vw, 2.15rem) !important;
  margin: 0.3rem 0 0.45rem !important;
  color: #1d1d1d !important;
}
.mani-compare .eyebrow {
  color: #8a7340 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.85rem !important;
}
.mani-compare-lead {
  margin: 0 auto;
  max-width: 36rem;
  color: #3a342a !important;
  font-size: 1.08rem !important;
  font-weight: 600;
  line-height: 1.45;
}
.mani-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}
@media (max-width: 760px) {
  .mani-compare-grid { grid-template-columns: 1fr; }
}
.mani-compare-col {
  position: relative;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(232, 201, 122, 0.45);
  padding: 1.25rem 1.15rem 1.35rem;
}
.mani-compare-col--featured {
  background: linear-gradient(180deg, #2a2723 0%, #1a1816 100%);
  border-color: #E8C97A;
  box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}
.mani-compare-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  background: #E8C97A;
  color: #1d1d1d;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
}
.mani-compare-col-head {
  margin-bottom: 0.95rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(232, 201, 122, 0.4);
}
.mani-compare-col--featured .mani-compare-col-head {
  border-bottom-color: rgba(232, 201, 122, 0.35);
}
.mani-compare-col h4 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: #1d1d1d;
  letter-spacing: 0.01em;
}
.mani-compare-col--featured h4 {
  color: #E8C97A;
}
.mani-compare-price {
  margin: 0;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.1;
  color: #8a7340;
  letter-spacing: 0.02em;
}
.mani-compare-col--featured .mani-compare-price {
  color: #E8C97A;
}
.mani-compare-time {
  margin: 0.35rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #3a342a;
}
.mani-compare-col--featured .mani-compare-time {
  color: #F5F1E8;
}
.mani-compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mani-compare-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.55rem;
  align-items: start;
  font-size: 1.08rem !important;
  font-weight: 650;
  line-height: 1.35;
  color: #1d1d1d !important;
}
.mani-compare-col--featured .mani-compare-list li {
  color: #F5F1E8 !important;
}
.mani-compare-mark {
  font-weight: 800;
  color: #8a7340;
  font-size: 1.05rem;
}
.mani-compare-col--featured .mani-compare-mark {
  color: #E8C97A;
}
.mani-compare-list li.is-no {
  opacity: 0.55;
  font-weight: 550;
}
.mani-compare-list li.is-no .mani-compare-mark {
  color: #7a7368;
}
.mani-compare-col--featured .mani-compare-list li.is-no .mani-compare-mark {
  color: rgba(245, 241, 232, 0.45);
}

/* ============================================================
   CHAMPAGNE READABILITY PASS (2026-09-08)
   One soft champagne gold #E8C97A · cream body on dark · charcoal on ivory
   ============================================================ */
:root {
  --gold: #E8C97A;
  --gold-bright: #E8C97A;
  --gold-soft: #E8C97A;
  --gold-dim: rgba(232, 201, 122, 0.18);
  --champagne: #E8C97A;
  --vip-gold: #E8C97A;
  --vip-gold-deep: #E8C97A;
  --vip-gold-mid: #E8C97A;
  --cream: #F5F1E8;
  --charcoal-ink: #1d1d1d;
}

/* Base body — older-client readable */
body {
  font-size: 1.22rem !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
}

/* Titles / prices / stars / accents — ONE champagne gold */
.gold-title,
.page-hero .gold-title,
.page-hero h1,
.page-hero--services-lux .gold-title,
.hero #hero-title,
.hero h1,
.hero h1 .line2,
.hero .eyebrow,
.hero .eyebrow .stars,
.hero .stars,
.stars,
.page-hero .eyebrow,
.menu-kicker,
.menu-cat .menu-kicker,
.section-charcoal .section-title,
.section-dark .section-title,
.section-alt .section-title,
.menu-panel .menu-cat h2,
.menu-panel #pedicure-title,
#pedicure-title,
#manicure-title,
.menu-cat h2,
.cta-band h2,
.hub-card-body h2,
.section-charcoal .card h3,
.menu-price,
.pedi-card-badge,
.addon-list strong,
.perk-band-grid strong,
.hero-sale-line,
.sale-banner--top .sale-banner-title,
.sale-banner--top .sale-banner-kicker,
.sale-banner--top .sale-banner-copy strong,
.logo-text strong,
.footer-brand .footer-name,
.mani-step-num,
.mani-ultra-step .mani-step-num {
  color: #E8C97A !important;
}

/* Taglines / leads on dark — warm cream (NOT darker gold) */
.hero-tagline,
.hero .hero-tagline,
.hero .hero-lead,
.hero .trust-line,
.page-hero p,
.page-hero .hero-tagline,
.page-hero--pedicures .hero-tagline--sub,
.section-charcoal .section-lead,
.menu-disclaimer,
.menu-cat .menu-disclaimer,
.cta-band p,
.hub-card-body p,
.menu-panel .pricing-note,
.pricing-note,
.mani-ultra-lead {
  color: #F5F1E8 !important;
}

/* Unified champagne — titles/prices gold; meta cream (rules below) */
.menu-panel--mani-aesthetic .pedi-card-body h3 {
  color: #E8C97A !important;
}
.menu-panel--mani-aesthetic .pedi-meta,
.menu-panel--mani-aesthetic .pedi-time,
.menu-panel--pedi .pedi-meta,
.menu-panel--pedi .pedi-time {
  color: #F5F1E8 !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
}
.menu-panel--mani-aesthetic .pedi-card-badge,
.menu-panel--pedi .pedi-card-badge {
  color: #E8C97A !important;
  border-color: #E8C97A !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
}
.menu-panel--mani-aesthetic .pedi-card:hover {
  border-color: #E8C97A !important;
}
.pedi-card-tag {
  background: #E8C97A !important;
  color: #1d1d1d !important;
  font-size: 0.95rem !important;
}
.mani-step-num,
.mani-ultra-step .mani-step-num {
  font-size: 1.02rem !important;
  font-weight: 700 !important;
}

/* Body / step text on dark panels — cream, bold enough */
.menu-desc,
.pedi-card .menu-desc,
.menu-panel--mani-aesthetic .menu-desc,
.menu-panel--pedi .menu-desc,
.mani-steps li,
.mani-step-text,
.mani-ultra-step .mani-step-text,
.menu-benefits li,
.pedi-card-body li,
.section-charcoal .card p,
.faq-item p,
.faq-item summary,
.perk-band-grid p {
  color: #F5F1E8 !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}

/* Ivory / light sections — dark charcoal bold, not tiny gray */
.section-ivory .section-lead,
.section-ivory .section-title,
.visit-strip .section-title,
.visit-strip p,
#gallery-title,
#gallery .section-title,
#gallery .section-lead,
#specials-title,
.specials-band .section-title,
.specials-band .section-lead,
.specials-lead,
.breadcrumb,
.breadcrumb a,
.breadcrumb span,
.pricing-disclaimer,
.card p {
  color: #1d1d1d !important;
  font-weight: 600 !important;
  opacity: 1 !important;
}
.special-card .special-day,
.special-card .special-off {
  color: #E8C97A !important;
  font-weight: 700 !important;
}
.specials-eyebrow {
  color: #1d1d1d !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
}

/* Size floor — kill tiny 0.68–0.78rem labels */
.eyebrow,
.menu-kicker,
.cat-tile span,
.svc-jump a,
.footer small,
.copyright,
.logo-text span,
.pedi-card-body h3,
.menu-row-head h3,
.site-nav a,
.btn,
.nav-cta,
.callbar a,
.call-bar a {
  font-size: max(0.95rem, 1em);
}
.site-nav a {
  font-size: 1.08rem !important;
  font-weight: 700 !important;
}
.btn, .nav-cta, .call-bar a, .callbar a {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}
.eyebrow, .menu-kicker, .specials-eyebrow {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
}
.cat-tile span {
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: 0.85rem 0.55rem !important;
}
.section-title,
.menu-cat h2 {
  font-size: clamp(2.2rem, 5vw, 3.35rem) !important;
  font-weight: 800 !important;
}
.section-lead {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem) !important;
  font-weight: 600 !important;
}
.hero-tagline,
.page-hero .hero-tagline,
.page-hero p {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem) !important;
  font-weight: 600 !important;
}
.pedi-card-body h3,
.menu-panel--pedi .pedi-card-body h3,
.menu-panel--mani-aesthetic .pedi-card-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem) !important;
  font-weight: 700 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}
.menu-desc,
.mani-steps li,
.mani-step-text {
  font-size: 1.08rem !important;
  line-height: 1.45 !important;
}

/* Pedicure cards — same dark aesthetic as Manicures */
.menu-panel--pedi.menu-panel--mani-aesthetic .pedi-card,
.menu-panel--pedi .pedi-card {
  background: linear-gradient(180deg, #2a2723 0%, #1a1816 100%);
  border: 1px solid rgba(232, 201, 122, 0.28);
  box-shadow: 0 18px 48px rgba(0,0,0,0.35);
}
.menu-panel--pedi .pedi-card:hover {
  border-color: #E8C97A;
  box-shadow: 0 22px 56px rgba(0,0,0,0.45);
}
.menu-panel--pedi .pedi-card-media {
  background: #141210;
}
.menu-panel--pedi .pedi-card-media img {
  aspect-ratio: 4/5 !important;
  object-position: center center !important;
}
.menu-panel--pedi .pedi-card-body {
  padding: 1.35rem 1.25rem 1.6rem !important;
  gap: 0.75rem;
}
.menu-panel--pedi .mani-steps {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.menu-panel--pedi .mani-steps li {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: #F5F1E8 !important;
  font-size: 1.08rem !important;
  line-height: 1.4;
  font-weight: 600 !important;
}

/* Links stay champagne on hover */
a { color: #E8C97A; }
a:hover { color: #F5F1E8; }
.site-nav a[aria-current="page"] { color: #E8C97A !important; }

/* HOME SERVICES PREVIEW: readable cards */
/* White/cream cards were getting champagne text — invisible. */
.section-charcoal .card {
  background: #1a1a1a !important;
  border: 1px solid rgba(232, 201, 122, 0.45) !important;
  color: #F5F1E8 !important;
}
.section-charcoal .card h3 {
  color: #E8C97A !important;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
}
.section-charcoal .card p {
  color: #F5F1E8 !important;
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
  opacity: 1 !important;
}
.section-charcoal .section-title {
  color: #E8C97A !important;
  text-shadow: 0 2px 8px rgba(0,0,0,0.65) !important;
}
.section-charcoal .section-lead {
  color: #F5F1E8 !important;
  opacity: 1 !important;
}
/* Extra dark panel so gold/cream never sit on a washed background */
.section-charcoal {
  background: #141414 !important;
}

/* —— Reviews page & homepage love-notes —— */
.reviews-stats {
  background: #141414;
  border-block: 1px solid rgba(232, 201, 122, 0.28);
  padding: 2.5rem 0;
  color: #F5F1E8;
}
.reviews-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 700px) {
  .reviews-stats-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
.reviews-stat-value {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3rem);
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.04em;
  line-height: 1.15;
}
.reviews-stat-label {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  color: #F5F1E8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2rem;
}
@media (max-width: 960px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .review-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: #1a1a1a;
  border: 1px solid rgba(232, 201, 122, 0.4);
  border-radius: 0;
  padding: 1.75rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  color: #F5F1E8;
}
.review-stars {
  margin: 0;
  color: var(--champagne);
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: 0.12em;
  line-height: 1;
}
.review-quote {
  margin: 0;
  flex: 1;
}
.review-quote p {
  margin: 0;
  color: #F5F1E8;
  font-size: clamp(1.12rem, 2.1vw, 1.32rem);
  font-weight: 600;
  line-height: 1.55;
}
.review-author {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 0.02em;
}
.review-source {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
}
.reviews-note {
  margin: 1.75rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--muted-dark);
}

#love-notes .review-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
  #love-notes .review-grid { grid-template-columns: 1fr; }
}

/* Compact weekday specials — ~half height, not tall black squares */

.specials-band { padding: 2rem 0 !important; }

.specials-grid { gap: 0.75rem !important; margin-top: 1.15rem !important; }

.special-card {

  padding: 0.85rem 1rem !important;

  min-height: 0 !important;

  display: flex !important;

  flex-direction: column !important;

  justify-content: center !important;

  gap: 0.15rem !important;

}

.special-day {

  margin: 0 !important;

  font-size: 0.8rem !important;

  letter-spacing: 0.12em !important;

}

.special-card h3 {

  margin: 0 !important;

  font-size: 1.15rem !important;

  line-height: 1.2 !important;

}

.special-off {

  margin: 0.15rem 0 !important;

  font-size: 1.35rem !important;

  line-height: 1.15 !important;

}

.special-card p:last-child {

  margin: 0 !important;

  font-size: 0.92rem !important;

  line-height: 1.35 !important;

}

/* Force compact specials sitewide on every page */

html body .specials-band .special-card {

  padding: 0.75rem 0.9rem !important;

  min-height: unset !important;

  height: auto !important;

  aspect-ratio: auto !important;

}

html body .specials-band .special-card h3 { font-size: 1.1rem !important; margin: 0 !important; }

html body .specials-band .special-card .special-off { font-size: 1.25rem !important; margin: 0.1rem 0 !important; }

html body .specials-band .special-card .special-day { font-size: 0.75rem !important; margin: 0 !important; }

html body .specials-band .special-card p:last-child { font-size: 0.88rem !important; line-height: 1.3 !important; }

html body .specials-band { padding: 1.75rem 0 !important; }

/* Special cards stay cream/gold on charcoal */
html body .specials-band .special-card,
html body .specials-band .special-card h3,
html body .specials-band .special-card p,
html body .specials-band .special-card p:last-child {
  color: #F5F1E8 !important;
}
html body .specials-band .special-card .special-day,
html body .specials-band .special-card .special-off {
  color: #E8C97A !important;
}

/* Hero Google rating — centered, aligned */

.hero .container { text-align: center; }

.hero .eyebrow.hero-rating,

.hero .hero-rating {

  display: flex !important;

  flex-direction: row !important;

  flex-wrap: wrap !important;

  justify-content: center !important;

  align-items: center !important;

  gap: 0.4rem 0.55rem !important;

  width: 100% !important;

  max-width: 22rem !important;

  margin: 0 auto 1rem !important;

  text-align: center !important;

  letter-spacing: 0.06em !important;

  text-transform: none !important;

  line-height: 1.25 !important;

}

.hero .hero-rating .stars {

  display: inline-block !important;

  letter-spacing: 0.08em !important;

  line-height: 1 !important;

  white-space: nowrap !important;

}

.hero .hero-rating .hero-rating-text {

  display: inline-block !important;

  white-space: nowrap !important;

  letter-spacing: 0.04em !important;

  font-size: clamp(1.05rem, 3.2vw, 1.35rem) !important;

  font-weight: 700 !important;

  color: #E8C97A !important;

}

@media (max-width: 420px) {

  .hero .hero-rating {

    flex-direction: column !important;

    gap: 0.25rem !important;

  }

}

/* Mani pedi-like step readability bump */
.menu-panel--mani-aesthetic .mani-steps li,
.menu-panel--mani-aesthetic .mani-step-text {
  font-size: 1.12rem !important;
  font-weight: 650 !important;
  line-height: 1.4 !important;
}
.menu-panel--mani-aesthetic .mani-step-num {
  font-size: 1.08rem !important;
}


/* Mani compare title on cream — win over later .gold-title champagne rule */
.mani-compare .mani-compare-title.gold-title,
.mani-compare h3.mani-compare-title {
  color: #1d1d1d !important;
}


/* ===== Prod polish pass 2026-09-12 ===== */

/* Sticky header offset for first content / heroes */
html {
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
main > .page-hero,
main > .hero {
  scroll-margin-top: 0;
}
.page-hero {
  padding-top: max(3.5rem, 2.5rem) !important;
}
.page-hero--services-lux {
  padding-top: max(4.5rem, 3rem) !important;
}

/* Anchor / heading clearance under sticky header */
h1, h2, h3,
[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.page-hero h1,
.page-hero .gold-title,
.hero h1 {
  scroll-margin-top: calc(var(--header-h) + 0.5rem);
}

/* Hide common Netlify deploy badge so it does not cover Call/Book bar.
   Owner can also disable: Netlify → Site settings → General → Project badges. */
iframe[src*="netlify.com"],
a[href*="netlify.com"][target="_blank"] img[alt*="Netlify"],
a[href*="netlify.app"] img,
body > a[href*="netlify"][style*="position"],
.netlify-badge,
#netlify-badge,
[data-netlify-badge],
div[style*="z-index"] > a[href*="netlify.com/open-source"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Body bottom clearance = call-bar + badge gap */
@media (max-width: 899px) {
  body {
    padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px)) !important;
  }
  .site-footer {
    padding-bottom: 1.5rem;
  }
}

/* Contact form */
.contact-form-wrap {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: #fff;
  border: 1px solid rgba(29, 29, 29, 0.08);
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.35rem;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.contact-form-wrap .form-lead {
  margin: 0 0 1.25rem;
  color: var(--muted-dark);
  font-size: 1.05rem;
}
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(29,29,29,0.18);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--charcoal);
  width: 100%;
}
.contact-form textarea { min-height: 7rem; resize: vertical; }
.contact-form .hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.contact-form .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}
.form-success {
  display: none;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: rgba(232, 201, 122, 0.22);
  border: 1px solid var(--gold);
  color: var(--charcoal);
  font-weight: 600;
}
.form-success.is-visible { display: block; }

/* About team placeholders */
.team-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .team-slots { grid-template-columns: 1fr; }
}
.team-slot {
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  background:
    linear-gradient(180deg, rgba(245,241,232,0.95), rgba(232,201,122,0.12)),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 8px,
      rgba(232,201,122,0.08) 8px,
      rgba(232,201,122,0.08) 16px
    );
  border: 1px dashed rgba(232, 201, 122, 0.65);
  color: var(--muted-dark);
}
.team-slot strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.team-slot span {
  font-size: 0.95rem;
  line-height: 1.45;
}

/* Gallery page + homepage teaser */
.gallery-page .gallery {
  margin-top: 1.5rem;
}
.gallery-teaser-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}


/* About — show full Khai & Ivy portraits (no 16:10 head crop) */
.about-owners .photo-frame {
  background: #111;
}
.about-owners .photo-frame img {
  aspect-ratio: auto !important;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center top !important;
  display: block;
}


/* ========== Full Menu page (cream / charcoal / gold) ========== */
.full-menu-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  justify-content: center;
  padding: 1.15rem 1rem 0.35rem;
  margin-bottom: 0;
}
.full-menu-jump a {
  font-family: var(--font);
  font-size: 0.95rem !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1a1a1a !important;
  background: #fff;
  border: 1px solid rgba(232, 201, 122, 0.75);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  text-decoration: none;
}
.full-menu-jump a:hover {
  background: #E8C97A;
  color: #1a1a1a !important;
}
.full-menu-page {
  padding-top: 1.5rem !important;
  padding-bottom: 2.5rem !important;
}
.full-menu-block {
  background: #fff;
  border: 1px solid rgba(232, 201, 122, 0.45);
  border-radius: 12px;
  padding: 1.35rem 1.4rem 1.15rem;
  margin: 0 0 1.35rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.full-menu-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid #E8C97A;
}
.full-menu-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 1.95rem) !important;
  color: #1a1a1a !important;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.full-menu-cat-link {
  font-family: var(--font);
  font-size: 1rem !important;
  font-weight: 600;
  color: #8a6b1f !important;
  text-decoration: none;
  white-space: nowrap;
}
.full-menu-cat-link:hover { text-decoration: underline; }
.full-menu-sub {
  margin: 1.1rem 0 0.45rem;
  font-family: var(--font);
  font-size: 1.05rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6b1f !important;
  font-weight: 700;
}
.full-menu-note {
  margin: 0 0 0.85rem;
  font-size: 1.12rem !important;
  color: #3a3a3a !important;
  line-height: 1.45;
}
.full-menu-sale,
.full-menu-sale-line {
  color: #8a6b1f !important;
  font-weight: 600;
}
.full-menu-rows {
  display: grid;
  gap: 0;
}
@media (min-width: 900px) {
  .full-menu-rows--2 {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}
.full-menu-row {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.full-menu-row:last-child { border-bottom: 0; }
.fm-name {
  font-family: var(--font);
  font-size: 1.18rem !important;
  font-weight: 600;
  color: #1a1a1a !important;
  line-height: 1.35;
}
.fm-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(232, 201, 122, 0.85);
  min-width: 1rem;
  height: 0.7em;
}
.fm-price {
  font-family: var(--font);
  font-size: 1.22rem !important;
  font-weight: 700;
  color: #1a1a1a !important;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.full-menu-perks-list {
  max-width: 42rem;
  margin: 1.75rem auto 0;
  padding: 0 0 0 1.2rem;
  color: #1a1a1a !important;
  font-size: 1.12rem !important;
  line-height: 1.55;
}
.full-menu-perks-list li { margin: 0.45rem 0; }
.full-menu-perks-list a { color: #8a6b1f !important; font-weight: 600; }
@media (max-width: 640px) {
  .fm-name { font-size: 1.08rem !important; }
  .fm-price { font-size: 1.12rem !important; }
  .full-menu-block { padding: 1.1rem 1rem; }
}


/* —— HEADER NAV TIDY (one clean desktop line; no wrap) —— */
.header-inner {
  gap: 0.65rem !important;
  flex-wrap: nowrap !important;
}
.logo-link img {
  width: 78px !important;
  max-height: 68px !important;
  height: auto !important;
  object-fit: contain;
}
.site-nav ul {
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 0.05rem !important;
}
.site-nav a {
  white-space: nowrap !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.07em !important;
  padding: 0.42rem 0.52rem !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}
.site-nav .nav-cta {
  white-space: nowrap !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  padding: 0.42rem 0.9rem !important;
  margin-left: 0.4rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
}
@media (min-width: 1101px) and (max-width: 1280px) {
  .site-nav a {
    font-size: 0.74rem !important;
    padding: 0.38rem 0.42rem !important;
    letter-spacing: 0.05em !important;
  }
  .site-nav .nav-cta {
    font-size: 0.74rem !important;
    padding: 0.38rem 0.75rem !important;
  }
  .logo-link img { width: 70px !important; max-height: 60px !important; }
}
@media (max-width: 1100px) {
  .site-nav a,
  .site-nav .nav-cta {
    white-space: normal !important;
    font-size: 1.05rem !important;
    padding: 0.9rem 1rem !important;
  }
  .site-nav .nav-cta { margin-left: 0 !important; }
}


/* ===== UI PASS 2 2026-09-13 ===== */

:root {
  --header-h: 72px;
  --callbar-h: 72px;
  --gold-on-light: #6B5420;
}

html {
  scroll-padding-top: calc(var(--header-h) + 16px);
}

h1, h2, [id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

/* Compact sticky header */
.site-header,
.header-inner {
  min-height: var(--header-h) !important;
}
.header-inner {
  padding-block: 0.2rem !important;
}
.logo-link img {
  width: 60px !important;
  max-height: 56px !important;
  height: auto !important;
}
@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .logo-link img {
    width: 52px !important;
    max-height: 48px !important;
  }
}

/* Main / first content clearance under sticky header */
main {
  padding-top: 0;
}
main > .page-header,
main > .page-hero,
main > .hero {
  margin-top: 0;
}

/* Short page headers (replace lobby clone heroes) */
.page-header {
  padding: 1.75rem 0 1.5rem !important;
  background: #1d1d1d;
  border-bottom: 1px solid rgba(232, 201, 122, 0.22);
  text-align: center;
  color: #fff;
  min-height: 0 !important;
}
.page-header .eyebrow {
  color: #E8C97A !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  justify-content: center;
}
.page-header h1,
.page-header .gold-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.1rem) !important;
  color: #f5f1e8 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0.35rem 0 0.55rem;
  text-shadow: none !important;
}
.page-header p,
.page-header .hero-tagline {
  color: rgba(245, 241, 232, 0.9) !important;
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.1rem !important;
}
.page-header--photo {
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-header--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55), rgba(29,29,29,0.88));
  pointer-events: none;
}
.page-header--photo > .container {
  position: relative;
  z-index: 1;
}
.page-header--pedicures {
  background-image: url("../images/hero-pedicures.webp");
  padding: 2.5rem 0 2rem !important;
}
.page-header--manicures {
  background-image: url("../images/salon-manicure.webp");
  padding: 2.5rem 0 2rem !important;
}
.page-header--massage {
  background-image: url("../images/massage-masseuse-locked.webp");
  padding: 2.5rem 0 2rem !important;
}
.page-header--gallery {
  background-image: url("../images/gallery-nail-13.webp");
  padding: 2.5rem 0 2rem !important;
}

/* Contact exterior hero — keep but shorten */
.page-hero--exterior {
  padding: 2.75rem 0 2.25rem !important;
  min-height: 0 !important;
}
.page-hero h1,
.page-hero .gold-title {
  color: #f5f1e8 !important;
  font-weight: 700 !important;
}
.page-hero .eyebrow {
  color: #E8C97A !important;
}
.page-hero p {
  color: #f5f1e8 !important;
}

/* Reveal: visible by default; animate only after js-ready */
.reveal {
  opacity: 1;
  transform: none;
}
html.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
html.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html.js-ready .reveal:not(.is-visible) {
    opacity: 1;
    transform: none;
  }
}

/* Clean photos — no washout / gray flash */
.photo-frame--clean,
.contact-photos .photo-frame,
.about-owners .photo-frame,
.team-photo-grid .photo-frame {
  background: #1d1d1d;
  box-shadow: none;
  border: 1px solid rgba(29, 29, 29, 0.12);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  filter: none;
  opacity: 1 !important;
}
.photo-frame--clean img,
.contact-photos .photo-frame img,
.about-owners .photo-frame img,
.team-photo-grid .photo-frame img {
  opacity: 1 !important;
  filter: none !important;
  background: #1d1d1d;
  display: block;
  width: 100%;
}
.contact-photos .photo-frame img {
  aspect-ratio: 16/10;
  object-fit: cover;
  height: auto;
  min-height: 180px;
}
.contact-photos-grid {
  align-items: stretch;
}
.contact-photos .photo-frame {
  height: 100%;
}

/* Contact visit + map layout */
.contact-visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}
@media (max-width: 800px) {
  .contact-visit-grid {
    grid-template-columns: 1fr;
  }
}
.contact-locator {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-map-primary {
  border: 1px solid rgba(29,29,29,0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #e8e6de;
  min-height: 320px;
}
.contact-map-primary iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.find-us-secondary {
  background: #fff;
  border: 1px solid rgba(29,29,29,0.1);
  border-radius: 8px;
  padding: 0.85rem 1rem 1rem;
}
.find-us-title {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d1d1d;
  font-weight: 700;
}
.find-us-secondary .find-us-video {
  width: 100%;
  max-height: 220px;
  border-radius: 6px;
  background: #111;
  display: block;
}
.find-us-transcript {
  margin: 0.65rem 0 0;
  font-size: 0.98rem;
  color: #3a3a3a;
  line-height: 1.45;
}
.contact-card a[href*="local/reviews"] {
  color: #E8C97A;
  font-weight: 700;
}

/* CTA band on ivory — charcoal titles (override pale gold) */
.cta-band:not(.cta-band-dark) {
  background: var(--ivory) !important;
  color: #1d1d1d !important;
}
.cta-band:not(.cta-band-dark) h2 {
  color: #1d1d1d !important;
}
.cta-band:not(.cta-band-dark) p,
.cta-band:not(.cta-band-dark) p a {
  color: #3a3a3a !important;
}
.cta-band:not(.cta-band-dark) .btn-primary {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #f5f1e8 !important;
}
.cta-band:not(.cta-band-dark) .btn-primary:hover {
  background: #000;
  color: #fff !important;
}
.cta-band:not(.cta-band-dark) .btn-secondary {
  border: 2px solid #6B5420;
  color: #1d1d1d !important;
  background: transparent;
}

/* Outline gold buttons on white — stronger contrast */
.btn-outline-dark,
.section-ivory .btn-secondary {
  border-color: #6B5420 !important;
  color: #1d1d1d !important;
}

/* Gold labels on ivory → charcoal */
.section-ivory .meta-list strong,
.visit-strip .meta-list strong {
  color: #6B5420 !important;
}

/* Mobile call bar height + footer clearance */
.call-bar {
  bottom: 0 !important;
  padding: 0.45rem 0.65rem calc(0.45rem + env(safe-area-inset-bottom, 0px)) !important;
}
.call-bar a {
  padding: 0.7rem 0.5rem !important;
}
@media (max-width: 899px) {
  body {
    padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px) + 8px) !important;
  }
  .site-footer {
    padding-bottom: calc(var(--callbar-h) + 2.5rem) !important;
  }
  .footer-bottom {
    padding-bottom: 0.5rem;
  }
}

/* Hide Netlify badge / branding */
iframe[title*="Netlify"],
iframe[src*="netlify.com"],
.netlify-badge,
[class*="nf-"],
a[href*="netlify.com/features"],
a[href*="netlify.com"][target="_blank"] img[alt*="Netlify"],
body > a[href*="netlify"][style*="position"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Drink one-liner */
.drink-one-liner {
  margin: 1rem auto 0.25rem;
  font-size: 1.02rem;
  color: #3a3a3a;
  text-align: center;
  max-width: 46rem;
}
.drink-one-liner a { color: #6B5420; font-weight: 650; }

/* Form privacy + optional */
.form-privacy {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: #5c574f;
}
.contact-form .optional {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  color: #6a655c;
  font-size: 0.85em;
}

/* Gallery tiles — no gray flash */
.gallery figure,
.gallery-item {
  margin: 0;
  background: #f3f1e8;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.gallery figure img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f3f1e8;
  opacity: 1 !important;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(96vw, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
}
body.lightbox-open { overflow: hidden; }

/* About meet — kill mystery gap */
.about-meet {
  padding-top: 2rem !important;
}
.section-title {
  opacity: 1 !important;
  transform: none !important;
}

/* Reviews stat links */
.reviews-stat-value a {
  color: inherit;
  text-decoration: none;
}
.reviews-stat-value a:hover {
  color: #E8C97A;
  text-decoration: underline;
}

/* Footer brand — no empty h3 Sugar Land */
.footer-brand p {
  margin: 0.65rem 0 0.85rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

/* Page-header gold-title on dark is cream already; menu page */
.page-header .btn-row .btn-secondary {
  border-color: #E8C97A;
  color: #E8C97A !important;
}


/* UI pass 2 follow-up: hard-clamp header + meet clearance */
/* Do NOT overflow:hidden on .site-header — mobile .site-nav is absolute under it */
.header-inner {
  max-height: var(--header-h) !important;
}
.logo-link img {
  width: 56px !important;
  max-height: 52px !important;
}
#meet,
#meet h2,
.about-meet h2.section-title {
  scroll-margin-top: calc(var(--header-h) + 24px) !important;
}
.about-owners .photo-frame--clean,
.about-owners .photo-frame {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 8px;
  overflow: hidden;
}
.about-owners .photo-frame img {
  aspect-ratio: auto !important;
  object-fit: cover !important;
  width: 100% !important;
  height: auto !important;
  background: #f3f1e8 !important;
}
.about-meet {
  padding-top: 1.5rem !important;
}
.perk-band + .about-meet,
.perk-band + section.about-meet {
  margin-top: 0 !important;
}

/* === CONTACT STAR LAYOUT v=contact-star === */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.page-hero--contact {
  padding: 5.5rem 0 4rem;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.page-hero--contact h1 {
  margin-top: 0.35rem;
  line-height: 1.15;
}
@media (min-width: 1100px) {
  .page-hero--contact {
    padding-top: 4.75rem;
    padding-bottom: 3.75rem;
  }
}
.contact-findus-star {
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
}
.contact-findus-inner {
  max-width: 1100px;
  margin-inline: auto;
}
.find-us-star-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  background: #111;
  border: 1px solid rgba(201, 168, 76, 0.28);
  overflow: hidden;
}
@media (min-width: 900px) {
  .find-us-star-wrap { min-height: 420px; }
}
.find-us-video--star {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
  background: #111;
}
.find-us-transcript--star {
  margin: 0.85rem 0 0;
  text-align: center;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 40rem;
  margin-inline: auto;
}
.contact-map-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.contact-map-inner {
  max-width: 640px;
  margin-inline: auto;
}
.contact-map-label {
  font-family: var(--font);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  text-align: center;
  margin: 0 0 0.85rem;
}
.contact-map-tight {
  width: 100%;
  height: 280px;
  min-height: 280px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  overflow: hidden;
  background: var(--charcoal-3);
}
.contact-map-tight iframe {
  width: 100%;
  height: 280px;
  min-height: 280px;
  border: 0;
  display: block;
}
.contact-visit-alone {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}
.contact-visit-inner {
  max-width: 720px;
  margin-inline: auto;
}
.contact-card--centered {
  margin-inline: auto;
}
.visit-book-line {
  margin: 1.35rem 0 1rem;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}
.drink-menu-note--quiet {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.drink-menu-note--quiet a { color: var(--gold-soft); }
/* Kill any leftover side-by-side locator on Contact */
.contact-visit-grid,
.contact-locator,
.contact-photos,
.contact-photos-grid { display: none !important; }

/* === BOOK + CALL BAR === */
.call-bar { grid-template-columns: 1fr 1fr; }
