/*
 * Faders Barber Studio Premium Production System
 * Global visual layer for the custom WordPress theme.
 */

:root {
  color-scheme: dark;
  --fb-black: #050505;
  --fb-charcoal: #0b0b0b;
  --fb-graphite: #11100f;
  --fb-smoke: #1c1a18;
  --fb-line: rgba(255, 255, 255, 0.12);
  --fb-line-strong: rgba(255, 255, 255, 0.22);
  --fb-text: #f7f2eb;
  --fb-muted: #c9beb1;
  --fb-dim: #8f857a;
  --fb-red: #d73535;
  --fb-red-deep: #8f1717;
  --fb-cream: #f2e7d6;
  --fb-bronze: #b98a4c;
  --fb-green: #8ecf98;
  --fb-display: "Space Grotesk", "Inter", sans-serif;
  --fb-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --fb-mono: "JetBrains Mono", ui-monospace, monospace;
  --fb-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fb-wrap: min(1180px, calc(100% - 40px));
  --fb-radius: 8px;
  --fb-section: clamp(78px, 10vw, 132px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--fb-black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px) 0 0 / 78px 78px,
    radial-gradient(circle at 8% 0%, rgba(215, 53, 53, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 16%, rgba(185, 138, 76, 0.09), transparent 29rem),
    linear-gradient(180deg, #050505 0%, #0d0c0b 44%, #050505 100%) !important;
  color: var(--fb-text);
  font-family: var(--fb-body);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

body.admin-bar .site-header {
  top: 32px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 5, 5, 0.82) !important;
  color: var(--fb-text);
  backdrop-filter: blur(22px);
}

body.admin-bar .topbar {
  top: 32px;
}

.topbar .nav {
  width: var(--fb-wrap);
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fb-red), var(--fb-red-deep));
  color: #fff;
  font-family: var(--fb-display);
  font-weight: 800;
  line-height: 1;
}

.brand strong {
  display: block;
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--fb-dim);
  font-family: var(--fb-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
}

