/* ============================================================
   Gregory's Barber Shop — Custom Stylesheet
   Design: Dark charcoal + gold accent, editorial masculine feel
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0d0d0d;
  --charcoal:    #1a1a1a;
  --dark:        #242424;
  --mid:         #3a3a3a;
  --stone:       #5a5a5a;
  --silver:      #9a9a9a;
  --light:       #e8e3dc;
  --cream:       #f5f0e8;
  --white:       #ffffff;

  --gold:        #c8a96e;
  --gold-light:  #dfc08a;
  --gold-dark:   #a8893e;

  --red:         #c0392b;
  --blue:        #2c5f9e;

  --ff-serif:    'Playfair Display', Georgia, serif;
  --ff-display:  'Bebas Neue', 'Impact', sans-serif;
  --ff-body:     'Inter', system-ui, -apple-system, sans-serif;

  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.22s ease;

  --nav-h:       68px;
  --section-gap: clamp(72px, 10vw, 120px);
  --container:   1200px;
  --gutter:      clamp(20px, 5vw, 48px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--charcoal);
  color: var(--light);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }
address { font-style: normal; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  line-height: 1.15;
  font-weight: 700;
  color: var(--white);
}

h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { color: var(--silver); line-height: 1.75; }
em { font-style: italic; color: var(--gold); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-gap) 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.1s ease, box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(200,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.35);
}
.btn-outline-light:hover {
  background: rgba(0,0,0,0.08);
  border-color: var(--black);
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-xl { padding: 18px 44px; font-size: 1rem; }

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Placeholder helpers ──────────────────────────────────── */
.needs-confirm {
  background: rgba(200,169,110,0.12);
  color: var(--gold);
  border: 1px dashed rgba(200,169,110,0.4);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 0.8rem;
  font-style: italic;
}
.needs-confirm-inline {
  color: var(--gold);
  font-size: 0.85em;
}
.demo-note {
  display: inline-block;
  background: rgba(200,169,110,0.1);
  color: var(--gold);
  border: 1px dashed rgba(200,169,110,0.35);
  border-radius: 3px;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-style: italic;
  margin-bottom: 6px;
}
.demo-note-small {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.7;
  display: block;
}

/* ── Photo Placeholders ───────────────────────────────────── */
.photo-placeholder {
  background: var(--dark);
  border: 1.5px dashed rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.photo-placeholder--tall { height: 480px; }
.photo-placeholder--short { height: 200px; }
.photo-placeholder--gallery { height: 100%; min-height: 200px; }

.photo-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--stone);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
}
.photo-placeholder-inner svg { opacity: 0.5; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,169,110,0.1);
  transition: background var(--transition);
}
.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-text {
  font-family: var(--ff-serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo .logo-sub {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Gentle left-side reinforcement — image already has its own dark left zone */
  background: linear-gradient(
    100deg,
    rgba(13,13,13,0.62) 0%,
    rgba(13,13,13,0.30) 55%,
    rgba(13,13,13,0.10) 100%
  );
  z-index: 2;
}
.hero-texture {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--gutter) 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,110,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-headline {
  max-width: 720px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(232,227,220,0.82);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-trust-strip .dot { color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: var(--silver);
  opacity: 0.6;
  animation: bounce 2s infinite;
  transition: opacity var(--transition);
}
.hero-scroll:hover { opacity: 1; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── STICKY CTA ───────────────────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--black);
  border-top: 1px solid rgba(200,169,110,0.2);
  padding: 12px var(--gutter);
  gap: 12px;
}
.sticky-cta-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: 2px solid var(--gold);
  transition: background var(--transition), transform 0.1s;
  text-decoration: none;
}
.sticky-cta-btn:active { transform: scale(0.98); }
.sticky-cta-btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

/* ── SERVICES ─────────────────────────────────────────────── */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.service-card--featured {
  border-color: rgba(200,169,110,0.25);
  background: linear-gradient(135deg, rgba(200,169,110,0.06) 0%, transparent 60%), var(--charcoal);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-card p { font-size: 0.9rem; line-height: 1.65; }

.service-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,169,110,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.services-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--dark);
  border-color: rgba(255,255,255,0.05);
}
.services-cta-text {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pricing-note {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--stone);
}

/* ── ABOUT ────────────────────────────────────────────────── */
.about { background: var(--charcoal); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-visual { position: relative; }

.about-photo-frame { position: relative; margin-bottom: 20px; }

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  line-height: 1.3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.about-accent-label {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
}
.about-accent-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.65);
  text-transform: uppercase;
}

.about-photo-secondary { margin-left: 40px; }

