/* =====================================================================
   Scissors & Scotch — Uptown Charlotte
   On-brand stylesheet.
   Fonts:  Proxima Nova (brand) + Bitter italic (accent) — self-hosted.
   Colors: Espresso #461E0D · Red #ED1C24 · warm whites · charcoal text.
   ===================================================================== */

/* ---------- Brand fonts (self-hosted) ---------- */
@font-face { font-family:"Proxima Nova"; src:url("../fonts/proximanova-light.otf") format("opentype");     font-weight:300; font-style:normal; font-display:swap; }
@font-face { font-family:"Proxima Nova"; src:url("../fonts/proximanova-regular.otf") format("opentype");   font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Proxima Nova"; src:url("../fonts/proximanova-bold.otf") format("opentype");      font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Proxima Nova"; src:url("../fonts/proximanova-extrabold.otf") format("opentype"); font-weight:800; font-style:normal; font-display:swap; }
@font-face { font-family:"Bitter";       src:url("../fonts/bitter-italic.otf") format("opentype");         font-weight:400; font-style:italic; font-display:swap; }

:root {
  /* brand palette */
  --espresso:   #461E0D;   /* primary brand brown          */
  --espresso-2: #2A1206;   /* deep brown (dark sections)   */
  --espresso-3: #1C1A17;   /* warm near-black              */
  --red:        #ED1C24;   /* brand accent / CTA           */
  --red-deep:   #B71218;   /* hover                        */
  --star:       #E0A63C;   /* rating stars (functional)    */

  /* surfaces + text (light) */
  --paper:   #FBFAF8;      /* page base (warm white)       */
  --paper-2: #F2EEE7;      /* alternating band             */
  --card:    #FFFFFF;
  --line:    #E6DFD4;      /* warm hairline                */
  --text:    #23201C;      /* body charcoal                */
  --text-dim:#6B655B;      /* muted on light               */

  /* light-on-dark */
  --bone:     #F5F1E9;
  --bone-dim: #BEB7A9;

  /* ---- aliases so existing inline styles stay on-brand ---- */
  --ink:      var(--espresso-3);
  --ink-2:    #24201B;
  --ink-3:    #FFFFFF;
  --gold:     var(--red);
  --gold-2:   var(--red);
  --gold-deep:var(--red-deep);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 12px;
  --shadow: 0 16px 44px rgba(40,20,8,.14);
  --serif:   "Bitter", Georgia, serif;
  --display: "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
  --body:    "Proxima Nova", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.015em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0 0 .4em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.9rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; }
p  { margin: 0 0 1.1em; color: var(--text-dim); }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 1rem;
}
.serif-accent { font-family: var(--serif); font-style: italic; text-transform: none; letter-spacing: 0; color: var(--espresso); font-weight: 400; }

