/* ================================================
   ND Stars Beauty Salon — Stylesheet v2
   Modern · Minimal · Elegant
   ================================================ */

:root {
  --pink:        #E8789A;
  --pink-dark:   #C9567A;
  --pink-light:  #F9E4EC;
  --pink-pale:   #FDF5F8;
  --dark:        #111111;
  --mid:         #4A4A4A;
  --light:       #8A8A8A;
  --border:      #E8E8E8;
  --white:       #FFFFFF;
  --off:         #F9F9F9;

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Jost', system-ui, sans-serif;

  --mw: 1200px;
  --gap: 110px;
  --r: 14px;
  --trans: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 2px 20px rgba(0,0,0,0.05);
  --shadow-pink: 0 8px 32px rgba(232,120,154,0.2);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--body); color: var(--dark); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: var(--mw); margin: 0 auto; padding: 0 40px; }
.section-gap { padding: var(--gap) 0; }

/* ===== TYPE ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.eyebrow--light { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

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

.section-desc {
  font-size: 1rem;
  color: var(--light);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 72px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 14px 32px;
  transition: var(--trans);
  white-space: nowrap;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--pink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-pink);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--pink);
  padding: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 2px;
}

.btn-ghost:hover { color: var(--pink-dark); }

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--pink-light);
  transform: translateY(-1px);
}

.btn-lg { padding: 17px 40px; font-size: 0.87rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes promoscroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== PROMO BAR ===== */
.promo-bar {
  background: var(--pink);
  overflow: hidden;
  padding: 10px 0;
}

.promo-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: promoscroll 28s linear infinite;
  width: max-content;
}

.promo-track span,
.promo-track a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 28px;
}

.promo-track a { text-decoration: underline; text-underline-offset: 3px; }
.promo-track .dot { padding: 0 4px; opacity: 0.5; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}

.header.scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

/* ===== NAV — larger, branded ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--mid);
  padding: 8px 16px;
  border-radius: 2px;
  transition: var(--trans);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.header-cta { font-size: 0.8rem; padding: 11px 26px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.burger span {
  display: block;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease;
  transform-origin: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }

.hero-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f3cdd9 0%, #fae8ef 50%, #fff0f5 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-placeholder p {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--mid);
  font-style: italic;
}

.hero-placeholder small {
  font-size: 0.75rem;
  color: var(--light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.96) 0%,
    rgba(255,255,255,0.82) 48%,
    rgba(255,255,255,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink-light);
  padding: 7px 18px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
}

.trust-item { display: flex; flex-direction: column; gap: 3px; }

.trust-num {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.trust-label {
  font-size: 0.7rem;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}

.trust-line {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== TICKER ===== */
.ticker {
  background: var(--dark);
  overflow: hidden;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}

.ticker-track span {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 0 28px;
  white-space: nowrap;
}

.ticker-track .t-sep {
  color: var(--pink);
  opacity: 0.8;
  padding: 0 6px;
  font-size: 1.1rem;
}

/* ===== LASER FEATURE ===== */
.laser-feature { background: var(--off); }

.laser-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.laser-img-wrap {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
}

.laser-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, #f0c6d5 0%, #fae4ed 60%, #fff5f8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--r);
}

.laser-placeholder span {
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--mid);
}

.laser-placeholder small {
  font-size: 0.7rem;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.laser-float-badge {
  position: absolute;
  top: 28px; left: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 20px 22px;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lfb-top, .lfb-btm {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.lfb-main {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  color: var(--pink);
}

.laser-float-stat {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--pink);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-pink);
}

.lfs-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.lfs-text {
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

.laser-visual { position: relative; padding-bottom: 30px; }

.laser-text .section-title { margin-bottom: 14px; }

.laser-hook {
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--pink-dark);
  margin-bottom: 20px;
  font-weight: 400;
}

.laser-text > p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.laser-benefits {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 36px;
}

.laser-benefits li {
  font-size: 0.92rem;
  color: var(--mid);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}

.laser-benefits li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 1px;
  background: var(--pink);
}

.laser-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.laser-urgency {
  font-size: 0.78rem;
  color: var(--light);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ===== PROOF STRIP ===== */
.proof-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
}

.proof-line {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 56px;
}

.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  transition: var(--trans);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink-pale);
  opacity: 0;
  transition: opacity var(--trans);
}

