/* ============================================================
   Hensley's Barbershop — Process v2 hand-authored CSS
   Thesis: a barbershop wall price card crossed with a 1920s
   typographic poster — oxblood chair leather, bone card stock,
   brass trim, one saturated barber-pole red reserved for BOOK.
   Type: Oswald (condensed poster caps) / Manrope (body).
   Motion signature: "the part" — a brass hairline drawn
   left-to-right like a comb drawing a clean part; the type
   settles in beneath it. Everything else is a quiet reveal.
   ============================================================ */

:root {
  /* leather + card stock */
  --oxblood:     #3d1414;   /* dominant — barber-chair leather */
  --oxblood-2:   #2a0c0c;   /* deepest — topbar, footer, CTA band */
  --oxblood-3:   #4f1c1c;   /* lifted — tiles and cards */
  --bone:        #efe6cf;   /* wall-card paper */
  --bone-2:      #e7dcc0;   /* secondary bone surface */
  --ink:         #1a0f0c;   /* near-black on bone (15.1:1) */
  --ink-soft:    #4a3a2a;   /* menu descriptions on bone (8.8:1) */
  --cream:       #f3ead8;   /* light text on oxblood (13.4:1) */
  --cream-soft:  #d8cdb6;   /* secondary cream (10.2:1) */
  /* trim */
  --brass:       #c19853;   /* kickers on oxblood: 6.0:1 */
  --brass-deep:  #9a7a40;
  --barber-red:  #c1272d;   /* ONLY for BOOK + red kickers on bone (4.7:1) */
  --barber-red-deep: #9a1f24;
  --line:        #5a2727;   /* hairline on oxblood */
  --line-bone:   #d2c69f;   /* hairline on bone */

  --display: 'Oswald', 'Arial Narrow', sans-serif;
  --body:    'Manrope', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.25, 1);
  --wrap: 72rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--oxblood);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 500; /* Manrope 500 — uniform stroke, legible on dark oxblood */
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* grain — one whisper of leather texture over the whole shop */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
iframe { display: block; }

::selection { background: var(--brass); color: var(--oxblood); }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 1.5rem; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brass); color: var(--oxblood);
  padding: 0.8rem 1.2rem; font-weight: 700; text-decoration: none;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

/* ---- type ---- */
h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--cream);
}
.accent-brass { color: var(--brass); }
.accent-red   { color: var(--barber-red); }