/* ---------- Accessibility: skip link + visible focus (WCAG 2.2 AA) ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--red); color: #fff; padding: .75rem 1.25rem;
  font-family: var(--display); font-weight: 700; font-size: .9rem;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}
.hero :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible { outline-color: #fff; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(40px, 4.4vw, 66px); }
.center { text-align: center; }
.muted { color: var(--text-dim); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .88rem;
  font-weight: 700;
  padding: .95em 1.9em;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
/* primary (kept class name .btn-gold) = brand red */
.btn-gold {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 22px rgba(237,28,36,.24);
}
.btn-gold:hover { background: var(--red-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(237,28,36,.32); }
.btn-ghost { border-color: var(--espresso); color: var(--espresso); background: transparent; }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn-lg { padding: 1.05em 2.3em; font-size: .95rem; }
/* ghost on dark surfaces */
.hero .btn-ghost, .cta-band .btn-ghost, .site-footer .btn-ghost { border-color: rgba(245,241,233,.5); color: var(--bone); }
.hero .btn-ghost:hover, .cta-band .btn-ghost:hover, .site-footer .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,248,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand-logo { height: 42px; width: auto; display: block; flex: 0 0 auto; }
.brand-city { font-family: var(--display); text-transform: uppercase; letter-spacing: .15em; font-size: .56rem; font-weight: 700; color: var(--red); line-height: 1.25; padding-left: .8rem; border-left: 1px solid var(--line); max-width: 5.4em; }
@media (max-width: 460px) { .brand-city { display: none; } }
.footer-logo { height: 46px; width: auto; display: block; margin-bottom: 1rem; }
.brand-emblem { width: 44px; height: 44px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand .mark {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .01em; font-size: 1.22rem; color: var(--ink);
}
.brand .mark b { color: var(--red); font-weight: 800; }
.brand .sub {
  font-family: var(--display); font-size: .6rem; letter-spacing: .34em;
  color: var(--red); text-transform: uppercase; margin-top: 5px; font-weight: 700;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .8rem; font-weight: 700; color: var(--text); transition: color .2s;
  /* WCAG 2.2 SC 2.5.8: keep the pointer target at least 24px tall */
  display: inline-flex; align-items: center; min-height: 24px;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta { margin-left: .4rem; }
.nav-cta.active { color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.5rem;
    transform: translateY(-140%); transition: transform .35s ease; z-index: 40;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links .nav-cta { margin: 1rem 0 0; }
}

/* ---------- Hero (dark, photo-driven) ---------- */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  overflow: hidden;
  /* JPEG first as the universal fallback; browsers that understand
     image-set() re-declare below and take the ~64% smaller WebP. */
  background:
    linear-gradient(180deg, rgba(20,10,4,.62) 0%, rgba(20,10,4,.72) 45%, rgba(15,8,3,.92) 100%),
    radial-gradient(120% 90% at 78% 0%, rgba(237,28,36,.14), transparent 55%),
    url("../img/hero-lounge.jpg") center 35% / cover no-repeat,
    var(--espresso-3);
  background:
    linear-gradient(180deg, rgba(20,10,4,.62) 0%, rgba(20,10,4,.72) 45%, rgba(15,8,3,.92) 100%),
    radial-gradient(120% 90% at 78% 0%, rgba(237,28,36,.14), transparent 55%),
    image-set(url("../img/hero-lounge.webp") type("image/webp"),
              url("../img/hero-lounge.jpg") type("image/jpeg")) center 35% / cover no-repeat,
    var(--espresso-3);
}
.hero * { }
.hero .eyebrow { color: #fff; opacity: .95; }
.hero h1 { color: var(--bone); margin-bottom: .2em; }
.hero h1 .line2 { color: var(--red); display: block; }
.hero .lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: var(--bone); max-width: 560px; }
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem 2.2rem; margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(245,241,233,.22); }
.hero-meta .item { display: flex; flex-direction: column; }
.hero-meta .k { font-family: var(--display); font-weight: 800; color: var(--red); font-size: 1.4rem; }
.hero-meta .v { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--bone-dim); font-weight: 700; }
.hero .muted { color: var(--bone-dim); }

/* ---------- Stars ---------- */
.stars { color: var(--star); letter-spacing: .1em; font-size: 1.05rem; }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: clamp(16px, 2.4vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 32px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); border-color: #e2c9b6; box-shadow: var(--shadow); }
.card .ic { font-size: 1.7rem; margin-bottom: .6rem; }
.ic-razor { display: block; width: 2.5rem; height: auto; color: var(--espresso); }
.card h3 { color: var(--ink); }
.card p { margin-bottom: 0; }
a.card:hover h3 { color: var(--red); }

