/* ==========================================================================
   Luxe & Mane Co — R4 "comfortable luxury"
   Airy cream, arched imagery (echoes the salon's arched mirrors),
   Fraunces display + Karla text + Allura script accents.
   No scroll-fade gimmicks — the page is always readable.
   ========================================================================== */

:root {
  /* Cheyenne's Canva brand kit — cream / warm sand / deep taupe / medium taupe */
  --cream:    #f4eee1;   /* page — matches circle 1 */
  --cream-2:  #e6dbc4;   /* alt bands — matches circle 2 warm sand */
  --panel:    #fdfbf5;   /* cards */
  --ink:      #26201a;
  --ink-soft: #4a4239;
  --taupe:    #8d7f6f;   /* matches circle 4 medium taupe */
  --latte:    #7a6a53;   /* accent — deeper to match circle 3 dark taupe */
  --line:     rgba(38, 32, 26, 0.14);
  --line-2:   rgba(38, 32, 26, 0.26);

  /* Cheyenne's Canva brand fonts — La Luxes → Marcellus (free Google equivalent),
     Burgues Script → Allura, body → Cormorant Garamond */
  --display: 'Marcellus', 'Cormorant Garamond', Georgia, serif;
  --text:    'Cormorant Garamond', Georgia, serif;
  --script:  'Pinyon Script', 'Allura', cursive;

  --pad-x: clamp(20px, 4.5vw, 64px);
  --pad-y: clamp(72px, 9vw, 128px);
  --w-wide: 1360px;
  --w-content: 1080px;
  --w-narrow: 740px;

  --arch: 999px 999px 0 0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--text);
  background: var(--cream);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--latte); color: var(--cream); }

/* ---- Type ------------------------------------------------------------- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 350;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6.4vw, 92px); }
h2 { font-size: clamp(34px, 4.4vw, 62px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 400; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 340; }
p { color: var(--ink-soft); }
.script {
  font-family: var(--script);
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 400;
  color: var(--latte);
  line-height: 1.1;
  display: block;
}
.lede {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.65;
}

/* ---- Buttons & links --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; min-height: 50px;
  font-family: var(--text); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink); border-radius: 999px;
  cursor: pointer; transition: background .25s, color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); }
.tlink {
  font-size: 14px; font-weight: 600; letter-spacing: 0.03em;
  border-bottom: 1px solid var(--latte); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.tlink:hover { color: var(--latte); }

/* ---- Top bar (CTA strip — Parlour-in-the-Woods style) ----------------- */
.topbar {
  background: var(--latte); color: var(--cream);
  text-align: center;
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px var(--pad-x);
  font-family: var(--text);
}
.topbar a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  font-weight: 600;
}
.topbar a:hover { text-decoration-thickness: 2px; }

/* ---- Header / nav ------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 241, 232, 0.92);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
  padding: 18px var(--pad-x);
  max-width: var(--w-wide); margin: 0 auto;
}
.nav__logo img { height: 26px; width: auto; }
.nav__panel { display: flex; align-items: center; gap: 30px; }
.nav__links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__links a {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); border-color: var(--latte); }
.nav__cta { padding: 11px 24px; min-height: 42px; font-size: 12px; }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; padding: 10px; color: var(--ink); min-width: 44px; min-height: 44px; align-items: center; justify-content: center; -webkit-tap-highlight-color: transparent; }
@media (max-width: 1020px) {
  /* When the menu is open, drop backdrop-filter + sticky from the header.
     Both establish a containing block for position:fixed descendants, which
     was making the panel anchor to the header instead of the viewport and
     rendering half-off screen with content bleeding through. */
  .site-header.open {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    position: static !important;
    background: var(--cream) !important;
  }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__toggle svg { width: 26px; height: 26px; }
  .site-header.open .nav__panel {
    position: fixed;
    top: var(--header-h, 100px);
    left: 0; right: 0; bottom: 0;
    background: var(--cream);
    padding: 32px var(--pad-x) calc(32px + env(safe-area-inset-bottom, 0px));
    display: flex; flex-direction: column; align-items: flex-start; gap: 26px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    animation: navSlideIn .22s ease-out;
    z-index: 90;
  }
  @keyframes navSlideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .site-header.open .nav__links { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; width: 100%; }
  .site-header.open .nav__links a { font-family: var(--display); font-size: 30px; font-weight: 350; border: none; }
  .site-header.open .nav__cta { display: inline-flex; margin-top: 8px; }
  body.nav-lock { overflow: hidden; }
}