.nav-links a {
  color: rgba(247, 242, 235, 0.68);
  font-family: var(--fb-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s var(--fb-ease);
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

::selection {
  background: rgba(215, 53, 53, 0.42);
  color: #fff;
}

:focus-visible {
  outline: 2px solid rgba(215, 53, 53, 0.86);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  width: 100%;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(5, 5, 5, 0.56) !important;
  color: var(--fb-text);
  backdrop-filter: blur(20px);
  transition: background 0.45s var(--fb-ease), border-color 0.45s var(--fb-ease), min-height 0.45s var(--fb-ease);
}

.site-header.is-scrolled {
  min-height: 68px;
  border-bottom-color: var(--fb-line);
  background: rgba(5, 5, 5, 0.86) !important;
}

.brand {
  min-width: 0;
  display: inline-flex !important;
  align-items: center;
  gap: 13px;
  color: var(--fb-text) !important;
  text-decoration: none;
}

.brand img {
  width: 42px !important;
  height: 42px !important;
  padding: 7px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.brand span {
  display: block;
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.brand span::after {
  content: "Largo, Florida";
  display: block;
  margin-top: 5px;
  color: var(--fb-dim);
  font-family: var(--fb-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions,
.hero-actions,
.seo-actions,
.faders-seo-actions,
.card-actions,
.profile-actions,
.review-actions,
.map-modal-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.button,
.header-call,
.header-book,
.header-directions,
.book-phone,
.book-now,
.service-pill,
.address-choice,
.faders-seo-button,
.footer-links a,
footer a,
.map-close {
  position: relative;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.065) !important;
  color: #fff !important;
  box-shadow: none;
  font-family: var(--fb-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.3s var(--fb-ease), border-color 0.3s var(--fb-ease), background 0.3s var(--fb-ease), box-shadow 0.3s var(--fb-ease);
}

.button::before,
.header-call::before,
.header-book::before,
.header-directions::before,
.book-phone::before,
.book-now::before,
.service-pill::before,
.address-choice::before,
.faders-seo-button::before,
.footer-links a::before,
footer a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-102%);
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: transform 0.6s var(--fb-ease);
}

.button:hover,
.header-call:hover,
.header-book:hover,
.header-directions:hover,
.book-phone:hover,
.book-now:hover,
.service-pill:hover,
.address-choice:hover,
.faders-seo-button:hover,
.footer-links a:hover,
footer a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.button:hover::before,
.header-call:hover::before,
.header-book:hover::before,
.header-directions:hover::before,
.book-phone:hover::before,
.book-now:hover::before,
.service-pill:hover::before,
.address-choice:hover::before,
.faders-seo-button:hover::before,
.footer-links a:hover::before,
footer a:hover::before {
  transform: translateX(102%);
}

.button.primary,
.header-book,
.book-now,
.faders-seo-button-primary {
  border-color: rgba(215, 53, 53, 0.58) !important;
  background: linear-gradient(135deg, var(--fb-red), var(--fb-red-deep)) !important;
  box-shadow: 0 18px 46px rgba(215, 53, 53, 0.22);
}

.button.dark,
.button.secondary,
.faders-seo-button:not(.faders-seo-button-primary) {
  background: rgba(255, 255, 255, 0.065) !important;
}

.eyebrow,
.faders-seo-eyebrow,
.location-booking-note,
.hero-note,
.keyword-list span,
.service-photo-card figcaption,
.gallery-silo-grid span,
.barber-card span,
.review-actions a,
.footer-links a {
  font-family: var(--fb-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.faders-seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d4c6b7 !important;
}

.eyebrow::before,
.faders-seo-eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--fb-red);
  box-shadow: 0 0 18px rgba(215, 53, 53, 0.55);
}

h1,
h2,
h3,
h4,
.faders-seo-title,
.seo-hero h1,
.section-heading h2,
.book-hero h1,
.book-location-card h2 {
  color: #fff !important;
  font-family: var(--fb-display);
  letter-spacing: -0.055em;
}

h1,
.seo-hero h1,
.book-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(4rem, 8vw, 8.3rem);
  font-weight: 700;
  line-height: 0.86;
}

h2,
.faders-seo-title,
.section-heading h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.94;
}

h3,
.book-location-card h2,
.location-card h3,
.profile-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1;
}

p,
li,
dd,
.seo-content,
.faders-seo-copy,
.book-hero p,
.section-heading p,
.intro p,
.shop-story-copy p,
.profile-card p,
.faq-item p,
.faders-seo-faq p,
.review-page-card p,
.book-location-card p,
.location-card p,
.service-photo-card figcaption {
  color: var(--fb-muted);
  font-family: var(--fb-body);
  line-height: 1.72;
}

.hero,
.seo-hero,
.book-hero {
  position: relative;
  width: var(--fb-wrap);
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(48px, 8vw, 112px) 0 clamp(42px, 7vw, 88px);
}

.seo-hero,
.book-hero {
  min-height: 62svh;
  grid-template-columns: 1fr;
  align-content: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-copy {
  order: 1;
  max-width: 720px;
}

.hero-copy p:not(.eyebrow):not(.hero-note),
.seo-hero > p:not(.eyebrow),
.book-hero > p:not(.eyebrow) {
  max-width: 650px;
  margin: 26px 0 30px;
  color: var(--fb-muted);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
  font-weight: 500;
  line-height: 1.72;
}

.hero-slideshow {
  order: 2;
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0 0 0 120px;
  background: var(--fb-smoke);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.5);
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%, 0 10%);
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.74), transparent 44%),
    linear-gradient(180deg, transparent 55%, rgba(5, 5, 5, 0.86));
  pointer-events: none;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.08) brightness(0.86);
  transform: scale(1.03);
}

.quick-panel {
  order: 3;
  grid-column: 2;
  align-self: end;
  width: min(420px, 88%);
  margin: -170px 0 54px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--fb-radius);
  background: rgba(9, 9, 9, 0.68);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(22px);
}

.quick-panel div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fb-muted);
}

.quick-panel div + div {
  margin-top: 12px;
}

.quick-panel svg {
  width: 18px;
  height: 18px;
  color: var(--fb-red);
}

