/* =====================================================
   GLOW BLISS — Multi-Theme Beauty Parlour Website
   Themes: blush | midnight | sage | gold
   ===================================================== */

/* ---------- THEME TOKENS ---------- */
[data-theme="blush"] {
  --bg:         #fdf6f6;
  --bg2:        #f7eaea;
  --bg3:        #f0dede;
  --ink:        #2d1f1f;
  --ink-soft:   #7a5858;
  --line:       #e8d0d0;
  --accent:     #c97b7b;
  --accent-d:   #a05454;
  --accent-l:   #f3c4c4;
  --card:       #fff8f8;
  --gold:       #c4954a;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Jost', sans-serif;
  --hero-grad:  radial-gradient(130% 90% at 80% 0%, rgba(201,123,123,.22), transparent 55%),
                radial-gradient(80% 70% at 0% 100%, rgba(244,180,180,.18), transparent 60%);
  --marquee-bg: #2d1f1f;
  --test-bg:    #2d1f1f;
}
[data-theme="midnight"] {
  --bg:         #140e20;
  --bg2:        #1c1530;
  --bg3:        #231a3c;
  --ink:        #f0ebff;
  --ink-soft:   #b09ed8;
  --line:       #3a2e5a;
  --accent:     #9b7ee0;
  --accent-d:   #7a5ccc;
  --accent-l:   #d4c4f7;
  --card:       #1e1730;
  --gold:       #e8c56a;
  --serif:      'DM Serif Display', Georgia, serif;
  --sans:       'Raleway', sans-serif;
  --hero-grad:  radial-gradient(130% 90% at 80% 0%, rgba(155,126,224,.25), transparent 55%),
                radial-gradient(80% 70% at 0% 100%, rgba(100,70,200,.2), transparent 60%);
  --marquee-bg: #0d0918;
  --test-bg:    #0d0918;
}
[data-theme="sage"] {
  --bg:         #f4f6f2;
  --bg2:        #e8ede4;
  --bg3:        #dce4d7;
  --ink:        #1e2a1e;
  --ink-soft:   #4a6047;
  --line:       #ccd9c6;
  --accent:     #5a7a62;
  --accent-d:   #3d5e45;
  --accent-l:   #b4cebc;
  --card:       #f9fbf8;
  --gold:       #a07840;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'Jost', sans-serif;
  --hero-grad:  radial-gradient(130% 90% at 80% 0%, rgba(90,122,98,.2), transparent 55%),
                radial-gradient(80% 70% at 0% 100%, rgba(150,190,155,.18), transparent 60%);
  --marquee-bg: #1e2a1e;
  --test-bg:    #1e2a1e;
}
[data-theme="gold"] {
  --bg:         #120f08;
  --bg2:        #1a160e;
  --bg3:        #221c0f;
  --ink:        #f5edd8;
  --ink-soft:   #c4a870;
  --line:       #3a3018;
  --accent:     #d4a830;
  --accent-d:   #b88a18;
  --accent-l:   #f0d090;
  --card:       #1c1810;
  --gold:       #e8c050;
  --serif:      'Cormorant Garamond', Georgia, serif;
  --sans:       'Raleway', sans-serif;
  --hero-grad:  radial-gradient(130% 90% at 80% 0%, rgba(212,168,48,.2), transparent 55%),
                radial-gradient(80% 70% at 0% 100%, rgba(180,130,20,.18), transparent 60%);
  --marquee-bg: #0a0800;
  --test-bg:    #0a0800;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .4s ease, color .4s ease;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section { padding: clamp(3.5rem, 8vw, 7rem) clamp(1.2rem, 5vw, 3.5rem); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .3px;
}
h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
em { font-family: var(--serif); font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .36em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}
.eyebrow.center { text-align: center; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }

/* ---------- BUTTONS ---------- */
.btn-book {
  background: var(--accent);
  color: #fff;
  padding: .85rem 1.7rem;
  border-radius: 100px;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--accent);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn-book:hover {
  background: var(--accent-d);
  border-color: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px color-mix(in srgb, var(--accent) 50%, transparent);
}
.btn-lg { padding: 1.05rem 2.2rem; font-size: .88rem; }
.btn-ghost {
  padding: 1.05rem 2rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: .25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- THEME SWITCHER ---------- */
.theme-dock {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 60;
}
.theme-toggle-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--accent);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: .7rem 1rem;
  border-radius: 12px 0 0 12px;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  writing-mode: initial;
  box-shadow: -4px 0 20px -6px rgba(0,0,0,.35);
  transition: background .25s;
}
.theme-toggle-btn:hover { background: var(--accent-d); }
.theme-panel {
  position: absolute;
  right: calc(100%);
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  opacity: 0;
  pointer-events: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  width: 200px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.5);
  transition: opacity .3s ease, transform .3s ease;
}
.theme-dock.open .theme-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(-50%) translateX(0);
}
.theme-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .9rem;
}
.theme-chips { display: flex; flex-direction: column; gap: .5rem; }
.tc {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: .55rem .8rem;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .85rem;
  color: var(--ink);
  transition: .2s;
  text-align: left;
}
.tc:hover { border-color: var(--accent); }
.tc.active { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); font-weight: 600; }
.tc-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--a), var(--b));
  flex: none;
  border: 1.5px solid var(--line);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 5vw, 3.5rem);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 28px -18px rgba(0,0,0,.4);
}
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  height: 1.5px; width: 0;
  background: var(--accent);
  transition: .3s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(78vw, 310px);
  z-index: 49;
  background: var(--bg2);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.5,0,.2,1);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 6rem 2rem;
  box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.mobile-menu .btn-book { font-family: var(--sans); font-size: .82rem; text-align: center; margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 9rem clamp(1.2rem, 5vw, 3.5rem) 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--hero-grad);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  margin: .4rem 0 1.4rem;
  line-height: 1;
}
.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.5rem; }
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat b { display: block; font-family: var(--serif); font-size: 1.6rem; color: var(--accent); }
.stat span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.hero-img { position: relative; }
.hero-img img {
  width: 100%;
  height: clamp(420px, 60vh, 640px);
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.55);
}
.hero-badge {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  background: var(--card);
  padding: .9rem 1.3rem;
  border-radius: 14px;
  box-shadow: 0 14px 40px -16px rgba(0,0,0,.5);
  border: 1px solid var(--line);
}
.hero-badge strong { display: block; font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.hero-badge span { font-size: .78rem; letter-spacing: .1em; color: var(--ink-soft); }

/* ---------- MARQUEE ---------- */
.marquee {
  background: var(--marquee-bg);
  overflow: hidden;
  padding: .9rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.8rem;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: color-mix(in srgb, var(--accent-l) 85%, white);
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- SERVICES ---------- */
.services { background: var(--bg2); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 1.6rem;
  max-width: 1280px;
  margin: 0 auto;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -26px rgba(0,0,0,.55);
}
.sc-img { overflow: hidden; aspect-ratio: 4/3; }
.sc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .sc-img img { transform: scale(1.07); }
.sc-body { padding: 1.1rem 1.3rem 1.4rem; }
.sc-body h3 { font-size: 1.45rem; margin-bottom: .4rem; }
.sc-body p { color: var(--ink-soft); font-size: .92rem; margin-bottom: .8rem; }
.sc-price {
  display: inline-block;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent-d);
  border: 1px solid var(--accent-l);
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 100px;
}

/* ---------- PRICES ---------- */
.prices { background: var(--bg3); }
.price-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.price-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 8px 28px -22px rgba(0,0,0,.45);
}
.price-block.wide { grid-column: span 2; }
.price-block h3 {
  font-size: 1.65rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: baseline;
  gap: .6rem;
  flex-wrap: wrap;
  color: var(--ink);
}
.price-block h3 small {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.price-list { list-style: none; }
.price-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .5rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 50%, transparent);
  font-size: .97rem;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:first-of-type { color: var(--ink); flex: 1 0 auto; min-width: 0; }
