/* ============================================
   HAIR STORIES BEAUTY STUDIO
   Brand palette: Main Green #6D8060 | Sage #9BAD93 | Deep #38442F
   Gold #A38B5D (on light) / #CBB78E (on dark) | Stone #C7C6B1 / #D4D5C3
   Type: Playfair Display (display) + Jost (body / UI)
   ============================================ */

:root {
  --sage: #9BAD93;       /* light sage */
  --forest: #6D8060;     /* main brand green */
  --deep: #38442F;       /* deep green for dark, text-bearing surfaces (AA contrast) */
  --deep-2: #2C3626;     /* deepest green */
  --gold: #A38B5D;       /* champagne gold — use on LIGHT backgrounds */
  --gold-light: #CBB78E; /* brighter champagne — use on DARK/green backgrounds */
  --cream: #EEF0E6;      /* soft stone-tinted off-white */
  --cream-dark: #C7C6B1; /* stone border */
  --sand: #BCAA86;
  --mist: #9BAD93;
  --white: #F7F8F3;
  --text: #2F342A;
  --text-muted: #6B7060;
  --nav-h: 76px;
  --radius: 2px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(240,237,228,0.55);
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.btn-secondary:hover { border-color: var(--cream); background: rgba(240,237,228,0.08); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: 1px solid rgba(240,237,228,0.35);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.btn-call:hover { border-color: rgba(240,237,228,0.7); }

/* ============================================
   NAV
   ============================================ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.scrolled {
  background: rgba(64, 84, 50, 0.7);
  backdrop-filter: blur(22px) saturate(190%);
  -webkit-backdrop-filter: blur(22px) saturate(190%);
  border-bottom: 1px solid rgba(203,183,142,0.22);
  box-shadow: 0 10px 34px -14px rgba(18,26,14,0.5),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 42px;
  background: url('../assets/logo-emblem.svg') center / contain no-repeat;
  /* hide the fallback "HS" text now that the real emblem is shown */
  font-size: 0;
  color: transparent;
  flex-shrink: 0;
}
.logo-mark.sm { width: 34px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--cream);
}
.logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(240,237,228,0.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.btn-book {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.btn-book:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--cream);
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(.6,.04,.3,1), opacity 0.22s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0.4); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--deep);
  padding: 24px 40px 32px;
  border-top: 1px solid rgba(163,139,93,0.2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav-mobile ul { display: flex; flex-direction: column; gap: 0; }
.nav-mobile ul li a {
  display: block;
  padding: 14px 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(240,237,228,0.8);
  border-bottom: 1px solid rgba(240,237,228,0.08);
  transition: color var(--transition);
}
.nav-mobile ul li a:hover { color: var(--gold); }
.btn-book-mobile {
  display: block;
  text-align: center;
  margin-top: 20px;
  background: var(--gold);
  color: var(--deep) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none !important;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, var(--deep-2) 0%, var(--deep) 48%, var(--forest) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: url('../assets/pattern.svg');
  background-size: 230px auto;
  background-repeat: repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  max-width: 720px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(240,237,228,0.86);
  max-width: 480px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.meta-number {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.meta-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.hero-divider {
  width: 1px;
  height: 36px;
  background: rgba(240,237,228,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,228,0.4);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(203,183,142,0.75), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */
.services-preview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 2px solid var(--cream-dark);
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 44px; height: 44px;
  color: var(--sage);
  margin-bottom: 20px;
  transition: color var(--transition);
}
.service-card:hover .service-icon { color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.service-from {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}
.services-cta {
  text-align: center;
  margin-top: 28px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-content .section-title { text-align: left; margin-bottom: 20px; }
.why-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.why-icon {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.why-icon svg { width: 15px; height: 15px; display: block; }
.why-list strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.why-list span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.why-visual { position: relative; }
.why-img-wrap { position: relative; }
.why-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--sage);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.why-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-inner {
  text-align: center;
  color: rgba(240,237,228,0.5);
}
.hs-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(163,139,93,0.35);
  line-height: 1;
  margin-bottom: 12px;
}
.placeholder-inner p {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 90px; height: 90px;
  background: var(--forest);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  color: rgba(240,237,228,0.74);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ============================================
   PRIVILEGES
   ============================================ */
.privileges { background: var(--deep); }
.privileges .section-eyebrow { color: var(--gold-light); }
.privileges .section-title { color: var(--cream); }
.privileges .section-desc { color: rgba(240,237,228,0.74); }
.privileges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: rgba(163,139,93,0.14);
  border: 1px solid rgba(163,139,93,0.14);
}
.privilege-card {
  background: rgba(28,34,24,0.55);
  padding: 36px 24px;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.privilege-card:hover {
  background: rgba(28,34,24,0.8);
}
.privilege-icon {
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.privilege-icon svg { width: 32px; height: 32px; margin: 0 auto; }
.privilege-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.privilege-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(240,237,228,0.82);
  margin-bottom: 12px;
}
.privilege-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================================
   GALLERY TEASER
   ============================================ */
.gallery-teaser { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-bottom: 40px;
}
.gallery-item { overflow: hidden; border-radius: 2px; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-masonry-item img, .gallery-masonry-item video { width: 100%; display: block; border-radius: 2px; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.gallery-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-placeholder::after { opacity: 0.3; }
.gallery-placeholder span {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.5;
  z-index: 1;
  position: relative;
}
.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.btn-insta:hover { color: var(--forest); }

/* ============================================
   BOOKING BANNER
   ============================================ */
.booking-banner {
  background: var(--deep);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background: url('../assets/pattern.svg') 0 0 / 230px auto repeat;
}
.booking-content {
  position: relative;
  text-align: center;
}
.booking-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 14px;
}
.booking-content p {
  font-size: 0.9rem;
  color: rgba(240,237,228,0.74);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.booking-content .btn-primary { margin: 0 8px 12px; }
.booking-content .btn-call { margin: 0 8px 12px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--deep);
  border-top: 1px solid rgba(163,139,93,0.15);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,237,228,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(240,237,228,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(240,237,228,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,237,228,0.62);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--gold-light); color: var(--gold-light); }
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(240,237,228,0.64);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address {
  font-size: 0.83rem;
  line-height: 1.8;
  color: rgba(240,237,228,0.64);
  margin-bottom: 16px;
}
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-hours span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.footer-hours strong {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(240,237,228,0.82);
}
.footer-phone {
  font-size: 0.9rem;
  color: rgba(240,237,228,0.74);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(240,237,228,0.42);
  letter-spacing: 0.04em;
}
.footer-map {
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: color var(--transition), gap var(--transition);
}
.footer-map:hover { color: var(--cream); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  background: var(--deep);
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--forest) 100%);
  opacity: 0.5;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 0.95rem;
  color: rgba(240,237,228,0.78);
  line-height: 1.7;
  max-width: 480px;
}

/* Service search + quick filters */
.service-filter-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: rgba(247,248,243,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  padding: 18px 0;
}
.service-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.service-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 11px 18px;
  flex: 1 1 280px;
  max-width: 380px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(163,139,93,0.12);
}
.service-search svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.service-search input {
  border: none; background: none; outline: none; width: 100%;
  font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text);
}
.service-search input::placeholder { color: var(--text-muted); }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--cream-dark);
  border-radius: 40px;
  padding: 9px 16px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}
