/*
Theme Name:   Luxe Hair Lounge
Theme URI:    https://luxehairloungebrooklyn.com
Author:       Luxe Hair Lounge Studio
Description:  Glamour-noir WordPress theme for Luxe Hair Lounge Brooklyn. Black, gold, precision.
Version:      2.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.0
License:      GNU General Public License v2 or later
Text Domain:  lhl
Tags:         custom-colors, custom-logo, featured-images, full-width-template, responsive-layout
*/

/* ================================================================
   DESIGN TOKENS
================================================================ */
:root {
  /* Color — hybrid: real-salon light/airy base + gold luxury accent + plant green */
  --c-void:        #14130F;
  --c-ink:         #1B1A15;
  --c-ink-mid:     #211F19;
  --c-ink-warm:    #2A271D;
  --c-gold:        #B8963E;
  --c-gold-hi:     #D4AF5A;
  --c-gold-pale:   #E8D5A3;
  --c-gold-subtle: rgba(184,150,62,.12);
  --c-ivory:       #F7F6F2;
  --c-ivory-dark:  #ECEAE3;
  --c-stone:       #79786E;
  --c-stone-light: #A8A89C;
  --c-cream:       #FDFCF9;
  --c-green:       #5C6E4E;
  --c-green-pale:  #DCE3D2;
  --c-green-deep:  #3A4730;

  /* Type */
  --f-display: 'Cormorant Garamond', 'Georgia', serif;
  --f-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --gap:     clamp(1rem, 2.5vw, 2rem);
  --section: clamp(5rem, 10vw, 9rem);
  --w-wide:  1380px;
  --w-text:  780px;

  /* Motion */
  --ease:      cubic-bezier(.22,.68,0,1.2);
  --ease-out:  cubic-bezier(.16,1,.3,1);
  --dur:       .55s;
  --dur-fast:  .28s;

  /* Shadows */
  --shadow-gold: 0 0 60px rgba(184,150,62,.18);
  --shadow-deep: 0 24px 80px rgba(0,0,0,.55);
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-void);
  color: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Organic leaf accent — subtle, used behind hero/about corners */
.leaf-accent {
  position: absolute;
  pointer-events: none;
  opacity: .85;
  z-index: 1;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--f-body); border: none; background: none; }
input, select, textarea { font-family: var(--f-body); }
ul, ol { list-style: none; }
::selection { background: var(--c-gold); color: var(--c-void); }

/* ================================================================
   TYPOGRAPHY SCALE
================================================================ */
.t-eyebrow {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.t-display {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: .98;
  font-weight: 300;
  letter-spacing: -.02em;
}
.t-hero-sub {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-stone-light);
  line-height: 1.4;
}
h2.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
}
h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
}
.t-body-lg {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-stone-light);
}
.t-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
}
.t-gold-accent { color: var(--c-gold); font-style: italic; }

/* ================================================================
   LAYOUT UTILITIES
================================================================ */
.wrap {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}
.section-pad { padding: var(--section) 0; }
.bg-void     { background: var(--c-void); }
.bg-ink      { background: var(--c-ink); }
.bg-ink-mid  { background: var(--c-ink-mid); }
.bg-ivory    { background: var(--c-ivory); color: var(--c-void); }
.text-center { text-align: center; }

