/* ===========================================================
   Barbers & Gents v2 (Netlify build)
   Palette: black + ivory + copper
   Type:    Cinzel (display) + Cormorant Garamond (editorial) + Karla (utility)
   Motion:  GSAP (hero, services, today-mark) + Motion (gallery, signature drift)
   =========================================================== */

:root {
  --ink:        #0a0a0a;
  --ink-soft:   #141414;
  --ink-card:   #181715;
  --ivory:      #efe6cf;
  --ivory-dim:  #c9bfa6;
  --bone:       #f6efdc;
  --copper:     #c08a5e;
  --copper-hi:  #d9a877;
  --copper-dim: #7a5232;
  --rule:       rgba(192, 138, 94, 0.35);
}

/* For Motion to animate the featured-row specular drift via custom prop */
@property --spec-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: -20%;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Karla', -apple-system, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--copper); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--copper-hi); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ----------  Type  ---------- */
h1, h2, h3 { margin: 0; }
h2.section-title {
  font-family: 'Cinzel', serif; font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.08em;
  color: var(--bone);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--copper);
  font-family: 'Karla', sans-serif;
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ""; flex: 0 0 36px; height: 1px; background: var(--rule);
}
.section-eyebrow.left::before { display: none; }
.section-eyebrow.left::after  { flex: 1; }

.lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--ivory-dim);
  font-style: italic; font-weight: 400;
  max-width: 620px; line-height: 1.55;
}

.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 18px 0 28px; color: var(--copper);
}
.ornament .line { width: 60px; height: 1px; background: var(--rule); }
.ornament svg { width: 22px; height: 22px; opacity: 0.85; }

/* ----------  Top utility bar  ---------- */
.topbar {
  background: #050505;
  border-bottom: 1px solid rgba(192, 138, 94, 0.18);
  color: var(--ivory-dim);
  font-size: 12px; letter-spacing: 0.12em;
}
.topbar .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 28px; max-width: 1180px; margin: 0 auto;
}
.topbar a { color: var(--ivory-dim); }
.topbar a:hover { color: var(--copper-hi); }
.topbar .pipe { color: var(--copper-dim); margin: 0 12px; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper-dim);
  box-shadow: 0 0 0 2px rgba(192,138,94,0.10);
}
.status-dot.is-open {
  background: var(--copper-hi);
  box-shadow: 0 0 0 2px rgba(217,168,119,0.18);
  animation: dot-pulse 2.4s ease-in-out infinite;
}
.status-dot.is-closed { background: rgba(255,255,255,0.18); box-shadow: none; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(217,168,119,0.18); }
  50%      { box-shadow: 0 0 0 4px rgba(217,168,119,0.32); }
}

/* ----------  Nav  ---------- */
nav.primary {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(192,138,94,0.14);
}
nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; max-width: 1180px; margin: 0 auto; gap: 16px;
}
nav .brand { display: flex; align-items: center; gap: 14px; }
nav .brand img { width: 44px; height: 44px; }
nav .brand .wordmark {
  font-family: 'Cinzel', serif; font-weight: 600;
  letter-spacing: 0.18em; font-size: 14px; color: var(--bone);
}
nav ul.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; }
nav ul.nav-links a {
  color: var(--ivory-dim);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 500;
}
nav ul.nav-links a:hover { color: var(--copper-hi); }
nav .nav-cta {
  font-family: 'Karla', sans-serif;
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); background: var(--copper);
  padding: 10px 18px; border: 1px solid var(--copper);
  transition: background .25s ease, color .25s ease;
  font-weight: 600;
}
nav .nav-cta:hover { background: var(--copper-hi); border-color: var(--copper-hi); color: var(--ink); }

/* ----------  Hero  ---------- */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('images/products-hero.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.42) contrast(1.05) saturate(0.85);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(192,138,94,0.18) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
}
.hero .content { padding: 100px 0 120px; max-width: 760px; }
.hero .crest {
  width: 88px; height: 88px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  padding: 8px; margin-bottom: 28px;
  background: rgba(0,0,0,0.4);
}
.hero .crest img { width: 100%; height: 100%; object-fit: contain; }
.hero .est {
  font-family: 'Karla', sans-serif;
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 20px;
  font-weight: 500;
}

