/* ============================================================
   NATALY LASER HOUSE — homepage styles
   ============================================================ */
:root {
  --black: #3a2352;         /* deep plum-navy ink — replaces near-black */
  --black-2: #7a4fa0;       /* deeper orchid — footer/contrast band */
  --panel: #fffaff;         /* soft white card panels */
  --gold: #f45fd1;          /* vivid pink accent — replaces gold */
  --gold-soft: #ffd6f7;     /* pale pink highlight */
  --teal: #22c3de;          /* vivid sky-blue accent — replaces teal */
  --teal-deep: #17a3c2;     /* deeper sky-blue */
  --rose: #ff8fe0;          /* secondary pink accent */
  --rose-soft: #ffe0fb;     /* pale rose highlight */
  --canvas-pink: #FCC5F8;   /* brand pink */
  --canvas-teal: #B3F7FE;   /* brand sky-blue */
  --ivory: #3a2352;         /* main text — deep plum-navy for readability on light bg */
  --muted: rgba(58, 35, 82, 0.68);
  --line: rgba(244, 95, 209, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
section[id],
.contact[id],
.detail-section[id] { scroll-margin-top: 110px; }

body {
  background:
    radial-gradient(ellipse 1300px 950px at 8% 100%, rgba(179, 247, 254, 0.75), transparent 75%),
    radial-gradient(ellipse 1300px 950px at 92% 100%, rgba(252, 197, 248, 0.65), transparent 75%),
    linear-gradient(135deg, var(--canvas-pink), var(--canvas-teal));
  background-attachment: fixed;
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Turquoise accent bars on every page — left and right, all pages */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-deep) 50%, var(--teal) 100%);
  z-index: 5;
  pointer-events: none;
}
body::before { left: 0; }
body::after { right: 0; }
@media (max-width: 680px) {
  body::before, body::after { width: 5px; }
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-soft); box-shadow: 0 10px 24px rgba(244,95,209,0.35); }
.btn-line { border: 1px solid var(--line); color: var(--ivory); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 10px 24px rgba(244,95,209,0.12); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Gentle stagger for grid items that reveal together */
.price-groups .reveal:nth-child(2) { transition-delay: 0.08s; }
.price-groups .reveal:nth-child(3) { transition-delay: 0.16s; }
.service-teaser-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.service-teaser-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.service-teaser-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.05s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.10s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.15s; }
.faq-list .reveal:nth-child(5) { transition-delay: 0.20s; }
.faq-list .reveal:nth-child(6) { transition-delay: 0.25s; }

section { padding: 110px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 10px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 0.95rem; }

.gold-rule{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  height: auto;
  background: none;
  margin: 18px auto;
  color: var(--gold);
  opacity: 1;
}
.gold-rule::before, .gold-rule::after{
  content: "";
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 250, 255, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
    height: 90px;      /* Keep your large logo */
    width: auto;
    display: block;
}
.brand:hover img { transform: scale(1.05) rotate(-2deg); }
.brand span { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.15rem; letter-spacing: 0.04em; color: var(--gold-soft); }
.nav-links { display: flex; gap: 34px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.nav-links a {
  opacity: 0.8;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 22px; border: 1px solid var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); transition: all 0.25s ease; }