.hero-note {
  max-width: 690px;
  margin-top: 18px;
  color: var(--fb-dim);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

.hero-note strong,
.hero-note a {
  color: var(--fb-text);
}

.section,
.split-section,
.today-flow,
.intro,
.conversion-band,
.hours-reviews,
.faders-seo-section,
.seo-detail-band,
.seo-link-grid,
.book-location-grid,
.faders-seo-merge {
  position: relative;
  width: var(--fb-wrap);
  margin: 0 auto;
  padding: var(--fb-section) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent !important;
}

.today-flow,
.intro,
.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.section-heading,
.faders-seo-shell > .faders-seo-section > .faders-seo-title,
.section > .section-heading {
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.section-heading p:not(.eyebrow) {
  max-width: 520px;
}

.service-pill-grid,
.search-intent-grid,
.gallery-silo-grid,
.location-grid,
.barber-grid,
.profile-layout,
.local-seo-grid,
.service-photo-grid,
.review-page-grid,
.faq-list,
.faders-seo-grid,
.faders-seo-service-grid,
.faders-seo-photo-grid,
.faders-seo-barber-grid,
.faders-seo-review-grid,
.book-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line);
}

.service-pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-pill,
.search-intent-grid a,
.gallery-silo-grid a,
.location-card,
.barber-card,
.profile-card,
.local-seo-grid > *,
.service-photo-card,
.review-page-card,
.faq-item,
.faders-seo-card,
.faders-seo-link,
.faders-seo-photo,
.faders-seo-review,
.faders-seo-faq,
.book-location-card,
.seo-nap,
.nap-card,
.hours,
.reviews {
  min-height: 180px;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.044) !important;
  color: var(--fb-text);
  box-shadow: none !important;
  transition: transform 0.35s var(--fb-ease), background 0.35s var(--fb-ease), filter 0.35s var(--fb-ease);
}

.service-pill,
.search-intent-grid a,
.gallery-silo-grid a,
.faders-seo-link,
.faders-seo-photo {
  justify-content: flex-start;
  align-items: flex-end;
  padding: 24px;
  text-align: left;
  text-decoration: none;
}

.service-pill:hover,
.search-intent-grid a:hover,
.gallery-silo-grid a:hover,
.location-card:hover,
.barber-card:hover,
.profile-card:hover,
.service-photo-card:hover,
.review-page-card:hover,
.faq-item:hover,
.faders-seo-card:hover,
.faders-seo-link:hover,
.faders-seo-photo:hover,
.faders-seo-review:hover,
.faders-seo-faq:hover,
.book-location-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.075) !important;
}

.service-photo-card,
.faders-seo-photo,
.story-image,
.shop-story-proof {
  overflow: hidden;
}

.service-photo-card img,
.faders-seo-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.9);
  transition: transform 0.8s var(--fb-ease), filter 0.8s var(--fb-ease);
}

.service-photo-card:hover img,
.faders-seo-photo:hover img {
  transform: scale(1.055);
  filter: saturate(0.95) contrast(1.1) brightness(0.96);
}

.shop-story-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: center;
}

.shop-story-copy {
  padding: clamp(28px, 4vw, 52px);
  border-left: 1px solid var(--fb-line);
}

.shop-story-proof {
  display: grid;
  gap: 1px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line);
}

.shop-story-proof span,
.faders-seo-pill,
.keyword-list span,
.location-barber-list span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 4px 4px 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  padding: 9px 12px;
  color: var(--fb-muted);
  font-family: var(--fb-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.today-flow-actions {
  display: grid;
  gap: 1px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line);
}

.today-flow-actions a {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.044);
  color: var(--fb-text);
  text-decoration: none;
  transition: background 0.35s var(--fb-ease), transform 0.35s var(--fb-ease);
}

.today-flow-actions a:hover {
  transform: translateX(-6px);
  background: rgba(255, 255, 255, 0.075);
}

.conversion-band {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025) !important;
}

.conversion-band div {
  border-left: 1px solid var(--fb-line);
  padding-left: 24px;
}

.hours-reviews {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line) !important;
}

.hours,
.reviews {
  padding: clamp(24px, 4vw, 38px);
}