/* Hero H1 + razor blade reveal */
.hero h1.hero-h1 {
  position: relative;
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1; letter-spacing: 0.04em;
  color: var(--bone); text-transform: uppercase;
  margin: 0 0 14px;
}
.hero h1.hero-h1 .line { display: inline; }
.hero h1.hero-h1 .amp {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  color: var(--copper); letter-spacing: 0;
  text-transform: none;
}
.hero h1.hero-h1 .char {
  display: inline-block;
  will-change: clip-path;
}
.hero h1.hero-h1 .char.space {
  width: 0.28em;
}
.hero h1.hero-h1 .razor-blade {
  position: absolute;
  top: -4%;
  left: 0;
  width: 4%;
  height: 108%;
  pointer-events: none;
  background: linear-gradient(to right,
    transparent 0,
    rgba(217,168,119,0.0) 8%,
    rgba(217,168,119,0.55) 42%,
    rgba(255,222,177,1) 50%,
    rgba(217,168,119,0.55) 58%,
    transparent 92%
  );
  filter: blur(0.4px);
  box-shadow:
    0 0 18px rgba(217,168,119,0.45),
    0 0 36px rgba(192,138,94,0.18);
  mix-blend-mode: screen;
  opacity: 0;
}

.hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ivory-dim);
  margin: 8px 0 36px; max-width: 580px;
}
.hero .cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Karla', sans-serif;
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 600;
  padding: 18px 32px;
  border: 1px solid var(--copper);
  transition: all .28s ease;
  cursor: pointer;
}
.btn-primary { background: var(--copper); color: var(--ink); }
.btn-primary:hover { background: var(--copper-hi); border-color: var(--copper-hi); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--bone); }
.btn-ghost:hover { background: rgba(192,138,94,0.1); color: var(--copper-hi); }

/* ----------  Section spacing  ---------- */
section { padding: 110px 0; position: relative; }

/* ----------  About  ---------- */
.about {
  background: var(--ink);
  border-top: 1px solid rgba(192,138,94,0.12);
  border-bottom: 1px solid rgba(192,138,94,0.12);
}
.about .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about .copy h2 { margin-bottom: 18px; }
.about .copy p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: var(--ivory-dim);
  line-height: 1.65; margin: 0 0 18px;
}
.about .copy p:first-of-type::first-letter {
  font-family: 'Cinzel', serif;
  font-size: 52px; line-height: 0.9;
  float: left; color: var(--copper);
  padding: 6px 12px 0 0; font-weight: 700;
}

/* Replaces the old .image-frame with its corner-bracket AI-default ornament */
.about .photo-block {
  margin: 0;
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
}
.about .photo-block img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.06) saturate(0.92);
}
.about .photo-block figcaption {
  margin-top: 14px;
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--copper);
  text-align: center;
  font-weight: 500;
}

.quote-pull {
  margin-top: 26px; padding: 18px 0 0;
  border-top: 1px solid var(--rule);
  font-family: 'Cinzel', serif;
  font-size: 14px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--copper);
}

/* ----------  Services  ---------- */
.services { background: #060606; }
.services .head { text-align: center; margin-bottom: 60px; }
.services .head .ornament { justify-content: center; }
.services-list { max-width: 820px; margin: 0 auto; }

/* New 3-column row: name | leader rule | price */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0 16px;
  border-bottom: 1px solid rgba(192,138,94,0.18);
  position: relative;
}
.service-row:last-child { border-bottom: 0; }
.service-row .row-left { flex: 0 1 auto; min-width: 0; max-width: 64%; }
.service-row .row-right { flex: 0 0 auto; text-align: right; min-width: 90px; padding-top: 0; }
.service-row .row-rule {
  flex: 1;
  height: 0;
  border-top: 1px dotted var(--rule);
  margin: 17px 6px 0;
  transform: scaleX(1);
  transform-origin: left center;
}
.service-row .name {
  font-family: 'Cinzel', serif; font-weight: 500;
  font-size: 18px; letter-spacing: 0.06em;
  color: var(--bone); text-transform: uppercase;
}
.service-row .desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--ivory-dim);
  font-style: italic; margin-top: 4px; line-height: 1.5;
}
.service-row .price {
  font-family: 'Cinzel', serif;
  font-size: 22px; color: var(--copper);
  font-weight: 600; white-space: nowrap;
  line-height: 1;
}
.service-row .duration {
  font-family: 'Karla', sans-serif;
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ivory-dim); margin-top: 6px;
  font-weight: 500;
}