.kicker {
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
.kicker-red   { color: var(--barber-red); }
.kicker-cream { color: var(--cream-soft); }
.kicker-ink   { color: var(--ink); }

/* ---- barber-pole stripe — single brand mark, top + before footer ---- */
.pole-stripe {
  height: 10px;
  background: repeating-linear-gradient(
    -55deg,
    var(--barber-red) 0 22px,
    var(--cream) 22px 36px,
    var(--oxblood) 36px 58px
  );
}

/* ---- THE PART — the motion signature ----
   A brass hairline drawn left-to-right like a comb drawing a
   clean part. Hidden state ends with :not(.in-view) so the
   reveal rule can never be out-specified (anti-pattern #9). */
.part {
  display: block; border: 0; height: 2px;
  background: var(--brass);
  margin-block: 1.75rem; /* explicit breathing room before display type (anti-pattern #11) */
}
.part-short { max-width: 8.5rem; }
.js .part.part-draw:not(.in-view) { transform: scaleX(0); }
.js .part.part-draw {
  transform-origin: left center;
  transition: transform 0.9s var(--ease);
}
.js .part.part-draw.in-view { transform: scaleX(1); }

/* static rules */
.rule-brass-thin { border: 0; border-top: 1px solid var(--brass); opacity: 0.6; height: 0; }

/* ---- reveals (JS-gated: page is fully visible without JS) ---- */
.js [data-reveal]:not(.in-view) { opacity: 0; transform: translateY(14px); }
.js [data-reveal] { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js [data-reveal].in-view { opacity: 1; transform: none; }
.js [data-reveal][data-delay="1"] { transition-delay: 0.1s; }
.js [data-reveal][data-delay="2"] { transition-delay: 0.22s; }
.js [data-reveal][data-delay="3"] { transition-delay: 0.34s; }
.js [data-reveal][data-delay="4"] { transition-delay: 0.46s; }
.js [data-reveal][data-delay="5"] { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal]:not(.in-view) { opacity: 1; transform: none; }
  .js [data-reveal] { transition: none; }
  .js .part.part-draw:not(.in-view) { transform: scaleX(1); }
  .js .part.part-draw { transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---- topbar ---- */
.topbar { background: var(--oxblood-2); border-bottom: 1px solid var(--line); }
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 0.7rem;
}
.topbar-right { display: none; }
@media (min-width: 680px) {
  .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
}
.topbar-right span { color: var(--cream-soft); }
.topbar-right a { color: var(--cream); text-decoration: none; }
.topbar-right a:hover { color: var(--brass); }

/* ---- header ---- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: var(--oxblood);
  border-bottom: 2px solid var(--brass);
}
.site-head > .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; height: 5rem;
}
.brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-name {
  display: block;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  line-height: 1.1; text-transform: uppercase; color: var(--cream);
}
.brand .kicker { display: block; white-space: nowrap; }
@media (max-width: 560px) {
  .site-head > .wrap { gap: 0.9rem; }
  .brand .kicker { font-size: 0.62rem; letter-spacing: 0.2em; }
  .head-actions { gap: 0.6rem; }
  .head-actions .btn-sm { font-size: 0.78rem; padding: 11px 13px; letter-spacing: 0.12em; }
}
@media (max-width: 400px) {
  .brand .kicker { display: none; }
}
.pole-mark {
  width: 36px; height: 36px; flex: none;
  display: inline-grid; place-items: center;
  background: var(--cream);
  border: 2px solid var(--oxblood-2);
}

.nav-links { display: none; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
}
.nav-links a:hover { color: var(--brass); }
.nav-links a[aria-current="page"] {
  color: var(--brass);
  text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 2px;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.head-actions { display: flex; align-items: center; gap: 0.9rem; }

.menu-btn {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 0.65rem;
  background: none; border: 1px solid var(--line); cursor: pointer;
}
.menu-btn span { width: 20px; height: 2px; background: var(--cream); transition: transform 0.25s var(--ease), opacity 0.25s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 900px) { .menu-btn { display: none; } }
html:not(.js) .menu-btn { display: none; }

/* no-JS: mobile nav renders statically; JS hides it until opened */
.mobile-nav { border-top: 1px solid var(--line); background: var(--oxblood-2); }
.js .mobile-nav { display: none; }
.js .mobile-nav.open { display: block; }
@media (min-width: 900px) { .mobile-nav, .js .mobile-nav.open { display: none; } }
.mobile-nav a {
  display: block; padding: 1rem 1.5rem;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:hover { color: var(--brass); background: var(--oxblood); }
.mobile-nav a[aria-current="page"] { color: var(--brass); }

/* ---- buttons — wall-card stamp aesthetic, square corners, weighty.
   THE conversion element. Computed pairs (WCAG): cream on barber-red
   4.9:1 · cream on red-deep 6.8:1 · oxblood on brass 6.0:1 ·
   ink on bone 15.1:1. ---- */
.btn-book, .btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-book {
  font-weight: 700;
  background-color: var(--barber-red);
  color: var(--cream);
  padding: 14px 24px;
  border: 0;
  /* enamel catch-light on the top edge — the pole's painted finish */
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.25),
              0 14px 28px -18px rgba(193, 39, 45, 0.9);
  transition: background-color 0.18s var(--ease), transform 0.15s var(--ease),
              box-shadow 0.18s var(--ease);
}
.btn-book::after {
  content: '\2192'; font-weight: 700;
  transition: transform 0.18s var(--ease);
}
.btn-book:hover {
  background-color: var(--barber-red-deep);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.25),
              0 18px 32px -16px rgba(154, 31, 36, 0.95);
}
.btn-book:hover::after { transform: translateX(4px); }
.btn-book:active { transform: translateY(0); box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.18), 0 8px 18px -14px rgba(154, 31, 36, 0.9); }
.btn-sm { font-size: 0.85rem; padding: 12px 18px; }

.btn-primary {
  font-weight: 600;
  background-color: var(--brass);
  color: var(--oxblood);
  padding: 14px 22px;
  border: 0;
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.35);
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.btn-primary:hover { background-color: var(--cream); color: var(--oxblood); }

