/* ═══════════════════════════════════════════════════════
   FANATICS — INNER PAGES STYLESHEET
   Shared styles for all non-homepage pages
   ═══════════════════════════════════════════════════════ */

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(230,30,30,.08), transparent 70%),
    var(--bg-surface);
  overflow: hidden;
  border-bottom: 1px solid var(--white-10);
}
@media (max-width: 900px) {
  .page-hero { padding-top: 180px; }
}
.page-hero::before {
  content: attr(data-title);
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(7rem, 20vw, 16rem);
  letter-spacing: 12px;
  color: rgba(230,30,30,.05);
  pointer-events: none;
  white-space: nowrap;
}
.page-hero-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--white-60);
  margin-bottom: 28px;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--white-75); transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-sep { color: var(--white-20); }
.breadcrumb-current { color: var(--gold); font-weight: 600; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}
.page-title em {
  font-style: italic;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-subtitle {
  font-size: clamp(1.075rem, 1.6vw, 1.2rem);
  color: var(--white-85);
  max-width: 62ch;
  line-height: 1.75;
  margin-bottom: 36px;
}
.page-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SERVICE DETAIL PAGE ─────────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; } }

.service-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 48px 0 18px;
  line-height: 1.2;
}
.service-content h2:first-child { margin-top: 0; }
.service-content p {
  color: var(--white-85);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: var(--text-body-lg);
  max-width: 65ch;
}
.service-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 24px;
}
.service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--white-85);
  font-size: 1.025rem;
  line-height: 1.65;
}
.service-content ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.service-content .highlight-box {
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  color: var(--white-90);
  line-height: 1.7;
}
.service-content .highlight-box strong { color: var(--gold); }

/* Sidebar booking card */
.booking-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-card {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(230,30,30,.08), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--gold-30);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--shadow-card);
}
.booking-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.booking-card-price .price-from { font-size: 0.85rem; color: var(--white-75); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.booking-card-price .price-amount {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 2px;
  line-height: 1;
}
.booking-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.booking-card-features { display: flex; flex-direction: column; gap: 12px; }
.booking-card-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.95rem; color: var(--white-85);
}
.booking-card-feature svg { color: var(--gold); flex-shrink: 0; }
.booking-card .btn-primary { width: 100%; justify-content: center; }
.booking-card .btn-secondary { width: 100%; justify-content: center; }
.other-services-card {
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.other-services-card h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 16px;
}
.other-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--white-05);
  font-size: 0.9rem;
  color: var(--white-70);
  transition: color .2s ease;
}
.other-service-link:last-child { border-bottom: none; }
.other-service-link:hover { color: var(--gold); }
.other-service-link span { color: var(--gold); font-weight: 600; }

/* ── BARBER PROFILE PAGE ─────────────────────────────── */
.barber-profile-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .barber-profile-grid { grid-template-columns: 1fr; } }
.barber-profile-img {
  position: sticky;
  top: 100px;
}
.barber-profile-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--white-05);
}
.barber-profile-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.barber-badge {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--gold-20); color: var(--gold);
}
.barber-profile-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; color: var(--white);
  margin: 36px 0 12px;
}
.barber-profile-content h2:first-child { margin-top: 0; }
.barber-profile-content p { color: var(--white-85); line-height: 1.85; margin-bottom: 16px; font-size: var(--text-body-lg); max-width: 60ch; }
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.specialty-item {
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius);
  padding: 16px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; color: var(--white-70);
  transition: border-color .2s ease;
}
.specialty-item:hover { border-color: var(--gold-20); }
.specialty-item svg { color: var(--gold); flex-shrink: 0; }
@media (max-width: 560px) { .specialties-grid { grid-template-columns: 1fr; } }

/* Barber portfolio mini-gallery */
.barber-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 16px 0 32px;
}
.barber-portfolio figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--white-10);
  transition: transform var(--transition), border-color var(--transition);
}
.barber-portfolio figure:hover {
  transform: translateY(-3px);
  border-color: var(--gold-30);
}
.barber-portfolio img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.barber-portfolio figure:hover img { transform: scale(1.06); }
@media (max-width: 600px) { .barber-portfolio { grid-template-columns: repeat(2, 1fr); } }