.nav-cta:hover { background: var(--gold); color: var(--black); }
.menu-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 1.6rem; cursor: pointer; transition: transform 0.2s ease, opacity 0.2s ease; }
.menu-toggle:hover { opacity: 0.75; }
.menu-toggle:active { transform: scale(0.9); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  position: relative;
  background: transparent;
  overflow: hidden;
  text-align: center;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.hero::before { width: 520px; height: 520px; top: -220px; left: 50%; transform: translateX(-50%); }
.hero::after { width: 340px; height: 340px; bottom: -180px; right: -100px; }

.hero-inner { position: relative; max-width: 720px; margin: 0 auto; }
.hero-logo { width: 110px; height: 110px; margin: 0 auto 26px; object-fit: contain; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--ivory); margin: 10px 0 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p.lead { color: var(--muted); max-width: 46ch; margin: 0 auto 36px; font-size: 1.05rem; }
.btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.services {
  background: transparent;
}
.price-groups { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.price-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 34px;
}
.price-card h3 { font-size: 1.4rem; color: var(--gold-soft); margin-bottom: 6px; }
.price-card .sub { font-size: 0.8rem; color: var(--muted); margin-bottom: 24px; letter-spacing: 0.03em; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  font-size: 0.92rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .name { color: var(--ivory); }
.price-row .name small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 2px; }
.price-row .price { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--gold); white-space: nowrap; }
.price-card .combo-title { margin: 22px 0 10px; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

.gallery {
  background: transparent;
}
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.gallery-grid .photo-link {
  flex: 0 1 calc(33.333% - 15px);
  min-width: 240px;
  aspect-ratio: 1 / 1.1;
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.benefit-grid.gallery-grid .photo-link {
  flex: 0 1 calc(22% - 15px);
  min-width: 140px;
}
.benefit-grid .photo-link::after {
  content: "See Benefits";
}
.benefits-section { padding-top: 40px; }
.photo-link::after {
  content: "View photo";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(58, 35, 82, 0.55);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.photo-link:hover::after { opacity: 1; }
.photo {
  aspect-ratio: 1 / 1.1;
  border-radius: 4px;
  border: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.35) contrast(1.08) brightness(1.08);
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
}
.photo:hover {
  transform: scale(1.03);
  filter: saturate(1.4) contrast(1.08) brightness(1.08);
  box-shadow: 0 14px 34px rgba(244, 95, 209, 0.35);
}
.photo.tall { aspect-ratio: 1 / 1.65; }

.about { background: transparent; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #FCC5F8 0%, #B3F7FE 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.about-photo span { font-size: 0.78rem; color: var(--muted); }
.about h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin: 10px 0 20px; }
.about p { color: var(--muted); margin-bottom: 16px; max-width: 52ch; }
.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li { display: flex; gap: 10px; align-items: baseline; font-size: 0.92rem; color: var(--ivory); }
.about-list li::before { content: '—'; color: var(--gold); }

.contact {
  background: transparent;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px dotted var(--line); }
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.contact-item:nth-child(2) .icon { border-color: var(--teal); color: var(--teal); }
.contact-item:nth-child(4) .icon { border-color: var(--rose); color: var(--rose); }
.contact-item:nth-child(5) .icon { border-color: var(--gold-soft); color: var(--gold-soft); }
.contact-item:nth-child(6) .icon { border-color: var(--teal); color: var(--teal); }
.contact-item:hover .icon { transform: scale(1.1); }
.contact-item .label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item a, .contact-item span.value { font-size: 1rem; color: var(--ivory); }

form.contact-form { display: grid; gap: 16px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ivory);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }

footer { background: var(--black-2); border-top: 1px solid var(--line); padding: 48px 0 26px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 32px; }
.footer-brand span { font-family: 'Cormorant Garamond', serif; color: var(--gold-soft); font-size: 1.05rem; }
.footer-links { display: flex; gap: 26px; font-size: 0.82rem; }
.footer-links a { color: rgba(255, 255, 255, 0.85); }
.footer-links a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.25); text-align: center; font-size: 0.76rem; color: rgba(255, 255, 255, 0.75); }