.btn-secondary {
  font-weight: 600;
  background: transparent;
  color: var(--cream);
  padding: 14px 22px;
  border: 2px solid var(--brass);
  transition: background-color 0.15s var(--ease), color 0.15s var(--ease);
}
.btn-secondary:hover { background-color: var(--brass); color: var(--oxblood); }

/* bone-surface button variants — explicit, no descendant-universal
   selectors (anti-pattern #10) */
.bone-section .btn-primary { background-color: var(--ink); color: var(--bone); box-shadow: none; }
.bone-section .btn-primary:hover { background-color: var(--barber-red); color: var(--cream); }
.bone-section .btn-secondary { color: var(--ink); border-color: var(--ink); }
.bone-section .btn-secondary:hover { background-color: var(--ink); color: var(--bone); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }

/* ---- sections ---- */
.section { padding-block: 5.5rem; }
@media (min-width: 900px) { .section { padding-block: 6.5rem; } }
.rule-top        { border-top: 1px solid var(--line); }
.rule-bottom     { border-bottom: 1px solid var(--line); }
.rule-top-brass  { border-top: 2px solid var(--brass); }
.rule-top-ink    { border-top: 2px solid var(--ink); }

.bone-section { background: var(--bone); color: var(--ink); }
.bone-section h1, .bone-section h2, .bone-section h3 { color: var(--ink); }
.bone-section p { color: var(--ink); }

.section-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem; margin-bottom: 3rem;
}
.section-head .note { max-width: 28rem; font-size: 1.1rem; }
.section-head h2 { margin-top: 0; }

h2.h-section { font-size: clamp(2.6rem, 1.9rem + 3vw, 3.75rem); line-height: 0.95; }
h2.h-sub     { font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3rem);   line-height: 0.95; }

.lede { font-size: 1.25rem; line-height: 1.65; max-width: 36rem; }
.measure { max-width: 42rem; }

/* ---- hero / page-hero ---- */
.hero, .page-hero { position: relative; border-bottom: 1px solid var(--line); }
.hero::before, .page-hero::before {
  /* the shop light — one warm source per page */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(52% 44% at 68% -8%, rgba(193, 152, 83, 0.14), transparent 65%);
}
.hero .wrap, .page-hero .wrap { position: relative; }

.hero-grid { display: grid; gap: 3rem; padding-block: 5rem; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); padding-block: 7rem; }
}
.hero h1 {
  font-size: clamp(3.4rem, 1.6rem + 8vw, 7rem);
  line-height: 0.9; letter-spacing: -0.01em;
}
.hero .lede { margin-top: 2.25rem; }
.hero .btn-row { margin-top: 2.75rem; }

.hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; align-content: start; }
@media (min-width: 900px) { .hero-stats { grid-template-columns: minmax(0, 1fr); } }

.page-hero .hero-grid { padding-block: 5rem; }
@media (min-width: 900px) { .page-hero .hero-grid { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); padding-block: 6rem; } }
.page-hero h1 { font-size: clamp(3.2rem, 1.8rem + 6vw, 6rem); line-height: 0.9; }
.page-hero .lede { margin-top: 2rem; }

/* ---- stat tiles — raised leather panels ---- */
.stat-tile {
  background: linear-gradient(180deg, rgba(243, 234, 216, 0.045), rgba(243, 234, 216, 0) 46%), var(--oxblood-3);
  border: 2px solid var(--brass);
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.07), 0 22px 44px -32px rgba(0, 0, 0, 0.85);
  padding: 24px 22px;
}
.stat-tile .big {
  font-family: var(--display); font-weight: 700;
  font-size: 3.25rem; line-height: 1; letter-spacing: 0.01em;
  color: var(--cream); margin-top: 0.75rem;
}
.stat-tile .sub {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--cream-soft); margin-top: 0.6rem;
}
.stat-tile .quote-line {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.7rem; line-height: 1.15; color: var(--cream); margin-top: 0.6rem;
}
.span-2 { grid-column: span 2; }
@media (min-width: 900px) { .hero-stats .span-2, .stats-aside .span-2 { grid-column: span 2; } }