/* Service cards with photo thumbnails */
.svc-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.svc-thumb { aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.svc-card:hover .svc-thumb img { transform: scale(1.06); }
.svc-body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { margin: 0 0 .45rem; }
.svc-body p { margin: 0; }
.svc-body .pill-note { margin-top: auto; padding-top: 1rem; }

.section-head { max-width: 660px; margin-bottom: clamp(24px, 3.4vw, 38px); }
.section-head.center { margin-inline: auto; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 68px); align-items: center; }
.split.rev { grid-template-columns: 1fr 1.05fr; }
@media (max-width: 820px) { .split, .split.rev { grid-template-columns: 1fr; } }
.media-frame {
  position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
}
.media-frame .placeholder { text-align: center; color: var(--text-dim); padding: 1.5rem; }
.media-frame .placeholder .big { font-family: var(--display); font-weight: 800; font-size: 2.2rem; color: var(--espresso); }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Price list ---------- */
.pricelist { display: grid; gap: 0; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-family: var(--display); font-weight: 700; text-transform: none; letter-spacing: -0.01em; font-size: 1.14rem; color: var(--ink); }
.price-row .desc { color: var(--text-dim); font-size: .92rem; margin-top: .2rem; }
.price-row .amt { font-family: var(--display); font-weight: 800; color: var(--red); font-size: 1.28rem; white-space: nowrap; }
.badge {
  display: inline-block; font-family: var(--display); text-transform: uppercase;
  letter-spacing: .1em; font-size: .64rem; font-weight: 700; color: var(--red);
  border: 1px solid var(--red); border-radius: 999px; padding: .28em .7em; margin-left: .6rem; vertical-align: middle;
}

/* ---------- Reviews ---------- */
.reviews { background: var(--paper-2); }
.rev-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 2.2rem; }
.rev-rating { display: flex; align-items: center; gap: .8rem; }
.rev-rating .num { font-family: var(--display); font-weight: 800; font-size: 2.6rem; color: var(--espresso); line-height: 1; }
.carousel { position: relative; }
.carousel-track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 12px; -ms-overflow-style: none; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start; flex: 0 0 clamp(280px, 82%, 420px);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 2rem; display: flex; flex-direction: column; box-shadow: 0 6px 20px rgba(40,20,8,.05);
}
.review-card .g-mark { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: var(--text-dim); text-transform: uppercase; margin-bottom: .6rem; }
.review-card .stars { margin-bottom: .8rem; }
.review-card .quote { color: var(--text); font-size: 1.04rem; line-height: 1.6; margin-bottom: 1.4rem; }
.review-card .who { margin-top: auto; display: flex; align-items: center; gap: .8rem; }
.review-card .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--espresso); color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.05rem; }
.review-card .name { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: .95rem; }
.review-card .src { font-size: .78rem; color: var(--text-dim); }
/* clickable review cards (link out to the real Google review) */
a.review-card { cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
a.review-card:hover { transform: translateY(-3px); border-color: #e2c9b6; box-shadow: var(--shadow); }
.review-link { margin-top: 1.1rem; display: inline-flex; align-items: center; gap: .35rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-size: .68rem; font-weight: 700; color: var(--red); }
a.review-card:hover .review-link { text-decoration: underline; }
.carousel-btns { display: flex; gap: .6rem; }
.carousel-btns button { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); color: var(--ink); cursor: pointer; font-size: 1.1rem; transition: border-color .2s, color .2s, background .2s; }
.carousel-btns button:hover { border-color: var(--red); color: var(--red); }

/* ---------- Video ---------- */
.video-frame { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 16 / 9; background: #000; }
.video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 1.2rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: 0; }
.step .n { counter-increment: step; flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--espresso); color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.05rem; display: grid; place-items: center; }
.step .n::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: .2rem; }