/* Featured row + slow copper specular drift driven by Motion (--spec-x) */
.service-row.featured {
  --spec-x: -20%;
  background:
    radial-gradient(ellipse 260px 70px at var(--spec-x) 50%, rgba(217,168,119,0.18) 0%, transparent 70%),
    linear-gradient(to right, rgba(192,138,94,0.08), transparent 70%);
  padding-left: 18px;
  margin-left: -18px;
  border-left: 2px solid var(--copper);
}
.service-row.featured .name::before {
  content: "\2605 SIGNATURE  ";
  color: var(--copper);
  font-size: 10px; letter-spacing: 0.36em;
  display: block; margin-bottom: 6px;
}
.services .booking-cta { text-align: center; margin-top: 56px; }
.services .booking-cta .note {
  color: var(--ivory-dim);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 17px; margin-bottom: 22px;
}

/* ----------  Gallery  ---------- */
.gallery { background: var(--ink-soft); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 14px; margin-top: 50px;
}
.gallery-grid .tile {
  overflow: hidden; position: relative;
  aspect-ratio: 4 / 5; background: #000;
}
.gallery-grid .tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.86) grayscale(0.12);
  transition: filter .7s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Diagonal copper hover wipe via clip-path on a ::after overlay
   Replaces the v1 scale-zoom. Reads like turning a blade and catching shop light. */
.gallery-grid .tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    transparent 0 40%,
    rgba(217,168,119,0.0) 45%,
    rgba(217,168,119,0.22) 50%,
    rgba(217,168,119,0.0) 55%,
    transparent 60% 100%
  );
  background-size: 240% 240%;
  background-position: 110% 110%;
  transition: background-position .85s cubic-bezier(0.22, 1, 0.36, 1);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
  .gallery-grid .tile:hover img {
    filter: brightness(1.02) saturate(1.05) grayscale(0);
  }
  .gallery-grid .tile:hover::after {
    background-position: -10% -10%;
  }
}

.gallery-grid .tile.wide { grid-column: span 2; aspect-ratio: 8 / 5; }

/* ----------  Testimonials (restructured: editorial vertical stack)  ---------- */
.testimonials { background: var(--ink); }
.testimonials .head { text-align: center; margin-bottom: 30px; }