.price-list li i { 
  border-bottom: 1px dotted var(--line); 
  transform: translateY(-4px); 
  min-width: 12px; 
  max-width: 40px;
  flex: 1 1 auto;
  order: 2;
}
.price-list li b {
  font-weight: 600;
  font-family: var(--serif);
  font-size: 1.12rem;
  color: var(--accent);
  white-space: nowrap;
  flex: 0 0 auto;
  order: 3;
}
.service-note {
  display: block;
  flex-basis: 100%;
  margin: 0.5rem 0 0 0;
  padding: 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.4;
  order: 4;
}
.wax-head {
  display: flex;
  gap: .5rem;
  padding-bottom: .5rem;
  border-bottom: 1.5px solid var(--line);
  margin-bottom: .3rem;
}
.wax-head span { flex: 1; }
.wax-col { width: 80px; text-align: right; flex: none; }
.price-list.wax li b { width: 80px; text-align: right; }
.wax-head .wax-col {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.price-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-top: 1rem;
  padding: .75rem 1rem;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 10px;
  font-size: .84rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.price-note svg { color: var(--accent); flex: none; margin-top: 1px; }
.price-note em { font-style: normal; font-weight: 600; color: var(--ink); }
.booking-note { margin-top: .8rem; }
.price-cta { text-align: center; margin-top: 3rem; }

/* ---------- GALLERY ---------- */
.gallery-sec { background: var(--bg); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: .8rem;
  max-width: 1280px;
  margin: 0 auto;
}
.gg-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}
.gg-item.tall { grid-row: span 2; }
.gg-item.wide { grid-column: span 2; }
.gg-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gg-item:hover img { transform: scale(1.08); }
.gg-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  transform: translateY(8px);
  opacity: 0;
  transition: .35s;
}
.gg-item:hover .gg-label { opacity: 1; transform: none; }