.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: var(--dark);
}

.service-card--featured::before {
  background: rgba(255,255,255,0.04);
}

.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.55); }
.service-card--featured .sc-number { color: rgba(255,255,255,0.15); }
.service-card--featured .price-from { background: rgba(232,120,154,0.18); color: var(--pink); }
.service-card--featured .card-link { color: var(--pink); }

.sc-number {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: color var(--trans);
}

.service-card:hover .sc-number { color: var(--pink-light); }

.service-card h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.price-from {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.card-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color var(--trans);
  position: relative;
  z-index: 1;
}

.card-link:hover { border-color: var(--pink); }

.sc-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid rgba(232,120,154,0.35);
  padding: 4px 10px;
  border-radius: 2px;
}

.services-cta { text-align: center; }

/* ===== WHY US ===== */
.why-us { background: var(--off); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--white);
  padding: 44px 36px;
  transition: var(--trans);
}

.why-card:hover { background: var(--pink-pale); }

.why-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color var(--trans);
}

.why-card:hover .why-num { color: var(--pink-light); }

.why-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}

.testi-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  border-radius: var(--r);
  transition: var(--trans);
  background: var(--white);
}

.testi-card:hover {
  border-color: var(--pink-light);
  box-shadow: 0 4px 24px rgba(232,120,154,0.1);
  transform: translateY(-3px);
}

.testi-card--lg {
  background: var(--pink-pale);
  border-color: var(--pink-light);
}

.testi-stars {
  color: var(--pink);
  font-size: 0.85rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-card p {
  font-family: var(--display);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testi-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.testi-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testi-service {
  font-size: 0.72rem;
  color: var(--pink);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== BOOTH RENTAL ===== */
.booth-rental { background: var(--dark); }

.booth-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.booth-text .eyebrow { color: rgba(232,120,154,0.8); }
.booth-text .section-title { color: var(--white); }
.booth-text .section-title em { color: var(--pink); }

.booth-text > p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
}

.booth-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.booth-list li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
}

.booth-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 1px;
  background: var(--pink);
}

.booth-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-bottom: 32px;
  font-weight: 300;
}

.booth-text .btn-primary {
  background: var(--pink);
  color: var(--white);
}

.booth-text .btn-primary:hover {
  background: var(--pink-dark);
}

.booth-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.booth-img span {
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,0.35);
}

.booth-img small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booth-quote {
  border-left: 1px solid rgba(232,120,154,0.4);
  padding-left: 24px;
}

.booth-quote p {
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-style: italic;
}

.booth-quote em {
  font-style: italic;
  color: var(--pink);
  font-weight: 400;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--pink);
  padding: 100px 0;
}

.cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 16px;
}

.cta-inner h2 em { font-style: italic; font-weight: 300; }

.cta-inner p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact { background: var(--off); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 40px; }

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.ci-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.contact-item strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 5px;
}

.contact-item span, .contact-item a {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.6;
  font-weight: 300;
}

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

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  transition: var(--trans);
}

.social-pill:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pink-pale);
}

.map-wrap {
  border-radius: var(--r);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); }

.footer-top { padding: 72px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 64px;
}

.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 260px;
  font-weight: 300;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}

.footer-col a,
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color var(--trans);
  line-height: 1.6;
}

.footer-col a:hover { color: var(--pink); }

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.footer-socials a {
  color: rgba(255,255,255,0.3);
  transition: color var(--trans);
}

.footer-socials a:hover { color: var(--pink); }

/* ===== PAYMENT LOGOS ===== */
.footer-payments {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--trans);
  height: 36px;
}

.pay-badge:hover { background: rgba(255,255,255,0.08); }

.footer-bottom { padding: 20px 0; }

.footer-bottom p {
  font-size: 0.75rem;
  color: rgb(255, 255, 255);
  text-align: center;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-pale) 0%, var(--white) 100%);
}

.page-hero-title {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
}

.page-hero p {
  font-size: 1rem;
  color: var(--light);
  font-weight: 300;
}

/* ===== TAB NAV ===== */
.tab-nav {
  position: sticky;
  top: 80px;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.tab-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tab-nav-inner::-webkit-scrollbar { display: none; }

.tab-btn {
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  padding: 18px 22px;
  white-space: nowrap;
  transition: var(--trans);
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.tab-btn:hover { color: var(--dark); }
.tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }

/* ===== MENU PAGE ===== */
.menu-main { background: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: block; }

.menu-section-header { margin-bottom: 52px; }

.menu-section-header h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.menu-section-header h2 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}

