/* ============================================
   PF BEAUTY LAB — STYLESHEET
   Brand: #cbc7b8 sage · #0a0a0a black · #f6f4f0 off-white
   Type: Cormorant Garamond (display) · Jost (body)
   ============================================ */

:root {
  --sage:       #cbc7b8;
  --sage-mid:   #b8b4a4;
  --sage-light: #e4e1d9;
  --black:      #0a0a0a;
  --off-white:  #f6f4f0;
  --text:       #1c1c1a;
  --muted:      #65625e;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Jost', system-ui, sans-serif;
  --nav-h:  68px;
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white); color: var(--text);
  font-family: var(--font-b); font-weight: 400;
  font-size: 17px; line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; cursor: none;
  padding-bottom: 0;
}
@media (hover: none) {
  body { cursor: auto; }
}
/* Safe area for iPhone notch/home bar */
@supports (padding: max(0px)) {
  /* safe area handled by announce-close button width */
  .book-bar { padding-bottom: max(14px, env(safe-area-inset-bottom)); }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.4); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); opacity: 1;
  transition: width 0.2s var(--ease), height 0.2s var(--ease),
              background 0.2s, border-color 0.2s, transform 0.15s var(--ease);
}
.cursor-dot {
  position: fixed; width: 5px; height: 5px; border-radius: 50%;
  background: var(--black); pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%); transition: transform 0.05s;
}
.cursor.hovering  { width: 56px; height: 56px; background: rgba(203,199,184,0.18); border-color: var(--sage-mid); }
.cursor.clicking  { transform: translate(-50%,-50%) scale(0.82); }

/* ── ANNOUNCEMENT BANNER ── */
.announce-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 101;
  background: var(--black); height: 40px;
  display: flex; align-items: center;
  overflow: hidden; padding: 0;
}
.announce-track {
  flex: 1; overflow: hidden; height: 40px;
  position: relative; text-align: center;
}
.announce-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; white-space: nowrap;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(203,199,184,0.85);
  opacity: 0; transition: opacity 0.5s var(--ease); pointer-events: none;
  padding: 0 12px;
}
.announce-slide.active { opacity: 1; pointer-events: auto; }
.announce-sep { color: rgba(203,199,184,0.3); font-size: 0.5rem; flex-shrink: 0; }
.announce-slide a {
  color: #fff; font-weight: 600; flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px;
  transition: border-color 0.2s;
}
.announce-slide a:hover { border-color: #fff; }
.announce-close {
  width: 36px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; border-left: 1px solid rgba(255,255,255,0.07);
  color: rgba(203,199,184,0.4); cursor: pointer;
  font-size: 0.65rem; transition: color 0.2s;
}
.announce-close:hover { color: var(--sage); }

/* On mobile: single continuous ticker, no slide switching */
@media (max-width: 700px) {
  .announce-track { overflow: hidden; }
  .announce-slide { display: none !important; }
  .announce-ticker {
    display: inline-flex; align-items: center; gap: 16px;
    white-space: nowrap;
    font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(203,199,184,0.85);
    animation: bannerScroll 22s linear infinite;
  }
  .announce-ticker span { white-space: nowrap; }
  .announce-ticker a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
  .atd { color: rgba(203,199,184,0.3); font-size: 0.45rem; }
  @keyframes bannerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
}

/* Banner + nav stack */
body.banner-visible { --banner-h: 40px; }
body.banner-visible .nav  { top: var(--banner-h); }
body.banner-visible .hero { padding-top: calc(var(--nav-h) + var(--banner-h) + 80px); }
body.banner-visible .page-header { padding-top: calc(var(--nav-h) + var(--banner-h) + 80px); }


/* ── STICKY BOTTOM BAR ── */
.book-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--black); color: var(--sage);
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 14px 24px; transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}
.book-bar.visible { transform: translateY(0); }
.book-bar a { color: #fff; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 1px; transition: border-color 0.2s; }
.book-bar a:hover { border-color: #fff; }
.bar-divider { color: rgba(255,255,255,0.2); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: rgba(246,244,240,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  z-index: 100; transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 28px rgba(0,0,0,0.07); }
.nav-logo { display: flex; align-items: center; height: 46px; }
.nav-logo-img { height: 46px; width: auto; mix-blend-mode: multiply; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.76rem; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.nav-active { color: var(--black); }
.nav-icon { display: flex; align-items: center; }
.btn-book {
  font-size: 0.69rem !important; font-weight: 500 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: var(--off-white) !important; background: var(--black);
  padding: 9px 20px; border: 1px solid var(--black);
  transition: background 0.2s, color 0.2s;
}
.btn-book:hover { background: transparent; color: var(--black) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--black); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--off-white); border-left: 1px solid rgba(0,0,0,0.08);
  display: flex; flex-direction: column; padding: 28px 32px; gap: 24px;
  z-index: 200; transition: right 0.35s var(--ease);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a { font-size: 0.82rem; font-weight: 400; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.mobile-nav a:hover { color: var(--black); }
.mobile-nav-close { background: none; border: none; font-size: 1rem; cursor: pointer; color: var(--muted); align-self: flex-end; margin-bottom: 12px; }
.btn-book-mobile {
  margin-top: auto; font-size: 0.72rem !important; font-weight: 500 !important;
  letter-spacing: 0.16em !important; text-transform: uppercase !important;
  color: var(--off-white) !important; background: var(--black);
  padding: 14px 24px; text-align: center;
}
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.28); z-index: 150; backdrop-filter: blur(2px); }
.overlay.open { display: block; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; font-family: var(--font-b);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--off-white); background: var(--black);
  padding: 15px 32px; border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--black); }
