/* ============================================================
   Men at Work Barbershop — stylesheet
   ============================================================ */

:root {
  --bg:        #f6f3ee;     /* warm cream */
  --bg-alt:    #ffffff;
  --ink:       #15181d;     /* near-black */
  --ink-soft:  #4a4e57;
  --muted:     #8a8f99;
  --line:      #e4ddd0;
  --navy:      #0f1a2e;     /* deep navy for dark sections */
  --navy-2:    #17253f;
  --red:       #c8102e;     /* classic barber red */
  --blue:      #1d3557;     /* barber blue */
  --gold:      #c9a961;     /* premium accent */
  --gold-soft: #e3c98a;

  --pole-w:    30px;
  --nav-h:     72px;

  --serif:     "Playfair Display", Georgia, serif;
  --sans:      "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 6px rgba(15,20,30,0.08);
  --shadow-md: 0 10px 30px rgba(15,20,30,0.12);
  --shadow-lg: 0 20px 60px rgba(15,20,30,0.2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   Barber poles — seamless infinite animation
   ============================================================
   Stripe period along the 45deg gradient normal = 80px.
   For a 45deg gradient the pattern is invariant under vertical
   translation of (stripe_period * √2). We animate background-
   position from 0 → that exact value for a perfectly seamless
   loop, no seams, the whole way down the page.
*/
.barber-pole {
  position: fixed;
  top: 0;
  bottom: 0;
  width: var(--pole-w);
  z-index: 1000;
  background:
    /* glossy cylinder highlight */
    linear-gradient(
      to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.1) 18%,
      rgba(255,255,255,0.35) 45%,
      rgba(255,255,255,0.05) 65%,
      rgba(0,0,0,0.55) 100%
    ),
    /* stripes */
    repeating-linear-gradient(
      45deg,
      #c8102e 0px 20px,
      #ffffff 20px 40px,
      #1d3557 40px 60px,
      #ffffff 60px 80px
    );
  background-blend-mode: overlay, normal;
  box-shadow:
    inset 0 0 16px rgba(0,0,0,0.55),
    0 0 1px rgba(0,0,0,0.8),
    0 4px 18px rgba(0,0,0,0.25);
  border-left: 2px solid #2a2a2a;
  border-right: 2px solid #2a2a2a;
  animation: pole-scroll 3.2s linear infinite;
  will-change: background-position;
}
.barber-pole--left  { left: 0; }
.barber-pole--right { right: 0; }

/* 80px stripe period × √2 = 113.1370849898px — exact seamless loop */
@keyframes pole-scroll {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 0 0, 0 -113.1370849898px; }
}

