/* ============================================================
   BARNETTS BARBERS — shared stylesheet
   Design system ported from the approved example build.
   Black + champagne (#C8B89A), Playfair Display + Inter.
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── TOKENS ── */
:root {
  --bg:           #080808;
  --bg-2:         #0E0E0C;
  --bg-3:         #141412;
  --surface:      #1B1B18;
  --accent:       #C8B89A;
  --accent-lt:    #DDD0BC;
  --accent-dk:    #8C7A5C;
  --accent-muted: rgba(200,184,154,.10);
  --text:         #EDE8DF;
  --text-mid:     #8C887F;
  --text-dim:     #2E2C28;
  --border:       #1C1C18;
  --border-lt:    #2C2C26;
  --ff-serif:     'Playfair Display', Georgia, serif;
  --ff-sans:      'Inter', system-ui, sans-serif;
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --ease-spring:  cubic-bezier(.34,1.56,.64,1);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── VIGNETTE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
  z-index: 9000;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--accent);
  z-index: 9999;
  transition: width .1s linear;
}

/* ── CUSTOM CURSOR — desktop (fine pointer) only ── */
.cursor-dot, .cursor-ring { display: none; }
@media (pointer: fine) {
  body { cursor: none; }
  body a, body button, body .service-item, body .review-card,
  body .gallery-item, body .btn, body input, body textarea, body label { cursor: none; }
  .cursor-dot, .cursor-ring {
    display: block;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
  }
  .cursor-dot { width: 4px; height: 4px; background: var(--accent); }
  .cursor-ring {
    width: 28px; height: 28px;
    border: 1px solid rgba(200,184,154,.5);
    transition: width .3s var(--ease-out), height .3s var(--ease-out), opacity .3s, border-color .3s;
  }
  .cursor-ring.hovered { width: 50px; height: 50px; opacity: .3; }
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.05; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.label {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

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

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section-header { margin-bottom: 4rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.25rem;
  font-family: var(--ff-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  transition: all .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  transform: translateX(-101%);
  transition: transform .35s var(--ease-out);
}
.btn:hover::after { transform: translateX(0); }
.btn-primary { background: var(--accent); color: #080808; }
.btn-primary:hover { background: var(--accent-lt); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,184,154,.2); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-lt); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="80"]  { transition-delay: .08s; }
.reveal[data-delay="160"] { transition-delay: .16s; }
.reveal[data-delay="240"] { transition-delay: .24s; }
.reveal[data-delay="320"] { transition-delay: .32s; }
.reveal[data-delay="400"] { transition-delay: .40s; }
.reveal[data-delay="500"] { transition-delay: .50s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #080808;
  padding: .75rem 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 10000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ══════════════════════════════ HEADER ══════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
#site-header.scrolled {
  background: rgba(8,8,8,.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; display: block; transition: height .4s var(--ease-out); }
#site-header.scrolled .logo-img { height: 38px; }
.footer-brand .logo-img { height: 48px; margin-bottom: 1.25rem; }

/* Wordmark logo (recreated .BARNETTS BARBERS) — retained for reference, no longer used */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark .wm-top {
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .14em;
  color: var(--text);
}
.wordmark .wm-top .wm-dot { color: var(--accent); }
.wordmark .wm-sub {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: .52rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: .28rem;
  padding-left: .14em;
}

.site-nav { display: flex; align-items: center; gap: 2.5rem; }
.site-nav a {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color .2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease-out);
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }
.site-nav a[aria-current="page"] { color: var(--accent); }

.header-cta { font-size: .72rem; padding: .65rem 1.4rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease-out), visibility .35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
}
.mobile-menu a[aria-current="page"] { color: var(--accent); }
.mobile-menu .btn { font-family: var(--ff-sans); font-size: .8rem; margin-top: 1rem; }

/* ══════════════════════════════ HERO (home) ══════════════════════════════ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(200,184,154,.07) 0%, transparent 45%),
    radial-gradient(ellipse at 82% 88%, rgba(200,184,154,.05) 0%, transparent 50%),
    linear-gradient(160deg, #15140f 0%, #0b0b08 52%, #050505 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,8,1) 20%, rgba(8,8,8,.78) 55%, rgba(8,8,8,.4) 100%),
    linear-gradient(to right, rgba(8,8,8,.5) 0%, transparent 70%);
}
.hero-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-serif);
  font-size: clamp(10rem, 26vw, 24rem);
  font-weight: 900;
  color: rgba(255,255,255,.025);
  white-space: nowrap;
  letter-spacing: -.04em;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-rule-v {
  position: absolute;
  right: 2.5rem; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-lt) 30%, var(--border-lt) 70%, transparent);
  pointer-events: none;
}
.hero-rule-v::after {
  content: '13c Old Guildford Rd';
  position: absolute;
  bottom: 6rem; left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.hero-overline {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-overline::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--ff-serif);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 0;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.hero-title .line span.in { transform: translateY(0); }
.hero-title .t1 { font-size: clamp(3.4rem, 9vw, 8rem); color: var(--text); }
.hero-title .t2 {
  font-size: clamp(2.2rem, 6vw, 5.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0;
  margin-left: clamp(1rem, 4vw, 5rem);
}
.hero-title .t3 { font-size: clamp(3.4rem, 9vw, 8rem); color: var(--text); }
.hero-divider { width: 48px; height: 1px; background: var(--accent); margin: 2.5rem 0; }
.hero-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 1.75rem;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.hero-trust strong { color: var(--accent); }

.hero-strip {
  position: absolute;
  bottom: 2rem; right: 5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hero-strip-item { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; }
.hero-strip-num { font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 700; color: var(--text); line-height: 1; }
.hero-strip-lbl { font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mid); }
.hero-strip-sep { width: 1px; height: 36px; background: var(--border-lt); }

.scroll-hint { position: absolute; bottom: 2.5rem; left: 2.5rem; display: flex; align-items: center; gap: .75rem; }
.scroll-hint span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); }
.scroll-line { width: 36px; height: 1px; background: var(--border-lt); position: relative; overflow: hidden; }
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent);
  animation: scrollSlide 2.2s ease-in-out infinite;
}
@keyframes scrollSlide { to { left: 100%; } }

/* ══════════════════════════════ PAGE HERO (inner pages) ══════════════════════════════ */
.page-hero {
  position: relative;
  padding: 11rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: attr(data-ghost);
  position: absolute;
  top: 60%; right: -2%;
  transform: translateY(-50%);
  font-family: var(--ff-serif);
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(200,184,154,.03);
  white-space: nowrap;
  letter-spacing: -.04em;
  pointer-events: none;
  user-select: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.page-hero p { max-width: 540px; color: var(--text-mid); line-height: 1.85; }

/* ── BREADCRUMBS ── */
.breadcrumbs { padding: 1.25rem 0 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.breadcrumbs li { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); }
.breadcrumbs a { color: var(--text-mid); transition: color .2s; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: var(--text-dim); }
.breadcrumbs [aria-current="page"] { color: var(--accent); }

/* ══════════════════════════════ MARQUEE ══════════════════════════════ */
.marquee-section {
  padding: 1.25rem 0;
  background: var(--accent);
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.1);
  border-bottom: 1px solid rgba(0,0,0,.1);
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 1.5rem; padding: 0 2.5rem; white-space: nowrap; }
.marquee-item span {
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #080808;
}
.marquee-dot { width: 4px; height: 4px; background: rgba(8,8,8,.35); border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════ SERVICES (numbered list) ══════════════════════════════ */
.services { padding: 7rem 0; }
.services-list { border-top: 1px solid var(--border); }
.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding-left .35s var(--ease-out);
}
.service-item::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .55s var(--ease-out);
}
.service-item:hover { padding-left: .6rem; }
.service-item:hover::after { width: 100%; }
.service-left { display: flex; align-items: baseline; gap: 1.75rem; min-width: 0; }
.service-num { font-size: .62rem; font-weight: 600; letter-spacing: .14em; color: var(--accent); min-width: 2rem; flex-shrink: 0; }
.service-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  transition: color .25s;
  white-space: nowrap;
}
.service-item:hover .service-name { color: var(--accent-lt); }
.service-desc {
  font-size: .85rem;
  color: var(--text-mid);
  max-width: 380px;
  line-height: 1.7;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .3s var(--ease-out);
}
.service-item:hover .service-desc { opacity: 1; transform: none; }
.service-price {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

/* ══════════════════════════════ PRICE TABLE (services page) ══════════════════════════════ */
.price-block { padding: 6rem 0; }
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  border-top: 1px solid var(--border);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--border);
}
.price-row .pr-name {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.price-row .pr-dots { flex: 1; border-bottom: 1px dotted var(--border-lt); margin: 0 .25rem; transform: translateY(-4px); }
.price-row .pr-price { font-family: var(--ff-serif); font-size: 1.25rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.price-note {
  margin-top: 2.5rem;
  font-size: .82rem;
  color: var(--text-mid);
  letter-spacing: .02em;
}

/* Service detail cards */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.svc-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 2.25rem;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.svc-card:hover { border-color: var(--border-lt); transform: translateY(-5px); }
.svc-card .svc-num { font-size: .62rem; font-weight: 600; letter-spacing: .14em; color: var(--accent); }
.svc-card h3 { font-size: 1.35rem; margin: .75rem 0 .75rem; color: var(--text); }
.svc-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.8; }

/* ══════════════════════════════ ABOUT ══════════════════════════════ */
.about { padding: 7rem 0; background: var(--bg-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-grid--solo { grid-template-columns: 1fr; gap: 0; }
.about-grid--solo .about-content { max-width: 760px; }
.about-images { position: relative; height: 580px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 80%; height: 480px; overflow: hidden; }
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.75) contrast(1.1) grayscale(.4);
  transition: filter .6s, transform .6s var(--ease-out);
}
.about-img-main:hover img { filter: brightness(.85) contrast(1.05) grayscale(.2); transform: scale(1.02); }
.about-img-secondary {
  position: absolute; bottom: 0; right: 0;
  width: 58%; height: 280px; overflow: hidden;
  border: 4px solid var(--bg-2);
}
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.7) contrast(1.1) grayscale(.5);
  transition: filter .6s;
}
.about-img-secondary:hover img { filter: brightness(.85) contrast(1.05) grayscale(.2); }
.about-tag {
  position: absolute; top: 2rem; right: -1rem;
  background: var(--accent); color: #080808;
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .6rem 1.1rem;
  writing-mode: vertical-rl; text-orientation: mixed;
}
.about-content h2 { margin-bottom: 1.75rem; }
.about-lead {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-body { font-size: .9rem; color: var(--text-mid); line-height: 1.95; margin-bottom: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin: 2rem 0 2.5rem; }
.feature { display: flex; align-items: center; gap: .7rem; font-size: .8rem; font-weight: 500; color: var(--text-mid); }
.feature-icon {
  width: 20px; height: 20px;
  background: var(--accent-muted);
  border: 1px solid rgba(200,184,154,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--accent); flex-shrink: 0;
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.team-card { background: var(--bg-3); border: 1px solid var(--border); padding: 2.25rem; text-align: center; }
.team-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--accent-muted);
  border: 1px solid rgba(200,184,154,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 700; color: var(--accent);
}
.team-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: .35rem; }
.team-card .team-role { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.team-card p { font-size: .85rem; color: var(--text-mid); line-height: 1.8; }

/* ══════════════════════════════ STATS ══════════════════════════════ */
.stats { padding: 4.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: flex; align-items: stretch; }
.stat-item { flex: 1; text-align: center; padding: 2rem 1rem; position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px; background: var(--border);
}
.stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1; margin-bottom: .5rem; letter-spacing: -.02em;
}
.stat-label { font-size: .7rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mid); }