/* ---------- CTA band (dark) ---------- */
.cta-band {
  background:
    radial-gradient(90% 150% at 50% 0%, rgba(237,28,36,.16), transparent 60%),
    linear-gradient(180deg, var(--espresso), var(--espresso-2));
  text-align: center; color: var(--bone);
}
.cta-band h2 { color: var(--bone); margin-bottom: .3em; }
.cta-band .eyebrow { color: #fff; opacity: .9; }
.cta-band .muted { color: var(--bone-dim); }

/* ---------- Location / hours ---------- */
.info-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { font-family: var(--display); font-weight: 700; }
.hours-list .hrs { color: var(--espresso); font-weight: 700; }
.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 11; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer (dark) ---------- */
.site-footer { background: var(--espresso-3); color: var(--bone-dim); border-top: 3px solid var(--red); padding-block: clamp(48px, 7vw, 76px) 2rem; }
.site-footer .mark { color: var(--bone) !important; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; color: var(--red); margin: 0 0 1rem; }
.footer-grid p { color: var(--bone-dim); }
.footer-grid a { display: block; color: var(--bone-dim); padding: .3rem 0; font-size: .92rem; }
.footer-grid a:hover { color: #fff; }
.footer-grid a.btn-gold { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(245,241,233,.14); color: var(--bone-dim); font-size: .82rem; }

/* ---------- Page hero (interior, light) ---------- */
.page-hero {
  position: relative; padding-block: clamp(52px, 7vw, 88px) clamp(28px, 4vw, 44px);
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(237,28,36,.07), transparent 55%),
    linear-gradient(180deg, var(--paper-2), var(--paper));
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { margin-bottom: 1.1rem; }
.page-hero p { max-width: 620px; font-size: 1.1rem; }
.crumbs { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--text-dim); margin-bottom: 1.3rem; }
.crumbs a:hover { color: var(--red); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 0; }
.chip { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: var(--espresso); background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .5em 1em; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Membership plan / pricing tables ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
@media (max-width: 920px) { .plan-grid { grid-template-columns: 1fr; } }
.plan-card { display: flex; flex-direction: column; }
.plan-card .plan-name { font-family: var(--display); font-weight: 800; text-transform: none; letter-spacing: -0.01em; font-size: 1.55rem; color: var(--ink); margin: 0; }
.plan-card .plan-sub { color: var(--text-dim); font-size: .9rem; margin: .1rem 0 1.1rem; }
.plan-card .plan-sub b { color: var(--espresso); font-weight: 700; }
.freq-table { width: 100%; border-collapse: collapse; }
.freq-table th { text-align: left; font-family: var(--display); text-transform: uppercase; letter-spacing: .07em; font-size: .64rem; font-weight: 700; color: var(--text-dim); padding: 0 0 .55rem; border-bottom: 2px solid var(--line); }
.freq-table td { padding: .62rem 0; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--text); }
.freq-table tr:last-child td { border-bottom: 0; }
.freq-table th:last-child, .freq-table td:last-child { text-align: right; }
.freq-table th:nth-child(2), .freq-table td:nth-child(2) { text-align: right; }
.freq-table .mo { font-family: var(--display); font-weight: 800; color: var(--ink); }
.freq-table .save { font-weight: 700; color: var(--red); }
.freq-table .freq { font-weight: 600; }
.freq-table .freq small { display: block; color: var(--text-dim); font-weight: 400; font-size: .74rem; }
.plan-note { color: var(--text-dim); font-size: .9rem; margin-top: 1.4rem; }

/* Per-plan online join chips */
.plan-cta { margin-top: auto; padding-top: 1.4rem; }
.plan-cta .lbl { font-family: var(--display); text-transform: uppercase; letter-spacing: .09em; font-size: .62rem; font-weight: 700; color: var(--text-dim); margin: 0 0 .6rem; }
.freq-chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.freq-chip { font-family: var(--display); font-weight: 700; font-size: .82rem; letter-spacing: .01em; color: var(--espresso); background: var(--paper-2); border: 1px solid var(--line); border-radius: 8px; padding: .5em .85em; transition: background .18s, color .18s, border-color .18s, transform .18s;
  /* conversion-critical touch target: comfortably above the 24px minimum */
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 56px; }
.freq-chip:hover { border-color: var(--red); color: var(--red); transform: translateY(-1px); }
.freq-chip.pop { background: var(--red); color: #fff; border-color: var(--red); }
.freq-chip.pop:hover { background: var(--red-deep); color: #fff; }

/* ---------- Featured plan (mid tier trade-up) ---------- */
.plan-card.featured { border-color: var(--red); box-shadow: 0 6px 22px rgba(237, 28, 36, .10); }
.plan-card.featured:hover { border-color: var(--red); }
.plan-badge {
  display: inline-flex; align-items: center; align-self: flex-start; gap: .4em;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .09em; font-size: .62rem; line-height: 1;
  color: #fff; background: var(--red);
  border-radius: 999px; padding: .55em .9em;
  margin: 0 0 .7rem;
}
/* On one-column layouts, lead with the recommended plan */
@media (max-width: 920px) { .plan-card.featured { order: -1; } }

/* The specific recommended pace: Fifteen Year, every 4 weeks */
.pick-price { color: var(--red); }
.freq-table tr.freq-pick td {
  background: rgba(237, 28, 36, .07);
  border-bottom-color: rgba(237, 28, 36, .22);
}
.freq-table tr.freq-pick td:first-child { box-shadow: inset 3px 0 0 var(--red); padding-left: .6rem; }
.freq-table tr.freq-pick td:last-child { padding-right: .5rem; }
.pick-tag {
  display: inline-block; vertical-align: middle; margin-left: .45em;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  letter-spacing: .07em; font-size: .56rem; line-height: 1;
  color: #fff; background: var(--red);
  border-radius: 999px; padding: .38em .6em;
}
/* Perks line under the recommended plan price */
.plan-card .plan-value {
  color: var(--text-dim); font-size: .82rem; line-height: 1.5;
  margin: -.7rem 0 1.1rem;
}

/* ---------- First-visit entry point ---------- */
.hero-firsttime { margin: 1.1rem 0 0; font-size: .95rem; }
.hero-firsttime a {
  color: var(--bone); border-bottom: 1px solid rgba(245, 241, 233, .45);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.hero-firsttime a:hover { color: #fff; border-color: #fff; }
.first-visit-quote {
  margin: 1.4rem 0; padding: 0 0 0 1.1rem;
  border-left: 3px solid var(--red);
}
.first-visit-quote p { color: var(--text); font-style: italic; margin: 0 0 .5rem; }
.first-visit-quote cite {
  font-style: normal; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; font-size: .68rem;
  color: var(--text-dim);
}

/* ---------- Simple quote cards (membership social proof) ---------- */
.quote-card { display: flex; flex-direction: column; }
.quote-card .stars { margin-bottom: .7rem; }
.quote-card p { color: var(--text); font-size: .95rem; line-height: 1.6; margin: 0 0 1.1rem; }
.quote-card .name {
  margin-top: auto; font-family: var(--display); font-weight: 700;
  color: var(--ink); font-size: .92rem;
}

/* ---------- No-fee reassurance band ---------- */
.reassure { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); }
@media (max-width: 720px) { .reassure { grid-template-columns: 1fr; } }
.reassure .item { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 1.4rem 1.5rem; }
.reassure .item h3 { font-size: 1.05rem; margin: 0 0 .3rem; color: var(--ink); }
.reassure .item p { margin: 0; font-size: .92rem; }

/* ---------- Team (single-row carousels) ---------- */

/* Carousel header: title left, arrows right */
.team-carousel-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; margin-bottom: clamp(20px, 3vw, 32px); }
.team-carousel-head .eyebrow { margin-bottom: .5rem; }
.team-carousel-head h2 { margin: 0; }

/* Slide = one fixed-width portrait card in the row */
.team-slide { position: relative; scroll-snap-align: start; flex: 0 0 clamp(198px, 42vw, 240px); }
.team-photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r);
  overflow: hidden; background: var(--paper-2);
  box-shadow: 0 10px 26px rgba(40,20,8,.15);
  transition: box-shadow .35s ease, transform .35s ease;
}
.team-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,7,3,.86) 0%, rgba(14,7,3,.42) 26%, rgba(14,7,3,0) 52%);
}
.team-photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 16%;
  transition: transform .65s cubic-bezier(.2,.7,.2,1);
}
.team-slide:hover .team-photo { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(40,20,8,.26); }
.team-slide:hover .team-photo img { transform: scale(1.06); }

