/*
Theme Name: Larsa Haarsalon
Theme URI: https://larsahaarsalon.nl
Author: Larsa Haarsalon & Beauty
Author URI: https://larsahaarsalon.nl
Description: Professioneel op maat gemaakte thema voor Larsa Haarsalon & Beauty in Bilthoven.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: larsa
Tags: hair, salon, beauty, custom
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:  #faf7f2;
  --warm:   #f2ece0;
  --sand:   #e8dece;
  --gold:   #b5883e;
  --gold2:  #d4a45a;
  --ink:    #1c1612;
  --text:   #3a2e24;
  --muted:  #8a7a68;
  --rose:   #c9a89a;
  --taupe:  #9a8a72;
  --white:  #ffffff;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.1;
}
h1 em, h2 em { font-style: italic; color: var(--gold); }
p { line-height: 1.7; }
a { transition: color .2s; }

/* ── NAVIGATION ── */
#larsa-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 68px;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(181,136,62,0.15);
}
body.admin-bar #larsa-nav { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar #larsa-nav { top: 46px; }
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 400; color: var(--ink);
  text-decoration: none; line-height: 1;
}
.nav-logo sub {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: block; margin-top: 3px;
  font-family: 'Jost', sans-serif; font-weight: 500;
}
.nav-links {
  display: flex; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links li.current-page-ancestor > a { color: var(--gold); }
.btn-book {
  background: var(--gold); color: white !important;
  padding: 11px 24px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none !important;
  transition: background .2s;
}
.btn-book:hover { background: var(--gold2); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: all .3s;
}
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--sand);
  padding: 16px 20px; z-index: 199; flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex !important; }
.mobile-menu a {
  display: block; padding: 14px 0; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  text-decoration: none; border-bottom: 1px solid var(--sand);
  font-family: 'Jost', sans-serif;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active,
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  margin-top: 68px; background: var(--warm);
  padding: 72px 80px 56px; border-bottom: 1px solid var(--sand);
}
.page-hero h1 { font-size: 56px; color: var(--ink); margin-bottom: 16px; }
.page-hero p { font-size: 15px; color: var(--muted); max-width: 560px; font-weight: 300; }
.page-hero-split { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.page-hero-split > div:first-child { flex: 1; min-width: 280px; }
.page-hero-split .score-block { flex-shrink: 0; }

/* ── LABELS ── */
.label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.label::before {
  content: ''; width: 20px; height: 1px; background: var(--gold);
}

/* ── HEADING ── */
.heading {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 400; color: var(--ink); line-height: 1.12;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block; background: var(--gold); color: white;
  padding: 14px 32px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold2); color: white; }

.btn-taupe {
  display: inline-block; background: var(--taupe); color: white;
  padding: 13px 28px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3); transition: background .2s;
}
.btn-taupe:hover { background: #b0a080; color: white; }

.btn-dark {
  display: inline-block; background: var(--ink); color: #fff;
  padding: 14px 30px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s;
}
.btn-dark:hover { background: #000; }

.btn-outline-dark {
  display: inline-block; background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 12.5px 28px; font-family: 'Jost', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: var(--ink); color: #fff; }

.subtext { color: var(--muted); font-weight: 300; line-height: 1.7; }

/* ── CONTACT PAGE ── */
.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.contact-info { padding: 64px 80px; }
.contact-map { position: relative; }
.info-heading { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--ink); font-weight: 400; margin-bottom: 24px; }
.info-row, .info-item { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--sand); }
.info-row:first-child, .info-item:first-child { border-top: 1px solid var(--sand); }
.info-icon { font-size: 18px; flex-shrink: 0; width: 24px; }
.info-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.info-val { font-size: 14px; color: var(--text); font-weight: 300; line-height: 1.6; }
.info-val a { color: var(--ink); text-decoration: underline; }

.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-size: 14px; color: var(--text); font-weight: 300; }
.hours-day { color: var(--ink); font-weight: 500; }
.hours-closed { color: var(--muted); }