/* ══════════════════════════════ BRAND STATEMENT ══════════════════════════════ */
.statement { padding: 8rem 0; background: var(--bg-3); position: relative; overflow: hidden; }
.statement::before {
  content: '\201C';
  position: absolute; top: -3rem; left: -.5rem;
  font-family: var(--ff-serif); font-size: 24rem;
  color: rgba(200,184,154,.03); line-height: 1;
  pointer-events: none; user-select: none;
}
.statement::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 40%; height: 100%;
  background: repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(200,184,154,.018) 28px, rgba(200,184,154,.018) 29px);
  pointer-events: none;
}
.statement-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.statement-rule { width: 36px; height: 1px; background: var(--accent); margin: 0 auto 2rem; }
.statement-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-style: italic; font-weight: 400;
  color: var(--text); line-height: 1.45; margin-bottom: 2rem;
}
.statement-cite { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }

/* ══════════════════════════════ REVIEWS (honest Google badge) ══════════════════════════════ */
.reviews { padding: 6.5rem 0; }
.reviews-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.reviews-stars { color: var(--accent); font-size: 1.6rem; letter-spacing: .15em; margin-bottom: 1rem; }
.reviews-rating { font-family: var(--ff-serif); font-size: clamp(3rem, 8vw, 5rem); font-weight: 800; color: var(--text); line-height: 1; }
.reviews-rating span { color: var(--accent); }
.reviews-sub { color: var(--text-mid); margin: 1.25rem 0 2.5rem; line-height: 1.85; }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--border-lt);
  padding: .875rem 1.5rem;
  transition: border-color .3s;
}
.google-badge:hover { border-color: var(--accent); }
.google-badge-stars { color: var(--accent); font-size: .85rem; letter-spacing: .05em; }
.google-badge span { font-size: .78rem; font-weight: 500; color: var(--text-mid); }
.google-badge strong { color: var(--text); }
.reviews-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }

/* ══════════════════════════════ GALLERY ══════════════════════════════ */
.gallery { padding: 7rem 0; background: var(--bg-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
  margin-top: 3.5rem;
}
.gallery-item { overflow: hidden; position: relative; }
.gallery-item:first-child { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(.6) brightness(.7) contrast(1.1);
  transition: filter .55s var(--ease-out), transform .55s var(--ease-out);
  min-height: 220px;
}
.gallery-item:first-child img { min-height: 440px; }
.gallery-item:hover img { filter: grayscale(0) brightness(.85) contrast(1.05); transform: scale(1.04); }
.gallery-item-label {
  position: absolute; bottom: 1rem; left: 1rem;
  font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: none; }

/* ══════════════════════════════ INFO / HOURS / FIND US ══════════════════════════════ */
.info-section { padding: 7rem 0; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.hours-list { margin-top: 2.5rem; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.hours-row:first-child { border-top: 1px solid var(--border); }
.hours-row.today .hours-day, .hours-row.today .hours-time { color: var(--accent); }
.hours-day { font-size: .8rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--text-mid); }
.hours-time { font-family: var(--ff-serif); font-size: 1rem; color: var(--text); }
.hours-closed { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }

.find-us-content { padding-top: 2.5rem; }
.address-block {
  font-family: var(--ff-serif);
  font-size: 1.2rem; font-style: italic;
  color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem;
}
.contact-line {
  display: flex; align-items: center; gap: .875rem;
  font-size: .9rem; color: var(--text-mid); margin-bottom: 1.25rem;
  transition: color .2s;
}
.contact-line:hover { color: var(--accent); }
.contact-icon {
  width: 38px; height: 38px;
  background: var(--accent-muted);
  border: 1px solid rgba(200,184,154,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; flex-shrink: 0;
}
.walkin-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent-muted);
  border: 1px solid rgba(200,184,154,.2);
  padding: .875rem 1.5rem; margin-top: 1.5rem;
  color: var(--accent);
  font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.walkin-pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: .6; } }