.quote-stack {
  max-width: 740px;
  margin: 30px auto 0;
}
.quote-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
}
.quote-item:last-child { border-bottom: 0; padding-bottom: 0; }
.quote-item .quote-body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--bone);
  margin: 0 0 18px;
}
.quote-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.quote-author {
  font-family: 'Cinzel', serif;
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.quote-source {
  font-family: 'Karla', sans-serif;
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  opacity: 0.55;
  font-weight: 500;
}

/* ----------  Visit / Hours  ---------- */
.visit { background: #050505; border-top: 1px solid rgba(192,138,94,0.12); }
.visit .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.hours-table { margin-top: 18px; border-top: 1px solid var(--rule); }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(192,138,94,0.12);
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  position: relative;
}
.hours-row .day {
  color: var(--bone);
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 12px; font-family: 'Cinzel', serif;
  align-self: center;
  display: flex; align-items: baseline; gap: 12px;
}
.hours-row .time { color: var(--ivory-dim); }

/* Today's row gets a copper hand-stroke drawn by GSAP + a small open-until tag */
.hours-row.is-today {
  background: linear-gradient(to right, rgba(192,138,94,0.05), transparent 70%);
  padding-left: 8px; margin-left: -8px;
}
.hours-row.is-today .day { color: var(--copper-hi); }
.hours-row.is-today .time { color: var(--bone); }
.today-tag {
  font-family: 'Karla', sans-serif;
  font-size: 9px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  letter-spacing: 0.24em;
  padding: 2px 6px;
  border: 1px solid var(--rule);
  border-radius: 1px;
}
.today-mark {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%; height: 4px;
  pointer-events: none;
}

.contact-block { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.contact-line {
  display: flex; align-items: center; gap: 12px;
  color: var(--ivory-dim);
  font-family: 'Cormorant Garamond', serif; font-size: 19px;
}
.contact-line svg { width: 16px; height: 16px; color: var(--copper); flex-shrink: 0; }
.map-frame {
  position: relative; aspect-ratio: 4 / 3;
  border: 1px solid var(--rule);
  overflow: hidden;
  filter: grayscale(0.4) contrast(1.05);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.visit .actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ----------  Footer  ---------- */
footer {
  background: #030303;
  border-top: 1px solid rgba(192,138,94,0.18);
  padding: 60px 0 40px;
  text-align: center;
}
footer img.mark { width: 76px; opacity: 0.85; margin: 0 auto 18px; }
footer .tag {
  font-family: 'Cinzel', serif; letter-spacing: 0.3em;
  font-size: 12px; color: var(--copper); margin-bottom: 8px;
}
footer .addr {
  color: var(--ivory-dim);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; margin: 0 0 22px;
}
footer .socials { display: flex; justify-content: center; gap: 24px; margin-bottom: 26px; }
footer .socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule); border-radius: 50%;
  color: var(--copper); transition: all .25s ease;
}
footer .socials a:hover { background: var(--copper); color: var(--ink); border-color: var(--copper); }
footer .socials svg { width: 16px; height: 16px; }
footer .legal {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--copper-dim);
}

/* ----------  Fade-in (carryover IntersectionObserver utility)  ---------- */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .9s ease, transform .9s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===========================================================
   MOBILE OPTIMIZATIONS
   =========================================================== */

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  width: 44px; height: 44px;
  cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  transition: border-color .25s ease;
}
.nav-toggle:hover { border-color: var(--copper); }
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--copper);
  transition: transform .3s ease, opacity .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 49;
  background: rgba(6,6,6,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 80px 28px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu[hidden] { display: none; }
.mobile-menu ul {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: flex; flex-direction: column; gap: 4px;
  text-align: center;
}
.mobile-menu li a {
  display: block; padding: 16px 24px;
  font-family: 'Cinzel', serif;
  font-size: 18px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bone);
  transition: color .2s ease;
}
.mobile-menu li a:hover { color: var(--copper-hi); }
.mobile-menu-cta { margin-top: 8px; min-width: 240px; justify-content: center; }
.mobile-menu-phone {
  margin-top: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 20px;
  color: var(--ivory-dim);
}

body.menu-open { overflow: hidden; }