/* Inline code in barber/page text */
.barber-profile-content code,
.guide-block code,
section code {
  font-family: 'Bebas Neue', monospace;
  background: var(--gold-10);
  color: var(--gold-light);
  border: 1px solid var(--gold-30);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-size: 0.95em;
}

/* ── BLOG / TIPS PAGE ────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
/* When exactly 6 blog cards: force 3+3 on desktop */
@media (min-width: 980px) {
  .blog-grid:has(> *:nth-child(6)):not(:has(> *:nth-child(7))),
  .blog-grid:has(> *:nth-child(3)):not(:has(> *:nth-child(4))),
  .blog-grid:has(> *:nth-child(9)) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px; display: block;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white); line-height: 1.25;
  margin-bottom: 12px;
  transition: color .25s ease;
}
.blog-card:hover .blog-card-title { color: var(--gold-light); }
.blog-card-excerpt { font-size: 0.95rem; color: var(--white-85); line-height: 1.65; margin-bottom: 18px; }
.blog-card-meta { font-size: 0.78rem; color: var(--white-60); display: flex; gap: 12px; letter-spacing: 0.05em; }

/* ── BLOG ARTICLE PAGE ───────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .article-grid { grid-template-columns: 1fr; } }
.article-body h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -0.015em;
  margin: 56px 0 18px; line-height: 1.2;
}
.article-body h3 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--gold-light);
  margin: 36px 0 14px;
}
.article-body p {
  color: var(--white-85);
  line-height: 1.85;
  margin-bottom: 22px;
  font-size: var(--text-body-lg);
  max-width: 65ch;
}
.article-body ul, .article-body ol {
  margin: 18px 0 28px 0;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 65ch;
}
.article-body ul li, .article-body ol li {
  color: var(--white-85); font-size: 1.025rem; line-height: 1.7;
  padding-left: 22px; position: relative;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
}
.article-body ol { counter-reset: li; }
.article-body ol li::before {
  content: counter(li) '.'; counter-increment: li;
  position: absolute; left: 0; color: var(--gold);
  font-weight: 700; font-size: 0.9rem;
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-10), transparent);
  padding: 24px 32px; margin: 36px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.25rem; font-style: italic;
  color: var(--white-95); line-height: 1.6;
  max-width: 65ch;
}
.article-body img {
  width: 100%; border-radius: var(--radius-lg);
  margin: 28px 0; border: 1px solid var(--white-05);
}
.article-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--bg-card); border: 1px solid var(--white-05);
  border-radius: var(--radius-lg); padding: 24px;
}
.sidebar-card h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.sidebar-book-card {
  background: linear-gradient(135deg, rgba(220,31,31,.15), var(--bg-card));
  border-color: var(--gold-20) !important;
  text-align: center;
}
.sidebar-book-card p { font-size: 0.88rem; color: var(--white-70); margin-bottom: 16px; line-height: 1.6; }
.sidebar-book-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 10px; }
.related-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--white-05); }
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.related-post img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.related-post-info a { font-size: 0.85rem; color: var(--white-70); line-height: 1.4; display: block; transition: color .2s ease; }
.related-post-info a:hover { color: var(--gold); }
.related-post-info span { font-size: 0.72rem; color: var(--white-40); }

/* ── LOCATION / AREA PAGE ────────────────────────────── */
.location-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 860px) { .location-intro { grid-template-columns: 1fr; gap: 40px; } }
.location-map { border-radius: var(--radius-lg); overflow: hidden; height: 420px; border: 1px solid var(--white-05); }
.location-map iframe { display: block; width: 100%; height: 100%; }
.nearby-areas-grid {
  display: grid;
  /* auto-fit + minmax keeps cards a sensible width and distributes 4/5/6/9 items symmetrically */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
/* Force 3-col on common laptops/desktops for 6-card sections (3+3) */
@media (min-width: 900px) and (max-width: 1240px) {
  .nearby-areas-grid:has(> *:nth-child(6)):not(:has(> *:nth-child(7))) {
    grid-template-columns: repeat(3, 1fr);
  }
  .nearby-areas-grid:has(> *:nth-child(9)) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) { .nearby-areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .nearby-areas-grid { grid-template-columns: 1fr; } }
.area-card {
  background: var(--bg-card); border: 1px solid var(--white-05);
  border-radius: var(--radius); padding: 20px;
  text-align: center; transition: border-color .2s ease;
}
.area-card:hover { border-color: var(--gold-20); }
.area-card a { display: block; }
.area-card strong { display: block; font-size: 1.05rem; color: var(--white); margin-bottom: 6px; font-weight: 700; }
.area-card span { font-size: 0.85rem; color: var(--white-85); }
.area-distance { font-size: 0.75rem; color: var(--gold-light); margin-top: 8px; display: block; letter-spacing: 0.05em; }

/* ── REVIEWS PAGE ────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}
@media (max-width: 800px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,30,30,.06), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 16px;
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 1;
  color: rgba(230,30,30,.10);
  font-weight: 900;
  pointer-events: none;
}
.review-card:hover {
  border-color: var(--gold-30);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.review-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--white-95);
  line-height: 1.65;
  font-style: italic;
  margin: 18px 0 24px;
  position: relative;
}
.reviews-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding: 48px 24px;
  border-top: 1px solid var(--white-10);
}
.reviews-more p {
  font-size: 1.05rem;
  color: var(--white-85);
}
.reviews-more-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.reviews-source-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  color: var(--white-85);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.reviews-source-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-10);
  transform: translateY(-2px);
}

/* ── GROOMING GUIDE PAGE ──────────────────────────────── */
.guide-block {
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--white-10);
  position: relative;
}
.guide-block:last-of-type { border-bottom: none; }
.guide-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 12px;
}
.guide-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}
.guide-block p {
  font-size: var(--text-body-lg);
  color: var(--white-85);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 65ch;
}
.guide-block p strong { color: var(--gold-light); }
.guide-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 8px;
  max-width: 65ch;
}
.guide-list li {
  list-style: none;
  padding-left: 22px;
  position: relative;
  font-size: var(--text-body);
  color: var(--white-85);
  line-height: 1.7;
}
.guide-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-30);
}
.guide-list li strong { color: var(--white); font-weight: 700; }
.guide-coupon {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 28px;
  background:
    radial-gradient(ellipse 100% 100% at 0% 50%, rgba(230,30,30,.20), transparent 70%),
    var(--bg-elevated);
  border: 2px dashed var(--gold-30);
  border-radius: var(--radius-lg);
  margin-top: 16px;
  flex-wrap: wrap;
}
.guide-coupon .coupon-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: var(--grad-brand);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 4px;
}
.guide-coupon strong {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}
.guide-coupon span { color: var(--white-85); font-size: 0.98rem; flex: 1; min-width: 200px; }
.guide-coupon code {
  display: inline-block;
  font-family: 'Bebas Neue', monospace;
  letter-spacing: 0.1em;
  background: var(--gold);
  color: #FFFFFF;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 1.05em;
}