.chip:hover { color: var(--forest); border-color: var(--forest); transform: translateY(-1px); }
.chip.is-active { color: var(--cream); background: var(--forest); border-color: var(--forest); }
.service-noresults { margin-top: 16px; font-size: 0.92rem; color: var(--text-muted); font-style: italic; }

/* Service Tables */
.service-section { padding: 80px 0; border-bottom: 1px solid var(--cream-dark); }
.service-section:last-child { border-bottom: none; }
.service-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.service-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  line-height: 1;
}
.service-table {
  width: 100%;
  border-collapse: collapse;
}
.service-table thead tr {
  border-bottom: 1px solid var(--cream-dark);
}
.service-table th {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 0 14px;
  text-align: left;
}
.service-table th:not(:first-child) { text-align: right; }
.service-table td {
  padding: 18px 0;
  border-bottom: 1px solid rgba(226,221,207,0.5);
  vertical-align: top;
}
.service-table tr:last-child td { border-bottom: none; }
.service-table td:not(:first-child) {
  text-align: right;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  padding-left: 20px;
}
.service-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}
.service-name-popular {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popular-tag {
  background: var(--gold);
  color: var(--deep);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
}
.na-text {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 300;
}
.consult-text {
  font-size: 0.78rem;
  color: var(--sage);
  font-style: italic;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-full {
  padding: 80px 0;
}
.gallery-masonry {
  columns: 3;
  column-gap: 4px;
}
.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
}
.gallery-masonry-item .gallery-placeholder {
  height: 280px;
  width: 100%;
  background: var(--cream-dark);
}
.gallery-masonry-item:nth-child(3n+1) .gallery-placeholder { height: 360px; }
.gallery-masonry-item:nth-child(5n) .gallery-placeholder { height: 220px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { padding: 100px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual .why-img-placeholder { aspect-ratio: 3/4; }
.about-content .section-title { text-align: left; }
.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-content p strong { color: var(--forest); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex-shrink: 0;
}
.contact-item-icon svg { width: 19px; height: 19px; }
.contact-item-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item-text span, .contact-item-text a {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--forest); }
.contact-map {
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
}
.map-embed {
  width: 100%;
  height: 400px;
  border: none;
}
.map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--forest);
  color: var(--cream);
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.08em;
  transition: background var(--transition);
}
.map-link:hover { background: var(--deep); }