@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .price-groups { grid-template-columns: 10fr; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .photo.tall { grid-row: span 1; aspect-ratio: 2 / 2.1; }
  .about-grid, .contact-grid { grid-template-columns: 2fr; }
  .about-photo { order: -1; aspect-ratio: 14 / 10; }
  section { padding: 70px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }


 .before-after{ background:transparent; }
  .ba-slider{
    position:relative;
    aspect-ratio:16/10;
    max-width:760px;
    margin:0 auto;
    border-radius:8px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:0 30px 60px rgba(0,0,0,0.4);
    user-select:none;
  }
  .ba-image{
    position:absolute; inset:0;
    display:flex; align-items:flex-end;
    padding:18px;
  }
  .ba-before{
    background:linear-gradient(200deg, #FCC5F8 0%, #F7DFFB 100%);
  }
  .ba-after{
    background:linear-gradient(200deg, #B3F7FE 0%, #E4FBFE 60%, #FCC5F8 100%);
    clip-path:inset(0 0 0 50%); /* JS updates this on drag */
  }
  .ba-image span{ font-size:0.78rem; color:var(--muted); }
  .ba-badge{
    position:absolute; top:16px;
    font-size:0.68rem; letter-spacing:0.14em; text-transform:uppercase;
    color:var(--gold-soft);
    background:rgba(58,35,82,0.65);
    border:1px solid var(--line);
    padding:6px 12px; border-radius:20px;
    pointer-events:none;
  }
  .ba-badge.left{ left:16px; }
  .ba-badge.right{ right:16px; }
  .ba-handle-line{
    position:absolute; top:0; bottom:0;
    left:50%; /* JS updates this on drag */
    width:2px;
    background:var(--gold);
    transform:translateX(-1px);
    pointer-events:none;
  }
  .ba-handle-grip{
    position:absolute; top:50%; left:50%; /* JS updates left on drag */
    width:42px; height:42px;
    transform:translate(-50%,-50%);
    background:var(--gold);
    border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    color:var(--black);
    font-size:0.9rem;
    pointer-events:none;
    box-shadow:0 4px 14px rgba(0,0,0,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .ba-slider:hover .ba-handle-grip{
    transform:translate(-50%,-50%) scale(1.08);
    box-shadow:0 6px 20px rgba(244,95,209,0.35);
  }
  .ba-range{
    position:absolute; inset:0;
    width:100%; height:100%;
    margin:0;
    opacity:0;
    cursor:ew-resize;
    -webkit-appearance:none;
    appearance:none;
  }
  .ba-caption{ text-align:center; color:var(--muted); font-size:0.85rem; margin-top:20px; }

  .ba-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.small-hero{
    min-height:55vh;
    display:flex;
    align-items:center;
    text-align:center;
}

/* Compact image-led hero for inner pages (e.g. Nails) — reuses .hero-grid */
.hero.hero-compact{
  min-height:auto;
  padding:150px 0 80px;
}
.hero.hero-compact .hero-photo{ height:460px; }
@media (max-width:880px){
  .hero.hero-compact{ padding:130px 0 50px; }
  .hero.hero-compact .hero-photo{ height:360px; }
}

.active{
    color:var(--gold) !important;
}

.cta{
    padding:120px 0;
    text-align:center;
    background:linear-gradient(rgba(58,35,82,.62),rgba(58,35,82,.62)),
    url(images/cta.jpg) center/cover;
}

.cta h2{
    font-size:3rem;
    margin-bottom:20px;
    color:#fff;
    text-shadow:none;
}

.cta p{
    max-width:650px;
    margin:auto;
    color:rgba(255,255,255,0.85);
    margin-bottom:40px;
}

.nav-links.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:82px;
    right:20px;
    background:#fffaff;
    border:1px solid var(--line);
    box-shadow: 0 12px 30px rgba(122,79,160,0.18);
    padding:18px 26px;
    border-radius:6px;
    gap:16px;
    animation: navDropIn 0.28s cubic-bezier(.2,.7,.3,1);
}

@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SECTION: Hero — updated to image-led layout
   ============================================================ */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  text-align:left;
}
.hero-copy .lead{ margin:0 0 32px; }
.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroFadeUp 0.8s cubic-bezier(.2,.7,.3,1) forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.15s; }
.hero-copy .hero-sub { animation-delay: 0.25s; }
.hero-copy .lead { animation-delay: 0.32s; }
.hero-copy .btn-row { animation-delay: 0.42s; }
.hero-photo {
  opacity: 0;
  animation: heroFadeIn 1s ease 0.3s forwards;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-photo { opacity: 1; transform: none; animation: none; }
}
.hero-sub{
  font-size:0.8rem; letter-spacing:0.2em; color:var(--muted);
  margin:14px 0 18px;
}
.hero-photo{
  position:relative;
  width:100%;
  height:620px;
  border-radius:6px;
  border:1px solid var(--line);
  overflow:hidden;
}
.hero-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-photo span{ color:var(--muted); font-size:0.85rem; }
@media (max-width:880px){
  .hero-photo{ height:420px; }
}
.hero-play{
  position:absolute; top:24px; right:24px;
  width:52px; height:52px; border-radius:50%;
  border:1px solid var(--gold);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.hero-play-label{
  position:absolute; top:84px; right:20px;
  font-size:0.68rem; letter-spacing:0.08em; text-align:center;
  color:#fff; text-transform:uppercase;
  text-shadow: 0 1px 6px rgba(58,35,82,0.65);
}
@media (max-width:880px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .hero-copy{ order:1; }
  .hero-photo{ order:0; }
}

/* ============================================================
   SECTION: Feature strip
   ============================================================ */
.feature-strip{ padding:50px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}
.feature-item{
  display:flex; align-items:center; gap:14px;
  font-size:0.82rem; letter-spacing:0.03em; color:var(--ivory);
}
.feature-icon{ width:34px; height:34px; color:var(--gold); flex:none; transition: transform 0.3s ease; }
.feature-item:nth-child(2) .feature-icon{ color:var(--teal); }
.feature-item:nth-child(3) .feature-icon{ color:var(--rose); }
.feature-item:nth-child(4) .feature-icon{ color:var(--gold-soft); }
.feature-item:hover .feature-icon{ transform: scale(1.12); }
@media (max-width:880px){
  .feature-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ============================================================
   SECTION: About teaser
   ============================================================ */
.about-teaser{ background:transparent; padding:110px 0; }
.about-teaser-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.about-teaser-copy p{ color:var(--muted); margin:16px 0 28px; max-width:48ch; }
.about-teaser-photo{
  aspect-ratio:5/4;
  border-radius:6px;
  border:1px solid var(--line);
  background:linear-gradient(160deg,#FCC5F8 0%,#B3F7FE 100%);
  display:flex; align-items:flex-end; padding:20px;
}
.about-teaser-photo span{ color:var(--muted); font-size:0.85rem; }
@media (max-width:880px){
  .about-teaser-grid{ grid-template-columns:1fr; }
  .about-teaser-photo{ order:-1; }
}

/* ============================================================
   SECTION: Services teaser grid
   ============================================================ */
.services-teaser{ padding:110px 0; }
.section-head-row{
  display:flex; justify-content:space-between; align-items:flex-end;
  margin-bottom:50px; flex-wrap:wrap; gap:16px;
}
.view-all{ font-size:0.8rem; letter-spacing:0.05em; color:var(--gold); text-transform:uppercase; }
.view-all:hover{ color:var(--gold-soft); }
.service-teaser-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:22px;
}
.service-teaser-card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:6px;
  overflow:hidden;
}

.service-teaser-photo{
    padding:14px 18px 0;
}

.service-teaser-photo span{
    font-size:.72rem;
    color:var(--gold);
    text-transform:capitalize;
}
@media (max-width:880px){
  .service-teaser-grid{ grid-template-columns:repeat(2,1fr); }
}

/* ============================================================
   SECTION: Gift card + newsletter band
   ============================================================ */
.promo-band{ background:transparent; padding:70px 0; }
.promo-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; }
.gift-card{
  background:linear-gradient(160deg,#FCC5F8 0%,#B3F7FE 100%);
  border:1px solid var(--line); border-radius:8px; padding:34px;
}
.gift-card h3{ font-size:1.6rem; margin:10px 0; color:var(--gold-soft); }
.newsletter h3{ font-size:1.4rem; margin:10px 0 20px; }
.newsletter-form{ display:flex; gap:12px; flex-wrap:wrap; }
.newsletter-form input{
  flex:1; min-width:200px;
  background:var(--panel); border:1px solid var(--line); border-radius:4px;
  padding:14px 16px; color:var(--ivory); font-family:'Jost',sans-serif;
}
@media (max-width:880px){
  .promo-grid{ grid-template-columns:1fr; }
}

.price-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.price-card {
    max-width: 480px;
    min-width: 300px;
    width: 100%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35), 0 0 0 1px rgba(244, 95, 209, 0.15);
}
.price-groups .price-card:nth-child(2):hover,
.price-card:nth-child(2):hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.35), 0 0 0 1px rgba(34, 195, 222, 0.18);
}