/* ═══════════════════════════════════════════════════
   BOOKING WIZARD
   ═══════════════════════════════════════════════════ */
.page-hero--compact { padding-bottom: 60px; }

.bk-progress {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
  counter-reset: bkstep;
  background: var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bk-step {
  flex: 1;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white-60);
  border-right: 1px solid var(--white-10);
  position: relative;
}
.bk-step:last-child { border-right: 0; }
.bk-step span {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  font-size: 0.85rem;
  font-weight: 700;
}
.bk-step--active { color: var(--white); background: rgba(230,30,30,.08); }
.bk-step--active span { background: var(--grad-brand); color: #fff; border-color: transparent; }
.bk-step--done { color: var(--gold-light); }
.bk-step--done span { background: var(--gold-10); border-color: var(--gold-30); color: var(--gold-light); }
.bk-step--done span::before { content: '✓'; }
.bk-step--done span > * { display: none; }
@media (max-width: 700px) {
  .bk-step { padding: 12px 10px; font-size: 0.72rem; }
  .bk-step span { width: 24px; height: 24px; font-size: 0.75rem; }
}

.bk-pane { background: var(--bg-card); border: 1px solid var(--white-10); border-radius: var(--radius-lg); padding: 40px 36px; }
.bk-pane[hidden] { display: none; }
.bk-h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -0.015em; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.bk-h2 em { font-style: italic; background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bk-h2--center { text-align: center; }
.bk-sub { font-size: var(--text-body); color: var(--white-85); line-height: 1.65; margin-bottom: 28px; }
.bk-sub--center { text-align: center; }
.bk-sub code { font-family: 'Bebas Neue', monospace; background: var(--gold-10); color: var(--gold-light); border: 1px solid var(--gold-30); padding: 2px 8px; border-radius: 4px; letter-spacing: 0.08em; }
.bk-sub strong { color: var(--gold-light); }

.bk-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 9 services = 3+3+3 */
  gap: 14px;
}
@media (max-width: 800px) { .bk-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bk-service-grid { grid-template-columns: 1fr; } }

.bk-service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  text-align: left; color: var(--white);
  transition: all var(--transition);
  cursor: pointer;
  min-height: 130px;
}
.bk-service-card:hover { border-color: var(--gold-30); background: var(--bg-card); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.bk-service-card.selected { border-color: var(--gold); background: rgba(230,30,30,.08); box-shadow: 0 0 0 1px var(--gold), 0 12px 28px rgba(230,30,30,.18); }
.bk-service-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--white); line-height: 1.25; }
.bk-service-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.bk-service-duration { font-size: 0.78rem; color: var(--white-60); letter-spacing: 0.05em; }
.bk-service-price { font-family: var(--font-heading); font-size: 1.4rem; background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: 1px; }
.bk-service-desc { font-size: 0.82rem; color: var(--white-75); line-height: 1.5; margin-top: 4px; }

