/*
Theme Name: Faders Live Custom
Theme URI: https://fadersbarberstudio.com
Author: Faders Barber Studio
Description: A custom WordPress theme for Faders Barber Studio built for bookings, local SEO, and a direct mobile-first barbershop experience.
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: faders-live-custom
*/

:root {
  --ink: #080808;
  --muted: #6a6a6a;
  --line: #e6e6e6;
  --paper: #f6f6f6;
  --white: #ffffff;
  --gold: #ffffff;
  --red: #d12f2d;
  --deep-red: #8f0f14;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(246, 246, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  color: var(--ink);
}

.brand,
.site-header nav,
.quick-panel div,
.card-actions,
footer,
footer div,
.footer-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-header nav {
  gap: clamp(14px, 3vw, 28px);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-header nav a:hover {
  color: var(--red);
}

.header-actions,
.header-call,
.header-book,
.button,
.card-actions a,
footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.header-call,
.header-book,
.button,
.card-actions a,
footer a {
  min-height: 46px;
  border-radius: 6px;
}

.button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.header-actions {
  gap: 8px;
}

.header-call,
.header-book {
  gap: 8px;
  min-width: 82px;
  padding: 0 14px;
}

.header-call {
  background: var(--white);
  color: var(--ink);
}

.header-book {
  background: var(--red);
  color: var(--white);
}

.header-call svg,
.header-book svg {
  width: 18px;
  height: 18px;
}

.header-call:hover {
  background: var(--red);
  color: var(--white);
}

.header-book:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: end;
  min-height: min(760px, calc(100vh - 76px));
  padding: clamp(34px, 7vw, 88px);
  background: #050505;
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.02));
  content: "";
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.18) contrast(1.04) saturate(1.04);
  opacity: 0;
  transform: scale(1.04);
  animation: heroFade 15s infinite;
}

.hero-slideshow img:nth-child(1) {
  object-position: center center;
}

.hero-slideshow img:nth-child(2) {
  object-position: 58% center;
  animation-delay: 5s;
}