/* ============================================
   ANIMATIONS — subtle, premium
   ============================================ */
/* Scroll reveal (classes added by JS only when motion is allowed) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1),
              transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Hero entrance on load */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: heroIn 0.9s cubic-bezier(.22,.61,.36,1) forwards;
  }
  .hero-eyebrow  { animation-delay: 0.15s; }
  .hero-headline { animation-delay: 0.28s; }
  .hero-sub      { animation-delay: 0.44s; }
  .hero-ctas     { animation-delay: 0.58s; }
  .hero-meta     { animation-delay: 0.72s; }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  .hero-headline em { display: inline-block; }
}

/* Premium hover motion */
.service-card { transition: background var(--transition), transform 0.4s cubic-bezier(.22,.61,.36,1), box-shadow 0.4s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 45px -28px rgba(44,54,38,0.55); }
.service-card .service-icon { transition: color var(--transition), transform 0.4s cubic-bezier(.22,.61,.36,1); }
.service-card:hover .service-icon { transform: translateY(-2px) scale(1.08) rotate(-5deg); }
.privilege-card:hover { transform: translateY(-4px); }
.gallery-item .gallery-placeholder { transition: transform 0.7s cubic-bezier(.22,.61,.36,1), background var(--transition); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }
.logo-mark { transition: transform 0.4s cubic-bezier(.22,.61,.36,1); }
.nav-logo:hover .logo-mark { transform: scale(1.06) rotate(-2deg); }
.btn-primary, .btn-book, .btn-outline { transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition); }
.btn-outline:hover, .btn-call:hover { transform: translateY(-1px); }
.footer-social a { transition: border-color var(--transition), color var(--transition), transform var(--transition); }
.footer-social a:hover { transform: translateY(-2px); }
.stat-num { transition: color var(--transition); }

/* Table rows, tags, map + contact micro-interactions */
.service-table tbody tr { transition: background 0.25s ease; }
.service-table tbody tr:hover { background: rgba(163,139,93,0.06); }
.popular-tag { transition: transform var(--transition); }
.service-name-popular:hover .popular-tag { transform: translateY(-1px); }
.contact-item-icon { transition: transform var(--transition), background var(--transition), color var(--transition); }
.contact-item:hover .contact-item-icon { transform: translateY(-2px); background: var(--gold-light); color: var(--deep); }
.map-link span:last-child { transition: transform var(--transition); }
.map-link:hover span:last-child { transform: translate(2px, -2px); }
.footer-phone, .footer-col ul li a { display: inline-block; transition: color var(--transition), transform var(--transition); }
.footer-col ul li a:hover { transform: translateX(3px); }
.why-list li { transition: transform var(--transition); }
.why-list li:hover { transform: translateX(3px); }
.why-list li:hover .why-icon { color: var(--forest); }

