/* GVIII Barbershop — modern boutique rebuild (Kongo template, GVIII brand) */
/* Fonts: Playfair Display (display serif) + Jost (body) via Google Fonts link in HTML */

:root {
  --red: #1D1B18;            /* brand ink — GVIII is monochrome; token name kept from template */
  --red-dark: #000000;
  --dark: #131110;
  --grey: #979796;
  --grey-text: #6E6E6E;
  --card: #F7F6F3;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --body: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cond: "Jost", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow-card: 0 2px 6px rgba(0,0,0,.06), 0 12px 28px rgba(0,0,0,.09);
  --shadow-card-hover: 0 4px 10px rgba(0,0,0,.08), 0 18px 40px rgba(0,0,0,.14);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: #111; background: #fff; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.btn-red:hover { background: var(--red-dark); }
.btn-ghost { border: 1.5px solid #1b1b1b; color: #1b1b1b; background: transparent; }
.btn-ghost:hover { background: #1b1b1b; color: #fff; }
.btn-ghost-red { border: 1.5px solid var(--red); color: var(--red); background: transparent; }
.btn-ghost-red:hover { background: var(--red); color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  height: 79px;
  border-bottom: 1px solid #ECEAE6;
}
.header-inner {
  max-width: 1265px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 63px; height: auto; }
.brand span {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: 2px;
  color: #131110;
  font-weight: 700;
  white-space: nowrap;
}
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a {
  font-family: var(--cond);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #57544F;
  transition: color .15s ease;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active { color: #131110; border-bottom-color: #131110; }
.header-socials { display: flex; gap: 14px; align-items: center; }
.header-socials .soc { color: #131110; width: 24px; height: 24px; transition: color .15s ease, transform .15s ease; }
.header-socials .soc:hover { color: #8a8783; transform: scale(1.12); }
.header-socials svg { width: 100%; height: 100%; }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px 60px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -6px;
  background: url("assets/hero.jpg") center/cover no-repeat;
  filter: blur(2.5px) brightness(.42) saturate(.85);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.45) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 1140px; }
.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 3px 6px rgba(0,0,0,.5), 0 10px 34px rgba(0,0,0,.65);
}
.hero-sub {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 20px);
  text-transform: uppercase;
  color: #E8E4DD;
  margin-top: 16px;
  letter-spacing: 4.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,.55), 0 6px 22px rgba(0,0,0,.6);
}
.hero-body {
  font-size: 16px;
  line-height: 1.6;
  color: #f2f2f2;
  max-width: 640px;
  margin: 14px auto 0;
}
.hero-trust {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 26px 0 30px;
  color: #F2EFE9;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
.ht-stars { color: #E4C776; letter-spacing: 2px; }
.ht-sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.55); }
.btn-hero { min-width: 300px; font-size: 15.5px; padding: 16px 34px; letter-spacing: 2px; text-transform: uppercase; background: #fff; color: #131110; box-shadow: 0 10px 30px rgba(0,0,0,.35); }
.btn-hero:hover { background: #131110; color: #fff; }

/* ---------- section headings ---------- */
.kicker {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9C9C9A;
  text-align: center;
  margin-bottom: 12px;
}
.h-display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 54px);
  text-align: center;
  letter-spacing: .3px;
  color: #131110;
  text-wrap: balance;
}
.h-display::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin: 18px auto 0;
  background: #131110;
}
.section-sub {
  font-size: clamp(16px, 1.6vw, 20px);
  text-align: center;
  color: #1b1b1b;
  max-width: 760px;
  margin: 12px auto 0;
  line-height: 1.55;
}

/* ---------- gallery ---------- */
.gallery { padding: 72px 20px 56px; }
.gallery-grid {
  max-width: 1220px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.gallery-grid button {
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}
.gallery-grid button:hover img { transform: scale(1.06); filter: brightness(1.06); }
.gallery-cta { text-align: center; margin-top: 32px; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lb-img {
  max-width: min(88vw, 1100px);
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 0;
  cursor: pointer;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--red); }
.lb-close { top: 22px; right: 26px; font-size: 32px; }
.lb-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lb-count {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: #bbb;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ---------- locations ---------- */
.locations { padding: 64px 20px 72px; background: #F2F2EF; }
.loc-grid {
  max-width: 960px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.loc-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.loc-card img { width: 100%; aspect-ratio: 403/300; object-fit: cover; }
.loc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.loc-label { font-size: 12px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.loc-name { font-family: var(--display); font-weight: 700; font-size: 28px; margin-top: 4px; color: #1b1b1b; letter-spacing: .5px; }
.loc-addr { font-size: 14px; margin-top: 8px; line-height: 1.55; color: var(--grey-text); }
.loc-hours-label { font-weight: 700; font-size: 13px; margin-top: 14px; text-transform: uppercase; letter-spacing: .5px; }
.loc-hours { list-style: none; font-size: 14px; line-height: 1.65; margin-top: 4px; color: var(--grey-text); }
.loc-btns { display: flex; gap: 12px; margin-top: auto; padding-top: 18px; flex-wrap: wrap; }
.loc-btns .btn { padding: 11px 20px; font-size: 14px; flex: 1; min-width: 130px; }

/* ---------- team parallax ---------- */
.team-parallax {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("assets/banner-cta.jpg") center/cover no-repeat fixed;
}
.team-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,.72);
}
.team-parallax-inner { position: relative; padding: 60px 20px; }
.parallax-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(38px, 5vw, 66px);
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 3px 6px rgba(0,0,0,.55), 0 10px 30px rgba(0,0,0,.65);
}
.parallax-sub {
  color: #eee;
  font-size: clamp(15px, 1.5vw, 18px);
  margin-top: 10px;
  letter-spacing: .3px;
}

/* ---------- team / shops ---------- */
.shops-wrap { padding: 26px 0 10px; }
.shop-section { padding: 40px 20px 26px; }
.shop-heading {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  color: var(--red);
  text-align: center;
  letter-spacing: 1.5px;
  text-wrap: balance;
}
.shop-heading::after {
  content: "";
  display: block;
  width: 44px;
  height: 3.5px;
  margin: 12px auto 0;
  background: var(--red);
  transform: skewX(-24deg);
  border-radius: 1px;
  opacity: .85;
}
.shop-addr { text-align: center; font-size: 15px; color: var(--grey-text); margin: 12px 0 8px; }
.shop-toggle { display: none; }
.barber-grid {
  max-width: 1080px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.barber-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 34px 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.barber-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.barber-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.barber-role {
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--grey-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.barber-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  color: #1b1b1b;
  margin-top: 2px;
  letter-spacing: .5px;
}
.barber-bio { font-size: 13px; line-height: 1.55; margin-top: 10px; text-align: left; width: 100%; max-width: 420px; }
.barber-bio .bio-handle { display: block; text-align: center; color: var(--red); font-weight: 700; margin-bottom: 6px; transition: opacity .15s ease; }
a.bio-handle:hover { opacity: .75; text-decoration: underline; }
.barber-bio .bio-rule { display: block; text-align: center; color: #d8d5d0; letter-spacing: -1px; margin-bottom: 8px; }
.barber-bio .bio-line { display: block; margin-top: 5px; color: #333; }
.barber-bio .bio-line strong { color: #111; }
.btn-book { margin-top: 18px; padding: 12px 44px; font-size: 14px; }

/* ---------- trust / reviews ---------- */
.trust { padding: 72px 20px 64px; background: #F2F2EF; }
.trust-flex {
  max-width: 980px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.trust-flex:has(.trust-awards) { max-width: 1160px; grid-template-columns: 300px 1fr 1fr; }
.trust-awards {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.trust-awards img { width: 150px; height: auto; filter: drop-shadow(0 6px 14px rgba(0,0,0,.18)); }
.review-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.review-head { display: flex; align-items: baseline; gap: 12px; }
.review-rating { font-size: 44px; font-weight: 700; color: #1b1b1b; line-height: 1; }
.review-meta { font-size: 13px; color: var(--grey-text); }
.review-stars { color: #F5B01E; font-size: 18px; letter-spacing: 2px; margin-top: 2px; }
.review-quotes { list-style: none; margin-top: 16px; }
.review-quotes li {
  font-size: 13.5px;
  line-height: 1.5;
  color: #333;
  padding: 9px 0;
  border-top: 1px solid #eee;
}
.review-quotes li::before { content: "\201C"; color: var(--red); font-weight: 700; margin-right: 4px; }
.trust-google { text-align: center; margin-top: 26px; font-size: 14px; }
.trust-google a { color: var(--red); font-weight: 700; }
.trust-google a:hover { text-decoration: underline; }
.quotes {
  max-width: 1000px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.quote {
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 24px 26px;
}
.quote blockquote { font-size: 15.5px; line-height: 1.65; font-style: italic; color: #222; }
.quote figcaption { margin-top: 12px; font-weight: 700; font-size: 14px; color: var(--red); }

/* ---------- cta ---------- */
.cta { padding: 64px 20px 12px; }
.cta-band { background: var(--dark); color: #fff; margin-top: 44px; }
.cta-band .btn-red { background: #fff; color: #131110; }
.cta-band .btn-red:hover { background: #E4C776; color: #131110; }
.cta-cols {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 52px 24px;
  text-align: center;
}
.cta-col h2 { font-family: var(--display); font-weight: 700; font-size: 33px; letter-spacing: 1.5px; }
.cta-col p { font-size: 15px; margin-top: 8px; color: #cfcfcf; }
.cta-col .btn { margin-top: 16px; }
.cta-phone { margin-top: 10px; }
.cta-phone a { color: #fff; }
.cta-phone a:hover { color: #E4C776; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--grey); padding: 60px 24px 30px; border-top: 1px solid #2c2c2c; }
.footer-cols {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.f-col h6 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 14px; letter-spacing: .5px; }
.f-col p { font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.f-col a:hover { color: #fff; }
.copyright {
  text-align: center;
  font-size: 13px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid #333;
}

/* ---------- interior pages ---------- */
.page-head { padding: 64px 20px 8px; }
.page-head .section-sub { color: var(--grey-text); }

.services { padding: 40px 20px 72px; }
.service-grid {
  max-width: 1080px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 38px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.service-name { font-family: var(--display); font-weight: 700; font-size: 30px; letter-spacing: 1px; color: #1b1b1b; }
.service-price { font-family: var(--display); font-weight: 700; font-size: 44px; color: var(--red); margin-top: 8px; }
.service-desc { font-size: 14px; line-height: 1.6; color: #444; margin: 14px 0 20px; }
.service-card .btn { margin-top: auto; padding: 12px 40px; }

.blog { padding: 40px 20px 72px; }
.blog-grid {
  max-width: 1160px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ececea;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.post-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.post-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-date { font-size: 12px; color: var(--grey-text); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.post-title { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: .5px; color: #1b1b1b; margin-top: 6px; line-height: 1.1; }
.post-desc { font-size: 13.5px; line-height: 1.55; color: #444; margin-top: 10px; }
.post-more { color: var(--red); font-weight: 700; font-size: 13.5px; margin-top: auto; padding-top: 14px; }

.article { max-width: 760px; margin: 0 auto; padding: 64px 22px 72px; }
.article-title { text-align: center; }
.article-title::after { margin-bottom: 4px; }
.article-date { text-align: center; margin-top: 14px; }
.article-hero { width: 100%; border-radius: var(--radius); margin: 28px 0 8px; box-shadow: var(--shadow-card); }
.article-body { margin-top: 22px; }
.article-body h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: .5px;
  color: var(--red);
  margin: 30px 0 10px;
}
.article-body p { font-size: 15.5px; line-height: 1.75; color: #222; margin-bottom: 14px; }
.article-body ul { margin: 0 0 14px 22px; }
.article-body li { font-size: 15.5px; line-height: 1.7; color: #222; margin-bottom: 8px; }
.article-back { margin-top: 34px; }
.article-back a { color: var(--red); font-weight: 700; font-size: 14.5px; }
.article-back a:hover { text-decoration: underline; }

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

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .header-inner { gap: 14px; }
  .header-socials { display: none; }
  .main-nav {
    position: fixed;
    top: 79px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 14px;
    display: none;
    z-index: 80;
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 26px; font-size: 18px; color: #E8E4DD; border-bottom: 0; }
  .main-nav a:hover, .main-nav a.active { color: #fff; border-bottom: 0; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    align-items: center;
  }
  .nav-toggle span { display: block; width: 24px; height: 2.5px; background: #131110; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .kicker { font-size: 11px; letter-spacing: 3px; }
  .h-display { letter-spacing: .5px; padding: 0 10px; }
  .h-display::after { margin-top: 14px; }

  /* mobile gallery: swipeable snap carousel */
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding: 4px 8px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-grid button {
    flex: 0 0 78vw;
    scroll-snap-align: center;
    aspect-ratio: 1;
    border-radius: 14px;
  }
  .loc-grid, .cta-cols, .footer-cols, .quotes, .service-grid, .blog-grid { grid-template-columns: 1fr; }
  .trust-flex { grid-template-columns: 1fr; }
  .trust-awards { flex-direction: row; }
  .barber-grid { grid-template-columns: 1fr; max-width: 480px; }
  .team-parallax { background-attachment: scroll; }

  /* compact mobile shops: collapsed accordions */
  .shop-section { padding: 14px 16px; }
  .shop-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border: 0;
    background: var(--dark);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    text-align: left;
    box-shadow: var(--shadow-card);
  }
  .shop-toggle img { width: 108px; height: 84px; object-fit: cover; flex: 0 0 108px; }
  .shop-toggle .st-text { flex: 1; padding: 8px 0; }
  .shop-toggle .st-name { font-family: var(--display); font-size: 24px; color: #fff; letter-spacing: 1px; display: block; }
  .shop-toggle .st-count { font-size: 12.5px; color: #b9b9b9; display: block; margin-top: 2px; }
  .shop-toggle .st-chev { margin-right: 16px; color: var(--red); font-size: 20px; transition: transform .25s ease; }
  .shop-section.open .st-chev { transform: rotate(90deg); }
  .shop-section .shop-heading, .shop-section .shop-addr { display: none; }
  .shop-section .barber-grid { display: none; }
  .shop-section.open .barber-grid { display: grid; margin-top: 20px; }
}