/* ============================================================
   Before/After slider — first slider hint animation (Cheyenne R4)
   Applied via JS when the FIRST .ba on the page enters viewport.
   Animates --x with a CSS transition so it eases smoothly.
   ============================================================ */
.ba--hint { transition: none; }
.ba--hint .ba__before,
.ba--hint .ba__divider {
  transition: clip-path 0.85s cubic-bezier(.65,.05,.36,1),
              left       0.85s cubic-bezier(.65,.05,.36,1);
}

/* ---- Hero Full (Parlour-in-the-Woods layout) -------------------------- */
.hero-full {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px); /* viewport minus topbar (~40) + nav (~70) */
  min-height: 620px;
  max-height: 960px;
  overflow: hidden;
  background: var(--ink);
}
.hero-full__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-full__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.44) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-full__copy {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 60px);
  color: var(--cream);
}
.hero-full__copy h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 1.04;
  letter-spacing: -0.005em;
  color: var(--cream);
  text-transform: uppercase;
  max-width: 1100px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  overflow-wrap: break-word;
  text-wrap: balance;
}
.hero-full__sub {
  margin-top: 22px;
  font-family: var(--text);
  font-size: clamp(13px, 1.15vw, 17px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 780px;
}
.hero-full__cta {
  margin-top: 34px;
}
@media (max-width: 720px) {
  .topbar { font-size: 11px; letter-spacing: 0.1em; padding: 9px 14px; }
  .hero-full { height: calc(100dvh - 100px); min-height: 540px; }
  .hero-full__copy { padding: 0 clamp(14px, 4vw, 24px); }
  .hero-full__copy h1 { font-size: clamp(26px, 7.6vw, 42px); line-height: 1.1; letter-spacing: -0.01em; }
  .hero-full__sub { font-size: 12px; letter-spacing: 0.2em; margin-top: 16px; }
  .hero-full__cta { margin-top: 26px; padding: 14px 28px; }
}

/* ---- Hero (split) ------------------------------------------------------ */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--pad-x) clamp(56px, 7vw, 110px);
}
.hero__copy .script { margin-bottom: 18px; }
.hero__copy h1 { margin-bottom: 26px; }
.hero__copy .lede { max-width: 480px; margin-bottom: 36px; }
.hero__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__media .hero__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--arch);
}
.hero__media .hero__inset {
  position: absolute;
  bottom: -36px; left: -60px;
  width: clamp(140px, 15vw, 210px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 6px solid var(--cream);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(38,32,26,0.18);
  transform: rotate(-4deg);
}
.hero__video { display: block; background: #201b16; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { order: -1; padding-left: 40px; }
  .hero__media .hero__main { aspect-ratio: 4 / 4.4; }
  .hero__media .hero__inset { left: -8px; bottom: -28px; }
  .hero__copy { padding-top: 44px; }
}

/* ---- Marquee ----------------------------------------------------------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  background: var(--panel);
}
.marquee__track {
  display: flex; gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-family: var(--display); font-style: italic; font-weight: 350;
  font-size: 17px; color: var(--taupe);
  white-space: nowrap;
  padding: 0 14px;
}
.marquee span::after { content: '·'; color: var(--latte); padding-left: 28px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Section heads ------------------------------------------------------ */
.shead { max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--pad-x) 48px; }
.shead .script { margin-bottom: 10px; }
.shead--split {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap;
}
.shead--center { text-align: center; }
.shead--center .script { margin-left: auto; margin-right: auto; }
.shead p.lede { max-width: 560px; margin-top: 18px; }