.price-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Service teaser images on the homepage */
.service-teaser-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
.service-teaser-card h3,
.service-teaser-card p,
.service-teaser-card .teaser-link {
    margin-left: 18px;
    margin-right: 18px;
}
.service-teaser-card h3 { margin-top: 16px; color: var(--gold-soft); font-size: 1.2rem; }
.service-teaser-card p { color: var(--muted); font-size: 0.88rem; margin: 8px 18px 16px; }
.service-teaser-card .teaser-link {
    display: block;
    padding: 0 18px 20px;
    color: var(--gold);
    font-size: 1.1rem;
}
.service-teaser-card .teaser-link:hover { color: var(--gold-soft); }

/* Floating WhatsApp button (site-wide) */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    z-index: 90;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.faq { background: transparent; }
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 4px 24px;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 30px 18px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--ivory);
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 16px;
    color: var(--gold);
    font-size: 1.3rem;
    transition: transform 0.25s ease;
    display: inline-block;
}
.faq-item[open] summary::after { content: '+'; transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 20px; font-size: 0.95rem; max-width: 62ch; }
.faq-item p a { color: var(--gold); text-decoration: underline; }
.faq-item[open] p { animation: faqFadeIn 0.35s ease; }

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes whatsappBreathe {
  0%, 100% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 0 rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 0 8px rgba(37,211,102,0); }
}
.whatsapp-float { animation: whatsappBreathe 2.8s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; }
/* ============================================================
   SECTION: Bundle Deals (boxed combo cards)
   ============================================================ */