.btn-secondary {
  display: inline-block; font-family: var(--font-b);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: transparent;
  padding: 13px 28px; border: 1px solid var(--black);
  transition: background 0.25s, color 0.25s;
}
.btn-secondary:hover { background: var(--black); color: var(--off-white); }
.btn-outline-hero {
  display: inline-block; font-family: var(--font-b);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: transparent;
  padding: 13px 28px; border: 1px solid rgba(0,0,0,0.35);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-outline-hero:hover { background: var(--black); color: var(--off-white); border-color: var(--black); }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--sage);
  display: grid; grid-template-columns: 1fr 1fr;
  padding: 0 48px; padding-top: var(--nav-h);
  align-items: center; gap: 48px;
  position: relative; overflow: hidden;
}
.hero-left { padding: 80px 0; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.1s var(--ease) forwards;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--black); flex-shrink: 0; }
.hero-headline {
  font-family: var(--font-d); font-size: clamp(64px, 8.5vw, 130px);
  font-weight: 300; line-height: 0.92; color: var(--black);
  margin-bottom: 48px; overflow: hidden;
}
.line-wrap { display: block; overflow: hidden; }
.line { display: block; opacity: 0; transform: translateY(100%); animation: lineUp 0.8s var(--ease) forwards; }
.line-wrap:nth-child(1) .line { animation-delay: 0.2s; }
.line-wrap:nth-child(2) .line { animation-delay: 0.35s; }
.line-wrap:nth-child(3) .line { animation-delay: 0.5s; }
.hero-headline em { font-style: italic; }
.hero-actions {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.7s var(--ease) forwards;
}
.hero-right {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 48px; padding: 80px 0;
  opacity: 0; animation: fadeIn 1s 0.6s var(--ease) forwards;
}
.hero-badge { position: relative; width: 140px; height: 140px; display: flex; align-items: center; justify-content: center; }
.badge-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: rotateBadge 18s linear infinite; }
.badge-ring text { font-family: var(--font-b); font-size: 10.5px; letter-spacing: 3.5px; fill: var(--black); }
.badge-center { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--black); z-index: 1; }
.hero-services-list { display: flex; flex-direction: column; width: 100%; max-width: 290px; }
.hs-item {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); padding: 13px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: space-between;
}
.hs-item::after { content: '→'; opacity: 0.35; font-size: 0.8rem; }

/* ── TICKER ── */
.ticker-wrap { background: var(--black); overflow: hidden; padding: 14px 0; }
.ticker-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap; width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track span { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage); }
.td { color: var(--sage-mid) !important; font-size: 0.4rem !important; }