.bk-barber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .bk-barber-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .bk-barber-grid { grid-template-columns: 1fr; } }
.bk-barber-card {
  background: var(--bg-elevated);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 24px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; color: var(--white);
  cursor: pointer; transition: all var(--transition); min-height: 240px;
}
.bk-barber-card:hover { border-color: var(--gold-30); transform: translateY(-3px); }
.bk-barber-card.selected { border-color: var(--gold); background: rgba(230,30,30,.08); box-shadow: 0 0 0 1px var(--gold), 0 12px 28px rgba(230,30,30,.18); }
.bk-barber-img { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-30); display: flex; align-items: center; justify-content: center; background: var(--bg-card); color: var(--gold); }
.bk-barber-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bk-barber-img--any { border-style: dashed; }
.bk-barber-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.bk-barber-title { font-size: 0.78rem; color: var(--white-75); letter-spacing: 0.05em; }

.bk-date-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; max-width: 320px; }
.bk-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
#bkDate {
  background: var(--bg-elevated); border: 1px solid var(--white-20); border-radius: var(--radius);
  padding: 14px 16px; color: var(--white); font-family: var(--font-body); font-size: 1rem;
  color-scheme: dark;
}
#bkDate:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-10); }

.bk-slots-wrap { min-height: 80px; }
#bkSlotsLoading, #bkSlotsEmpty { color: var(--white-75); font-size: 0.95rem; padding: 16px 0; }
.bk-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.bk-slot {
  padding: 12px 8px;
  background: var(--bg-elevated);
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.bk-slot:hover { border-color: var(--gold-30); background: var(--gold-10); color: var(--gold-light); }
.bk-slot.selected { border-color: var(--gold); background: var(--grad-brand); color: #fff; box-shadow: 0 4px 16px rgba(230,30,30,.30); }

.bk-form { display: flex; flex-direction: column; gap: 16px; }
.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .bk-field-row { grid-template-columns: 1fr; } }
.bk-field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.bk-field-hint { font-size: 0.65rem; color: var(--white-60); font-weight: 500; text-transform: none; letter-spacing: 0; }
.bk-field input, .bk-field textarea {
  background: var(--bg-elevated); border: 1px solid var(--white-20); border-radius: var(--radius);
  padding: 14px 16px; color: var(--white); font-family: var(--font-body); font-size: 1rem;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.bk-field input::placeholder, .bk-field textarea::placeholder { color: var(--white-40); }
.bk-field input:focus, .bk-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-10); }
.bk-field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }

.bk-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--grad-brand); color: #fff;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 24px; border-radius: var(--radius);
  transition: transform var(--transition), filter var(--transition), box-shadow var(--transition);
  min-height: 56px;
  box-shadow: 0 8px 24px rgba(230,30,30,.30), inset 0 1px 0 rgba(255,255,255,.20);
  border: none; cursor: pointer; margin-top: 8px;
}
.bk-submit:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.bk-submit:disabled { opacity: .7; cursor: progress; }
.bk-fine { font-size: 0.78rem; color: var(--white-60); text-align: center; margin-top: 8px; }
.bk-fine a { color: var(--gold-light); }

.bk-nav { margin-top: 28px; }
.bk-back {
  background: transparent; border: 1px solid var(--white-20); color: var(--white-85);
  padding: 10px 18px; border-radius: var(--radius); font-size: 0.85rem;
  cursor: pointer; transition: all var(--transition);
}
.bk-back:hover { border-color: var(--gold-30); color: var(--gold-light); }

.bk-pane--success { text-align: center; padding: 56px 36px; }
.bk-success-icon { margin-bottom: 12px; }
.bk-receipt {
  background: var(--bg-elevated);
  border: 1px solid var(--gold-30);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.bk-receipt-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--white-05);
}
.bk-receipt-row:last-child { border-bottom: none; }
.bk-receipt-row span { color: var(--white-75); font-size: 0.88rem; letter-spacing: 0.05em; text-transform: uppercase; }
.bk-receipt-row strong { color: var(--white); font-size: 0.98rem; text-align: right; }
.bk-done-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

.bk-status { padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.bk-status--confirmed { background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.30); }
.bk-status--pending { background: rgba(234,179,8,.15); color: #fde047; border: 1px solid rgba(234,179,8,.30); }
.bk-status--completed { background: var(--gold-10); color: var(--gold-light); border: 1px solid var(--gold-30); }
.bk-status--canceled { background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.30); }
.bk-status--no_show { background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.30); }

.bk-cancel-btn {
  background: transparent;
  border: 1px solid rgba(239,68,68,.35);
  color: #f87171;
  padding: 14px 24px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  cursor: pointer; transition: all var(--transition); min-height: 48px; width: 100%;
}
.bk-cancel-btn:hover { background: rgba(239,68,68,.10); color: #fca5a5; }

/* Print-friendly grooming guide */
@media print {
  body { background: white !important; color: black !important; cursor: auto !important; }
  .trust-bar, #navbar, footer, .back-to-top, .mobile-cta-bar, .page-hero, .lead-modal, .cursor-dot, .cursor-ring, #preloader { display: none !important; }
  .guide-block { page-break-inside: avoid; }
  .guide-block h2, .guide-block p, .guide-list li { color: black !important; }
}

/* ── SERVICES OVERVIEW PAGE ──────────────────────────── */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 6 items = 3+3 perfect on desktop */
  gap: 24px;
}
/* If 4 items, prefer 2+2 over 3+1 on desktop */
@media (min-width: 900px) {
  .services-page-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 880px;
    margin-left: auto; margin-right: auto;
  }
}
@media (max-width: 900px) { .services-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-page-grid { grid-template-columns: 1fr; } }
.service-page-card {
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  display: block;
}
.service-page-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.service-page-card-img { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-page-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-page-card:hover .service-page-card-img img { transform: scale(1.06); }
.service-page-card-body { padding: 24px; }
.service-page-card-body h3 {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 800; letter-spacing: -0.01em;
  color: var(--white); margin-bottom: 10px;
}
.service-page-card-body p { font-size: 0.95rem; color: var(--white-85); line-height: 1.65; margin-bottom: 18px; }
.service-page-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--white-10); }
.service-page-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}
.service-page-link { font-size: 0.85rem; color: var(--gold-light); font-weight: 700; letter-spacing: 0.05em; display: flex; align-items: center; gap: 6px; text-transform: uppercase; }
.service-page-card:hover { transform: translateY(-6px); border-color: var(--gold-30); box-shadow: var(--shadow-card-hover); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-page-grid { grid-template-columns: 1fr; } }
.contact-form {
  display: flex; flex-direction: column; gap: 20px;
  background: var(--bg-card); border: 1px solid var(--white-05);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-surface); border: 1px solid var(--white-20);
  border-radius: var(--radius); padding: 16px 18px;
  color: var(--white); font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--white-40); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 4px var(--gold-10);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-surface); }
.form-note { font-size: 0.78rem; color: var(--white-40); }