.review-score-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line);
}

.review-score-grid a,
.reviews blockquote,
.faders-seo-review {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.044);
}

.reviews cite,
.faders-seo-review cite,
.review-page-card cite {
  color: var(--fb-bronze);
  font-family: var(--fb-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-content,
.faders-seo-shell {
  width: min(980px, 100%);
  margin: 0 auto;
}

.seo-content > article,
.seo-content > section,
.faders-seo-section {
  margin-block: clamp(54px, 7vw, 92px);
}

.seo-content h2,
.seo-content h3 {
  color: #fff;
}

.seo-nap,
.nap-card {
  padding: 24px;
}

.faders-locked-page,
.faders-locked-gallery-page {
  background: transparent !important;
}

.faders-locked-hero,
.faders-gallery-proof-hero {
  min-height: 58svh;
}

.faders-locked-hero {
  display: grid;
  align-content: center;
  width: var(--fb-wrap);
  padding-block: clamp(86px, 12vw, 168px);
}

.faders-locked-hero p:not(.eyebrow) {
  max-width: 760px;
}

.faders-locked-hero .seo-actions {
  max-width: 820px;
}

.faders-locked-hero .button {
  min-width: 0;
}

.faders-locked-page .section-heading {
  align-items: end;
}

.faders-locked-page .section-heading > p {
  max-width: 560px;
}

.faders-gallery-proof-hero > * {
  min-width: 0;
}

.faders-locked-proof-section,
.faders-locked-copy-section,
.faders-locked-faq-section,
.faders-locked-related-section,
.faders-gallery-proof-section,
.faders-gallery-copy-section,
.faders-gallery-faq-section,
.faders-gallery-related-section {
  width: var(--fb-wrap);
}

.faders-locked-photo-grid,
.faders-gallery-photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
}

.faders-locked-photo-grid .service-photo-card:first-child,
.faders-gallery-photo-grid .service-photo-card:first-child {
  grid-column: auto;
}

.faders-locked-related-section .gallery-silo-grid,
.faders-gallery-related-section .gallery-silo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
}

.faders-locked-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.faders-locked-card-grid article {
  min-height: clamp(220px, 24vw, 315px);
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms ease, background 220ms ease;
}