/* Name + role overlaid on the portrait */
.team-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: .95rem 1.05rem 1rem; }
.team-name { font-family: var(--display); font-weight: 800; letter-spacing: -.015em; line-height: 1.03; font-size: clamp(1.2rem, 1.7vw, 1.42rem); color: #fff; margin: 0; }
.team-role { display: flex; align-items: center; gap: .55rem; font-family: var(--display); text-transform: uppercase; letter-spacing: .15em; font-size: .62rem; font-weight: 700; color: var(--bone); margin-top: .45rem; }
.team-role::before { content: ""; width: 18px; height: 2px; background: var(--red); flex: 0 0 auto; transition: width .35s ease; }
.team-slide:hover .team-role::before { width: 34px; }

/* Optional bio (shown only when the owner adds one) */
.team-bio { color: var(--text-dim); font-size: .88rem; margin: .7rem .15rem 0; }

/* Per-stylist "Book with X" button under each portrait */
.team-book {
  display: flex; align-items: center; justify-content: center; gap: .4rem;
  margin-top: .7rem; padding: .62em 1em;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .07em;
  font-size: .72rem; font-weight: 700; color: var(--espresso);
  border: 1.5px solid var(--line); border-radius: 6px;
  transition: border-color .2s, color .2s, background .2s;
}
.team-book::after { content: "→"; transition: transform .2s ease; }
.team-book:hover { border-color: var(--red); color: var(--red); background: #fff; }
.team-book:hover::after { transform: translateX(3px); }

/* ---------- Sticky mobile "Book Now" bar (injected by main.js) ---------- */
.mobile-book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(28,26,23,.94); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(245,241,233,.14);
}
.mobile-book-bar a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .08em;
  font-size: .82rem; font-weight: 700; padding: .85em 1em; border-radius: 6px;
}
.mobile-book-bar .mb-book { background: var(--red); color: #fff; }
.mobile-book-bar .mb-call { flex: 0 0 auto; border: 1.5px solid rgba(245,241,233,.5); color: var(--bone); }
@media (max-width: 760px) {
  .mobile-book-bar { display: flex; }
  body { padding-bottom: 68px; } /* keep footer clear of the bar */
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.2rem 2.4rem 1.2rem 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-weight: 400; font-size: 1.5rem; color: var(--red); transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 1.3rem; color: var(--text-dim); }

/* ---------- Instagram band ---------- */
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem 2rem; flex-wrap: wrap; margin-bottom: clamp(22px, 3vw, 36px); }
.ig-head h2 { margin: .35rem 0 .5rem; }
.ig-head p { margin: 0; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(8px, 1.2vw, 14px); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile { position: relative; aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 18px rgba(40,20,8,.08); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.ig-tile::after { content: ""; position: absolute; inset: 0; background: rgba(28,26,23,0); transition: background .3s ease; }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover::after { background: rgba(28,26,23,.24); }

/* Real Instagram post embeds (Instagram's official embed.js) */
.ig-embeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 22px); align-items: start; }
@media (max-width: 1100px) { .ig-embeds { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
/* Instagram injects its own inline min/max width; override so embeds fit the grid cell */
.ig-embeds .instagram-media { margin: 0 !important; width: 100% !important; min-width: 0 !important; max-width: 100% !important; box-shadow: 0 6px 20px rgba(40,20,8,.06) !important; }

/* ---------- Editor helper ---------- */
.pill-note { display:inline-block; font-size:.72rem; letter-spacing:.04em; text-transform:uppercase; color:var(--red); font-weight:700; }