.bundles {
  background: transparent;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 50px;
}
.bundle-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bundle-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.35);
}
.bundle-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.bundle-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 14px;
  line-height: 1.25;
}
.bundle-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--gold);
}
.bundle-price small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

/* Rotate accent colors gold / teal / rose across the boxes */
.bundle-grid .bundle-box:nth-child(2) { border-color: rgba(34, 195, 222, 0.35); }
.bundle-grid .bundle-box:nth-child(2) .bundle-badge { background: var(--teal); }
.bundle-grid .bundle-box:nth-child(2) .bundle-price { color: var(--teal); }
.bundle-grid .bundle-box:nth-child(2):hover { box-shadow: 0 16px 34px rgba(34,195,222,0.18); }

.bundle-grid .bundle-box:nth-child(3) { border-color: rgba(255, 143, 224, 0.35); }
.bundle-grid .bundle-box:nth-child(3) .bundle-badge { background: var(--rose); }
.bundle-grid .bundle-box:nth-child(3) .bundle-price { color: var(--rose); }
.bundle-grid .bundle-box:nth-child(3):hover { box-shadow: 0 16px 34px rgba(255,143,224,0.18); }

.bundle-grid .bundle-box:nth-child(4) .bundle-badge { background: var(--gold-soft); }
.bundle-grid .bundle-box:nth-child(4) .bundle-price { color: var(--gold-soft); }