/* Gentle float on the studio badge */
@media (prefers-reduced-motion: no-preference) {
  .why-badge { animation: floatY 5s ease-in-out infinite; }
  @keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
}

/* Shine sweep across primary buttons on hover */
.btn-book, .btn-primary, .btn-outline { position: relative; overflow: hidden; }
.btn-book::after, .btn-primary::after, .btn-outline::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%; pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
}
@media (prefers-reduced-motion: no-preference) {
  .btn-book:hover::after, .btn-primary:hover::after, .btn-outline:hover::after { animation: shine 0.75s ease; }
  @keyframes shine { from { left: -130%; } to { left: 160%; } }

  /* Book Now: gentle gold glow to draw the eye */
  .btn-book { animation: bookGlow 3.2s ease-in-out infinite; }
  @keyframes bookGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(203,183,142,0); }
    50%      { box-shadow: 0 8px 24px -8px rgba(203,183,142,0.7); }
  }
}
.btn-book:hover { transform: translateY(-2px) scale(1.03); }

/* Section titles draw a small gold underline as they reveal */
.section-header .section-title { position: relative; }
.section-header .section-title::after {
  content: ''; position: absolute; left: 50%; bottom: -8px;
  width: 0; height: 2px; background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1) 0.15s;
}
.privileges .section-header .section-title::after { background: var(--gold-light); }
.section-header.in .section-title::after { width: 46px; }

/* Popular tag subtle shimmer */
@media (prefers-reduced-motion: no-preference) {
  .popular-tag { animation: tagGlow 2.6s ease-in-out infinite; }
  @keyframes tagGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(163,139,93,0); }
    50%      { box-shadow: 0 0 12px 0 rgba(163,139,93,0.5); }
  }
}

/* Eyebrow letters settle in with the header */
.section-header .section-eyebrow { transition: letter-spacing 0.6s ease, color var(--transition); }
.section-header.in .section-eyebrow { letter-spacing: 0.26em; }

/* Floating WhatsApp gentle pulse */
@media (prefers-reduced-motion: no-preference) {
  .wa-float { animation: waPulse 2.8s ease-in-out infinite; }
  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.40); }
    50%      { box-shadow: 0 6px 30px rgba(37,211,102,0.70); }
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .privileges-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav-links, .btn-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: block; }
  .hero-content { padding: calc(var(--nav-h) + 40px) 24px 60px; }
  .hero-scroll { display: none; }
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .why-badge { right: 0; }
  .privileges-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .booking-banner { padding: 60px 0; }
  .gallery-masonry { columns: 2; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .service-filter { flex-direction: column; align-items: stretch; }
  .service-search { flex: 0 0 auto; max-width: none; width: 100%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { justify-content: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-meta-item { align-items: flex-start; text-align: left; }
  .hero-divider { display: none; }
  .privileges-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-masonry { columns: 1; }
  .about-stats { grid-template-columns: 1fr; }
  .service-section { padding: 56px 0; }
  .service-section-header { align-items: flex-start; margin-bottom: 24px; }
  .service-table,
  .service-table thead,
  .service-table tbody,
  .service-table tr,
  .service-table th,
  .service-table td {
    display: block;
    width: 100%;
  }
  .service-table thead { display: none; }
  .service-table tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(226,221,207,0.7);
  }
  .service-table tr:last-child { border-bottom: none; }
  .service-table td {
    border-bottom: none;
    padding: 0;
  }
  .service-table td:not(:first-child) {
    text-align: left;
    white-space: normal;
    padding-left: 0;
    margin-top: 6px;
    font-size: 0.84rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