.hero-slideshow img:nth-child(3) {
  object-position: 55% center;
  animation-delay: 10s;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

@keyframes heroFade {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
  }

  35%,
  93% {
    opacity: 0;
    transform: scale(1.04);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.review-proof {
  position: absolute;
  top: clamp(28px, 6vw, 70px);
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  gap: 6px;
  width: min(250px, calc(100% - 36px));
  justify-self: center;
  justify-items: center;
  padding: 20px;
  border: 1px solid rgba(215, 25, 32, 0.58);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.76);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  text-align: center;
}

.review-proof svg,
.quick-panel svg,
.location-card > svg,
.service-pill svg,
.conversion-band svg,
.today-flow-actions svg {
  color: var(--red);
}

.review-proof strong {
  font-size: 1.15rem;
}

.review-proof span,
.conversion-band span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(2.05rem, 5.4vw, 4.15rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-copy p:not(.eyebrow),
.intro > p,
.location-card p,
.barber-section p,
blockquote {
  color: inherit;
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-booking {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.button {
  gap: 9px;
  min-width: 178px;
  padding: 0 22px;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--ink);
}

.button.quiet {
  min-width: 154px;
}

.hero-actions .button {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.hero-actions .button:hover,
.hero-actions .button:focus-visible,
.hero-actions .button:active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.hero-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-note a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 4px;
}

.hero-note a:hover {
  color: var(--red);
}

.button.dark {
  width: fit-content;
  min-width: 168px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-top: 64px;
  background: rgba(215, 25, 32, 0.45);
}

.quick-panel div {
  gap: 12px;
  min-height: 86px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  font-weight: 700;
}

.intro,
.today-flow,
.section,
.conversion-band,
.barber-section,
.split-section,
.hours-reviews {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
}

.intro,
.section,
.barber-section,
.split-section,
.hours-reviews {
  padding-top: clamp(46px, 6vw, 82px);
  padding-bottom: clamp(46px, 6vw, 82px);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: end;
  background: var(--white);
  border-top: 6px solid var(--red);
}

.intro > p,
.location-card p,
.barber-section p,
.barber-card p {
  color: var(--muted);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 24px;
}

.service-pill-grid,
.location-grid,
.today-flow,
.today-flow-actions,
.conversion-band,
.hours-reviews,
.barber-section,
.barber-grid {
  display: grid;
}

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

.service-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.service-pill svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.service-pill:hover {
  border-color: var(--red);
  color: var(--red);
}

.today-flow {
  grid-template-columns: minmax(240px, 0.72fr) 1.28fr;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.today-flow h2 {
  max-width: 600px;
}

.today-flow-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.today-flow-actions a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.today-flow-actions a:hover,
.today-flow-actions a:focus-visible {
  border-color: var(--red);
  background: rgba(215, 25, 32, 0.2);
  transform: translateY(-1px);
}

.today-flow-actions svg {
  width: 24px;
  height: 24px;
}

.today-flow-actions strong {
  font-size: 1.15rem;
}

.today-flow-actions span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.conversion-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
  color: var(--ink);
}

.conversion-band div {
  display: grid;
  gap: 8px;
  min-height: 170px;
  padding: 34px;
  background: var(--white);
}

.conversion-band strong {
  font-size: 1.2rem;
}

.conversion-band span {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  background: #f3f3f3;
}

.location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.location-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.location-card:hover {
  border-color: var(--red);
}

.location-card > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
}

.card-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.card-actions a {
  gap: 8px;
  min-width: 112px;
  padding: 0 18px;
  border: 1px solid var(--ink);
}

.card-actions a:last-child {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.barber-section {
  gap: 30px;
  background: var(--white);
}

.barber-section-copy {
  max-width: 760px;
}

.barber-section-copy p {
  max-width: 620px;
  line-height: 1.65;
}

.barber-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.barber-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.barber-card:hover {
  border-color: var(--red);
}

.barber-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.barber-card h3 {
  margin-bottom: 4px;
}

.barber-card span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.barber-card p {
  line-height: 1.6;
}

.barber-card-actions,
.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.barber-card-actions a {
  flex: 1 1 150px;
}

.profile-actions {
  margin-top: 6px;
}

.barber-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.barber-card a:hover {
  background: var(--ink);
}

.barber-card a.barber-social {
  background: var(--ink);
}

.barber-card a.barber-social:hover {
  background: var(--red);
}

.barber-card a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.first-visit {
  background: #f3f3f3;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}

.step-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.first-visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  min-height: 62px;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.hours-reviews {
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  background: var(--ink);
  color: var(--white);
}

.hours,
.reviews {
  min-width: 0;
}

dl {
  margin: 30px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

dt {
  font-weight: 800;
}

dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

blockquote {
  margin: 0 0 12px;
  padding: 20px;
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

blockquote p {
  margin-bottom: 12px;
}

blockquote cite {
  color: var(--white);
  font-style: normal;
  font-weight: 800;
}

footer {
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--red);
  color: var(--white);
}

footer div {
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-nap {
  display: grid;
  flex: 1 1 430px;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 12px;
  max-width: 720px;
}

.footer-nap address {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
  color: var(--white);
  font-style: normal;
}

.footer-nap strong {
  color: var(--white);
}

.footer-nap a {
  min-width: 0;
  width: fit-content;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nap a:hover {
  color: var(--white);
}

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.review-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.review-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.review-score-grid a {
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.review-score-grid a:hover {
  border-color: var(--red);
}

.review-score-grid strong {
  color: var(--white);
  font-size: 1.05rem;
}

.review-score-grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.review-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: var(--white);
  color: var(--red);
  font-weight: 850;
}

.review-actions a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.address-link {
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.address-link:hover {
  color: var(--red);
}

footer span {
  color: rgba(255, 255, 255, 0.72);
}

footer a {
  min-width: 138px;
  padding: 0 18px;
  background: var(--white);
  color: var(--red);
}

.mobile-conversion-bar {
  display: none;
}

/* Final color lock: match the clean preview palette. */
body {
  background: #f6f6f6;
  color: #080808;
}

.site-header {
  background: rgba(246, 246, 246, 0.96);
  border-bottom: 1px solid #e6e6e6;
  color: #080808;
}

.site-header nav {
  color: #080808;
}

.header-book,
.button.primary,
.card-actions a:last-child,
.book-now {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.header-book:hover,
.button.primary:hover,
.card-actions a:last-child:hover,
.book-now:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.hero {
  background: #050505;
}

.hero-actions .button.secondary {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.hero-actions .button.secondary:hover,
.hero-actions .button.secondary:focus-visible {
  background: #e9e9e9;
  border-color: #e9e9e9;
  color: var(--ink);
}

.conversion-band {
  background: #e6e6e6;
  color: #080808;
}

.conversion-band div {
  background: #ffffff;
}

.conversion-band span {
  color: #6a6a6a;
}

.book-page {
  min-height: calc(100vh - 76px);
  background: var(--paper);
  color: var(--ink);
}

.book-hero {
  padding: clamp(54px, 9vw, 116px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 60px);
  text-align: center;
}

.book-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.book-hero p:not(.eyebrow) {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.book-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(60px, 8vw, 108px);
}

.book-location-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.book-location-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.25rem);
}

.address-choice,
.book-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.address-choice {
  background: var(--ink);
  border-color: transparent;
  box-shadow: none;
  color: var(--white);
}

.book-phone {
  background: var(--white);
  border-color: var(--red);
  color: var(--red);
}

.address-choice:hover {
  border-color: transparent;
  background: #000000;
  box-shadow: none;
  color: var(--white);
  transform: translateY(-1px);
}

.book-phone:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.book-now:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.address-choice:hover svg,
.book-phone:hover svg,
.book-now:hover svg {
  color: var(--white);
}

.address-choice span {
  min-width: 0;
  padding: 5px 8px;
}

.address-choice svg,
.book-phone svg,
.book-now svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--red);
}

.address-choice svg,
.address-choice:hover svg {
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
}

.book-now {
  gap: 10px;
  width: 100%;
}

.location-barber-list,
.location-booking-note {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f5;
  color: var(--ink);
}

.location-barber-list strong {
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.location-barber-list div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.location-barber-list span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--white);
  font-weight: 800;
}

.location-booking-note {
  margin: 0;
  font-weight: 800;
}

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

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

.map-modal-card {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  border: 1px solid rgba(215, 25, 32, 0.5);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.map-modal-card h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.map-modal-address {
  color: var(--muted);
  line-height: 1.55;
}

.map-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.map-modal-actions .button.secondary {
  border-color: var(--ink);
  color: var(--ink);
}

.map-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.seo-page {
  background: var(--paper);
}

.seo-hero {
  padding: clamp(58px, 9vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(95, 0, 4, 0.52)),
    url("assets/shop.webp") center / cover;
  color: var(--white);
}

.seo-hero h1 {
  max-width: 900px;
}

.seo-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-call {
  background: transparent;
}

.seo-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--white);
}

.seo-content article p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.seo-content aside {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f8f8;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.keyword-list span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.seo-nap {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border-left: 5px solid var(--red);
  background: #f8f8f8;
}

.seo-nap strong,
.seo-nap a {
  color: var(--red);
}

.seo-detail-band {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}

.seo-local-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.local-answer-band {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
}

.local-seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.local-seo-grid article {
  display: grid;
  gap: 16px;
}

.local-seo-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.section-note {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.65;
}

.compact-location-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-layout,
.gallery-starter-grid,
.review-page-grid {
  display: grid;
  gap: 14px;
}

.profile-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.profile-card,
.gallery-starter-grid article,
.review-page-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.profile-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 4vw, 38px);
}

.profile-card p,
.gallery-starter-grid p,
.review-page-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.profile-card .button {
  width: fit-content;
}

.gallery-starter-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-starter-grid article {
  min-height: 190px;
  padding: 24px;
}

.gallery-starter-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-page-grid a {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 24px;
}

.review-page-grid a:hover {
  border-color: var(--red);
  color: var(--red);
}

.review-page-grid strong {
  font-size: 1.25rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.blog-card {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.blog-card span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

.blog-card p {
  color: var(--muted);
  line-height: 1.6;
}

.blog-card a {
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 850;
}

.blog-card a:hover {
  background: var(--red);
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 14px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 8vw, 108px);
  background: var(--ink);
}

.seo-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.seo-link-grid a:hover {
  background: var(--red);
}

.seo-link-grid span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    align-content: start;
    min-height: auto;
    padding: 64px 18px 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 92%;
  }

  .hero-actions {
    margin-top: 30px;
  }

  .hero-note {
    margin-top: 20px;
  }

  .quick-panel {
    gap: 10px;
    margin-top: 28px;
    background: transparent;
  }

  .quick-panel,
  .intro,
  .today-flow,
  .today-flow-actions,
  .service-pill-grid,
  .conversion-band,
  .barber-section,
  .barber-grid,
  .step-grid,
  .review-score-grid,
  .location-grid,
  .hours-reviews {
    grid-template-columns: 1fr;
  }

  .review-proof {
    position: static;
    transform: none;
    margin: 34px auto 0;
  }

  .quick-panel div {
    min-height: 58px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.42);
  }

  h1 {
    max-width: 94%;
    margin-bottom: 20px;
    font-size: clamp(2.15rem, 10.2vw, 3.25rem);
    line-height: 1.02;
  }

  .barber-grid {
    gap: 12px;
  }

  .book-location-grid,
  .seo-content,
  .seo-link-grid,
  .local-seo-grid,
  .compact-location-grid,
  .blog-card-grid,
  .blog-post-layout,
  .profile-layout,
  .gallery-starter-grid,
  .review-page-grid,
  .map-modal-actions {
    grid-template-columns: 1fr;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nap {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  body {
    padding-bottom: 74px;
  }

  .brand span {
    display: inline;
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header {
    gap: 10px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero .eyebrow {
    margin-bottom: 14px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

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

  .button,
  .header-actions,
  .header-call,
  .header-book,
  .card-actions a,
  .barber-card a,
  .button.dark,
  footer a {
    width: 100%;
  }

  .site-header > .header-book {
    width: auto;
    min-width: 108px;
  }

  .header-actions,
  .hero-actions,
  .card-actions {
    flex-direction: column;
  }

  dl div {
    display: block;
  }

  dd {
    margin-top: 4px;
    text-align: left;
  }

  .mobile-conversion-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding: 8px;
    background: rgba(8, 8, 8, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-conversion-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
  }

  .mobile-conversion-bar a:last-child {
    background: var(--red);
    color: var(--white);
  }

  .mobile-conversion-bar svg {
    width: 16px;
    height: 16px;
  }
}