/* ============================================================
   SECTION: Gallery Detail page
   ============================================================ */
.gallery-detail {
  background: transparent;
  padding-top: 140px;
}
.back-link {
  display: inline-block;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
  transition: color 0.2s ease;
}
.back-link:hover { color: var(--gold); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.detail-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3.4;
}
.detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}
.detail-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(58,35,82,0.55);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.detail-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.detail-nav.prev { left: 16px; }
.detail-nav.next { right: 16px; }

.detail-copy h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ivory);
  margin: 8px 0 16px;
}
.detail-copy p#detailDesc {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 48ch;
  margin: 20px 0 12px;
}
.detail-count {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

@media (max-width: 880px) {
  .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-detail { padding-top: 110px; }
}

/* ============================================================
   SECTION: Signature components (icon badges, pills, divider)
   ============================================================ */

/* Icon badge — circular icon marker, like "Hands" / "Hard Gel" icons */
.icon-badge{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(244,95,209,0.25), rgba(244,95,209,0.05));
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
  box-shadow: 0 0 18px rgba(244,95,209,0.25);
}
.icon-badge svg{ width: 22px; height: 22px; }
.card-heading{ display: flex; align-items: center; gap: 14px; margin-bottom: 4px; }
.card-heading .icon-badge{ margin-bottom: 0; }

/* Category pill — like "SOFT GEL" / "TIPS" / "NAILS" tags */
.pill{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--black);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 22px 0 12px;
}

/* Decorative divider — small heart-flanked gold rule, like under "Price List" */
.divider-flourish{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px auto 0;
  color: var(--gold);
}
.divider-flourish::before, .divider-flourish::after{
  content: "";
  height: 1px;
  width: 60px;
  background: var(--gold);
  opacity: 0.6;
}
.divider-flourish svg{ width: 16px; height: 16px; }

/* Card "pop" — stronger glow so panels lift off the black background */
.price-card, .product-card, .service-teaser-card{
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}
.price-card:hover, .product-card:hover, .service-teaser-card:hover{
  box-shadow: 0 25px 55px rgba(244,95,209,0.22);
  border-color: var(--gold);
}

/* Thank-you closing block, like the bottom of the reference design */
.thank-you-block{
  text-align: center;
  padding: 70px 0 30px;
}
.thank-you-block .script{
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-soft);
}
.thank-you-block .sub{
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.05em;
}
.thank-you-block svg{ width: 20px; height: 20px; color: var(--gold); margin: 0 8px -3px; }

/* ============================================================
   SECTION: Luxury brightening pass
   ============================================================ */

h1, h2{ text-shadow: 0 0 24px rgba(244,95,209,0.20); }

.price-card:hover, .product-card:hover, .service-teaser-card:hover,
.bundle-box:hover, .photo-card:hover{
  box-shadow: 0 25px 55px rgba(122,79,160,0.16), 0 0 40px rgba(179,247,254,0.25);
}

.icon-badge{
  box-shadow: 0 0 18px rgba(244,95,209,0.20), 0 0 30px rgba(179,247,254,0.18);
}

.gold-rule svg{
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(244,95,209,0.30));
}

.brand img{ height: 280px; width: auto; }
.nav-cta-group{ display: flex; align-items: center; gap: 18px; }
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;

    transition: 0.3s ease;
}

.nav-phone:hover {
    color: var(--rose);
}

.nav-phone svg {
    color: var(--gold);
}
.nav-phone svg{ color: var(--gold); }
@media (max-width: 880px){ .nav-phone{ display: none; } }

:root{ --turquoise: var(--teal); --turquoise-soft: var(--teal-deep); }