/* ── ABOUT ── */
.about { padding: 120px 48px; background: var(--off-white); }
.about-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: center; }
.about-tag { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 48px; }
.about-stats { display: flex; flex-direction: column; gap: 32px; }
.stat { display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap; }
.stat-num { font-family: var(--font-d); font-size: 3.6rem; font-weight: 300; color: var(--black); line-height: 1; }
.stat-plus { font-family: var(--font-d); font-size: 2rem; color: var(--sage-mid); }
.stat-label { font-size: 0.64rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); width: 100%; margin-top: 3px; }
.about-right h2 { font-family: var(--font-d); font-size: clamp(38px, 4.5vw, 60px); font-weight: 300; line-height: 1.05; margin-bottom: 24px; color: var(--black); }
.about-right h2 em { font-style: italic; }
.about-right > p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 20px; line-height: 1.9; }
.about-story-preview { font-size: 0.92rem; color: var(--muted); line-height: 1.7; border-left: 2px solid var(--sage-mid); padding-left: 16px; margin-bottom: 32px; }
.about-story-preview em { font-style: italic; }

/* STORY PANEL */
.story-panel {
  position: fixed; inset: 0; background: var(--off-white);
  z-index: 300; overflow-y: auto;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.story-panel.open { transform: translateY(0); }
.story-inner { max-width: 720px; margin: 0 auto; padding: 80px 48px; }
.story-close {
  background: none; border: none; cursor: pointer;
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 48px; display: block; transition: color 0.2s;
}
.story-close:hover { color: var(--black); }
.story-inner h3 { font-family: var(--font-d); font-size: clamp(36px, 5vw, 56px); font-weight: 300; line-height: 1; color: var(--black); margin-bottom: 48px; }
.story-inner h3 em { font-style: italic; }
.story-body { display: flex; flex-direction: column; gap: 22px; }
.story-body p { font-size: 1.02rem; color: var(--muted); line-height: 1.9; }
.story-sign { font-family: var(--font-d); font-size: 1.3rem !important; color: var(--black) !important; }
.story-sign em { font-style: italic; }

/* ── SERVICES ── */
.services { padding: 100px 48px 80px; background: var(--sage); }
.services-top { max-width: 1100px; margin: 0 auto 48px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.services-tag { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.services-top h2 { font-family: var(--font-d); font-size: clamp(40px, 5vw, 64px); font-weight: 300; line-height: 1; color: var(--black); }
.services-top h2 em { font-style: italic; }
.services-sub { font-size: 0.9rem; color: var(--muted); max-width: 380px; line-height: 1.75; margin-top: 12px; }
.services-accordion { max-width: 1100px; margin: 0 auto; border-top: 1px solid rgba(0,0,0,0.13); }
.acc-item { border-bottom: 1px solid rgba(0,0,0,0.13); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; gap: 24px;
  padding: 24px 0; background: none; border: none; cursor: pointer; text-align: left;
}
.acc-num { font-family: var(--font-d); font-size: 0.82rem; color: var(--muted); width: 28px; flex-shrink: 0; }
.acc-title { font-family: var(--font-d); font-size: 1.8rem; font-weight: 400; color: var(--black); flex: 1; transition: letter-spacing 0.3s var(--ease); }
.acc-trigger:hover .acc-title { letter-spacing: 0.05em; }
.acc-icon { font-size: 1.4rem; font-weight: 300; color: var(--muted); width: 24px; text-align: center; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-item.open .acc-body { max-height: 220px; }
.acc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px 32px; padding: 4px 0 28px 52px; }
.acc-grid div { font-size: 0.93rem; font-weight: 400; color: var(--muted); }
.services-footer { max-width: 1100px; margin: 32px auto 0; }
.policy-link { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; color: var(--muted); border-bottom: 1px solid var(--muted); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.policy-link:hover { color: var(--black); border-color: var(--black); }

/* Cherry callout */
.cherry-callout { max-width: 1100px; margin: 40px auto 0; }
.cherry-callout-inner {
  background: rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.1);
  padding: 28px 36px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cherry-callout-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cherry-callout-text p { font-size: 0.93rem; color: var(--text); line-height: 1.7; max-width: 500px; }
.cherry-fine-inline { font-size: 0.68rem; color: var(--muted); margin-top: 5px; display: block; }
.cherry-cta-btn { white-space: nowrap; flex-shrink: 0; }

/* ── PULL QUOTE ── */
.pull-quote { background: var(--black); padding: 100px 48px; }
.pq-inner { max-width: 900px; margin: 0 auto; }
.pq-inner p { font-family: var(--font-d); font-size: clamp(32px, 5vw, 64px); font-weight: 300; color: var(--sage); line-height: 1.2; }
.pq-inner em { font-style: italic; color: rgba(203,199,184,0.55); }

/* ── LUXE BLOW-DRY BAR ── */
.blowdry { background: var(--off-white); padding: 100px 48px; border-top: 1px solid rgba(0,0,0,0.06); }
.blowdry-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.blowdry-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.blowdry-left h2 { font-family: var(--font-d); font-size: clamp(42px, 5vw, 68px); font-weight: 300; line-height: 1; color: var(--black); margin-bottom: 18px; }
.blowdry-left h2 em { font-style: italic; }
.blowdry-sub { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 32px; max-width: 420px; }
.blowdry-includes { margin-bottom: 36px; }
.blowdry-includes-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.blowdry-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; }
.bli { font-size: 0.94rem; font-weight: 400; color: var(--text); display: flex; align-items: center; gap: 8px; }
.bli span { color: var(--sage-mid); font-size: 0.5rem; }
.blowdry-pricing-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.blowdry-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 28px; }
.bp-card { background: var(--sage-light); padding: 28px 20px; text-align: center; }
.bp-featured { background: var(--black); }
.bp-name { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.bp-featured .bp-name { color: rgba(203,199,184,0.55); }
.bp-price { font-family: var(--font-d); font-size: 2.4rem; font-weight: 300; color: var(--black); line-height: 1; margin-bottom: 6px; }
.bp-featured .bp-price { color: var(--sage); }
.bp-desc { font-size: 0.76rem; color: var(--muted); }
.bp-featured .bp-desc { color: rgba(203,199,184,0.5); }
.blowdry-addons { border-top: 1px solid rgba(0,0,0,0.09); padding-top: 22px; margin-bottom: 28px; }
.blowdry-addons-label { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 0.94rem; color: var(--text); }
.addon-row:last-child { border-bottom: none; }
.addon-row span:last-child { font-weight: 600; color: var(--black); }
.blowdry-contact { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; color: var(--muted); border-bottom: 1px solid rgba(0,0,0,0.22); padding-bottom: 1px; transition: color 0.2s; }
.blowdry-contact:hover { color: var(--black); }

/* ── HIRING ── */
.hiring { background: var(--sage); padding: 100px 48px; }
.hiring-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.hiring-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.hiring-left h2 { font-family: var(--font-d); font-size: clamp(40px, 5vw, 64px); font-weight: 300; line-height: 1; color: var(--black); margin-bottom: 22px; }
.hiring-left h2 em { font-style: italic; }
.hiring-left p { font-size: 1rem; font-weight: 400; color: var(--muted); line-height: 1.85; margin-bottom: 16px; max-width: 500px; }
.hiring-perks { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 32px; }
.perk { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); border: 1px solid rgba(0,0,0,0.22); padding: 6px 14px; }
.hiring-role { background: var(--black); padding: 30px 28px; display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.hr-icon { font-size: 1.8rem; color: var(--sage); font-family: var(--font-d); font-variant-emoji: text; }
.hr-title { font-family: var(--font-d); font-size: 1.45rem; font-weight: 400; color: var(--sage); margin-bottom: 4px; }
.hr-detail { font-size: 0.73rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(203,199,184,0.5); }
.hiring-note { background: rgba(0,0,0,0.07); padding: 26px 22px; border-left: 2px solid rgba(0,0,0,0.16); }
.hiring-note p { font-family: var(--font-d); font-size: 1.05rem; font-style: italic; font-weight: 300; color: var(--black); line-height: 1.7; margin-bottom: 10px; }
.hiring-note span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── RENT ── */
.rent { padding: 100px 48px; background: var(--black); }
.rent-header { max-width: 1100px; margin: 0 auto 60px; }
.rent-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.rent-header h2 { font-family: var(--font-d); font-size: clamp(40px, 5vw, 68px); font-weight: 300; color: var(--sage); line-height: 1; margin-bottom: 18px; }
.rent-header h2 em { font-style: italic; }
.rent-intro { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.55); max-width: 580px; line-height: 1.82; }
.rent-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.rent-card { background: #111; padding: 44px 36px; display: flex; flex-direction: column; gap: 18px; transition: background 0.25s; }
.rent-card:hover { background: #171717; }
.rent-card-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.rent-card-price { font-family: var(--font-d); font-size: 2.3rem; font-weight: 300; color: var(--sage); line-height: 1; }
.rent-card-price span { font-size: 1rem; color: rgba(203,199,184,0.5); }
.rent-card > p { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,0.7); line-height: 1.8; }
.rent-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.rent-list li { font-size: 0.95rem; font-weight: 400; color: rgba(255,255,255,0.75); padding-left: 16px; position: relative; }
.rent-list li::before { content: '—'; position: absolute; left: 0; color: var(--sage-mid); }
.rent-ideal { display: flex; flex-direction: column; gap: 10px; }
.rent-ideal-label { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); }
.rent-ideal-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.rent-ideal-tags span { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(203,199,184,0.72); border: 1px solid rgba(203,199,184,0.18); padding: 5px 11px; }
.rent-card .btn-primary { margin-top: auto; text-align: center; }
.rent-cta { max-width: 1100px; margin: 52px auto 0; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.rent-cta p { font-size: 0.93rem; color: rgba(255,255,255,0.42); }
.rent-cta .btn-secondary { color: var(--sage); border-color: rgba(203,199,184,0.32); }
.rent-cta .btn-secondary:hover { background: var(--sage); color: var(--black); border-color: var(--sage); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--off-white); padding: 100px 48px 80px; }
.testimonials-header { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 48px; }
.testimonials-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.testimonials-header h2 { font-family: var(--font-d); font-size: clamp(36px, 4vw, 52px); font-weight: 300; color: var(--black); }
.testimonials-header h2 em { font-style: italic; }
.testimonials-stage { display: grid; grid-template-columns: 44px 1fr 44px; gap: 16px; align-items: center; }
.testimonials-viewport { overflow: hidden; width: 100%; }
.testimonials-track { display: flex; gap: 20px; transition: transform 0.45s var(--ease); will-change: transform; }
.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: #fff; border: 1px solid rgba(0,0,0,0.07);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.09); transform: translateY(-2px); }
.t-top { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sage); color: var(--black); font-family: var(--font-d); font-size: 1.1rem; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.t-meta { display: flex; flex-direction: column; gap: 3px; }
.t-name { font-size: 0.84rem; font-weight: 600; color: var(--black); }
.stars { color: #f5c518; font-size: 0.78rem; letter-spacing: 2px; }
.testimonial-card blockquote { font-family: var(--font-d); font-size: 1.15rem; font-style: italic; font-weight: 300; color: var(--text); line-height: 1.75; flex: 1; }
.t-source { font-size: 0.63rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.t-arrow { width: 44px; height: 44px; background: none; border: 1px solid rgba(0,0,0,0.15); color: var(--muted); cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s, color 0.2s; }
.t-arrow:hover { background: var(--black); border-color: var(--black); color: #fff; }
.t-dots { display: flex; gap: 8px; justify-content: center; margin-top: 28px; }
.t-dot { height: 3px; width: 24px; border-radius: 2px; background: rgba(0,0,0,0.12); border: none; cursor: pointer; transition: background 0.25s, width 0.25s; }
.t-dot.active { background: var(--black); width: 44px; }
.btn-google-review { display: inline-flex; align-items: center; gap: 8px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(0,0,0,0.15); padding: 11px 20px; transition: border-color 0.2s, color 0.2s; }
.btn-google-review:hover { border-color: var(--black); color: var(--black); }

/* ── INSTAGRAM ── */
.instagram-section { background: var(--black); padding: 80px 48px; }
.ig-header { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; margin-bottom: 40px; }
.ig-tag { font-size: 0.64rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.38); }
.ig-handle { font-family: var(--font-d); font-size: clamp(24px, 3.5vw, 40px); font-style: italic; font-weight: 300; color: var(--sage); flex: 1; transition: opacity 0.2s; }
.ig-handle:hover { opacity: 0.7; }
.instagram-section .btn-secondary { color: var(--sage); border-color: rgba(203,199,184,0.35); }
.instagram-section .btn-secondary:hover { background: var(--sage); color: var(--black); border-color: var(--sage); }
.ig-embed-wrap { overflow: hidden; min-height: 0; }
.ig-embed-wrap > * { max-width: 100%; }

/* ── VISIT ── */
.visit { padding: 100px 48px; background: var(--sage); }
.visit-headline { margin-bottom: 56px; }
.visit-headline h2 { font-family: var(--font-d); font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: 0.9; color: var(--black); }
.visit-headline h2 em { font-style: italic; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr 1fr; gap: 0; border-top: 1px solid rgba(0,0,0,0.16); }
.visit-block { padding: 40px 40px 40px 0; border-right: 1px solid rgba(0,0,0,0.1); }
.visit-block:not(:first-child) { padding-left: 40px; }
.visit-block:last-child { border-right: none; }
.visit-label { font-size: 0.63rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.visit-block a, .visit-block p { font-family: var(--font-d); font-size: 1.25rem; font-weight: 300; color: var(--black); line-height: 1.55; }
.visit-contact-link { display: block; margin-bottom: 8px; transition: opacity 0.2s; }
.visit-contact-link:hover { opacity: 0.6; }
.hours-grid { display: grid; grid-template-columns: auto 1fr; gap: 4px 16px; font-family: var(--font-d); font-size: 1rem; font-weight: 300; color: var(--black); }
.closed { color: var(--muted); }
.visit-cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

/* ── FOOTER ── */
.footer { background: var(--black); padding: 56px 48px 36px; }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { display: flex; align-items: center; }
.footer-logo-img { height: 60px; width: auto; mix-blend-mode: lighten; }
.footer-book-cta {
  display: inline-block; font-family: var(--font-b);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--sage);
  padding: 14px 32px; border: 1px solid var(--sage);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.footer-book-cta:hover { background: transparent; color: var(--sage); }
.footer-mid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; margin-bottom: 32px; }
.footer-tagline { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.42); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--sage); }
.footer-cherry-note { font-size: 0.63rem; color: rgba(255,255,255,0.22); letter-spacing: 0.06em; margin-bottom: 8px; }
.footer-copy { font-size: 0.63rem; color: rgba(255,255,255,0.18); letter-spacing: 0.06em; }

/* ── PAGE HEADER (Terms / Cherry) ── */
.page-header { padding: calc(var(--nav-h) + 80px) 48px 60px; background: var(--sage); }
.page-header h1 { font-family: var(--font-d); font-size: clamp(52px, 7vw, 96px); font-weight: 300; line-height: 0.95; color: var(--black); }
.page-header h1 em { font-style: italic; }
.terms-content { max-width: 760px; margin: 0 auto; padding: 80px 48px 120px; }
.terms-section h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 400; color: var(--black); margin-bottom: 24px; }
.terms-section h3 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 500; color: var(--black); margin: 28px 0 10px; }
.terms-section p { font-size: 0.95rem; color: var(--muted); line-height: 1.88; margin-bottom: 14px; }
.terms-section a { color: var(--black); border-bottom: 1px solid rgba(0,0,0,0.2); }
.terms-section strong { color: var(--black); font-weight: 600; }
.terms-effective { font-size: 0.76rem !important; margin-top: 8px; }
.terms-divider { height: 1px; background: rgba(0,0,0,0.09); margin: 64px 0; }