.about-content .section-title { margin-bottom: 20px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--light);
  margin-bottom: 18px;
  line-height: 1.75;
}
.about-content p { margin-bottom: 16px; }

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.pillar strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.pillar span { font-size: 0.8rem; color: var(--stone); line-height: 1.5; }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  text-align: center;
  padding: 8px 16px;
}
.trust-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.trust-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--ff-serif);
}
.trust-item p { font-size: 0.85rem; line-height: 1.6; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item--large {
  grid-column: span 1;
  grid-row: span 2;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item .photo-placeholder { height: 220px; border-radius: var(--radius-lg); }
.gallery-item--large .photo-placeholder { height: 100%; min-height: 452px; }

.gallery-note {
  text-align: center;
  margin-top: 24px;
}

/* ── HOURS ────────────────────────────────────────────────── */
.hours-section { background: var(--charcoal); }

.hours-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.hours-address {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 28px 0;
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.hours-address svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 36px;
}
.hours-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  color: var(--silver);
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--light);
  width: 140px;
}
.hours-table td:last-child { text-align: right; }
.closed-day td { opacity: 0.45; }

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-placeholder {
  background: var(--dark);
  border: 1.5px dashed rgba(200,169,110,0.2);
  border-radius: var(--radius-lg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--stone);
  font-size: 0.85rem;
}
.map-placeholder-inner svg { opacity: 0.4; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { background: var(--black); }

.faq-container { max-width: 760px; }
.faq-list { margin-top: 0; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--gold); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--gold);
}
details[open] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 4px 24px;
  animation: fadeIn 0.2s ease;
}
.faq-answer p { font-size: 0.95rem; }
.faq-answer a { color: var(--gold); text-decoration: underline; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CONTACT CTA ──────────────────────────────────────────── */
.contact-cta { background: var(--gold); }

.contact-cta .btn-primary {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.contact-cta .btn-primary:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}

.cta-block {
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-barber-pole {
  flex-shrink: 0;
  width: 14px;
  height: 140px;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}
.bp-stripe {
  position: absolute;
  left: 0;
  right: 0;
  height: 33.4%;
}
.bp-stripe--red   { top: 0;    background: var(--red); }
.bp-stripe--white { top: 33.3%; background: var(--white); }
.bp-stripe--blue  { bottom: 0;  background: var(--blue); }

.cta-content { flex: 1; }
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: 12px;
}
.cta-content p {
  color: rgba(0,0,0,0.65);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 32px;
}

.footer-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
}
.footer-brand .logo-sub {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.82rem; color: var(--stone); }

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { text-align: right; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-phone:hover { color: var(--gold); }
.footer-address {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--stone);
}
.footer-credit a { color: var(--gold); transition: opacity var(--transition); }
.footer-credit a:hover { opacity: 0.8; }

/* ── MOBILE RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 1; grid-row: span 1; }
  .gallery-item--large .photo-placeholder { min-height: 220px; }
  .footer-layout { grid-template-columns: 1fr 1fr; }
  .footer-links { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { padding: 12px 28px; }

  /* Sticky CTA */
  .sticky-cta { display: flex; }

  /* Hero */
  .hero-content { padding-bottom: 80px; }
  .hero-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
  .hero-photo-note { display: none; }

  /* About */
  .about-layout { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-accent-card { right: 0; bottom: -16px; }
  .about-photo-secondary { display: none; }
  .about-pillars { grid-template-columns: 1fr; gap: 12px; }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hours */
  .hours-layout { grid-template-columns: 1fr; }
  .map-placeholder { height: 260px; }

  /* CTA */
  .cta-block { gap: 0; }
  .cta-barber-pole { display: none; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-layout { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact { text-align: left; }
  .footer-address { text-align: left; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Body bottom padding for sticky CTA */
  main { padding-bottom: 72px; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-trust-strip { gap: 8px; }
  .hero-trust-strip .dot { display: none; }
  .hero-trust-strip span { display: block; }
  .cta-content h2 { font-size: 1.8rem; }
}

/* ── REVIEWS ──────────────────────────────────────────────── */
.reviews { background: var(--charcoal); }

.reviews-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.reviews-stars {
  display: flex;
  gap: 3px;
}
.reviews-stars svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}
.reviews-score {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.reviews-count {
  font-size: 0.85rem;
  color: var(--silver);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.reviews-count:hover { color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: rgba(200,169,110,0.25); }
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--ff-serif);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card blockquote {
  font-size: 0.92rem;
  color: var(--light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 12px;
  quotes: none;
}
.review-card cite {
  font-size: 0.78rem;
  color: var(--stone);
  font-style: normal;
  letter-spacing: 0.04em;
}
.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Gallery SVGs ──────────────────────────────────────────── */
.gallery-svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.gallery-item .photo-placeholder { border: none; }

/* ── About illustrations ───────────────────────────────────── */
.about-illus-tall {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.05);
}
.about-photo-secondary svg {
  display: block;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

/* ── Footer social ─────────────────────────────────────────── */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--stone);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-social:hover { color: var(--gold); }

/* ── Gallery note ──────────────────────────────────────────── */
.gallery-cta-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.8rem;
  color: var(--stone);
  font-style: italic;
}

/* ── Reviews responsive ────────────────────────────────────── */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-cta { flex-direction: column; align-items: center; }
  .about-illus-tall { height: 320px; }
}
@media (max-width: 480px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── Print styles ─────────────────────────────────────────── */
@media print {
  .site-header, .sticky-cta, .hero-scroll, .hero-photo-placeholder { display: none; }
  body { background: white; color: black; }
  .needs-confirm { border: 1px solid #ccc; }
}