.theme-nails .icon-badge,
.theme-nails .pill{ border-color: var(--turquoise); color: var(--turquoise); background: none; }
.theme-nails .pill{ background: linear-gradient(135deg, var(--turquoise), var(--turquoise-soft)); color: var(--black); }
.theme-nails .card-heading h3{ color: var(--turquoise); }
.theme-nails.price-card:hover,
.theme-nails.service-teaser-card:hover{
  border-color: var(--turquoise);
  box-shadow: 0 25px 55px rgba(34, 195, 222, 0.22);
}
.theme-nails .price-row .price{ color: var(--turquoise); }
.nav-links a[href="nails.html"].active{ color: var(--turquoise) !important; }
.nav-links a[href="nails.html"].active::after{ background: var(--turquoise); }


.laser-video-grid{ display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:50px; }
.laser-video-card video{ width:100%; border-radius:6px; border:1px solid var(--line); }
.laser-video-card .eyebrow{ display:block; margin-bottom:10px; text-align:center; }
@media (max-width:880px){ .laser-video-grid{ grid-template-columns:1fr; } }

.policy-note{ padding:50px 0; }
.policy-box{
  max-width:640px; margin:0 auto; text-align:center;
  background:var(--panel); border:1px solid var(--line); border-radius:8px; padding:30px;
}
.policy-box h3{ color:var(--gold-soft); margin-bottom:10px; }
.policy-box p{ color:var(--muted); font-size:0.9rem; margin-top:6px; }

.price-groups{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
}