/* ---- Service cards (photo-first, like Edit Salon but arched) ------------ */
.svc {
  padding: 0;
}
.svc__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.2vw, 32px);
  max-width: var(--w-wide); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.svc-card { display: flex; flex-direction: column; }
.svc-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--arch);
  transition: transform .5s ease;
}
.svc-card:hover .svc-card__img { transform: translateY(-6px); }
.svc-card h3 { margin: 20px 0 6px; }
.svc-card__meta {
  font-size: 13px; color: var(--taupe);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.svc-card__meta strong { color: var(--latte); font-weight: 600; }
.svc-card p { font-size: 14.5px; margin-bottom: 14px; }
.svc-card .tlink { align-self: flex-start; margin-top: auto; }
@media (max-width: 980px) { .svc__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  .svc__grid { grid-template-columns: 1fr; }
  .svc-card__img { aspect-ratio: 4 / 4.2; }
}

/* ---- Spotlight band (extensions) ---------------------------------------- */
.spot {
  background: var(--cream-2);
  margin-top: var(--pad-y);
  padding: var(--pad-y) var(--pad-x);
}
.spot__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--w-wide); margin: 0 auto;
}
.spot__media { position: relative; }
.spot__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--arch);
}
.spot__body .script { margin-bottom: 12px; }
.spot__body h2 { margin-bottom: 24px; max-width: 560px; }
.spot__body p { margin-bottom: 18px; max-width: 540px; }
.spot__stats {
  display: flex; gap: clamp(28px, 4vw, 60px); flex-wrap: wrap;
  margin: 34px 0 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line-2);
}
.spot__stats div strong {
  display: block;
  font-family: var(--display); font-weight: 380; font-style: italic;
  font-size: clamp(24px, 2.4vw, 34px);
  color: var(--ink); line-height: 1.15;
}
.spot__stats div span { font-size: 13px; color: var(--taupe); letter-spacing: 0.04em; }
@media (max-width: 900px) {
  .spot__grid { grid-template-columns: 1fr; }
  .spot__media { max-width: 420px; }
}

/* ---- Experience (amenities story) ---------------------------------------- */
.exp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--w-wide); margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
}
.exp__body .script { margin-bottom: 12px; }
.exp__body h2 { margin-bottom: 24px; }
.exp__body p { margin-bottom: 18px; max-width: 520px; }
.exp__list {
  list-style: none;
  margin: 28px 0 34px;
  columns: 2; column-gap: 40px;
}
.exp__list li {
  font-size: 15px; color: var(--ink-soft);
  padding: 9px 0 9px 26px;
  position: relative;
  break-inside: avoid;
}
.exp__list li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 12px; height: 7px;
  border: 1.5px solid var(--latte); border-bottom: none;
  border-radius: 12px 12px 0 0;
}
.exp__media { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; align-items: start; }
.exp__media img {
  width: 100%; object-fit: cover;
  border-radius: var(--arch);
}
.exp__media img:first-child { aspect-ratio: 3 / 4.4; }
.exp__media img:last-child { aspect-ratio: 3 / 4.4; margin-top: 48px; }
@media (max-width: 900px) {
  .exp { grid-template-columns: 1fr; }
  .exp__list { columns: 1; }
}
@media (max-width: 480px) { .exp__media { grid-template-columns: 1fr 1fr; } }

/* ---- Reviews ------------------------------------------------------------- */
.reviews {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--pad-y) var(--pad-x);
}
.reviews__inner { max-width: var(--w-content); margin: 0 auto; }
.reviews__head { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.reviews__head .script { margin-bottom: 8px; }
.reviews__stars {
  color: var(--latte); font-size: 15px; letter-spacing: 6px;
  margin-top: 14px;
}
.reviews__stars span { color: var(--taupe); font-size: 12.5px; letter-spacing: 0.05em; margin-left: 10px; }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.reviews blockquote p {
  font-family: var(--display); font-style: italic; font-weight: 360;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5; color: var(--ink);
  margin-bottom: 16px;
}
.reviews blockquote cite {
  font-style: normal; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--taupe);
}
.reviews__more { text-align: center; margin-top: clamp(36px, 4vw, 56px); }
@media (max-width: 820px) { .reviews__grid { grid-template-columns: 1fr; gap: 34px; } }