/* Gold rule divider */
.g-rule {
  width: 40px; height: 1px;
  background: var(--c-gold);
  flex-shrink: 0;
}
.g-rule--center { margin: 1.4rem auto; }
.g-rule--v {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--c-gold), transparent);
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.2rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all var(--dur-fast) ease;
  position: relative;
  white-space: nowrap;
}
/* Gold fill */
.btn--gold {
  background: var(--c-gold);
  color: var(--c-void);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
}
.btn--gold:hover {
  background: var(--c-gold-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,150,62,.35);
}
/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--c-cream);
  border: .5px solid rgba(255,255,255,.22);
}
.btn--ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
/* Ghost gold */
.btn--ghost-gold {
  background: transparent;
  color: var(--c-gold);
  border: .5px solid var(--c-gold);
}
.btn--ghost-gold:hover { background: var(--c-gold); color: var(--c-void); }
/* Dark (for ivory sections) */
.btn--dark {
  background: var(--c-void);
  color: var(--c-gold);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.btn--dark:hover { background: var(--c-ink-warm); transform: translateY(-2px); }

/* ================================================================
   NAVIGATION
================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--dur-fast) ease, border-color var(--dur-fast) ease,
              box-shadow var(--dur-fast) ease;
}
.site-header.is-scrolled {
  background: rgba(8,8,8,.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: .5px solid rgba(184,150,62,.15);
  box-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem,4vw,3rem);
  max-width: var(--w-wide); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center;
  gap: .1rem;
}
.nav-logo__img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform var(--dur-fast) ease;
}
.nav-logo:hover .nav-logo__img { transform: scale(1.04); }
.nav-logo__wordmark {
  font-family: var(--f-display);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--c-gold);
  letter-spacing: .04em;
  line-height: 1;
}
.nav-logo__sub {
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--c-stone);
  font-family: var(--f-body);
  font-weight: 400;
}
.nav-menu {
  display: flex; align-items: center; gap: 2.5rem;
}
.nav-menu a {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-stone-light);
  position: relative; padding-bottom: 2px;
  transition: color var(--dur-fast) ease;
}
.nav-menu a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: .5px;
  background: var(--c-gold);
  transition: width var(--dur-fast) ease;
}
.nav-menu a:hover,
.nav-menu a.is-active { color: var(--c-gold); }
.nav-menu a:hover::after,
.nav-menu a.is-active::after { width: 100%; }
.nav-actions { display: flex; gap: 1rem; align-items: center; }
/* Hamburger */
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: .4rem; background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: .5px;
  background: var(--c-gold-hi);
  transition: transform var(--dur-fast) ease, opacity var(--dur-fast) ease;
}
.nav-burger.is-open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
/* Grain overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: .5;
  pointer-events: none;
}
.hero__left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8rem clamp(1.5rem,4vw,3.5rem) 6rem clamp(1.5rem,5vw,5rem);
  position: relative; z-index: 2;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__eyebrow .g-rule { width: 28px; }
.hero__title { color: var(--c-cream); margin-bottom: 1.5rem; }
.hero__title em {
  font-style: italic; color: var(--c-gold);
  display: block; padding-left: 3rem;
}
.hero__subtitle { max-width: 42ch; margin-bottom: 3rem; }
.hero__cta-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero__proof {
  display: flex; align-items: center; gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: .5px solid rgba(255,255,255,.07);
}
.hero__stars { color: var(--c-gold); font-size: .9rem; letter-spacing: .08em; }
.hero__proof-text { font-size: .8rem; color: var(--c-stone); line-height: 1.5; }
.hero__proof-text strong { color: var(--c-cream); }

.hero__right { position: relative; overflow: hidden; }
.hero__right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: 60% top;
  transition: transform 8s ease;
}
.hero:hover .hero__right img { transform: scale(1.03); }
.hero__right-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--c-void) 0%, rgba(8,8,8,.4) 40%, transparent 70%);
}
.hero__right-tag {
  position: absolute; bottom: 3rem; left: -1px;
  background: var(--c-gold);
  color: var(--c-void);
  padding: .9rem 1.8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
.hero__right-tag p {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: .15rem;
}
.hero__right-tag strong {
  font-family: var(--f-display);
  font-size: 1.05rem; font-weight: 300;
  display: block; line-height: 1.2;
}

/* Scroll indicator */
.scroll-signal {
  position: absolute; bottom: 3rem; left: clamp(1.5rem,5vw,5rem);
  display: flex; align-items: center; gap: .8rem; z-index: 3;
}
.scroll-signal__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-gold); opacity: .5;
  animation: pulseDot 2s ease infinite;
}
.scroll-signal span {
  font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: rgba(184,150,62,.4);
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* ================================================================
   TICKER
================================================================ */
.ticker { overflow: hidden; background: var(--c-gold); padding: .75rem 0; }
.ticker__track {
  display: inline-flex; gap: 2.5rem;
  white-space: nowrap;
  animation: tickerRoll 28s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--c-void);
  display: flex; align-items: center; gap: 1.2rem;
}
.ticker__item::after { content: '◆'; font-size: .45rem; opacity: .5; }
@keyframes tickerRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT
================================================================ */
.about { background: var(--c-ivory); color: var(--c-void); }
.about__grid {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 700px;
}
.about__media { position: relative; overflow: hidden; }
.about__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.about__media-badge {
  position: absolute; bottom: -1px; right: 3rem;
  background: var(--c-void);
  padding: 1.8rem 2.2rem;
  border-top: 2px solid var(--c-gold);
}
.about__media-badge .big-num {
  font-family: var(--f-display);
  font-size: 3.5rem; font-weight: 300;
  color: var(--c-gold); line-height: 1;
}
.about__media-badge .big-label {
  font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-stone);
  margin-top: .3rem;
}
.about__body {
  padding: clamp(3rem,6vw,6rem) clamp(2rem,5vw,5rem);
  display: flex; flex-direction: column; justify-content: center;
}
.about__body .t-eyebrow { margin-bottom: 1.2rem; }
.about__body h2 { color: var(--c-void); margin-bottom: 1.4rem; }
.about__body p {
  font-size: .95rem; font-weight: 300;
  line-height: 1.85; color: #4a4845;
  max-width: 44ch; margin-bottom: 1.1rem;
}
.about__pull {
  border-left: 2px solid var(--c-gold);
  padding: 1.4rem 1.8rem;
  background: rgba(184,150,62,.06);
  margin: 1.8rem 0;
}
.about__pull p {
  font-family: var(--f-display);
  font-size: 1.15rem; font-style: italic;
  color: var(--c-void) !important; margin: 0;
  max-width: none !important; line-height: 1.5;
}
.about__creds {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 2rem;
}
.about__creds span {
  font-size: .8rem; color: #5a5855;
  display: flex; align-items: center; gap: .6rem;
}
.about__creds span::before { content: '✦'; color: var(--c-gold); flex-shrink: 0; }
.about__stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1rem; margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: .5px solid rgba(0,0,0,.1);
}
.about__stat-num {
  font-family: var(--f-display);
  font-size: 2.5rem; font-weight: 300;
  color: var(--c-gold); line-height: 1;
}
.about__stat-label {
  font-size: .62rem; letter-spacing: .15em;
  text-transform: uppercase; color: #8a8785;
  margin-top: .3rem;
}