.faders-locked-card-grid article:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.faders-locked-card-grid span,
.faders-locked-guide-card span {
  color: var(--fb-red);
  font-family: var(--fb-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.faders-locked-card-grid h3 {
  margin: 0;
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.faders-locked-card-grid p {
  margin: 0;
  color: var(--fb-muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.faders-locked-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.faders-locked-guide-card {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.faders-locked-guide-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, rgba(214, 34, 34, 0.14), rgba(255, 255, 255, 0.04));
}

.faders-locked-guide-card strong {
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
}

.faders-locked-guide-card em {
  color: var(--fb-muted);
  font-style: normal;
  line-height: 1.5;
}

.faders-locked-copy-layout,
.faders-gallery-copy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
}

.faders-locked-copy-layout article,
.faders-gallery-copy-layout article {
  max-width: 760px;
}

.faders-locked-copy-layout article p:not(.eyebrow),
.faders-gallery-copy-layout article p:not(.eyebrow) {
  color: var(--fb-muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.faders-locked-copy-layout .seo-nap,
.faders-gallery-copy-layout .seo-nap {
  display: grid;
  gap: 12px;
  min-height: auto;
  position: sticky;
  top: 104px;
}

.faders-locked-copy-layout .seo-nap a,
.faders-locked-copy-layout .seo-nap span,
.faders-gallery-copy-layout .seo-nap a,
.faders-gallery-copy-layout .seo-nap span {
  color: var(--fb-muted);
  text-decoration: none;
}

.faq-list details {
  padding: clamp(20px, 3vw, 30px);
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.2;
}

.faq-list summary::marker {
  color: var(--fb-red);
}

.faders-guide-card {
  width: var(--fb-wrap);
  margin: clamp(42px, 6vw, 72px) auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--fb-line);
  background: rgba(255, 255, 255, 0.044);
  color: var(--fb-text);
}

.faders-guide-card h2 {
  max-width: 820px;
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--fb-display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.faders-guide-card p {
  max-width: 860px;
  color: var(--fb-muted);
}

.faders-guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faders-guide-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  font-family: var(--fb-display);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.address-link {
  color: var(--fb-cream);
}

.book-page {
  min-height: 100svh;
}

.book-location-card {
  padding: clamp(24px, 4vw, 38px);
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(18px);
}

.map-modal[hidden] {
  display: none;
}

.map-modal-card {
  width: min(520px, 100%);
  border: 1px solid var(--fb-line-strong);
  border-radius: var(--fb-radius);
  background: rgba(12, 12, 12, 0.96);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.5);
}

footer,
.site-footer {
  width: 100%;
  padding: clamp(46px, 6vw, 76px) max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #050505 !important;
  color: var(--fb-muted);
}

footer .footer-nap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 24px;
  border: 1px solid var(--fb-line);
  background: var(--fb-line);
}

footer .footer-nap address {
  margin: 0;
  padding: 22px;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.044) !important;
}

.mobile-action-bar,
.mobile-action-bar-legacy {
  position: fixed;
  z-index: 100;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--fb-line);
  border-radius: 18px;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
  transition: opacity 0.8s var(--fb-ease), transform 0.8s var(--fb-ease), filter 0.8s var(--fb-ease);
}

.premium-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .premium-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1100px) {
  .topbar .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .today-flow,
  .intro,
  .shop-story-grid,
  .hours-reviews,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-slideshow {
    min-height: 540px;
  }

  .quick-panel {
    grid-column: auto;
    width: auto;
    margin: -140px 20px 34px;
  }

  .service-pill-grid,
  .search-intent-grid,
  .gallery-silo-grid,
  .location-grid,
  .barber-grid,
  .profile-layout,
  .local-seo-grid,
  .service-photo-grid,
  .review-page-grid,
  .faq-list,
  .faders-gallery-photo-grid,
  .faders-seo-grid,
  .faders-seo-service-grid,
  .faders-seo-photo-grid,
  .faders-seo-barber-grid,
  .faders-seo-review-grid,
  .book-location-grid,
  footer .footer-nap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --fb-wrap: calc(100% - 28px);
    --fb-section: 72px;
  }

  body {
    padding-bottom: 76px;
    background:
      radial-gradient(circle at 18% 0%, rgba(215, 53, 53, 0.16), transparent 20rem),
      #050505 !important;
  }

  body.admin-bar .site-header,
  .site-header,
  .topbar {
    top: 0;
    min-height: 68px;
    padding-inline: 14px;
    background: rgba(5, 5, 5, 0.88) !important;
  }

  .topbar {
    padding-inline: 0;
  }

  .topbar .nav {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
  }

  .header-actions,
  .topbar .nav-actions {
    display: none;
  }

  .brand img {
    width: 38px !important;
    height: 38px !important;
  }

  .brand span {
    min-width: 0;
    font-size: 0.95rem;
  }

  .topbar .brand {
    max-width: 100%;
    gap: 10px;
  }

  .topbar .brand strong {
    font-size: clamp(0.9rem, 4.1vw, 1.02rem);
    white-space: normal;
  }

  .topbar .brand small {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .brand span::after {
    display: none;
  }

  .hero,
  .seo-hero,
  .book-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 34px 0 64px;
  }

  h1,
  .seo-hero h1,
  .book-hero h1 {
    font-size: clamp(3.1rem, 17vw, 5.1rem);
    line-height: 0.88;
  }

  h2,
  .faders-seo-title,
  .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 4rem);
  }

  .hero-slideshow {
    min-height: 390px;
    border-radius: 0 0 0 74px;
    clip-path: polygon(8% 0, 100% 0, 100% 92%, 0 100%, 0 12%);
  }

  .quick-panel {
    margin: -118px 14px 22px;
  }

  .hero-actions,
  .seo-actions,
  .faders-seo-actions,
  .card-actions,
  .profile-actions,
  .review-actions,
  .map-modal-actions,
  .footer-links {
    align-items: stretch;
  }

  .button,
  .header-call,
  .header-book,
  .header-directions,
  .book-phone,
  .book-now,
  .service-pill,
  .address-choice,
  .faders-seo-button {
    width: 100%;
  }

  .service-pill-grid,
  .search-intent-grid,
  .gallery-silo-grid,
  .location-grid,
  .barber-grid,
  .profile-layout,
  .local-seo-grid,
  .service-photo-grid,
  .review-page-grid,
  .faq-list,
  .faders-seo-grid,
  .faders-seo-service-grid,
  .faders-seo-photo-grid,
  .faders-seo-barber-grid,
  .faders-seo-review-grid,
  .book-location-grid,
  footer .footer-nap {
    grid-template-columns: 1fr;
  }

  .faders-locked-card-grid,
  .faders-locked-guide-grid {
    grid-template-columns: 1fr;
  }

  .faders-locked-card-grid article,
  .faders-locked-guide-card {
    min-height: 190px;
  }

  .faders-locked-copy-layout,
  .faders-gallery-copy-layout {
    grid-template-columns: 1fr;
  }

  .faders-locked-hero h1,
  .faders-gallery-proof-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.45rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .faders-locked-hero .eyebrow,
  .faders-gallery-proof-hero .eyebrow {
    flex-wrap: wrap;
  }

  .faders-locked-copy-layout .seo-nap,
  .faders-gallery-copy-layout .seo-nap {
    position: static;
  }

  .shop-story-copy {
    padding: 0;
    border-left: 0;
  }

  .mobile-action-bar {
    display: grid;
  }

  .mobile-action-bar a {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-family: var(--fb-display);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

.mobile-action-bar .mobile-action-primary,
.mobile-action-bar a:first-child {
  background: linear-gradient(135deg, var(--fb-red), var(--fb-red-deep));
}
}