/* ── CHERRY PAGE ── */
.cherry-header { background: var(--sage); }
.cherry-header-inner { max-width: 760px; }
.cherry-logo-wrap { display: flex; align-items: center; gap: 10px; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.cherry-header-sub { font-family: var(--font-d); font-size: 1.35rem; font-style: italic; font-weight: 300; color: var(--muted); margin-top: 12px; }
.cherry-content { max-width: 860px; margin: 0 auto; padding: 80px 48px 100px; }
.cherry-intro { text-align: center; margin-bottom: 72px; }
.cherry-intro p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; max-width: 620px; margin: 0 auto 32px; }
.cherry-intro strong { color: var(--black); font-weight: 600; }
.cherry-apply-btn { display: inline-block; margin-bottom: 16px; }
.cherry-fine { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }
.cherry-how { margin-bottom: 72px; }
.cherry-how h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--black); margin-bottom: 36px; }
.cherry-steps { border-top: 1px solid rgba(0,0,0,0.09); }
.cherry-step { display: flex; align-items: flex-start; gap: 28px; padding: 22px 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
.cs-num { font-family: var(--font-d); font-size: 0.85rem; color: var(--muted); width: 28px; flex-shrink: 0; padding-top: 2px; }
.cs-text { display: flex; flex-direction: column; gap: 4px; }
.cs-text strong { font-size: 0.97rem; font-weight: 600; color: var(--black); }
.cs-text span { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }
.cherry-services { margin-bottom: 72px; }
.cherry-services h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--black); margin-bottom: 8px; }
.cherry-services-note { font-size: 0.88rem; color: var(--muted); margin-bottom: 32px; }
.cherry-services-grid { border-top: 1px solid rgba(0,0,0,0.09); }
.cs-cat { padding: 28px 0; border-bottom: 1px solid rgba(0,0,0,0.09); }
.cs-cat-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.cs-items { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-items span { font-size: 0.8rem; font-weight: 400; color: var(--text); border: 1px solid rgba(0,0,0,0.12); padding: 6px 14px; }
.cherry-apply-section { text-align: center; background: var(--sage); padding: 60px 48px; }
.cherry-apply-section h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 300; color: var(--black); margin-bottom: 16px; }
.cherry-apply-section > p { font-size: 0.97rem; color: var(--muted); max-width: 500px; margin: 0 auto 28px; line-height: 1.75; }
.cherry-apply-big { margin-bottom: 20px; }
.cherry-coming { font-size: 0.82rem; color: var(--muted); max-width: 460px; margin: 0 auto 16px; line-height: 1.7; }
.cherry-coming a { color: var(--black); border-bottom: 1px solid rgba(0,0,0,0.2); }