.menu-note {
  font-size: 0.88rem;
  color: var(--light);
  margin-top: 10px;
  font-weight: 300;
}

/* ===== PRICE LIST ===== */
.price-list { max-width: 720px; }

.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: padding-left var(--trans);
}

.price-item:first-child { border-top: 1px solid var(--border); }

.price-item:hover { padding-left: 8px; }

.price-item span:first-child {
  font-size: 0.95rem;
  color: var(--mid);
  font-weight: 300;
  flex: 1;
}

.price-item span:last-child:not(.dual-price) {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.price-item.highlight span:last-child:not(.dual-price) { color: var(--pink); }

.price-item.highlight {
  padding-left: 12px;
  border-left: 2px solid var(--pink);
}

/* LASER DUAL */
.price-item.header-row {
  background: var(--off);
  padding: 10px 12px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.price-item.header-row span:first-child {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
}

.dual-price {
  display: flex;
  gap: 48px;
  text-align: right;
}

.dual-price em {
  font-style: normal;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  min-width: 56px;
}

.price-item.header-row .dual-price em {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* PIERCINGS */
.piercing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.price-category h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 28px;
}

.price-category h3 em {
  font-style: italic;
  color: var(--pink);
  font-weight: 300;
}

/* ===== ABOUT ===== */
.about-body { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.about-img-wrap { position: relative; }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--pink-pale) 100%);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.about-img-placeholder span {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--mid);
  font-style: italic;
}

.about-img-placeholder small {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-accent-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 150px;
}

.about-text { padding-top: 8px; }

.about-text > p {
  font-size: 0.97rem;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.about-values { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 6px; height: 6px;
  background: var(--pink);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.value-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--light);
  margin: 0;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== MOBILE NAV — dropdown from header, no scroll blocking ===== */
@media (max-width: 900px) {

  /* Header must be relative so the dropdown can sit below it */
  .header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    /* Allow the dropdown child to overflow downward */
    overflow: visible;
  }

  .header-inner { position: relative; }

  .burger { display: flex; }
  .header-cta { display: none; }

  /* ---- DROPDOWN PANEL ---- */
  .nav {
    /* Sit directly below the header bar, full viewport width */
    position: fixed;
    top: 80px;        /* exact header height */
    left: 0;
    right: 0;
    /* Light pink background — solid, no transparency */
    background: #FDF0F5;
    border-top: 1px solid #f0c8d8;
    border-bottom: 2px solid var(--pink);
    box-shadow: 0 12px 32px rgba(232,120,154,0.15);

    /* Vertical stack of links */
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    /* Collapse upward when closed */
    max-height: 0;
    overflow: hidden;
    /* Animate open/close top-to-bottom */
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity    0.3s  ease,
                box-shadow 0.3s  ease;
    opacity: 0;

    /* Never blocks page scroll */
    pointer-events: none;
    z-index: 199;
  }

  /* Open state */
  .nav.open {
    max-height: 400px;
    opacity: 1;
    pointer-events: auto;
  }

  /* Individual links */
  .nav-link {
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 18px 28px;
    border-bottom: 1px solid rgba(232,120,154,0.15);
    width: 100%;
    text-align: left;
    transition: background var(--trans), color var(--trans), padding-left var(--trans);
    border-radius: 0;
  }

  .nav-link:last-child { border-bottom: none; }

  .nav-link:hover,
  .nav-link.active {
    color: var(--pink);
    background: rgba(232,120,154,0.08);
    padding-left: 36px;
  }

  .nav-link::after { display: none; }

  /* Burger → X animation */
  .burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .laser-grid { grid-template-columns: 1fr; gap: 56px; }
  .laser-float-stat { right: 16px; bottom: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .booth-wrap { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-accent-box { right: 16px; bottom: 16px; }
  .piercing-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --gap: 80px; }
  .container { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .proof-inner { gap: 32px; }
  .dual-price { gap: 24px; }
}

@media (max-width: 480px) {
  .page-hero { padding-top: 120px; }
  .tab-btn { font-size: 0.72rem; padding: 14px 16px; }
  .hero-title { font-size: 2.4rem; }
}