/* ---- Team strip ----------------------------------------------------------- */
.team-strip { padding: var(--pad-y) 0; }
.team-strip__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 28px);
  max-width: var(--w-wide); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.team-strip figure { margin: 0; }
.team-strip img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--arch);
  transition: transform .5s ease;
}
.team-strip figure:hover img { transform: translateY(-6px); }
.team-strip figcaption { margin-top: 14px; }
.team-strip figcaption strong {
  font-family: var(--display); font-weight: 420;
  font-size: 19px; display: block;
}
.team-strip figcaption span { font-size: 13px; color: var(--taupe); }
@media (max-width: 900px) {
  .team-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .team-strip figure:nth-child(n+4) { display: none; }
}

/* ---- Instagram band -------------------------------------------------------- */
.ig { padding: 0 0 var(--pad-y); }
.ig__grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--w-wide); margin: 0 auto;
  padding: 0 var(--pad-x);
}
.ig__grid a { overflow: hidden; border-radius: 6px; display: block; }
.ig__grid img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .6s ease;
}
.ig__grid a:hover img { transform: scale(1.05); }
@media (max-width: 800px) {
  .ig__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Closing band ------------------------------------------------------------ */
.closing {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: clamp(90px, 12vw, 150px) var(--pad-x);
}
.closing__bg {
  position: absolute; inset: 0;
  background-size: cover;
  z-index: 1;
}
.closing::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(31, 25, 19, 0.62);
  z-index: 2;
}
.closing__copy { position: relative; z-index: 3; color: var(--cream); }
.closing__copy .script { color: var(--latte); margin-bottom: 10px; }
.closing__copy h2 { color: var(--cream); margin-bottom: 18px; }
.closing__copy p { color: rgba(246,241,232,0.85); max-width: 460px; margin: 0 auto 34px; }

/* ---- Footer -------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(246,241,232,0.72);
  padding: clamp(70px, 8vw, 110px) var(--pad-x) 40px;
  font-size: 14.5px;
}
.footer__grid {
  max-width: var(--w-wide); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer__brand img { height: 30px; width: auto; margin-bottom: 18px; }
.footer__brand p { color: rgba(246,241,232,0.65); max-width: 300px; line-height: 1.7; }
.footer__brand .script { font-size: 24px; color: var(--latte); margin-top: 16px; }
.site-footer h4 {
  color: var(--cream); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 10px; line-height: 1.55; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: var(--latte); }
.footer__bottom {
  max-width: var(--w-wide); margin: 64px auto 0; padding-top: 28px;
  border-top: 1px solid rgba(246,241,232,0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(246,241,232,0.45);
}
@media (max-width: 860px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Inner pages
   ========================================================================== */

/* Light, airy page head (no dark full-bleed) */
.page-head {
  max-width: var(--w-wide); margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) var(--pad-x) clamp(36px, 5vw, 64px);
}
.page-head .script { margin-bottom: 12px; }
.page-head h1 { margin-bottom: 22px; max-width: 900px; }
.page-head .lede { max-width: 620px; }

/* Wide banner image under page head */
.page-banner {
  max-width: var(--w-wide); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 5vw, 72px);
}
.page-banner img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 700px) { .page-banner img { aspect-ratio: 4 / 3; } }