/* ================================================================
   SERVICES
================================================================ */
.services { background: var(--c-void); }
.services__head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}
.services__head h2 { color: var(--c-cream); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: .5px solid rgba(184,150,62,.14);
}
.service-card {
  padding: 3rem 2.5rem;
  border-right: .5px solid rgba(184,150,62,.14);
  border-bottom: .5px solid rgba(184,150,62,.14);
  position: relative; overflow: hidden;
  transition: background var(--dur-fast) ease;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--c-gold);
  transition: width var(--dur) var(--ease-out);
}
.service-card:hover { background: var(--c-ink-warm); }
.service-card:hover::after { width: 100%; }
.service-card__glyph {
  font-size: 1.5rem; margin-bottom: 1.5rem;
  opacity: .55; display: block;
}
.service-card__name {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 300;
  color: var(--c-cream); margin-bottom: .8rem;
}
.service-card__desc {
  font-size: .85rem; font-weight: 300;
  color: var(--c-stone); line-height: 1.75;
  margin-bottom: 1.8rem;
}
.service-card__price {
  font-size: .75rem; letter-spacing: .12em;
  color: var(--c-gold);
  display: flex; align-items: center; gap: .6rem;
}
.service-card__price::before {
  content: '';
  display: block; width: 16px; height: .5px;
  background: var(--c-gold); flex-shrink: 0;
}
/* Featured card (spans 2 cols) */
.service-card--featured {
  grid-column: span 2;
  display: flex; gap: 3rem; align-items: center;
  padding: 3rem;
}
.service-card--featured .service-card__body { flex: 1; }
.service-card--featured .service-card__img {
  flex: 1; aspect-ratio: 4/3;
  overflow: hidden; flex-shrink: 0;
}
.service-card--featured .service-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.service-card--featured:hover .service-card__img img { transform: scale(1.05); }