.social-links { display: flex; gap: 20px; margin-top: 32px; }
.social-link { color: var(--ink); font-size: 13px; font-weight: 600; letter-spacing: 0.05em; text-decoration: none; text-transform: uppercase; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }
.social-link:hover { color: var(--gold); }

.map-iframe { border: 1px solid var(--sand); }

.room-label { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.room-title { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--ink); font-weight: 400; margin-bottom: 20px; }
.room-text, .room-content .room-desc { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 480px; margin-bottom: 28px; }
.room-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

/* ── BEHANDELINGEN PAGE ── */
.treatments { padding: 20px 80px 80px; }
.treat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }
.treat-card {
  background: var(--warm); border: 1px solid var(--sand);
  padding: 36px 32px; display: flex; flex-direction: column; min-width: 0;
}
.treat-icon { font-size: 28px; margin-bottom: 18px; }
.treat-name { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--ink); font-weight: 400; margin-bottom: 12px; }
.treat-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }
.treat-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex-grow: 1; }
.treat-item { font-size: 13px; color: var(--text); font-weight: 300; padding-left: 16px; position: relative; }
.treat-item::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.treat-from { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.treat-price { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--gold); font-weight: 400; margin-bottom: 18px; }
.treat-book {
  display: block; text-align: center; background: var(--taupe); color: #fff;
  padding: 13px 24px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.treat-book:hover { background: #b0a080; }

.consult-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  background: var(--rose); padding: 80px; align-items: center;
}
.consult-label { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.consult-title { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--ink); font-weight: 400; margin-bottom: 18px; line-height: 1.2; }
.consult-text { font-size: 14px; color: var(--text); font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 460px; }
.consult-features { display: flex; flex-direction: column; gap: 16px; }
.consult-feat { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--ink); font-weight: 300; line-height: 1.5; }
.consult-feat-icon { color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── PRIJZEN PAGE ── */
.note-bar {
  background: var(--warm); border-left: 3px solid var(--gold);
  padding: 16px 80px; font-size: 13px; color: var(--muted); font-weight: 300;
}
.prices-section { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--sand); padding: 0 80px; margin: 48px 0; }
.price-cat { background: var(--cream); padding: 32px; min-width: 0; }
.price-cat-header { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.price-cat-title { font-family: 'Playfair Display', serif; font-size: 19px; color: var(--ink); font-weight: 400; }
.price-rows { display: flex; flex-direction: column; margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--sand); font-size: 13.5px; }
.price-row-name { color: var(--text); font-weight: 300; }
.price-row-amount { color: var(--gold); font-weight: 600; flex-shrink: 0; }
.price-book-btn {
  display: block; text-align: center; background: var(--taupe); color: #fff;
  padding: 13px 24px; font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
}
.price-book-btn:hover { background: #b0a080; }

.cta-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  background: var(--ink); padding: 80px; align-items: center;
}
.cta-label { color: var(--gold2); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.cta-title { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; font-weight: 400; margin-bottom: 18px; }
.cta-sub { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 420px; }
.cta-info { display: flex; flex-direction: column; gap: 0; }
.cta-row { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.cta-row:first-child { border-top: 1px solid rgba(255,255,255,0.15); }
.cta-row-icon { font-size: 16px; flex-shrink: 0; width: 22px; }
.cta-row-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold2); font-weight: 600; margin-bottom: 3px; }
.cta-row-val { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 300; }