/* ---- service menu — wall-card line items ---- */
.menu-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-bone);
}
.menu-list > .menu-row:first-child { border-top: 3px solid var(--ink); }
.menu-list > .menu-row:last-child  { border-bottom: 3px solid var(--ink); }
.menu-row .num {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  color: var(--barber-red); letter-spacing: 0.02em;
}
.menu-row .name {
  font-family: var(--display); font-weight: 600; font-size: 1.7rem;
  line-height: 1.1; text-transform: uppercase;
  color: var(--ink); letter-spacing: 0.02em;
}
.menu-row .name .name-note { color: var(--barber-red); font-size: 1rem; font-weight: 500; }
.menu-row .desc {
  font-family: var(--body); font-weight: 500; font-size: 0.95rem;
  color: var(--ink-soft); margin-top: 6px;
}
.menu-row .price {
  font-family: var(--display); font-weight: 700; font-size: 1.6rem;
  color: var(--ink); letter-spacing: 0.02em;
}
@media (max-width: 679px) {
  .menu-row { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 14px; }
  .menu-row .num { font-size: 1.2rem; }
  .menu-row .name { font-size: 1.35rem; }
  .menu-row .price { font-size: 1.35rem; }
}

.menu-foot {
  margin-top: 4rem; padding-top: 2.5rem; border-top: 2px solid var(--ink);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.menu-foot p { max-width: 28rem; font-size: 1.1rem; }

/* ---- chair cards — raised leather profile panels ---- */
.chair-card {
  background: linear-gradient(180deg, rgba(243, 234, 216, 0.045), rgba(243, 234, 216, 0) 46%), var(--oxblood-3);
  border: 2px solid var(--brass);
  box-shadow: inset 0 1px 0 rgba(243, 234, 216, 0.07), 0 22px 44px -32px rgba(0, 0, 0, 0.85);
  padding: 28px;
}
.chair-card .who {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  line-height: 0.95; color: var(--cream); margin-top: 0.75rem;
}
.chair-card .role { margin-top: 0.75rem; }
.chair-card p { color: var(--cream-soft); font-size: 1.1rem; line-height: 1.65; }
.chair-card .rule-brass-thin { margin-block: 1.4rem; }
.chair-card .tel {
  display: block; font-family: var(--display); font-weight: 700;
  text-transform: uppercase; font-size: 1.9rem; line-height: 1.2;
  color: var(--cream); text-decoration: none; margin-top: 0.7rem;
}
.chair-card .tel:hover { color: var(--brass); }
.chair-card address, .chair-card .card-body { font-style: normal; color: var(--cream); margin-top: 0.55rem; line-height: 1.45; }
.chair-card .dim { color: var(--cream-soft); font-size: 0.9rem; }

.chairs-grid { display: grid; gap: 1.5rem; }
@media (min-width: 680px) { .chairs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* facts list inside chair cards (the-chairs page) */
.facts { display: grid; gap: 0.8rem; }
.facts > div { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 0.5rem; align-items: baseline; }
.facts dd { color: var(--cream); }

/* numbered steps (visit + services asides) */
.steps { list-style: none; display: grid; gap: 1rem; margin-top: 1.25rem; }
.steps li { display: flex; gap: 1rem; align-items: baseline; }
.steps .n {
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  line-height: 1; color: var(--brass); flex: none;
}
.steps-red .n { color: var(--barber-red); font-size: 1.85rem; }
.steps-lg li span:last-child { font-size: 1.1rem; }

/* ---- review cards ---- */
.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 680px)  { .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px)  { .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
  background: var(--bone);
  color: var(--ink);
  padding: 26px 28px;
  border-left: 4px solid var(--barber-red);
  box-shadow: 0 20px 40px -30px rgba(0, 0, 0, 0.7);
}
.review-card .stars { color: var(--barber-red); font-size: 1.35rem; letter-spacing: 0.08em; line-height: 1; }
.review-card p { margin-top: 1rem; font-size: 1.1rem; line-height: 1.6; color: var(--ink); }
.review-card .who {
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--line-bone);
}

/* ---- ambient photo band ---- */
.shop-band { position: relative; height: 24rem; overflow: hidden; border-top: 2px solid var(--brass); }
.shop-band img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: contrast(1.05) saturate(0.9);
}
.shop-band .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61, 20, 20, 0.35) 0%, rgba(61, 20, 20, 0.72) 100%);
}
.shop-band .wrap { position: relative; height: 100%; display: flex; align-items: flex-end; padding-bottom: 2.5rem; }
.shop-band .caption-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.25rem); line-height: 1.2;
  color: var(--cream); margin-top: 0.75rem;
}