@media (max-width: 460px) {
  .service-pill,
  .search-intent-grid a,
  .gallery-silo-grid a,
  .faders-seo-link,
  .faders-seo-photo,
  .location-card,
  .barber-card,
  .profile-card,
  .book-location-card,
  .faq-item,
  .faders-seo-faq {
    padding: 20px;
  }
}

/* Final live homepage lock: the indexed homepage still uses the gallery template classes. */
body.faders-gallery-home,
body.faders-gallery-home main {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) 0 0 / 78px 78px,
    radial-gradient(circle at 8% 0%, rgba(215, 53, 53, 0.16), transparent 34rem),
    radial-gradient(circle at 88% 16%, rgba(185, 138, 76, 0.09), transparent 29rem),
    linear-gradient(180deg, #050505 0%, #0d0c0b 44%, #050505 100%) !important;
  color: var(--fb-text) !important;
  font-family: var(--fb-body) !important;
}

body.faders-gallery-home .topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(5, 5, 5, 0.78) !important;
  box-shadow: none !important;
  color: var(--fb-text) !important;
  backdrop-filter: blur(20px);
}

body.admin-bar.faders-gallery-home .topbar {
  top: 32px;
}

body.faders-gallery-home .brand,
body.faders-gallery-home h1,
body.faders-gallery-home h2,
body.faders-gallery-home h3,
body.faders-gallery-home summary {
  color: var(--fb-text) !important;
  font-family: var(--fb-display) !important;
  letter-spacing: 0 !important;
}

body.faders-gallery-home .brand {
  position: relative;
  width: fit-content;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

body.faders-gallery-home .brand::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--fb-red), rgba(215, 53, 53, 0.18)) !important;
}

body.faders-gallery-home .navlinks {
  gap: 24px !important;
  color: var(--fb-muted) !important;
  font-family: var(--fb-mono) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
}

body.faders-gallery-home .navlinks a:hover {
  color: #fff !important;
}

body.faders-gallery-home .button,
body.faders-gallery-home .topbar .button,
body.faders-gallery-home .hero-actions .button,
body.faders-gallery-home .booking-strip .button,
body.faders-gallery-home .mini-link,
body.faders-gallery-home .area-pills span,
body.faders-gallery-home .gallery-silo-grid a {
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.065) !important;
  box-shadow: none !important;
  color: #fff !important;
  font-family: var(--fb-display) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  transition: transform 0.3s var(--fb-ease), border-color 0.3s var(--fb-ease), background 0.3s var(--fb-ease), box-shadow 0.3s var(--fb-ease) !important;
}