/* Editorial split (about / extensions / blonding) */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: var(--w-wide); margin: 0 auto;
  padding: clamp(48px, 6vw, 96px) var(--pad-x);
}
.split--reverse .split__media { order: 2; }
.split__media img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--arch);
}
.split__media--plain img { border-radius: 10px; }
.split__body .script { margin-bottom: 10px; }
.split__body h2 { margin-bottom: 24px; }
.split__body p { margin-bottom: 18px; max-width: 520px; }
.split__body .btn { margin-top: 20px; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
}

/* Menu (services) */
.menu { max-width: var(--w-content); margin: 0 auto; padding: 0 var(--pad-x) var(--pad-y); }
.menu__section { padding-top: clamp(48px, 6vw, 80px); }
.menu__section > .script { margin-bottom: 6px; }
.menu__section > h2 { margin-bottom: 12px; }
.menu__section > p.note { max-width: 620px; margin-bottom: 34px; font-size: 15px; color: var(--taupe); }
.menu-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 10px 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.menu-row:first-of-type { border-top: 1px solid var(--line-2); }
.menu-row h3 { font-size: 21px; margin-bottom: 5px; }
.menu-row .desc { font-size: 14.5px; color: var(--taupe); max-width: 560px; }
.menu-row .price {
  font-family: var(--display); font-style: italic; font-weight: 380;
  font-size: 21px; color: var(--ink);
  white-space: nowrap; text-align: right;
}
.menu-row .time {
  display: block; font-family: var(--text); font-style: normal;
  font-size: 12px; color: var(--taupe);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
}
@media (max-width: 560px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row .price { text-align: left; }
}

/* Team page */
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 64px);
  max-width: var(--w-content); margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad-x) var(--pad-y);
}
.member { display: grid; grid-template-columns: minmax(150px, 220px) 1fr; gap: clamp(20px, 2.5vw, 36px); align-items: start; }
.member img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--arch);
}
.member h3 { font-size: 24px; margin-bottom: 4px; }
.member .role {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--latte); margin-bottom: 14px;
}
.member p { font-size: 14.5px; line-height: 1.65; margin-bottom: 14px; }
.member .tlink { font-size: 13px; }
@media (max-width: 980px) { .team-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .member { grid-template-columns: 1fr; }
  .member img { max-width: 240px; }
}

/* Gallery (portfolio) */
.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: var(--w-wide); margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
}
.gallery img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 8px;
  transition: transform .5s ease;
}
.gallery a { overflow: hidden; border-radius: 8px; display: block; }
.gallery a:hover img { transform: scale(1.04); }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* Contact */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 60px);
  max-width: var(--w-content); margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad-x);
}
.contact-grid h3 { font-size: 21px; margin-bottom: 12px; }
.contact-grid p, .contact-grid li { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.contact-grid ul { list-style: none; }
.contact-grid a { border-bottom: 1px solid var(--latte); padding-bottom: 1px; }
.contact-grid a:hover { color: var(--latte); }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Prose (careers, policies, 404) */
.prose {
  max-width: var(--w-narrow); margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) var(--pad-x) var(--pad-y);
  font-size: 16.5px; line-height: 1.8;
}
.prose p { margin-bottom: 22px; }
.prose h2 { font-size: 32px; margin: 44px 0 18px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose ul { margin: 0 0 22px 22px; }
.prose li { margin-bottom: 8px; color: var(--ink-soft); }
.prose a { border-bottom: 1px solid var(--latte); padding-bottom: 1px; }
.prose a:hover { color: var(--latte); }
.prose .btn { margin-top: 8px; }

/* FAQ rows */
.faq { max-width: var(--w-narrow); margin: 0 auto; padding: 0 var(--pad-x) var(--pad-y); }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--line-2); }
.faq summary {
  font-family: var(--display); font-weight: 420; font-size: 20px;
  padding: 22px 36px 22px 0;
  cursor: pointer; list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--text); font-size: 22px; font-weight: 300; color: var(--latte);
  transition: transform .25s;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 24px; max-width: 620px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   R5 — arch frames, before/after sliders, services page layout
   ========================================================================== */