/* ── RESULTATEN PAGE ── */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding: 0 80px 40px; }
.filter-btn {
  background: transparent; border: 1px solid var(--sand); color: var(--muted);
  padding: 9px 20px; font-family: 'Jost', sans-serif; font-size: 12px;
  font-weight: 500; letter-spacing: 0.03em; cursor: pointer; transition: all .2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gallery-section { padding: 0 80px 40px; }
.gallery-label { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--ink); font-weight: 400; margin: 40px 0 16px; }
.gallery-label:first-child { margin-top: 0; }
.ba-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; min-width: 0; }
.ba-img { position: relative; overflow: hidden; min-width: 0; aspect-ratio: 3/4; background: var(--warm); }
.ba-img-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 8px; background: rgba(28,22,18,0.35); pointer-events: none;
}
.ba-tag {
  position: absolute; bottom: 8px; left: 8px; background: rgba(28,22,18,0.7); color: #fff;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px;
  font-family: 'Jost', sans-serif; font-weight: 600;
}
.ba-treatment {
  position: absolute; bottom: 8px; right: 8px; background: var(--gold); color: #fff;
  font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 8px;
  font-family: 'Jost', sans-serif; font-weight: 600;
}

.instagram-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px; align-items: center; background: var(--warm); }
.insta-label { color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.insta-title { font-family: 'Playfair Display', serif; font-size: 34px; color: var(--ink); font-weight: 400; margin-bottom: 18px; }
.insta-sub { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 440px; }
.insta-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px; }
.insta-cell { aspect-ratio: 1/1; min-width: 0; }
.insta-cell-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }

/* ── REVIEWS PAGE ── */
.score-block { display: flex; align-items: center; gap: 20px; background: var(--warm); border: 1px solid var(--sand); padding: 24px 32px; }

.platform-scores { display: flex; background: var(--warm); border: 1px solid var(--sand); padding: 24px 28px; gap: 8px; }
.platform-score { flex: 1; text-align: center; padding: 0 12px; }
.platform-score:not(:last-child) { border-right: 1px solid var(--sand); }
.platform-score-num { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--gold); font-weight: 400; line-height: 1; }
.platform-score-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; margin: 5px 0 3px; }
.platform-score-name { font-size: 11px; color: var(--ink); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.platform-score-count { font-size: 10px; color: var(--muted); margin-top: 2px; }

.platform-scores-dark { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(8px); }
.platform-scores-dark .platform-score:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.18); }
.platform-scores-dark .platform-score-num { color: var(--gold2); }
.platform-scores-dark .platform-score-name { color: #fff; }
.platform-scores-dark .platform-score-count { color: rgba(255,255,255,0.6); }

/* ── WIDE STACKED ROWS (reasons + reviews) ── */
.reason-rows { display: flex; flex-direction: column; gap: 12px; min-width: 0; }

.ba-page.ba-page-hidden { display: none !important; }

.reason-row {
  display: flex; align-items: flex-start; gap: 24px;
  border: 1px solid var(--sand); padding: 24px 28px; background: white;
  transition: box-shadow .2s;
}
.reason-row:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.reason-num { font-family: 'Playfair Display', serif; font-size: 36px; color: rgba(181,136,62,0.25); font-weight: 400; line-height: 1; flex-shrink: 0; width: 50px; }
.reason-content { flex: 1; min-width: 0; }
.reason-title { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--ink); font-weight: 400; margin-bottom: 6px; }
.reason-text { font-size: 13.5px; color: var(--muted); line-height: 1.6; font-weight: 300; margin: 0; }