body.faders-gallery-home .button.red,
body.faders-gallery-home .button.dark,
body.faders-gallery-home .hero-actions .button:first-child,
body.faders-gallery-home .topbar .nav-actions a[href^="tel"] {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--fb-red), var(--fb-red-deep)) !important;
}

body.faders-gallery-home .button:hover,
body.faders-gallery-home .gallery-silo-grid a:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28) !important;
}

body.faders-gallery-home .hero {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr) !important;
  gap: clamp(28px, 5vw, 76px) !important;
  min-height: auto !important;
  padding: clamp(66px, 9vw, 118px) max(20px, calc((100vw - 1180px) / 2)) clamp(54px, 7vw, 86px) !important;
  border-bottom: 1px solid var(--fb-line) !important;
  background: transparent !important;
  color: var(--fb-text) !important;
  overflow: hidden;
}

body.faders-gallery-home .hero-copy {
  min-height: auto !important;
  padding: 0 !important;
  gap: 24px !important;
  justify-content: center !important;
}

body.faders-gallery-home .hero-title {
  max-width: 760px !important;
  margin: 0 0 22px !important;
  color: #fff !important;
  font-size: clamp(4rem, 8.8vw, 8.6rem) !important;
  font-weight: 700 !important;
  line-height: 0.84 !important;
  text-transform: uppercase !important;
}

body.faders-gallery-home .eyebrow,
body.faders-gallery-home .slide-tag,
body.faders-gallery-home .caption {
  color: var(--fb-red) !important;
  font-family: var(--fb-mono) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

body.faders-gallery-home .eyebrow::before {
  background: var(--fb-red) !important;
}

body.faders-gallery-home .hero-lede,
body.faders-gallery-home .hero-copy p:not(.eyebrow),
body.faders-gallery-home .section-head p,
body.faders-gallery-home .section-lede,
body.faders-gallery-home .service p,
body.faders-gallery-home .barber-card p,
body.faders-gallery-home .trust-card p,
body.faders-gallery-home .area-card p,
body.faders-gallery-home .location p,
body.faders-gallery-home .faq-grid p,
body.faders-gallery-home .real-review-card p {
  max-width: 650px;
  color: var(--fb-muted) !important;
  font-family: var(--fb-body) !important;
  font-size: clamp(1rem, 1.35vw, 1.15rem) !important;
  font-weight: 500 !important;
  line-height: 1.72 !important;
}

body.faders-gallery-home .hero-slideshow {
  position: relative !important;
  min-height: clamp(470px, 52vw, 690px) !important;
  height: auto !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 0 0 0 112px !important;
  background: #111 !important;
  box-shadow: 0 38px 96px rgba(0, 0, 0, 0.5) !important;
  clip-path: polygon(10% 0, 100% 0, 100% 92%, 0 100%, 0 12%) !important;
  overflow: hidden !important;
}

body.faders-gallery-home .hero-slideshow::after,
body.faders-gallery-home .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.4));
}

body.faders-gallery-home .hero-slideshow img,
body.faders-gallery-home .photo img,
body.faders-gallery-home .service img {
  filter: saturate(0.92) contrast(1.08) brightness(0.82) !important;
}

body.faders-gallery-home .proof-row,
body.faders-gallery-home .service,
body.faders-gallery-home .barber-card,
body.faders-gallery-home .trust-card,
body.faders-gallery-home .area-card,
body.faders-gallery-home .review-layout,
body.faders-gallery-home .real-review-card,
body.faders-gallery-home .location,
body.faders-gallery-home .map-frame,
body.faders-gallery-home .faq-grid details,
body.faders-gallery-home .faders-audit-copy-2026-06-22,
body.faders-gallery-home .faders-link-network,
body.faders-gallery-home .booking-strip {
  border: 1px solid var(--fb-line) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.044) !important;
  box-shadow: none !important;
  color: var(--fb-text) !important;
}