/* Chrome caps at top & bottom of each pole */
.barber-pole__cap {
  position: absolute;
  left: -4px;
  right: -4px;
  height: 18px;
  background: linear-gradient(
    to bottom,
    #e8e8e8 0%, #b4b4b4 30%, #5a5a5a 60%, #2e2e2e 100%
  );
  border: 1px solid #1a1a1a;
  box-shadow: inset 0 2px 3px rgba(255,255,255,0.4), 0 2px 6px rgba(0,0,0,0.4);
  z-index: 1;
}
.barber-pole__cap--top    { top: 0; border-radius: 3px 3px 1px 1px; }
.barber-pole__cap--bottom { bottom: 0; border-radius: 1px 1px 3px 3px; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(21, 24, 29, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 calc(var(--pole-w) + 20px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
}
.nav__brand:hover { color: var(--gold); }
.nav__brand-mark {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 1px;
  border-radius: 2px;
}
.nav__brand-mark span { color: #fff; margin: 0 1px; }
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 1.05rem;
}
.nav__brand-text small {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 2px;
}
.nav__links {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  gap: 28px;
}
.nav__links a {
  color: #e8e8e8;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--gold);
  color: #15181d;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--gold-soft); color: #15181d; transform: translateY(-1px); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  margin-left: auto;
  padding: 8px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 80px calc(var(--pole-w) + 20px) 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, #1a2740 0%, #0f1a2e 50%, #080d16 100%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(15,26,46,0.4) 0%, rgba(15,26,46,0.85) 70%, rgba(15,26,46,0.95) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}
.hero__content {
  position: relative;
  text-align: center;
  max-width: 820px;
}
.hero__logo {
  width: clamp(140px, 22vw, 200px);
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  filter: brightness(1.1);
}
.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 600;
}
.eyebrow--dark  { color: var(--red); }
.eyebrow--light { color: var(--gold); }
.hero__title {
  font-family: var(--serif);
  font-weight: 900;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.02;
  margin: 0 0 24px;
  letter-spacing: -1px;
}
.hero__title .accent {
  color: var(--gold);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: #d8dce3;
  max-width: 560px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ============================================================
   Status banner
   ============================================================ */
/* Status pill in nav */
.nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__status--hidden { display: none !important; }
.nav__status--open    { background: linear-gradient(135deg, #198838, #22a74a); }
.nav__status--closed  { background: linear-gradient(135deg, #a41825, #c8102e); }
.nav__status--loading { background: #4a4e57; }
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,0.9);
  animation: pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.8); }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.btn--gold {
  background: var(--gold);
  color: #15181d;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn--ghost-light:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.btn--primary:hover {
  background: #9e0c25;
  border-color: #9e0c25;
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--line);
}
.btn--ghost:hover { background: #f0ece3; color: var(--ink); }
.btn--large { font-size: 1rem; padding: 18px 32px; width: 100%; }

/* ============================================================
   Sections — shared
   ============================================================ */
.section {
  padding: clamp(60px, 9vw, 110px) 0;
  position: relative;
}
.section > .container { padding-left: calc(var(--pole-w) + 20px); padding-right: calc(var(--pole-w) + 20px); }

.section--dark {
  background: var(--navy);
  color: #e8ecf3;
}
.section--dark .section__title { color: #fff; }
.section--dark p { color: #b9c1cf; }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.section--dark .section__sub { color: #b9c1cf; }

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.two-col--equal { grid-template-columns: 1fr 1fr; align-items: stretch; }

.lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

/* About */
.section--about { background: var(--bg); }
.stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; }
.stat__num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 6px;
}
.about__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__image img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.about__image-frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}

/* Services grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 97, 0.2);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service:hover {
  background: rgba(201, 169, 97, 0.06);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.service:hover::before { transform: scaleX(1); }
.service__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.service__icon svg { width: 100%; height: 100%; }
.service h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.service p { color: #aab2c0 !important; font-size: 0.95rem; margin: 0; }
.service--feature {
  background: linear-gradient(135deg, rgba(201,169,97,0.1), rgba(201,169,97,0.02));
  border-color: rgba(201,169,97,0.4);
}
.tag {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: #15181d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery figure {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  box-shadow: var(--shadow-md);
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(20%);
}
.gallery figure:hover img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px dashed var(--line);
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 20px;
}
.gallery__placeholder code {
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.8rem;
}
.gallery__placeholder a { font-weight: 600; }
.gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15,26,46,0.5));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.gallery figure:hover::after { opacity: 1; }

/* Hours + Contact split */
.section--split { background: var(--bg-alt); padding-bottom: 0; }
.panel {
  padding: clamp(40px, 5vw, 60px);
  background: var(--bg);
  border: 1px solid var(--line);
  height: 100%;
}
.panel--dark {
  background: var(--navy);
  color: #e8ecf3;
  border-color: var(--navy);
}
.panel--dark .section__title { margin-bottom: 24px; }

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}
.hours td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.98rem;
}
.panel:not(.panel--dark) .hours td { border-bottom-color: var(--line); }
.hours td:first-child {
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.panel:not(.panel--dark) .hours td:first-child { color: var(--ink); }
.hours td:last-child { text-align: right; color: #b9c1cf; }
.panel:not(.panel--dark) .hours td:last-child { color: var(--ink-soft); }
.hours tr:last-child td { border-bottom: none; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.contact-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-list strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.contact-list div { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.5; }

.map-container { margin-top: 60px; padding-bottom: 80px; }
.map {
  width: 100%;
  height: 400px;
  border: 0;
  box-shadow: var(--shadow-lg);
  filter: grayscale(30%);
}

/* Footer */
.footer {
  background: #0a0d13;
  color: #8a92a3;
  padding: 50px 0 30px;
  border-top: 3px solid var(--gold);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-left: calc(var(--pole-w) + 20px);
  padding-right: calc(var(--pole-w) + 20px);
}
.footer__brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.footer__brand span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  font-weight: 400;
}
.footer__tag { font-size: 0.9rem; margin: 10px 0 0; }
.footer__meta { text-align: right; font-size: 0.85rem; }
.footer__meta p { margin: 4px 0; }
.footer__meta a { color: var(--gold); }

/* ============================================================
   Admin
   ============================================================ */
.admin-body {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px calc(var(--pole-w) + 20px);
}
.admin-card {
  background: #fff;
  width: 100%;
  max-width: 460px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
  position: relative;
  z-index: 10;
}
.admin-card h1 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin: 0 0 8px;
  color: var(--ink);
  text-align: center;
}
.admin-card .eyebrow { text-align: center; }
.admin-card form { margin-top: 24px; }
.admin-card label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.admin-card input {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-size: 1rem;
  font-family: var(--sans);
  transition: border-color 0.2s;
}
.admin-card input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.admin-back {
  display: block;
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.status-display {
  text-align: center;
  padding: 24px 0;
  margin-bottom: 8px;
}
.status-display__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}
.status-pill {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.status-pill.open   { background: linear-gradient(135deg, #198838, #22a74a); }
.status-pill.closed { background: linear-gradient(135deg, #a41825, #c8102e); }
.admin-divider {
  height: 1px;
  background: var(--line);
  margin: 28px 0;
}
.admin-visibility {
  text-align: center;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
  margin: 10px 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch__slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-switch__slider::before {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-switch__slider { background: #2a9d4a; }
.toggle-switch input:checked + .toggle-switch__slider::before { transform: translateX(26px); }
.error {
  color: var(--red);
  font-size: 0.9rem;
  text-align: center;
  margin: 12px 0 0;
}
.muted { color: var(--muted); font-size: 0.85rem; text-align: center; margin-top: 12px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .two-col, .two-col--equal { grid-template-columns: 1fr; }
  .about__image { max-width: 480px; margin: 0 auto; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --pole-w: 20px; --nav-h: 64px; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: var(--pole-w);
    right: var(--pole-w);
    background: rgba(21,24,29,0.98);
    flex-direction: column;
    padding: 20px 0;
    gap: 0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(201,169,97,0.25);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { text-align: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav__links li:last-child { border-bottom: none; }
  .nav__toggle { display: block; order: 3; }
  .nav__cta { display: none; }
  .nav__brand-text { font-size: 0.95rem; }
  .nav__brand-text small { font-size: 0.6rem; }
  .hero { min-height: calc(100vh - var(--nav-h)); padding-top: 40px; }
  .hero__ctas .btn { padding: 12px 20px; font-size: 0.8rem; }
  .stats { gap: 24px; }
  .stat__num { font-size: 1.8rem; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__meta { text-align: center; }
}

@media (max-width: 480px) {
  :root { --pole-w: 14px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery figure { aspect-ratio: 4/3; }
  .service-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2.4rem; }
  .section__header { margin-bottom: 40px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .barber-pole { animation: none; }
  .status-dot, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