/* ================================================================
   BALAYAGE STRIP (real work photos above price list)
================================================================ */
.balayage-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-bottom: 4rem;
}
.balayage-strip__cell {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.balayage-strip__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease-out);
  filter: saturate(1.05);
}
.balayage-strip__cell:hover img { transform: scale(1.08); }
.balayage-strip__cell--label {
  background: var(--c-ink-warm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* ================================================================
   PRICE LIST (full service menu, categorized table)
================================================================ */
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 5rem;
}
.price-cat {
  break-inside: avoid;
}
.price-cat__title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-gold);
  font-style: italic;
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid rgba(184, 150, 62, .25);
}
.price-cat__rows {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  padding: .65rem 0;
  border-bottom: .5px dotted rgba(255, 255, 255, .08);
}
.price-row__name {
  font-size: .92rem;
  font-weight: 400;
  color: var(--c-cream);
  flex-shrink: 0;
}
.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(184, 150, 62, .3);
  margin-bottom: .3rem;
  min-width: 12px;
}
.price-row__duration {
  font-size: .72rem;
  color: var(--c-stone);
  white-space: nowrap;
  flex-shrink: 0;
}
.price-row__price {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--c-gold-hi);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 3.5rem;
  text-align: right;
}
.price-list__note {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: .5px solid rgba(184, 150, 62, .15);
  font-size: .85rem;
  color: var(--c-stone);
  font-weight: 300;
  line-height: 1.8;
}
.price-list__note strong { color: var(--c-gold); }
.price-list__note .btn { margin-top: 1.5rem; }

/* ================================================================
   FOUNDER — single-owner showcase (Meet Beata)
================================================================ */
.founder { background: var(--c-ink-mid); }
.founder__grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 0;
  min-height: 600px;
}
.founder__media {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 560px;
}
.founder__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.03);
  transition: filter .6s ease, transform .8s var(--ease-out);
}
.founder__media:hover img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.03);
}
.founder__media-badge {
  position: absolute; bottom: -1px; left: -1px;
  background: var(--c-void);
  padding: 1.4rem 2rem;
  border-top: 2px solid var(--c-gold);
  display: flex; flex-direction: column; gap: .2rem;
}
.founder__media-badge strong {
  font-family: var(--f-display);
  font-size: 1.15rem; font-weight: 300;
  color: var(--c-cream);
}
.founder__body {
  padding: clamp(2.5rem,5vw,5rem);
}
.founder__role {
  font-family: var(--f-display);
  font-size: 1.2rem; font-style: italic;
  color: var(--c-gold-hi); margin-top: .3rem;
}
.founder__bio {
  font-size: .95rem; font-weight: 300;
  color: var(--c-stone-light); line-height: 1.85;
  max-width: 50ch; margin-bottom: 1.1rem;
}
.founder__bio strong { color: var(--c-gold-pale); font-weight: 500; }
.founder__creds {
  display: flex; flex-direction: column; gap: .5rem;
  margin: 1.8rem 0 2.2rem;
  padding: 1.4rem 1.8rem;
  border-left: 2px solid var(--c-gold);
  background: rgba(184,150,62,.05);
}
.founder__creds span {
  font-size: .82rem; color: var(--c-stone-light);
  display: flex; align-items: center; gap: .6rem;
}
.founder__creds span::before { content: '✦'; color: var(--c-gold); flex-shrink: 0; font-size: .75rem; }