body.faders-gallery-home .section,
body.faders-gallery-home .barber-section,
body.faders-gallery-home #trust,
body.faders-gallery-home #locations {
  padding: var(--fb-section) max(20px, calc((100vw - 1180px) / 2)) !important;
  border-bottom: 1px solid var(--fb-line) !important;
  background: transparent !important;
  color: var(--fb-text) !important;
}

body.faders-gallery-home h2 {
  color: #fff !important;
  font-size: clamp(2.85rem, 6vw, 6rem) !important;
  font-weight: 700 !important;
  line-height: 0.9 !important;
}

body.faders-gallery-home h3 {
  color: #fff !important;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
}

body.faders-gallery-home .review-score strong,
body.faders-gallery-home .proof-row strong {
  color: #fff !important;
}

@media (max-width: 860px) {
  body.faders-gallery-home .topbar {
    grid-template-columns: 1fr auto !important;
    min-height: 68px !important;
    padding: 12px 14px !important;
  }

  body.faders-gallery-home .navlinks {
    display: none !important;
  }

  body.faders-gallery-home .hero {
    grid-template-columns: 1fr !important;
    padding: 34px 14px 64px !important;
  }

  body.faders-gallery-home .hero-title {
    font-size: clamp(3.1rem, 17vw, 5.1rem) !important;
    line-height: 0.88 !important;
  }

  body.faders-gallery-home .hero-slideshow {
    min-height: 390px !important;
    border-radius: 0 0 0 74px !important;
  }

  body.faders-gallery-home .section,
  body.faders-gallery-home .barber-section,
  body.faders-gallery-home #trust,
  body.faders-gallery-home #locations {
    padding: 72px 18px !important;
  }
}

/*
 * Brand consistency pass: keep every public page in the homepage family
 * without creating another oversized homepage on each URL.
 */
.faders-locked-hero,
.seo-hero.faders-locked-hero {
  min-height: auto;
  align-content: end;
  padding-block: clamp(58px, 8vw, 108px);
}

.faders-locked-page .seo-detail-band {
  padding-block: clamp(54px, 7vw, 92px);
}

.faders-locked-page .section-heading {
  margin-bottom: clamp(22px, 4vw, 42px);
}

.faders-locked-card-grid article {
  min-height: clamp(168px, 18vw, 238px);
  padding: clamp(22px, 3vw, 34px);
}

.faders-locked-card-grid h3 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.faders-locked-card-grid p {
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  line-height: 1.58;
}

.faders-locked-guide-card {
  min-height: clamp(190px, 20vw, 230px);
}

.faders-locked-copy-layout article,
.faders-gallery-copy-layout article {
  max-width: 720px;
}

.faders-locked-copy-layout article p:not(.eyebrow),
.faders-gallery-copy-layout article p:not(.eyebrow) {
  max-width: 64ch;
}

.faders-locked-related-section .gallery-silo-grid a,
.faders-gallery-related-section .gallery-silo-grid a {
  min-height: 132px;
}

.faders-locked-page .service-photo-grid,
.faders-locked-page .gallery-silo-grid,
.faders-locked-page .faq-list {
  margin-top: 0;
}

.faders-locked-page .seo-nap {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--fb-radius);
  background: rgba(255, 255, 255, 0.045);
}

.faders-locked-page .seo-nap strong {
  color: #fff;
}

.book-page .book-hero {
  min-height: auto;
  padding-block: clamp(58px, 8vw, 108px);
}

.book-page .book-location-grid {
  padding-block: clamp(54px, 7vw, 92px);
}

@media (max-width: 820px) {
  .faders-locked-hero,
  .seo-hero.faders-locked-hero,
  .book-page .book-hero {
    padding-block: 34px 46px;
  }

  .faders-locked-page .seo-detail-band,
  .book-page .book-location-grid {
    padding-block: 48px;
  }

  .faders-locked-card-grid article,
  .faders-locked-guide-card {
    min-height: 158px;
  }

  .faders-locked-card-grid h3 {
    max-width: none;
  }
}