/* ---------- ABOUT ---------- */
.about { background: var(--bg2); }
.about-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about-imgs { position: relative; height: 520px; }
.about-img1 {
  position: absolute;
  top: 0; left: 0;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.5);
}
.about-img2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 14px 40px -16px rgba(0,0,0,.5);
  border: 3px solid var(--bg2);
}
.about-text h2 { margin: .4rem 0 1.4rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 1.2rem; font-size: 1.05rem; }
.why-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.why-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
}
.why-icon { font-size: 1.6rem; margin-bottom: .5rem; }
.why-item h4 { font-size: 1.1rem; margin-bottom: .3rem; }
.why-item p { font-size: .85rem; color: var(--ink-soft); margin: 0; }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: var(--test-bg);
  color: color-mix(in srgb, var(--bg) 90%, white);
}
.testimonials .eyebrow { color: var(--gold); }
.testimonials h2 { color: color-mix(in srgb, var(--bg) 90%, white); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 1180px;
  margin: 0 auto;
}
.test-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform .3s, background .3s;
}
.test-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.stars { font-size: 1rem; margin-bottom: .8rem; letter-spacing: .05em; }
.test-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 1.1rem;
  color: color-mix(in srgb, var(--bg) 90%, white);
}
.test-card figcaption {
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- CONTACT ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}
.contact-text h2 { margin: .4rem 0 2rem; }
.contact-list { list-style: none; margin-bottom: 2.2rem; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--ink);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list svg { flex: none; margin-top: 3px; color: var(--accent); }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--accent); }
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 18px;
  box-shadow: 0 18px 50px -28px rgba(0,0,0,.5);
}
.faq { max-width: 820px; margin: 5rem auto 0; }
.faq h3 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 2rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  margin-bottom: .9rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent);
  transition: transform .3s;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.5rem 1.3rem; color: var(--ink-soft); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg2);
  text-align: center;
  padding: 3.5rem 1.5rem;
  border-top: 1px solid var(--line);
}
.footer-brand {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  margin-bottom: .8rem;
}
.footer-brand em { color: var(--accent); font-weight: 400; }
.footer-nav {
  display: flex;
  gap: 1.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.footer-nav a {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1.1rem; justify-content: center; margin-bottom: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: .25s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-copy { font-size: .8rem; color: var(--ink-soft); }

/* ---------- WHATSAPP FLOAT ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 32px -8px rgba(37,211,102,.7);
  transition: transform .25s;
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%  { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- BOOKING PAGE ---------- */
.book-main { max-width: 920px; margin: 0 auto; padding: 7.5rem clamp(1.2rem, 5vw, 2.5rem) 5rem; }
.book-head { text-align: center; margin-bottom: 2.5rem; }
.book-head h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin: .4rem 0 .6rem; }
.book-head p { color: var(--ink-soft); }
.book-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  margin-bottom: 1.6rem;
}
.step-label { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem; }
.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  flex: none;
  font-weight: 600;
}
.step-label h2 { font-size: 1.7rem; }
.svc-group { margin-bottom: 1.4rem; }
.svc-group > h3 { font-size: 1.3rem; margin-bottom: .7rem; color: var(--accent); }
.svc-options { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .55rem; }
.svc-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .65rem .9rem;
  font-size: .91rem;
  background: var(--bg);
  color: var(--ink);
  transition: .2s;
  user-select: none;
}
.svc-chip:hover { border-color: var(--accent); }
.svc-chip input { position: absolute; opacity: 0; pointer-events: none; }
.svc-chip .price { font-family: var(--serif); font-size: 1.05rem; color: var(--accent); white-space: nowrap; font-weight: 600; }
.svc-chip.checked { background: var(--accent); color: #fff; border-color: var(--accent); }
.svc-chip.checked .price { color: #fff; opacity: .9; }
.date-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: .55rem; }
.date-card {
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: .85rem .4rem;
  text-align: center;
  background: var(--bg);
  transition: .2s;
}
.date-card:hover { border-color: var(--accent); }
.date-card .dow { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.date-card .dnum { font-family: var(--serif); font-size: 1.7rem; line-height: 1.1; color: var(--ink); }
.date-card .mon { font-size: .7rem; color: var(--ink-soft); }
.date-card.checked { background: var(--accent); border-color: var(--accent); color: #fff; }
.date-card.checked .dow, .date-card.checked .mon { color: rgba(255,255,255,.8); }
.date-card.checked .dnum { color: #fff; }
.time-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: .55rem; }
.time-card {
  cursor: pointer;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .75rem;
  text-align: center;
  background: var(--bg);
  font-size: 1rem;
  color: var(--ink);
  transition: .2s;
}
.time-card:hover { border-color: var(--accent); }
.time-card.checked { background: var(--accent); border-color: var(--accent); color: #fff; }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; font-weight: 600; }
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .8rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.summary-bar {
  position: sticky; bottom: 1rem; z-index: 30;
  background: var(--ink);
  color: var(--bg);
  border-radius: 18px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 18px 50px -24px rgba(0,0,0,.6);
  flex-wrap: wrap;
}
.sum-info { font-size: .92rem; }
.sum-info b { font-family: var(--serif); font-size: 1.4rem; color: var(--gold); display: block; }
.btn-submit {
  background: #25d366;
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 100px;
  padding: .95rem 1.8rem;
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .08em;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: .25s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px -8px rgba(37,211,102,.5); }
.btn-submit:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--ink-soft);
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.back-link:hover { color: var(--accent); }
.hint { font-size: .84rem; color: var(--ink-soft); margin-top: .6rem; }
.err { color: #d95f5f; font-size: .84rem; margin-top: .5rem; display: none; }
.err.show { display: block; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .price-block.wide { grid-column: span 1; }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gg-item.tall, .gg-item.wide { grid-row: auto; grid-column: auto; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { order: -1; }
  .hero-img img { height: 380px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-imgs { height: 320px; max-width: 480px; }
  .contact-inner { grid-template-columns: 1fr; }
  .why-row { grid-template-columns: 1fr; }
  .theme-dock { top: auto; bottom: 4.5rem; transform: none; right: 0; }
  .theme-toggle-btn { border-radius: 12px 0 0 12px; }
  .theme-panel { top: auto; bottom: calc(100% + .5rem); transform: translateX(0); right: 0; }
  .theme-dock.open .theme-panel { transform: translateX(0); }
}
@media (max-width: 700px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .test-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.2rem; }
}

/* ===== GOOGLE BADGE (hero) ===== */
.google-badge {
  display: inline-flex;
  flex-direction: column;
  gap: .2rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: .7rem 1rem;
  cursor: pointer;
  transition: .25s;
  text-decoration: none;
}
.google-badge:hover { border-color: #4285F4; box-shadow: 0 6px 20px -8px rgba(66,133,244,.35); transform: translateY(-2px); }
.gb-top { display: flex; align-items: center; gap: .4rem; }
.gb-score { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: var(--ink); line-height: 1; }
.gb-stars { color: #FBBC05; font-size: 1rem; letter-spacing: .05em; }
.gb-bottom { font-size: .72rem; letter-spacing: .08em; color: var(--ink-soft); }

/* ===== GOOGLE BADGE (testimonials) ===== */
.google-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: .9rem 1.4rem;
  margin-top: 1.2rem;
  text-decoration: none;
  transition: .25s;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--ink);
}
.google-badge-large:hover { border-color: #4285F4; transform: translateY(-2px); box-shadow: 0 8px 24px -10px rgba(66,133,244,.3); }
.gbl-info { text-align: left; }
.gbl-score { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; line-height: 1.1; color: var(--ink); }
.gbl-stars { color: #FBBC05; font-size: 1.1rem; }
.gbl-count { font-size: .78rem; color: var(--ink-soft); letter-spacing: .08em; margin-top: .1rem; }
.gbl-cta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #4285F4; font-weight: 600; border-left: 1px solid var(--line); padding-left: 1rem; }

/* testimonials badge container */
.testimonials .google-badge-large { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.testimonials .google-badge-large:hover { border-color: #4285F4; }
.testimonials .gbl-score { color: #fff; }
.testimonials .gbl-count { color: rgba(255,255,255,.6); }
.testimonials .gbl-cta { border-left-color: rgba(255,255,255,.2); color: #7ab4f5; }

/* ===== INSTAGRAM SECTION ===== */
.instagram-sec { background: var(--bg2); }
.ig-subtext { color: var(--ink-soft); margin-top: .6rem; font-size: 1.05rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
  max-width: 1280px;
  margin: 0 auto;
}
.ig-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--line);
  text-decoration: none;
  transition: transform .3s, box-shadow .3s;
  background: var(--card);
}
.ig-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -20px rgba(0,0,0,.45); }
.ig-thumb {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ig-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.ig-thumb svg { position: relative; z-index: 1; }
/* Instagram gradient overlay on hover */
.ig-card:hover .ig-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.15);
}
.ig-caption {
  padding: .55rem .7rem;
  font-size: .78rem;
  color: var(--ink-soft);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ig-follow {
  text-align: center;
  margin-top: 2rem;
}
.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 2rem;
  border-radius: 100px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: .25s;
  text-decoration: none;
}
.btn-ig:hover { background: var(--accent); color: #fff; }
.ig-note {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  justify-content: center;
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.ig-note svg { flex: none; margin-top: 2px; color: var(--accent); }
.ig-note strong { color: var(--ink); }

@media (max-width: 900px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== DUAL SUBMIT BUTTONS ===== */
.sum-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-wa {
  background: #25d366;
  color: #fff;
  border: 0;
}
.btn-wa:hover {
  background: #1da851;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,.5);
}
.btn-email {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-size: .82rem;
}
[data-theme="midnight"] .btn-email,
[data-theme="gold"] .btn-email {
  color: var(--bg);
  border-color: rgba(255,255,255,.2);
}
.btn-email:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
}

/* ===== EMAIL CONTACT PANEL ===== */
.email-panel {
  border: 1.5px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 6%, var(--card));
  animation: slideDown .35s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: none; }
}
.email-panel-intro {
  color: var(--ink-soft);
  font-size: .97rem;
  margin-bottom: 1.4rem;
  line-height: 1.55;
}
.contact-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .8rem;
  align-items: center;
}
.contact-or {
  text-align: center;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  padding-top: 1.4rem; /* align with inputs */
}
.field label {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.field label svg { color: var(--accent); flex: none; }
@media (max-width: 600px) {
  .contact-fields { grid-template-columns: 1fr; }
  .contact-or { padding-top: 0; }
}

/* ===== SUCCESS SCREEN ===== */
.success-msg {
  padding: 3rem 1.5rem 5rem;
  text-align: center;
}
.success-inner {
  max-width: 520px;
  margin: 0 auto;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 2rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
  box-shadow: 0 12px 32px -10px rgba(37,211,102,.55);
}
.success-msg h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: .6rem;
}
.success-msg > .success-inner > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.6rem;
}
.success-details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  margin-bottom: .5rem;
}
.sd-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .8rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.sd-row:last-child { border-bottom: none; }
.sd-row span { color: var(--ink-soft); }
.sd-row b { font-weight: 500; font-family: var(--serif); font-size: 1.1rem; color: var(--accent); }

/* step optional label */
.step-opt {
  font-family: var(--sans);
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 400;
  margin-left: .4rem;
}

/* ===== BOOKING DISCLAIMER ===== */
.booking-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 2rem 0;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink);
}
.booking-disclaimer svg {
  flex: none;
  color: var(--accent);
  margin-top: 2px;
}
.booking-disclaimer strong {
  font-weight: 600;
  color: var(--ink);
}

[data-theme="midnight"] .booking-disclaimer,
[data-theme="gold"] .booking-disclaimer {
  background: color-mix(in srgb, #7ab4f5 8%, transparent);
  border-left-color: #7ab4f5;
}
[data-theme="midnight"] .booking-disclaimer svg,
[data-theme="gold"] .booking-disclaimer svg {
  color: #7ab4f5;
}