/* ================================================================
   GALLERY (masonry-style)
================================================================ */
.gallery { background: var(--c-void); padding: 0; }
.gallery__header {
  padding: var(--section) 0 3.5rem;
  text-align: center;
}
.gallery__header h2 { color: var(--c-cream); margin-top: .6rem; }
.gallery__header p {
  font-size: .9rem; color: var(--c-stone);
  margin: 1rem auto 0; max-width: 44ch; font-weight: 300;
}
.gallery__mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 240px;
  gap: 3px;
}
.gallery__cell {
  overflow: hidden; position: relative;
  background: var(--c-ink);
}
.gallery__cell:nth-child(1) { grid-row: 1/3; grid-column: 1/3; }
.gallery__cell:nth-child(2) { grid-column: 3; }
.gallery__cell:nth-child(3) { grid-column: 4; }
.gallery__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), filter .5s ease;
  filter: saturate(.85);
}
.gallery__cell:hover img { transform: scale(1.07); filter: saturate(1.1); }
.gallery__cell-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,.75) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-fast) ease;
  display: flex; align-items: flex-end; padding: 1.4rem;
}
.gallery__cell:hover .gallery__cell-overlay { opacity: 1; }
.gallery__cell-tag {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-gold);
}
/* Placeholder cells */
.gallery__cell-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(184,150,62,.2);
}
.gallery__ig {
  text-align: center;
  padding: 3.5rem 0 var(--section);
}

/* ================================================================
   SALON TOUR (real photography — styling stations / amenities / lounge)
================================================================ */
.salon-tour { background: var(--c-ivory); color: var(--c-void); }
.salon-tour__header {
  text-align: center; max-width: 600px; margin: 0 auto 4rem;
}
.salon-tour__header h2 { color: var(--c-void); margin-top: .6rem; }
.salon-tour__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tour-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-ink);
}
.tour-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.tour-card:hover img { transform: scale(1.05); }
.tour-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,19,15,.82) 0%, rgba(20,19,15,.05) 45%, transparent 65%);
}
.tour-card__label {
  position: absolute; left: 1.5rem; bottom: 1.4rem; right: 1.5rem;
}
.tour-card__label .t-eyebrow { color: var(--c-gold-hi); margin-bottom: .3rem; display: block; }
.tour-card__label h3 {
  font-family: var(--f-display); font-size: 1.4rem; font-weight: 300;
  color: var(--c-cream); line-height: 1.2;
}
.tour-card__num {
  position: absolute; top: 1.3rem; right: 1.5rem;
  font-family: var(--f-display); font-size: .85rem;
  color: rgba(253,252,249,.55); letter-spacing: .1em;
}

/* Green accent variants */
.btn--green {
  background: var(--c-green);
  color: var(--c-cream);
}
.btn--green:hover { background: var(--c-green-deep); }
.badge-green {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--c-green-deep); background: var(--c-green-pale);
  padding: .4rem .9rem; border-radius: 2px;
}

/* ================================================================
   REVIEWS
================================================================ */
.reviews { background: var(--c-ivory); color: var(--c-void); }
.reviews__head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 4rem;
}
.reviews__score-wrap { text-align: right; }
.reviews__score {
  font-family: var(--f-display);
  font-size: 5rem; font-weight: 300;
  color: var(--c-gold); line-height: 1;
}
.reviews__score-sub {
  font-size: .65rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--c-stone); margin-top: .2rem;
}
.reviews__stars-row { color: var(--c-gold); font-size: .85rem; letter-spacing: .1em; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--c-cream);
  padding: 2.5rem;
  border-left: 1.5px solid var(--c-gold);
  position: relative;
  transition: transform var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}
.review-card__quote-mark {
  font-family: var(--f-display);
  font-size: 5rem; line-height: .8;
  color: rgba(184,150,62,.15);
  position: absolute; top: 1rem; left: 1.5rem;
  pointer-events: none; user-select: none;
}
.review-card__stars { color: var(--c-gold); font-size: .8rem; letter-spacing: .1em; margin-bottom: 1rem; }
.review-card__text {
  font-size: .9rem; font-style: italic; font-weight: 300;
  line-height: 1.8; color: #4a4845; margin-bottom: 1.5rem;
}
.review-card__author { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-pale));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-size: .95rem;
  color: var(--c-void); flex-shrink: 0; font-weight: 400;
}
.review-card__name { font-size: .82rem; font-weight: 500; color: var(--c-void); }
.review-card__src  { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-stone); }
.reviews__cta { text-align: center; margin-top: 3.5rem; }

