/* =====================================================================
   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; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { padding-block: clamp(60px, 8vw, 116px); }
.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;
}
.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;
  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);
}
.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; }
.card h3 { color: var(--ink); }
.card p { margin-bottom: 0; }
a.card:hover h3 { color: var(--red); }

.section-head { max-width: 660px; margin-bottom: clamp(30px, 5vw, 52px); }
.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); }
.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(64px, 10vw, 120px) clamp(36px, 5vw, 60px);
  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; }

/* ---------- 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 ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 30px); }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; } }
.team-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--paper-2); }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.team-name { font-family: var(--display); font-weight: 800; font-size: 1.25rem; color: var(--ink); margin: .9rem 0 0; letter-spacing: -0.01em; }
.team-role { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; font-weight: 700; color: var(--red); margin-top: .25rem; }
.team-bio { color: var(--text-dim); font-size: .92rem; margin: .5rem 0 0; }

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