:root {
  --bg: #07050d;
  --bg-soft: #0d0a15;
  --panel: rgba(18, 14, 28, .82);
  --panel-solid: #12101a;
  --text: #f9f7fb;
  --muted: #b8b1c2;
  --muted-2: #8f8799;
  --pink: #ff62cf;
  --cyan: #4be7f5;
  --green: #77efb7;
  --line: rgba(255,255,255,.10);
  --line-strong: rgba(255,255,255,.17);
  --max: 1140px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255,98,207,.10), transparent 26rem),
    radial-gradient(circle at 94% 10%, rgba(75,231,245,.09), transparent 28rem),
    linear-gradient(160deg, #07050d 0%, #0c0814 45%, #07101a 100%);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { color: inherit; }

.site-shell { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section.compact { padding: 64px 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6.8vw, 5.8rem); line-height: .96; margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.02; margin-bottom: 16px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 8px; }
p { color: var(--muted); line-height: 1.72; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); max-width: 650px; }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
  margin-bottom: 14px;
}
.section-kicker::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .75; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 34px; margin-bottom: 34px; }
.section-head > * { max-width: 680px; }

.skip-link { position: fixed; left: 12px; top: -100px; z-index: 999; background: white; color: black; padding: 10px 14px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(7,5,13,.86);
  backdrop-filter: blur(18px) saturate(130%);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; }
.brand-text { font-weight: 800; letter-spacing: .13em; font-size: .76rem; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; color: #d8d2df; font-weight: 700; font-size: .9rem; transition: .18s ease; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.055); }
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: rgba(255,255,255,.04); border-radius: 12px; }
.menu-toggle::before { content: "☰"; font-size: 1.05rem; }

/* Hero */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 44%, rgba(255,98,207,.22), transparent 30rem),
    radial-gradient(circle at 82% 36%, rgba(75,231,245,.20), transparent 30rem),
    linear-gradient(135deg, #090611 0%, #11091a 50%, #07131d 100%);
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 92%);
}
.hero { min-height: 560px; display: grid; align-items: center; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.18fr .82fr; gap: 64px; align-items: center; padding: 70px 0; }
.hero-copy { max-width: 700px; }
.hero-title span { color: var(--pink); text-shadow: 0 0 26px rgba(255,98,207,.20); }
.hero-copy .lead { color: #d6d0dc; margin-bottom: 0; }
.hero-logo-wrap {
  justify-self: end;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
}
.hero-logo { width: 82%; height: 82%; object-fit: contain; filter: drop-shadow(0 0 18px rgba(255,98,207,.18)) drop-shadow(0 0 18px rgba(75,231,245,.14)); }

.page-hero { min-height: 300px; display: grid; align-items: center; }
.page-hero-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding: 54px 0; }
.page-hero-logo { width: 150px; height: 150px; object-fit: contain; flex: 0 0 auto; }
.page-hero h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); margin-bottom: 0; }

/* Shared cards */
.glass-card,
.hours-card,
.map-card,
.fact-card,
.form-card,
.contact-aside {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.048), rgba(255,255,255,.018));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.glass-card { padding: 28px; min-height: 180px; }
.card-number { color: var(--pink); font-size: .7rem; font-weight: 800; letter-spacing: .16em; margin-bottom: 32px; }
.glass-card p { margin-bottom: 0; }


/* Homepage visit refinements */
.visit-section { padding-top: 52px; }
.visit-head { align-items: flex-start; margin-bottom: 26px; }
.visit-head > div { max-width: 690px; }
.visit-head .section-kicker { margin-bottom: 12px; }
.visit-head .lead { margin: 0; }