@media (max-width:992px){
    .price-groups{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .price-groups{
        grid-template-columns:1fr;
    }
}

.price-groups{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    align-items:stretch;
}
.price-groups .price-card{
    width: 380px;
    max-width: 100%;
}

/* ONLY Services page */
.services-page .price-groups{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:2rem;
    align-items:stretch;
}

.services-page .price-card{
    width:100%;
}

@media (max-width:992px){
    .services-page .price-groups{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .services-page .price-groups{
        grid-template-columns:1fr;
    }
}

.services-page .price-groups{
    grid-template-columns:repeat(3,1fr) !important;
}

@media (max-width:992px){
    .price-groups{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:768px){
    .price-groups{
        grid-template-columns:1fr;
    }
}

.nails-prices{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:40px;
    flex-wrap:wrap;
}

.nails-prices .price-card{
    flex:0 1 420px;
    max-width:420px;
}

.price-card-center{
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
}

.price-groups{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;   /* Centers all cards */
    gap: 30px;
    margin-top: 50px;
}

.price-card{
    flex: 0 1 380px;           /* Each card keeps a nice width */
    max-width: 380px;
    width: 100%;
}

.price-groups{
    display:flex;
    justify-content:center;
    gap:2rem;
    align-items:stretch;
    flex-wrap:wrap;
}

.price-groups .price-card{
    flex:0 0 350px;
}

/* =========================
   SERVICES PAGE ONLY
========================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(300px, 1fr));
    gap:32px;
    justify-content:center;
    align-items:stretch;
}

.services-grid .price-card{
    height:100%;
}

@media (max-width:1000px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

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

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 255, 0.72);
    box-shadow: 0 2px 16px rgba(122, 79, 160, 0.12);
}

header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100px;   /* Increase from whatever it is now */
    padding: 0 24px;
}

.footer-brand img {
    height: 280px;   /* match .brand img in the header */
    width: auto;
}

.service-teaser-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* View Nail Prices button */
.nail-btn{
    border:2px solid var(--teal);
    color:var(--teal);
    background:transparent;
    transition:all .3s ease;
}

/* Hover */
.nail-btn:hover{
    background:var(--teal);
    color:var(--black);
    border-color:var(--teal);
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(34,195,222,.25);
}

/* While clicking */
.nail-btn:active{
    background:var(--gold);
    border-color:var(--gold);
    color:#fff;
    transform:scale(.97);
}

/* Keyboard focus */
.nail-btn:focus-visible{
    outline:none;
    box-shadow:0 0 0 4px rgba(34,195,222,.35);
}

/* ===========================
   Gift Card
=========================== */
.gift-card{

    max-width:700px;
    margin:0 auto;

    min-height:260px;

    border-radius:24px;

    padding:55px 45px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(rgba(58,35,82,.65),rgba(58,35,82,.75)),
    url("images/gift-card.jpg") center/cover;

    border:1px solid rgba(244,95,209,.35);

    box-shadow:
    0 20px 50px rgba(0,0,0,.45);

    transition:.35s ease;
}

.gift-card::before{

content:"";

position:absolute;

inset:0;

border-radius:24px;

padding:2px;

background:linear-gradient(
135deg,
transparent,
var(--gold),
transparent
);

mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask:
linear-gradient(#fff 0 0) content-box,
linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;
mask-composite:exclude;

opacity:0;

transition:.35s;
}

.gift-card:hover{

transform:translateY(-8px);

box-shadow:
0 30px 70px rgba(0,0,0,.55);
}

.gift-card:hover::before{

opacity:1;
}

.gift-card .eyebrow{

font-size:.75rem;

letter-spacing:.3em;

text-transform:uppercase;

color:var(--gold);

margin-bottom:18px;
}

.gift-card h3{

font-family:"Cormorant Garamond",serif;

font-size:3rem;

font-weight:600;

margin-bottom:15px;

color:var(--gold-soft);
}

.gift-card p{

font-size:1rem;

color:rgba(255,255,255,0.88);

margin-bottom:35px;

max-width:420px;

line-height:1.7;
}

.gift-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 38px;

border-radius:50px;

background:var(--gold);

color:#fff;

font-weight:600;

letter-spacing:.08em;

text-transform:uppercase;

transition:.3s;
}

.gift-btn:hover{

background:var(--gold-soft);
color:var(--black);

transform:scale(1.05);
}

@media(max-width:768px){

.gift-card{

padding:40px 25px;

min-height:220px;
}

.gift-card h3{

font-size:2.2rem;
}

.gift-card p{

font-size:.95rem;
}

}

.promo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:stretch;
}

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

.newsletter{

    background:var(--panel);

    border:1px solid var(--line);

    border-radius:24px;

    padding:50px 45px;

    box-shadow:
        0 20px 50px rgba(122,79,160,.16);

    transition:.35s;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.newsletter:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

    box-shadow:
        0 25px 70px rgba(122,79,160,.22),
        0 0 20px rgba(244,95,209,.18);

}

.newsletter .eyebrow{

    color:var(--gold);

    letter-spacing:.28em;

    text-transform:uppercase;

    font-size:.75rem;

    margin-bottom:15px;

}

.newsletter h3{

    font-family:"Cormorant Garamond",serif;

    font-size:2.7rem;

    color:var(--black);

    margin-bottom:18px;

}

.newsletter p{

    color:var(--muted);

    margin-bottom:28px;

    line-height:1.7;

}

.newsletter-form{

    display:flex;

    gap:15px;

    margin-top:10px;

}

.newsletter-form input{

    flex:1;

    height:58px;

    padding:0 22px;

    border:1px solid var(--line);

    border-radius:50px;

    background:#fff;

    color:var(--black);

    font-size:.95rem;

    transition:.3s;

}

.newsletter-form input:focus{

    outline:none;

    box-shadow:0 0 0 2px rgba(244,95,209,.4);

}

.newsletter-form button{

    height:58px;

    padding:0 34px;

    border:none;

    border-radius:50px;

    background:var(--gold);

    color:#fff;

    font-weight:600;

    letter-spacing:.08em;

    cursor:pointer;

    transition:.3s;

}

.newsletter-form button:hover{

    background:var(--gold-soft);
    color:var(--black);

    transform:translateY(-2px);

}


@media (max-width:700px){

.newsletter{

    padding:35px 25px;

}

.newsletter h3{

    font-size:2rem;

}

.newsletter-form{

    flex-direction:column;

}

.newsletter-form button{

    width:100%;

}

}