/* Map embed */
.map-embed { margin-top: 4rem; border: 1px solid var(--border); overflow: hidden; }
.map-embed iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.4) contrast(1.05); }

/* Prominent social contact buttons */
.social-cta { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; max-width: 440px; }
.social-btn {
  display: flex; align-items: center; gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--border-lt);
  background: var(--bg-3);
  transition: border-color .3s, transform .3s var(--ease-out), background .3s;
}
.social-btn:hover { border-color: var(--accent); transform: translateY(-3px); background: var(--surface); }
.social-btn .sb-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent-muted); border: 1px solid rgba(200,184,154,.25);
}
.social-btn .sb-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.social-btn .sb-text { display: flex; flex-direction: column; line-height: 1.3; }
.social-btn .sb-text strong { font-family: var(--ff-serif); font-size: 1.05rem; color: var(--text); }
.social-btn .sb-text span { font-size: .8rem; color: var(--text-mid); }

/* ══════════════════════════════ CONTACT FORM ══════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-card { background: var(--bg-3); border: 1px solid var(--border); padding: 2.75rem; }
.field { margin-bottom: 1.4rem; }
.field label {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-mid); margin-bottom: .55rem;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-lt);
  color: var(--text);
  font-family: var(--ff-sans);
  font-size: .92rem;
  padding: .85rem 1rem;
  transition: border-color .25s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .78rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.5rem; }
.consent input { width: auto; margin-top: .25rem; accent-color: var(--accent); }
.consent a { color: var(--accent); }
.form-note { font-size: .78rem; color: var(--text-mid); margin-top: 1rem; line-height: 1.7; }

/* ══════════════════════════════ CTA SECTION ══════════════════════════════ */
.cta-section { padding: 9rem 0; position: relative; overflow: hidden; background: var(--bg-3); }
.cta-section::before {
  content: 'BARNETTS';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 900;
  color: rgba(200,184,154,.025);
  white-space: nowrap; letter-spacing: -.05em;
  pointer-events: none; user-select: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { font-size: clamp(2.5rem, 6vw, 5.5rem); margin-bottom: 1.5rem; }
.cta-inner h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.cta-inner p { font-size: 1rem; color: var(--text-mid); max-width: 480px; margin: 0 auto 3rem; line-height: 1.85; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════ FOOTER ══════════════════════════════ */
footer { padding: 4rem 0 6rem; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .wordmark { margin-bottom: 1.25rem; }
.footer-tagline { font-size: .88rem; color: var(--text-mid); line-height: 1.8; max-width: 320px; margin-bottom: 1.5rem; }
.footer-nap { font-style: normal; font-size: .85rem; color: var(--text-mid); line-height: 2; }
.footer-nap a { color: var(--text-mid); transition: color .2s; }
.footer-nap a:hover { color: var(--accent); }
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .82rem; color: var(--text-mid); transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.25rem; }
.footer-social a {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-mid); transition: color .2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.footer-copy { font-size: .72rem; color: var(--text-dim); letter-spacing: .06em; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .72rem; color: var(--text-dim); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ══════════════════════════════ AI INFORMATION PAGE ══════════════════════════════ */
.ai-block { padding: 5rem 0; }
.ai-block + .ai-block { padding-top: 0; }
.ai-prose p { color: var(--text-mid); line-height: 1.95; margin-bottom: 1.25rem; max-width: 760px; }
.ai-facts { border-top: 1px solid var(--border); margin-top: 2.5rem; }
.ai-facts > div { display: flex; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.ai-facts dt { flex: 0 0 220px; font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.ai-facts dd { color: var(--text-mid); font-size: .95rem; }
.ai-list { list-style: none; margin-top: 1.5rem; }
.ai-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0; border-bottom: 1px solid var(--border); max-width: 600px;
}
.ai-list li b { color: var(--text); font-weight: 600; }
.ai-list li span { color: var(--accent); font-family: var(--ff-serif); font-weight: 700; white-space: nowrap; }
.faq-list { margin-top: 2.5rem; }
.faq-item { padding: 1.75rem 0; border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item h3 { font-size: 1.15rem; color: var(--text); margin-bottom: .6rem; }
.faq-item p { color: var(--text-mid); line-height: 1.85; max-width: 760px; }
@media (max-width: 600px) {
  .ai-facts > div { flex-direction: column; gap: .25rem; }
  .ai-facts dt { flex-basis: auto; }
}

/* ══════════════════════════════ MOBILE STICKY CTA BAR ══════════════════════════════ */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 120;
    background: rgba(8,8,8,.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-lt);
  }
  .mobile-cta-bar a {
    padding: 1rem;
    text-align: center;
    font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  }
  .mobile-cta-bar .mcb-directions { background: var(--accent); color: #080808; }
  .mobile-cta-bar .mcb-prices { color: var(--text); }
  body { padding-bottom: 54px; }
}

/* ══════════════════════════════ RESPONSIVE ══════════════════════════════ */
@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-rule-v { display: none; }
  .hero-strip { right: 1.5rem; gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 340px; }
  .about-img-main { width: 85%; height: 280px; }
  .about-img-secondary { width: 60%; height: 190px; }
  .about-tag { display: none; }
  .info-grid, .contact-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .price-grid { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero-title .t1, .hero-title .t3 { font-size: clamp(2.6rem, 12vw, 5rem); }
  .hero-title .t2 { font-size: clamp(1.8rem, 9vw, 3rem); margin-left: 1rem; }
  .hero-strip { display: none; }
  .service-desc { display: none; }
  .service-item { grid-template-columns: auto 1fr auto; gap: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child img, .gallery-item img { min-height: 260px; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