/* ================================================================
   BOOKING
================================================================ */
.booking { background: var(--c-ink); }
.booking__inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem; align-items: start;
}
.booking__left .t-eyebrow { margin-bottom: 1rem; }
.booking__left h2 { color: var(--c-cream); margin-bottom: .75rem; }
.booking__left > p {
  font-size: .95rem; font-weight: 300;
  color: var(--c-stone); line-height: 1.8; margin-bottom: 2.5rem;
}
/* Form */
.lhl-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: .45rem; }
.form-label {
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--c-stone);
}
.form-ctrl {
  background: transparent;
  border: .5px solid rgba(255,255,255,.1);
  color: var(--c-cream);
  padding: .8rem 1rem;
  font-size: .92rem; font-family: var(--f-body);
  outline: none; width: 100%;
  transition: border-color var(--dur-fast) ease;
  -webkit-appearance: none;
}
.form-ctrl:focus { border-color: var(--c-gold); }
.form-ctrl::placeholder { color: rgba(255,255,255,.16); font-size: .85rem; }
select.form-ctrl option { background: #1a1a14; }
textarea.form-ctrl { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; padding: 1.05rem;
  background: var(--c-gold); color: var(--c-void);
  font-family: var(--f-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background var(--dur-fast) ease, box-shadow var(--dur-fast) ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  margin-top: .4rem;
}
.form-submit:hover {
  background: var(--c-gold-hi);
  box-shadow: 0 8px 40px rgba(184,150,62,.3);
}
.form-notice {
  font-size: .72rem; color: var(--c-stone);
  text-align: center; margin-top: .8rem; line-height: 1.5;
}
.form-notice a { color: var(--c-gold); }
.form-feedback {
  font-size: .82rem; margin-top: 1rem;
  display: none; padding: .75rem 1rem;
  border-left: 2px solid var(--c-gold);
}
/* Info panel */
.info-panel { display: flex; flex-direction: column; gap: 2rem; }
.info-block { }
.info-block__label {
  font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--c-gold);
  margin-bottom: .5rem;
}
.info-block__value {
  font-family: var(--f-display);
  font-size: 1.05rem; color: var(--c-cream);
  font-weight: 300; line-height: 1.55;
}
.info-block__value a { color: var(--c-gold-pale); }
.info-block__value a:hover { color: var(--c-gold); }
.hours-list { display: flex; flex-direction: column; gap: .35rem; margin-top: .2rem; }
.hours-row {
  display: flex; justify-content: space-between;
  font-family: var(--f-body); font-size: .85rem;
}
.hours-row .day { color: var(--c-stone); font-weight: 300; }
.hours-row .time { color: var(--c-gold-pale); font-size: .78rem; }
.hours-row.closed .time { color: rgba(122,120,112,.45); }
.amenity-list { display: flex; flex-direction: column; gap: .3rem; margin-top: .2rem; }
.amenity-list li {
  font-size: .83rem; font-weight: 300; color: var(--c-stone);
  display: flex; align-items: center; gap: .6rem;
}
.amenity-list li::before { content: '◆'; color: var(--c-gold); font-size: .45rem; flex-shrink: 0; }

/* ================================================================
   FOOTER
================================================================ */
.site-footer { background: #050505; border-top: .5px solid rgba(184,150,62,.1); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem; padding: 5rem 0 4rem;
}
.footer-brand__mark {
  font-family: var(--f-display);
  font-size: 1.7rem; font-weight: 300;
  color: var(--c-gold); display: block; margin-bottom: 1rem;
}
.footer-brand__tagline {
  font-size: .85rem; font-weight: 300;
  color: var(--c-stone); line-height: 1.75;
  max-width: 28ch; margin-bottom: 1.8rem;
}
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px;
  border: .5px solid rgba(184,150,62,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: var(--c-stone);
  transition: all var(--dur-fast) ease;
}
.social-btn:hover { border-color: var(--c-gold); color: var(--c-gold); background: var(--c-gold-subtle); }
.footer-col h4 {
  font-family: var(--f-body); font-size: .62rem;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 1.4rem; font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col a {
  font-size: .85rem; color: var(--c-stone);
  font-weight: 300; transition: color var(--dur-fast) ease;
}
.footer-col a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: .5px solid rgba(255,255,255,.05);
  padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy  { font-size: .7rem; color: rgba(255,255,255,.16); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .7rem; color: rgba(255,255,255,.16); }
.footer-legal a:hover { color: var(--c-gold); }

/* Back to top */
.btt {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 400;
  width: 42px; height: 42px;
  background: var(--c-gold); color: var(--c-void);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--dur-fast) ease, transform var(--dur-fast) ease;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 100%, 6px 100%);
}
.btt.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.btt:hover { background: var(--c-gold-hi); }