/* ---- split layouts (CTA bands, visit, booking, profiles) ---- */
.split { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .split      { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .split-8-4  { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
  .split-4-8  { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
  .split.center { align-items: center; }
  .split .end-md { display: flex; justify-content: flex-end; }
}

.band-deep { background: var(--oxblood-2); }
.band-deep .lede { margin-top: 1.25rem; max-width: 28rem; }

/* profile sections (the-chairs): card column + prose column */
.profile-grid { display: grid; gap: 3rem; padding-block: 5rem; }
@media (min-width: 900px) {
  .profile-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); }
  .profile-grid.flip { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); }
  .profile-grid.flip .profile-card { order: 2; }
  .profile-grid.flip .profile-copy { order: 1; }
}
.profile-copy p { font-size: 1.1rem; line-height: 1.7; max-width: 42rem; margin-top: 1.5rem; }
.profile-copy h2 + p { margin-top: 2rem; }
.profile-copy .btn-row { margin-top: 2rem; }

/* ---- definition rows (visit details) ---- */
.dl-rows { margin-top: 2.5rem; max-width: 28rem; display: grid; gap: 1.25rem; }
.dl-rows > div {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.dl-rows dd { color: var(--cream); }
.dl-rows .tel-lg { font-family: var(--display); font-weight: 600; font-size: 1.5rem; color: var(--cream); text-decoration: none; }
.dl-rows .tel-lg:hover { color: var(--brass); }
.dl-rows .dim { color: var(--cream-soft); font-size: 0.9rem; }

/* ---- map ---- */
.map-frame { border: 2px solid var(--brass); }
.map-frame iframe { width: 100%; border: 0; }
.map-meta { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.map-meta .place {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.7rem; line-height: 1.2; color: var(--cream); margin-top: 0.25rem;
}

/* ---- pull quote (reviews) ---- */
.pull-quote { text-align: center; }
.pull-quote .stars { color: var(--barber-red); font-family: var(--display); font-weight: 700; font-size: 2.25rem; line-height: 1; letter-spacing: 0.08em; }
.pull-quote blockquote {
  margin-top: 2rem;
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 3.6rem); line-height: 1.05;
  color: var(--ink);
}
.pull-quote .who { margin-top: 2.25rem; }

.foot-note {
  margin-top: 3rem; text-align: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cream-soft); line-height: 2;
}

/* ---- note panel + form (visit) ---- */
.note-panel { background: var(--bone-2); border: 2px solid var(--ink); padding: 2rem; }
.note-panel p { margin-top: 0.8rem; font-size: 1rem; line-height: 1.6; }
.note-panel form { margin-top: 1.5rem; display: grid; gap: 1.25rem; }

.menu-label {
  display: block;
  font-family: var(--display); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
}
.menu-input {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 2px solid var(--ink);
  padding: 12px 0 10px;
  font-family: var(--body); font-size: 1rem; font-weight: 500;
  color: var(--ink);
}
.menu-input:focus {
  outline: 0;
  border-bottom-color: var(--barber-red);
  background: rgba(193, 39, 45, 0.04);
}

/* ---- footer ---- */
.site-foot {
  background: var(--oxblood-2);
  color: var(--cream-soft);
  border-top: 2px solid var(--brass);
}
.foot-grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 900px) { .foot-grid { grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr); } }
.site-foot .brandline {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: 1.7rem; line-height: 1.2; color: var(--cream);
}
.site-foot p { margin-top: 1.25rem; max-width: 24rem; line-height: 1.65; }
.site-foot ul { list-style: none; margin-top: 1rem; display: grid; gap: 0.55rem; }
.foot-nav a {
  font-family: var(--display); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--cream-soft); text-decoration: none;
}
.site-foot a { color: var(--cream-soft); text-decoration: none; }
.site-foot a:hover { color: var(--brass); }
.foot-tel { font-family: var(--display); font-weight: 600; font-size: 1.25rem; }
.foot-dim { color: var(--cream-soft); font-size: 0.9rem; }
.foot-meta { border-top: 1px solid var(--line); }
.foot-meta .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 0.75rem; padding-block: 1.25rem;
}