/* Visit / map */
.visit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 18px; align-items: stretch; }
.hours-card { padding: 28px; }
.hours-top { display: flex; align-items: start; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.075); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list span { color: var(--muted); text-align: right; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; color: var(--green); font-size: .8rem; font-weight: 800; }
.status-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 11px currentColor; }
.status-pill.closed { color: var(--pink); }
.neon-cyan { color: var(--cyan); font-weight: 800; }
.map-card { min-height: 470px; position: relative; overflow: hidden; }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.18) invert(.93) hue-rotate(170deg) saturate(.62) contrast(.95); }
.map-overlay { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 17px; border-radius: var(--radius-md); border: 1px solid var(--line); background: rgba(7,5,13,.9); backdrop-filter: blur(14px); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.map-overlay p { margin: 2px 0 0; font-size: .88rem; }

/* Buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); font-weight: 800; font-size: .92rem; background: rgba(255,255,255,.035); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-1px); border-color: var(--line-strong); background: rgba(255,255,255,.065); }
.btn-primary { color: #100912; border: 0; background: linear-gradient(105deg, #ff8ae0, #ff67d0 48%, #69edf7); }
.btn-primary:hover { background: linear-gradient(105deg, #ff9ce5, #ff76d5 48%, #78eff8); }
.btn-ghost:hover { background: rgba(255,255,255,.07); }

/* About */
.about-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.fact-card { padding: 30px; height: 100%; }
.fact-list { display: grid; }
.fact-row { display: grid; grid-template-columns: 125px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.075); }
.fact-row:last-child { border-bottom: 0; }
.fact-row strong { color: #fff; }
.fact-row span { color: var(--muted); }

/* Contact form */
.contact-layout { display: grid; grid-template-columns: 1.18fr .82fr; gap: 18px; align-items: start; }
.form-card { padding: 32px; }
.form-card h2 { font-size: clamp(2rem, 3.5vw, 3.15rem); }
.form-intro { max-width: 700px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: #eeeaf2; font-size: .84rem; font-weight: 700; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  color: #fff;
  outline: none;
  padding: 14px 15px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #7f7788; }
.field input:focus,
.field textarea:focus { border-color: rgba(75,231,245,.45); box-shadow: 0 0 0 3px rgba(75,231,245,.07); background: rgba(255,255,255,.05); }
.field textarea { min-height: 170px; resize: vertical; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.form-note { margin: 0; font-size: .8rem; color: var(--muted-2); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { display: none; margin: 0 0 20px; padding: 13px 15px; border-radius: 13px; border: 1px solid var(--line); font-size: .9rem; }
.form-status.show { display: block; }
.form-status.success { color: #caffea; border-color: rgba(119,239,183,.25); background: rgba(119,239,183,.07); }
.form-status.error { color: #ffd1ee; border-color: rgba(255,98,207,.25); background: rgba(255,98,207,.07); }
.contact-aside { padding: 28px; }
.contact-aside h3 { margin-bottom: 16px; }
.contact-details { display: grid; gap: 0; }
.contact-line { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.075); }
.contact-line:last-child { border-bottom: 0; }
.contact-line small { display: block; color: var(--muted-2); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-line a, .contact-line strong { color: #fff; font-weight: 700; }
.contact-line a:hover { color: var(--cyan); }

/* Footer */
.site-footer { padding: 38px 0 24px; border-top: 1px solid var(--line); background: rgba(0,0,0,.14); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 28px; }
.footer-title { color: var(--cyan); font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; color: var(--muted); }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line); color: #88808f; font-size: .78rem; display: flex; justify-content: space-between; gap: 18px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-logo-wrap { justify-self: start; width: 280px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .site-shell { width: min(calc(100% - 24px), var(--max)); }
  .site-header { height: 68px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-text { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; top: 76px; left: 12px; right: 12px; display: grid; padding: 10px; background: rgba(7,5,13,.97); border: 1px solid var(--line); border-radius: 16px; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: .2s ease; }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 52px 0; }
  .hero-logo-wrap { width: min(100%, 250px); }
  .section, .section.compact { padding: 58px 0; }
  .section-head { display: block; }
  .card-grid, .footer-grid { grid-template-columns: 1fr; }
  .page-hero-inner { padding: 42px 0; }
  .page-hero-logo { width: 110px; height: 110px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .map-card { min-height: 420px; }
  .map-overlay { align-items: flex-start; flex-direction: column; }
  .fact-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { flex-direction: column; }
}


/* V7 pricing and visit refinements */
.pricing-section {
  padding: 62px 0 54px;
  border-top: 1px solid rgba(255,255,255,.055);
  border-bottom: 1px solid rgba(255,255,255,.055);
  background:
    radial-gradient(circle at 10% 20%, rgba(255,98,207,.055), transparent 24rem),
    radial-gradient(circle at 90% 20%, rgba(75,231,245,.05), transparent 24rem),
    rgba(255,255,255,.008);
}
.pricing-head { margin-bottom: 28px; }
.pricing-head h2 { margin-bottom: 0; }
.pricing-note { margin: 0; max-width: 430px; text-align: right; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255,255,255,.048), rgba(255,255,255,.018));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px;
  min-width: 0;
}
.featured-price {
  border-color: rgba(255,98,207,.22);
  background: linear-gradient(150deg, rgba(255,98,207,.075), rgba(255,255,255,.018));
}
.price-card-top { min-height: 74px; display: flex; flex-direction: column; gap: 9px; padding-bottom: 18px; }
.price-label { color: #fff; font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; }
.price-badge { color: var(--muted-2); font-size: .76rem; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.075); }
.price-row span { color: var(--muted); }
.price-row strong { color: #fff; font-size: 1.12rem; white-space: nowrap; }
.pricing-footnote { margin: 20px 0 0; color: var(--muted-2); font-size: .78rem; text-align: center; }
.compact-visit-head { margin-bottom: 16px; }
.compact-visit-head .section-kicker { margin-bottom: 0; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .pricing-section { padding: 52px 0 46px; }
  .pricing-head { display: block; }
  .pricing-note { text-align: left; margin-top: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card:last-child { grid-column: auto; }
  .price-card { padding: 22px; }
}

/* V8 - pricing layout and neon card polish */

/* Keep the pricing intro comfortably inside the content area. */
.pricing-head {
  align-items: flex-start;
  gap: 40px;
}
.pricing-head > div {
  flex: 1 1 auto;
  min-width: 0;
}
.pricing-note {
  flex: 0 1 350px;
  width: min(100%, 350px);
  max-width: 350px;
  padding-top: 22px;
  line-height: 1.65;
  text-align: left;
}

/* All key cards now share the same subtle pink/cyan neon edge and glow. */
.glass-card,
.price-card {
  position: relative;
  border: 1px solid transparent;
  background:
    linear-gradient(150deg, rgba(24,18,31,.96), rgba(13,13,22,.96)) padding-box,
    linear-gradient(135deg, rgba(255,98,207,.58), rgba(75,231,245,.48)) border-box;
  box-shadow:
    0 0 24px rgba(255,98,207,.10),
    0 0 34px rgba(75,231,245,.07),
    0 18px 50px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.035);
}

/* Unlimited is no longer visually selected - all price cards are equal. */
.featured-price {
  border-color: transparent;
  background:
    linear-gradient(150deg, rgba(24,18,31,.96), rgba(13,13,22,.96)) padding-box,
    linear-gradient(135deg, rgba(255,98,207,.58), rgba(75,231,245,.48)) border-box;
}

.glass-card::after,
.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 0, rgba(255,98,207,.07), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(75,231,245,.055), transparent 42%);
}

.glass-card > *,
.price-card > * {
  position: relative;
  z-index: 1;
}

.glass-card,
.price-card {
  transition: transform .2s ease, box-shadow .2s ease;
}

.glass-card:hover,
.price-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 30px rgba(255,98,207,.15),
    0 0 42px rgba(75,231,245,.11),
    0 22px 55px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.045);
}

/* Stack the pricing intro sooner so the right-hand copy never feels cramped. */
@media (max-width: 1050px) {
  .pricing-head {
    display: block;
  }
  .pricing-note {
    width: auto;
    max-width: 620px;
    padding-top: 0;
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .pricing-note {
    max-width: 100%;
  }
  .glass-card,
  .price-card {
    box-shadow:
      0 0 18px rgba(255,98,207,.10),
      0 0 26px rgba(75,231,245,.07),
      0 14px 34px rgba(0,0,0,.20),
      inset 0 1px 0 rgba(255,255,255,.03);
  }
}


/* v9: online purchase links */
.price-row-buy {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  align-items:center;
  gap:12px;
}
.price-buy {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(58,223,255,.35);
  background:linear-gradient(135deg,rgba(255,75,190,.15),rgba(58,223,255,.13));
  color:#fff;
  font-size:12px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;
  box-shadow:0 0 18px rgba(58,223,255,.08),0 0 18px rgba(255,75,190,.06);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.price-buy:hover {
  transform:translateY(-1px);
  border-color:rgba(255,92,201,.65);
  box-shadow:0 0 24px rgba(58,223,255,.16),0 0 24px rgba(255,75,190,.13);
}
.pay-in-salon {
  margin:18px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
}
@media (max-width:640px){
  .price-row-buy{grid-template-columns:1fr auto;gap:8px 12px}
  .price-row-buy .price-buy{grid-column:1/-1;width:100%;margin-top:2px}
}