/* Thin ring frame around every arched image */
.hero__main, .spot__media img, .exp__media img, .team-strip__grid img,
.member img, .split__media img, .menu-cat__media img, .ba {
  outline: 1px solid var(--line-2);
  outline-offset: 7px;
}

/* Before/after slider — drag the handle */
.ba {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--arch);
  cursor: ew-resize;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  --x: 4%;  /* start fully on the after side; drag right to reveal the before */
}
.ba img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  border-radius: 0;
  outline: none;
}
.ba__before {
  position: absolute; inset: 0;
  clip-path: inset(0 calc(100% - var(--x)) 0 0);
}
.ba__divider {
  position: absolute; top: 0; bottom: 0;
  left: var(--x); width: 2px; margin-left: -1px;
  background: rgba(253, 251, 245, 0.92);
  box-shadow: 0 0 10px rgba(38, 32, 26, 0.28);
}
.ba__divider::after {
  content: '‹ ›';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--panel); color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: 0 4px 14px rgba(38, 32, 26, 0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--text); font-size: 15px; font-weight: 600;
  letter-spacing: 2px; text-indent: 2px;
  line-height: 1;
}
.ba__label {
  position: absolute; bottom: 14px; z-index: 2;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(253, 251, 245, 0.88); color: var(--ink-soft);
  padding: 5px 12px; border-radius: 999px;
  pointer-events: none;
}
.ba__label--b { left: 14px; }
.ba__label--a { right: 14px; }
.ba--tall { aspect-ratio: 4 / 5; }
.svc-card .ba { margin-bottom: 4px; }

/* Services page — photo beside each category's list */
.menu-cat {
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr;
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
  max-width: var(--w-content); margin: 0 auto;
  padding: clamp(44px, 5.5vw, 76px) var(--pad-x);
  border-top: 1px solid var(--line);
}
.menu-cat:first-of-type { border-top: none; }
.menu-cat__media { position: sticky; top: 110px; }
.menu-cat__media img {
  width: 100%; aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--arch);
}
.menu-cat__media .script {
  text-align: center; margin-top: 22px;
  font-size: clamp(24px, 2.2vw, 32px);
}
.menu-cat__list h2 { margin-bottom: 10px; }
.menu-cat__list .note {
  max-width: 620px; margin-bottom: 24px;
  font-size: 15px; color: var(--taupe);
}
@media (max-width: 780px) {
  .menu-cat { grid-template-columns: 1fr; }
  .menu-cat__media { position: static; max-width: 280px; }
}

/* Banner as a trio of portraits (wide crops of portrait photos look bad) */
.banner-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.banner-trio img {
  width: 100%; aspect-ratio: 4 / 4.6;
  object-fit: cover; border-radius: 10px;
}
@media (max-width: 700px) {
  .banner-trio { grid-template-columns: repeat(2, 1fr); }
  .banner-trio img:nth-child(3) { display: none; }
}

/* R5 — plain portfolio image slot (replaces a .ba slider in split__media) */
.portfolio-image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--latte, #ded1bb);
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portfolio-image--tall { aspect-ratio: 1 / 1; }
@media (max-width: 780px) {
  .portfolio-image--tall { aspect-ratio: 4 / 5; }
}

/* Cheyenne feedback: reveal more of the top of the head on the blonding
   before/after (source images are taller than the container so cover crops;
   default is center-center — this biases to the top). */
.ba--from-top img { object-position: center top; }

/* ── Footer credit (Lobbii) ── */
.site-footer .footer__bottom .credit {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  color: rgba(60, 42, 30, 0.55);
  letter-spacing: 0.02em;
}
.site-footer .footer__bottom .credit a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}
.site-footer .footer__bottom .credit a em {
  font-style: italic;
  color: rgba(60, 42, 30, 0.75);
}
.site-footer .footer__bottom .credit a:hover {
  color: rgba(60, 42, 30, 0.9);
}
.site-footer .footer__bottom .credit a:hover em {
  color: rgba(60, 42, 30, 1);
}