/* ====== Tablet & smaller (<= 820px) ====== */
@media (max-width: 820px) {
  .container { padding: 0 22px; }

  .topbar { font-size: 11px; }
  .topbar .inner { padding: 8px 22px; flex-wrap: wrap; gap: 4px; justify-content: center; }
  .topbar-right { display: flex; }
  .topbar-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }

  nav .inner { padding: 12px 22px; }
  nav .brand img { width: 38px; height: 38px; }
  nav .brand .wordmark { font-size: 12px; letter-spacing: 0.14em; }
  nav ul.nav-links { display: none; }
  .desktop-only { display: none !important; }
  .nav-toggle { display: inline-flex; }

  section { padding: 70px 0; }

  .hero { min-height: 78vh; }
  .hero .content { padding: 70px 0 80px; }
  .hero .crest { width: 68px; height: 68px; margin-bottom: 22px; }
  .hero h1.hero-h1 { font-size: clamp(36px, 11vw, 56px); }
  .hero .tagline { font-size: 18px; margin: 12px 0 28px; }
  .hero .est { font-size: 10px; letter-spacing: 0.32em; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-row .btn { width: 100%; padding: 16px 22px; }

  .btn { padding: 16px 22px; font-size: 11px; letter-spacing: 0.28em; }

  .about .grid { grid-template-columns: 1fr; gap: 36px; }
  .about .copy p { font-size: 17px; }
  .about .copy p:first-of-type::first-letter { font-size: 42px; padding: 4px 10px 0 0; }

  /* Services: revert to stacked rows on mobile, hide leader rule */
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; padding: 18px 0;
  }
  .service-row .row-left { max-width: 100%; }
  .service-row .row-rule { display: none; }
  .service-row .row-right {
    text-align: left;
    display: flex; align-items: baseline; gap: 14px;
    min-width: 0;
  }
  .service-row .price { font-size: 19px; }
  .service-row .duration { margin-top: 0; }
  .service-row .name { font-size: 16px; }
  .service-row .desc { font-size: 15px; }
  .service-row.featured { margin-left: -14px; padding-left: 14px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid .tile.wide { grid-column: span 2; aspect-ratio: 4 / 3; }

  .quote-stack { margin-top: 18px; }
  .quote-item { padding: 30px 0; }
  .quote-item .quote-body { font-size: 18px; }

  .visit .grid { grid-template-columns: 1fr; gap: 36px; }
  .map-frame { aspect-ratio: 4 / 3; }
  .contact-line { font-size: 17px; word-break: break-word; }
  .visit .actions { flex-direction: column; align-items: stretch; }
  .visit .actions .btn { width: 100%; }
  .hours-row { font-size: 16px; padding: 10px 0; }
  .hours-row .day { font-size: 11px; }
  .today-tag { font-size: 8px; padding: 1px 4px; }

  footer { padding: 48px 0 32px; }
  footer img.mark { width: 64px; }
  footer .addr { font-size: 15px; padding: 0 12px; }

  h2.section-title { line-height: 1.08; }
}

/* ====== Phone (<= 480px) ====== */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .topbar .pipe { display: none; }
  .topbar-left { gap: 4px; font-size: 10.5px; }
  .topbar-left .addr-text { display: block; width: 100%; text-align: center; }
  .topbar-right { font-size: 10.5px; }

  nav .brand .wordmark { display: none; }
  nav .inner { padding: 10px 18px; }

  section { padding: 56px 0; }

  .hero { min-height: 72vh; }
  .hero .content { padding: 50px 0 64px; }
  .hero .crest { width: 60px; height: 60px; }
  .hero h1.hero-h1 { font-size: clamp(32px, 11vw, 46px); letter-spacing: 0.03em; }
  .hero .tagline { font-size: 17px; }

  .section-eyebrow { font-size: 10px; letter-spacing: 0.26em; }
  .section-eyebrow::before, .section-eyebrow::after { flex-basis: 24px; }
  h2.section-title { font-size: clamp(26px, 7.5vw, 32px); letter-spacing: 0.06em; }

  .about .copy p { font-size: 16.5px; }

  .service-row.featured .name::before { font-size: 9px; letter-spacing: 0.32em; }

  .gallery-grid { gap: 8px; }

  .mobile-menu li a { font-size: 16px; padding: 14px 22px; }
  .mobile-menu ul { margin-bottom: 24px; }
}

/* ===========================================================
   REDUCED MOTION (override every motion piece)
   =========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero h1.hero-h1 .razor-blade { display: none; }
  .hero h1.hero-h1 .char { clip-path: none !important; opacity: 1 !important; }
  .service-row { opacity: 1 !important; transform: none !important; }
  .service-row .row-rule { transform: scaleX(1) !important; }
  .service-row .price, .service-row .duration { opacity: 1 !important; transform: none !important; }
  .status-dot.is-open { animation: none !important; }
}