/* ================================================================
   REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity .7s ease, transform .7s var(--ease-out); }
.reveal-left.is-visible,
.reveal-right.is-visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   PAGE / INNER TEMPLATE
================================================================ */
.inner-hero {
  padding: 11rem 0 5rem;
  background: var(--c-ink-mid);
  position: relative; overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
}
.inner-hero h1 { color: var(--c-cream); }
.page-body {
  max-width: var(--w-text); margin: 0 auto;
  padding: 5rem clamp(1.25rem,4vw,3rem);
}
.page-body h2 { color: var(--c-cream); margin: 2.5rem 0 1rem; font-size: 1.8rem; }
.page-body p  { color: var(--c-stone-light); font-weight: 300; line-height: 1.85; margin-bottom: 1.2rem; }
.page-body li { color: var(--c-stone-light); font-size: .95rem; line-height: 1.8; padding-left: 1.5rem; position: relative; margin-bottom: .4rem; }
.page-body li::before { content: '—'; position: absolute; left: 0; color: var(--c-gold); }

/* ================================================================
   GUTENBERG BLOCKS
================================================================ */
.wp-block-quote {
  border-left: 2px solid var(--c-gold);
  padding: 1.2rem 2rem; margin: 2rem 0;
  background: var(--c-gold-subtle);
}
.wp-block-quote p { font-family: var(--f-display); font-style: italic; font-size: 1.1rem; }
.wp-block-button .wp-block-button__link {
  background: var(--c-gold); color: var(--c-void);
  border-radius: 0; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; padding: .9rem 2rem;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.wp-block-separator { border-color: rgba(184,150,62,.3); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 60% 40%; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main .footer-col:last-child { display: none; }
  .booking__inner { gap: 3rem; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; }
  .hero__right { display: none; }
  .hero__left { padding-top: 9rem; justify-content: center; }
  .nav-menu, .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-menu.is-open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(8,8,8,.97);
    align-items: center; justify-content: center;
    gap: 2.5rem; z-index: 800;
  }
  .nav-menu.is-open a { font-size: 1.6rem; letter-spacing: .08em; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { min-height: 360px; }
  .about__media img { position: relative; min-height: 360px; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; flex-direction: column; }
  .founder__grid { grid-template-columns: 1fr; }
  .founder__media { min-height: 420px; }
  .gallery__mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__cell:nth-child(1) { grid-row: auto; grid-column: span 2; aspect-ratio: 16/9; }
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews__head { flex-direction: column; gap: 1.5rem; }
  .booking__inner { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .salon-tour__grid { grid-template-columns: 1fr 1fr; }
  .price-list { grid-template-columns: 1fr; gap: 2.5rem; }
  .balayage-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .salon-tour__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: auto; }
  .founder__media { min-height: 320px; }
  .gallery__mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery__cell { aspect-ratio: 4/3 !important; }
  .gallery__cell:nth-child(1) { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .hero__cta-group { flex-direction: column; align-items: flex-start; }
  .balayage-strip { grid-template-columns: repeat(2, 1fr); }
  .balayage-strip__cell--label { grid-column: span 2; aspect-ratio: auto; padding: 1.5rem; }
}

/* ================================================================
   ACCESSIBILITY / PRINT
================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