/* ── ANIMATIONS ── */
@keyframes fadeUp     { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn     { from { opacity: 0; }                                to { opacity: 1; } }
@keyframes lineUp     { from { opacity: 0; transform: translateY(100%); }  to { opacity: 1; transform: translateY(0); } }
@keyframes ticker     { from { transform: translateX(0); }                  to { transform: translateX(-50%); } }
@keyframes rotateBadge{ from { transform: rotate(0deg); }                   to { transform: rotate(360deg); } }
@keyframes bounce     { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

/* Tablet */
@media (max-width: 1100px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-block:nth-child(2) { border-right: none; }
  .visit-block:nth-child(3) { border-top: 1px solid rgba(0,0,0,0.1); padding-left: 0 !important; border-right: 1px solid rgba(0,0,0,0.1); }
  .visit-block:last-child { border-top: 1px solid rgba(0,0,0,0.1); }
  .rent-grid { grid-template-columns: 1fr 1fr; }
  .blowdry-inner { gap: 52px; }
}

/* Mobile */
@media (max-width: 900px) {
  /* Global */
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cursor, .cursor-dot { display: none; }
  body { cursor: auto; }

  /* Banner marquee handles mobile — see banner block above */

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 0 20px;
    padding-top: var(--nav-h);
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-right { display: none; }
  .hero-left { padding: 48px 0 72px; }
  .hero-headline { font-size: clamp(52px, 14vw, 80px); margin-bottom: 32px; }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero-actions { gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-hero { width: 100%; text-align: center; padding: 15px 20px; }

  /* Ticker */
  .ticker-track { gap: 24px; animation-duration: 20s; }

  /* About */
  .about { padding: 72px 20px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { flex-direction: row; gap: 28px; flex-wrap: wrap; }
  .stat-num { font-size: 2.8rem; }
  .about-right h2 { font-size: clamp(32px, 9vw, 48px); }

  /* Services */
  .services { padding: 72px 20px 56px; }
  .services-top { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-top .btn-primary { width: 100%; text-align: center; }
  .acc-title { font-size: 1.4rem; }
  .acc-grid { grid-template-columns: 1fr 1fr; gap: 8px 20px; padding-left: 0; }
  .acc-item.open .acc-body { max-height: 500px; }
  .cherry-callout-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cherry-cta-btn { width: 100%; text-align: center; }

  /* Pull quote */
  .pull-quote { padding: 72px 20px; }
  .pq-inner p { font-size: clamp(26px, 8vw, 40px); }

  /* Blow-dry */
  .blowdry { padding: 72px 20px; }
  .blowdry-inner { grid-template-columns: 1fr; gap: 44px; }
  .blowdry-includes-grid { grid-template-columns: 1fr; gap: 8px; }
  .blowdry-pricing { gap: 2px; }
  .bp-price { font-size: 2rem; }

  /* Hiring */
  .hiring { padding: 72px 20px; }
  .hiring-inner { grid-template-columns: 1fr; gap: 40px; }
  .hiring-left .btn-primary { width: 100%; text-align: center; }

  /* Rent */
  .rent { padding: 72px 20px; }
  .rent-grid { grid-template-columns: 1fr; gap: 2px; }
  .rent-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .rent-cta .btn-secondary { width: 100%; text-align: center; }
  .rent-card { padding: 36px 28px; }

  /* Testimonials */
  .testimonials { padding: 72px 20px 56px; }
  .testimonials-header { flex-direction: column; gap: 16px; }
  .btn-google-review { width: 100%; justify-content: center; }
  .testimonials-stage { grid-template-columns: 32px 1fr 32px; gap: 8px; }
  .testimonial-card { flex: 0 0 100%; padding: 28px 22px; }
  .t-dots { margin-top: 20px; }

  /* Instagram */
  .instagram-section { padding: 60px 20px; }
  .ig-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ig-header .btn-secondary { width: 100%; text-align: center; }

  /* Visit */
  .visit { padding: 72px 20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-block { border-right: none !important; border-top: 1px solid rgba(0,0,0,0.1); padding: 24px 0 !important; }
  .visit-block:first-child { border-top: none; }
  .visit-cta .btn-secondary { width: 100%; text-align: center; }
  .visit-block a, .visit-block p { font-size: 1.1rem; }

  /* Footer */
  .footer { padding: 44px 20px 96px; } /* extra bottom for sticky bar */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-book-cta { width: 100%; text-align: center; }
  .footer-mid { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }

  /* Sticky bottom bar — bigger tap targets */
  .book-bar { padding: 16px 20px; gap: 16px; font-size: 0.72rem; }
  .bar-divider { display: none; }

  /* Pages */
  .page-header { padding: calc(var(--nav-h) + 48px) 20px 48px; }
  .terms-content, .cherry-content { padding: 52px 20px 72px; }
  .cherry-apply-section { padding: 48px 20px; }
  .story-inner { padding: 52px 20px; }
}

/* Small phones */
@media (max-width: 480px) {
  .announce-slide { font-size: 0.58rem; gap: 5px; }
  .hero-headline { font-size: clamp(46px, 13vw, 64px); }
  .acc-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .stat-num { font-size: 2.4rem; }
  .blowdry-pricing { grid-template-columns: 1fr; }
  .hiring-perks .perk { font-size: 0.66rem; }
  .testimonials-stage { grid-template-columns: 28px 1fr 28px; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .ticker-track, .badge-ring { transition: none !important; animation: none !important; }
  .line, .hero-eyebrow, .hero-actions, .hero-right { opacity: 1 !important; transform: none !important; }
}