.review-row {
  display: flex; align-items: flex-start; gap: 24px;
  border: 1px solid var(--sand); padding: 20px 24px; background: white;
}
.review-row-who { display: flex; align-items: center; gap: 12px; flex-shrink: 0; width: 180px; }
.review-row-body { display: flex; align-items: flex-start; gap: 16px; flex: 1; min-width: 0; justify-content: space-between; }
.review-row-body p { margin: 0; flex: 1; min-width: 0; }
.score-big { font-family: 'Playfair Display', serif; font-size: 48px; color: var(--gold); font-weight: 400; line-height: 1; }
.score-right { display: flex; flex-direction: column; gap: 4px; }
.score-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.score-count { font-size: 13px; color: var(--ink); font-weight: 500; }
.score-source { display: flex; align-items: center; gap: 8px; }
.g-logo { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 13px; }
.g-logo span:nth-child(1) { color: #4285F4; }
.g-logo span:nth-child(2) { color: #EA4335; }
.g-logo span:nth-child(3) { color: #FBBC05; }
.g-logo span:nth-child(4) { color: #4285F4; }
.g-logo span:nth-child(5) { color: #34A853; }
.g-logo span:nth-child(6) { color: #EA4335; }

.reviews-section { padding: 40px 80px 80px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.review-card { background: var(--warm); border: 1px solid var(--sand); padding: 28px; display: flex; flex-direction: column; min-width: 0; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 600;
}
.reviewer-name { font-size: 13.5px; color: var(--ink); font-weight: 600; }
.reviewer-time { font-size: 11px; color: var(--muted); margin-top: 1px; }
.review-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; margin-top: 3px; }
.review-text { font-size: 13px; color: var(--text); font-weight: 300; line-height: 1.7; flex-grow: 1; margin-bottom: 16px; }
.review-footer { display: flex; }

.write-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px; align-items: center; background: var(--ink); }
.write-label { color: var(--gold2); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.write-title { font-family: 'Playfair Display', serif; font-size: 36px; color: #fff; font-weight: 400; margin-bottom: 18px; }
.write-sub { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.7; margin-bottom: 28px; max-width: 440px; }
.stars-display { text-align: center; }
.stars-big { color: var(--gold2); font-size: 32px; letter-spacing: 6px; margin-bottom: 8px; }
.stars-num { font-family: 'Playfair Display', serif; font-size: 56px; color: #fff; font-weight: 400; line-height: 1; margin-bottom: 8px; }
.stars-sub { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,22,18,0.78) 0%, rgba(28,22,18,0.42) 55%, rgba(28,22,18,0.08) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  flex-wrap: wrap;
}
.hero-left { max-width: 560px; }
.hero-tag {
  color: var(--gold2); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title { color: #fff; font-size: 54px; margin-bottom: 20px; }
.hero-content .hero-sub {
  color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 300;
  max-width: 460px; margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 15px 30px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: background .2s;
}
.btn-hero-primary:hover { background: var(--gold2); }
.btn-hero-outline {
  display: inline-block; background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14px 28px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-hero-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-right { flex-shrink: 0; }
.hero-stat-row {
  display: flex; gap: 28px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 28px 32px;
}
.hero-stat { text-align: center; color: #fff; }
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 30px; }
.hero-stat-num span { color: var(--gold2); font-size: 17px; }
.hero-stars { color: var(--gold2); font-size: 12px; margin: 4px 0; }
.hero-stat-label {
  font-size: 10px; color: rgba(255,255,255,0.72);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
}

/* ── TICKER ── */
.ticker {
  background: var(--sand); padding: 12px 0;
  overflow: hidden !important; white-space: nowrap;
  border-top: 1px solid rgba(181,136,62,0.2);
  border-bottom: 1px solid rgba(181,136,62,0.2);
  contain: layout;
}
.ticker-inner {
  display: inline-flex;
  animation: larsa-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 14px; padding: 0 28px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; flex-shrink: 0;
}
.ticker-dot { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

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

/* ── SECTIONS ── */
.section { padding: 80px; }
.section-white { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-warm   { background: var(--warm); }

/* ── BRANDS BAR ── */
.brands-bar {
  background: white; border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 24px 80px; display: flex; align-items: center; gap: 48px;
}
.brands-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.brands-sep   { width: 1px; height: 24px; background: var(--sand); }
.brands-row   { display: flex; gap: 52px; align-items: center; flex-wrap: wrap; }
.brand-name   { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--muted); letter-spacing: 0.06em; }

/* ── URGENCY BANNER ── */
.urgency-banner {
  background: #ede8dc; padding: 28px 80px;
  display: flex; align-items: center; justify-content: center; gap: 48px;
  border-top: 1px solid rgba(181,136,62,0.15);
  border-bottom: 1px solid rgba(181,136,62,0.15);
}
.urgency-text-title { font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); }
.urgency-text-sub   { font-family: 'Jost', sans-serif; font-size: 13px; color: var(--muted); margin-top: 3px; font-weight: 300; }

/* ── BOOKING SECTION ── */
.booking-section {
  background: var(--cream); padding: 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.booking-iframe-wrap {
  border: 1px solid var(--sand); overflow: hidden;
  height: 580px; background: white;
}
.booking-iframe-wrap iframe { border: none; display: block; width: 100%; height: 100%; }
.booking-info-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.booking-info-row  {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--sand);
}
.booking-info-row:first-child { border-top: 1px solid var(--sand); }
.booking-info-icon  { font-size: 18px; flex-shrink: 0; width: 24px; }
.booking-info-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.booking-info-val   { font-size: 14px; color: var(--text); font-weight: 300; line-height: 1.5; }

.info-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--sand);
}
.info-item:first-child { border-top: 1px solid var(--sand); }
.info-icon { font-size: 18px; flex-shrink: 0; width: 24px; }
.info-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.info-val { font-size: 14px; color: var(--text); font-weight: 300; line-height: 1.5; }

/* ── PRIVATE ROOM ── */
.room-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.room-img-side {
  background: linear-gradient(135deg, #c9a89a 0%, #e8d5cc 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 400px;
}
.room-watermark {
  font-family: 'Playfair Display', serif; font-size: 80px;
  font-style: italic; font-weight: 700;
  color: rgba(255,255,255,0.18); line-height: 1;
  text-align: center; user-select: none;
}
.room-content {
  background: var(--rose); padding: 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.room-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.room-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--ink); }
.room-feat::before { content: '✓'; font-weight: 700; }

/* ── FOOTER ── */
#larsa-footer {
  background: var(--warm); border-top: 1px solid var(--sand);
  padding: 48px 80px;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--ink); margin-bottom: 6px; }
.footer-addr { font-size: 13px; color: var(--muted); line-height: 1.8; }
.footer-right { text-align: right; font-size: 12px; color: var(--muted); line-height: 1.8; }

/* ── SETMORE FLOAT ── */
.setmore-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  display: block;
}
.setmore-float img { width: 160px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.2)); }

/* ── CARD HOVER ── */
.svc-card:hover .sov { opacity: 1 !important; }

/* Guard against grid blowout on long text at any viewport width */
.home-card-row > div { min-width: 0; overflow-wrap: break-word; }

/* ────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────── */
@media (max-width: 1024px) {
  #larsa-nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .section, .brands-bar, .booking-section, .urgency-banner { padding-left: 40px; padding-right: 40px; }
  .page-hero { padding: 56px 40px 40px; }
  .booking-section { grid-template-columns: 1fr; }

  .hero { padding: 0 40px; min-height: 560px; }
  .hero-title { font-size: 42px; }
  .hero-content { gap: 32px; }

  .treat-grid, .reviews-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .prices-section { grid-template-columns: repeat(2, minmax(0,1fr)) !important; padding: 0 40px !important; }
  .ba-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .consult-section, .cta-section, .instagram-section, .write-section { grid-template-columns: 1fr !important; padding: 48px 40px !important; gap: 32px !important; }

  .ba-page .ba-pair > div { aspect-ratio: 3/4 !important; height: auto !important; }

  .svc-grid { grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 12px !important; }
  .svc-grid > a > div:first-child { aspect-ratio: 3/4 !important; height: auto !important; }
}

@media (max-width: 768px) {
  #larsa-nav { padding: 0 20px; height: 60px; }
  .nav-links { display: none; }
  .logo sub { display: none; }
  .nav-logo { font-size: 15px; }
  .nav-hamburger { display: flex !important; }
  .mobile-menu { top: 60px; }

  .page-hero { margin-top: 60px; padding: 40px 20px 32px; }
  .page-hero-split { flex-direction: column; align-items: flex-start; gap: 24px; }
  .page-hero h1 { font-size: 36px !important; }

  .ba-section, .svc-section { grid-template-columns: 1fr !important; }

  .section, .brands-bar, .urgency-banner { padding: 48px 20px !important; }
  .booking-section { padding: 40px 20px !important; grid-template-columns: 1fr !important; gap: 32px !important; }
  .booking-iframe-wrap { height: 480px; }

  .room-section { grid-template-columns: 1fr !important; }
  .room-img-side { min-height: 240px !important; }
  .room-content { padding: 40px 20px !important; }

  .treatments { padding: 20px 20px 48px !important; }
  .treat-grid, .reviews-grid, .ba-grid { grid-template-columns: 1fr !important; }
  .consult-section, .cta-section, .instagram-section, .write-section { padding: 40px 20px !important; }
  .note-bar { padding: 14px 20px !important; }
  .prices-section { grid-template-columns: 1fr !important; padding: 0 20px !important; margin: 32px 0 !important; }
  .gallery-section { padding: 0 20px 32px !important; }
  .filter-bar { padding: 0 20px 24px !important; }
  .reviews-section { padding: 32px 20px 48px !important; }
  .ba-pair { grid-column: span 1; }

  .heading { font-size: 28px !important; }

  .urgency-banner { flex-direction: column !important; gap: 16px !important; text-align: center; }

  #larsa-footer { padding: 40px 20px !important; flex-direction: column !important; gap: 16px; }
  .footer-right { text-align: left !important; }

  .setmore-float { bottom: 16px; right: 16px; }
  .setmore-float img { width: 130px; }

  img, iframe { max-width: 100% !important; }

  .hero { padding: 40px 20px !important; min-height: auto !important; }
  .hero-content { flex-direction: column !important; align-items: flex-start !important; gap: 28px !important; }
  .hero-title { font-size: 32px !important; }
  .hero-stat-row { gap: 16px !important; padding: 20px !important; width: 100%; }
  .hero-stat-num { font-size: 24px !important; }

  .platform-scores { padding: 16px 12px !important; gap: 4px !important; }
  .platform-score { padding: 0 4px !important; }
  .platform-score-num { font-size: 20px !important; }
  .platform-score-name { font-size: 9px !important; }
  .platform-score-count { font-size: 9px !important; }

  .contact-main { grid-template-columns: 1fr !important; }
  .contact-info { padding: 40px 20px !important; }
  .contact-testimonial { padding: 40px 20px !important; }

  .reason-row { flex-direction: column !important; gap: 10px !important; padding: 20px !important; }
  .reason-num { width: auto !important; font-size: 28px !important; }
  .review-row { flex-direction: column !important; gap: 12px !important; padding: 18px !important; }
  .review-row-who { width: auto !important; }
  .review-row-body { flex-direction: column !important; gap: 10px !important; }
  .review-row-body span { align-self: flex-end; }

  .home-card-row, .reviews-grid {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto !important; overflow-y: hidden;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory;
    padding-bottom: 12px !important; margin: 0 -20px 60px !important; padding-left: 20px !important; padding-right: 20px !important;
  }
  .home-card-row > div, .reviews-grid > .review-card {
    flex: 0 0 90%; scroll-snap-align: start; min-width: 0;
    overflow-wrap: break-word; word-break: break-word; box-sizing: border-box;
  }

  .ba-page {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 8px;
  }
  .ba-page .ba-pair {
    flex: 0 0 80%; scroll-snap-align: start; min-width: 0;
  }
  .ba-page .ba-pair > div { aspect-ratio: 3/4 !important; height: auto !important; }

  .svc-grid {
    display: flex !important; grid-template-columns: none !important;
    overflow-x: auto !important; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; padding-bottom: 8px;
  }
  .svc-grid > a {
    flex: 0 0 42%; scroll-snap-align: start; min-width: 0;
  }
  .svc-grid > a > div:first-child { aspect-ratio: 3/4 !important; height: auto !important; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 30px !important; }
  .heading { font-size: 24px !important; }
  .btn-book { padding: 9px 16px; font-size: 11px; }
}

/* ticker scrolls with page — no fixed positioning */
