/* =========================================================
   FADEZONE BARBERS — urban precision barbershop
   Palette: graphite base, off-white, volt lime accent, cool grey.
   Fonts: Archivo (display/headings) + Inter (body).
   ========================================================= */

:root {
  --graphite: #17191C;
  --graphite-2: #1D2024;
  --graphite-3: #23262B;
  --offwhite: #F2F3F1;
  --lime: #B7E332;
  --lime-dark: #8FBA1E; /* accent TEXT on graphite only — never lime-on-white */
  --grey: #9AA0A6;
  --line-dark: rgba(242, 243, 241, 0.12);
  --line-light: rgba(23, 25, 28, 0.14);
  --font-head: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --radius-lg: 8px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--offwhite);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 26px; height: 3px; background: var(--lime); flex-shrink: 0; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--lime);
  color: var(--graphite);
  padding: 0.85rem 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  border-radius: var(--radius);
  z-index: 1000;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* ---------- Buttons (44px min target) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.7rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--primary { background: var(--lime); color: var(--graphite); }
.btn--primary:hover { background: var(--offwhite); transform: translateY(-2px); box-shadow: 0 10px 26px -10px rgba(183, 227, 50, 0.55); }
.btn--dark { background: var(--graphite); color: var(--offwhite); }
.btn--dark:hover { background: var(--graphite-2); transform: translateY(-2px); }
.btn--ghost-dark { background: transparent; color: var(--offwhite); border-color: var(--line-dark); }
.btn--ghost-dark:hover { border-color: var(--lime); color: var(--lime-dark); transform: translateY(-2px); }
.btn--ghost-light { background: transparent; color: var(--graphite); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--graphite); transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1rem; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar { background: var(--graphite); color: var(--grey); font-size: 0.8rem; }
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem var(--gutter); gap: 1rem; flex-wrap: wrap;
}
.topbar__badges { font-weight: 500; letter-spacing: 0.01em; }
.topbar__badges strong { color: var(--lime-dark); font-family: var(--font-head); }
.topbar a.topbar__phone { color: var(--offwhite); font-weight: 700; display: inline-flex; align-items: center; gap: 0.35rem; }
.topbar a.topbar__phone:hover { color: var(--lime-dark); }
.topbar__phone svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: rgba(23, 25, 28, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand { font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; color: var(--offwhite); text-transform: uppercase; letter-spacing: 0.01em; display: flex; align-items: baseline; gap: 0.4rem; }
.brand__accent { color: var(--lime); }
.brand small {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); margin-top: 0.15rem;
}

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav__list { display: flex; gap: 1.85rem; }
.nav__list a { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--offwhite); position: relative; padding: 0.3rem 0; }
.nav__list a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--lime);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.nav__list a:hover::after, .nav__list a:focus-visible::after, .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
.nav__cta { display: flex; align-items: center; gap: 0.75rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; background: transparent; border: 1px solid var(--line-dark);
  border-radius: var(--radius); color: var(--offwhite); align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  /* Closed = display:none so the drawer contributes nothing to layout/overflow
     (a fixed-position box positioned off-screen via transform or negative
     inset still expands the mobile layout viewport in some browsers, causing
     unwanted horizontal scroll — display:none avoids that entirely). */
  .nav {
    display: none;
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 86vw);
    background: var(--graphite-2); flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 5.5rem 1.75rem 2rem; gap: 2rem;
    border-left: 1px solid var(--line-dark); overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; gap: 1.5rem; }
  .nav__cta { flex-direction: column; align-items: stretch; width: 100%; }
  body.nav-open { overflow: hidden; }
}
.nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 450; }
.nav-scrim.is-open { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 3.5rem 0 6.5rem; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  background: linear-gradient(165deg, var(--graphite) 0%, #14161a 100%);
  color: var(--offwhite);
}
.hero__ghost {
  position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--font-head); font-size: clamp(4rem, 17vw, 12rem); font-weight: 900;
  color: transparent; -webkit-text-stroke: 1.5px rgba(183, 227, 50, 0.14); white-space: nowrap;
  z-index: 0; pointer-events: none; text-transform: uppercase; letter-spacing: 0.02em;
}
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__eyebrow { color: var(--lime-dark); margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.1rem); text-transform: uppercase; }
.hero h1 .accent { color: var(--lime); }
.hero__lede { margin-top: 1.35rem; font-size: 1.1rem; color: var(--grey); max-width: 46ch; }
.hero__actions { margin-top: 2.1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust { margin-top: 2.35rem; display: flex; gap: 1.85rem; flex-wrap: wrap; }
.hero__trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; color: var(--grey); font-weight: 500; }
.hero__trust-item svg { width: 18px; height: 18px; color: var(--lime); flex-shrink: 0; }
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); aspect-ratio: 1/1; clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-badge {
  position: absolute; bottom: 1rem; left: 1rem; background: var(--lime); color: var(--graphite);
  border-radius: var(--radius); padding: 0.65rem 1.05rem; font-family: var(--font-head); font-size: 0.85rem;
  font-weight: 800; display: flex; align-items: center; gap: 0.5rem; text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 440px; margin: 0 auto; }
}

/* ---------- Trust band (diagonal lime) ---------- */
.trust-band {
  background: var(--lime); color: var(--graphite);
  clip-path: polygon(0 0, 100% 1.75rem, 100% 100%, 0 calc(100% - 1.75rem));
  margin-top: -2.5rem; padding: 2rem 0 2.75rem; position: relative; z-index: 2;
}
.trust-band .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem; }
.trust-band__item { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); }
.trust-band__item svg { width: 20px; height: 20px; }
.trust-band__big { font-size: 1.15rem; font-weight: 900; text-transform: uppercase; }
.trust-band__small { font-size: 0.8rem; font-weight: 600; font-family: var(--font-body); opacity: 0.75; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 6rem 0; }
.section--dark { background: var(--graphite); color: var(--offwhite); }
.section--diagonal {
  clip-path: polygon(0 3.5rem, 100% 0, 100% calc(100% - 3.5rem), 0 100%);
  margin-top: -3.5rem; padding-top: calc(6rem + 3.5rem); padding-bottom: calc(6rem + 3.5rem);
}
.section-head { max-width: 660px; margin: 0 auto 3.25rem; text-align: center; }
.section-head .eyebrow { justify-content: center; color: var(--lime-dark); }
.section--dark .section-head .eyebrow, .section-head.on-dark .eyebrow { color: var(--lime-dark); }
.section:not(.section--dark) .section-head .eyebrow { color: #5a7a12; }
.section-head h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); text-transform: uppercase; margin-top: 0.85rem; }
.section-head p { margin-top: 1.1rem; color: var(--grey); font-size: 1.05rem; }
.section:not(.section--dark) .section-head p { color: #52585e; }

/* ---------- Reveal-on-scroll (html.js gated, reduced-motion safe) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.38s var(--ease), transform 0.38s var(--ease);
    transition-delay: calc(var(--reveal-i, 0) * 50ms);
  }
  html.js .reveal.is-visible { opacity: 1; transform: none; }
  html.js [data-hero-stagger] {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.42s var(--ease), transform 0.42s var(--ease);
    transition-delay: calc(var(--reveal-i, 0) * 50ms);
  }
  html.js [data-hero-stagger].is-visible { opacity: 1; transform: none; }
}

/* ---------- Services / price list ---------- */
.price-list { max-width: 780px; margin: 0 auto; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; border-bottom: 1px solid var(--line-light);
}
.price-row:first-child { padding-top: 0; }
.price-row__info { display: flex; align-items: center; gap: 1rem; }
.price-row__icon {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: var(--radius); background: var(--graphite);
  color: var(--lime); display: flex; align-items: center; justify-content: center;
}
.price-row__icon svg { width: 22px; height: 22px; }
.price-row h3 { font-size: 1.05rem; text-transform: uppercase; }
.price-row p { color: #52585e; font-size: 0.9rem; margin-top: 0.15rem; }
.price-row__price { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; white-space: nowrap; }
.price-row__price .tag {
  display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--grey); margin-top: 0.2rem; text-align: right;
}
.price-note { margin-top: 2.25rem; text-align: center; font-size: 0.92rem; color: #52585e; font-style: italic; }
.section--dark .price-row { border-bottom-color: var(--line-dark); }
.section--dark .price-row p { color: var(--grey); }
.section--dark .price-row__price .tag { color: var(--grey); }
.section--dark .price-note { color: var(--grey); }
.section--dark .price-row__icon { background: var(--lime); color: var(--graphite); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 0.9rem; }
.gallery-grid__item {
  position: relative; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line-dark);
  background: var(--graphite-3);
}
.gallery-grid__item--tall { grid-row: span 2; }
.gallery-grid__item--wide { grid-column: span 2; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s var(--ease); }
.gallery-grid__item:hover img, .gallery-grid__item:focus-within img { transform: scale(1.03); }
.gallery-grid__item:active img { transform: scale(0.97); }
.gallery-grid__caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 0.7rem 0.9rem; font-size: 0.78rem; font-weight: 600;
  color: var(--offwhite); background: linear-gradient(0deg, rgba(23, 25, 28, 0.92), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-grid__item:hover .gallery-grid__caption, .gallery-grid__item:focus-within .gallery-grid__caption { opacity: 1; transform: translateY(0); }
.gallery-grid__item--ig {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem;
  background: var(--lime); color: var(--graphite); text-align: center; padding: 1rem;
}
.gallery-grid__item--ig svg { width: 34px; height: 34px; }
.gallery-grid__item--ig span { font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.02em; }
.gallery-grid__item--ig small { font-size: 0.72rem; font-weight: 600; opacity: 0.75; }
.gallery-grid__item--placeholder {
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 1rem;
  border: 1px dashed var(--line-dark); color: var(--grey); font-size: 0.78rem; font-weight: 600;
}
.gallery-note { margin-top: 1.75rem; text-align: center; font-size: 0.88rem; color: var(--grey); }
.gallery-note a { color: var(--lime-dark); font-weight: 700; }

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 175px; }
}
@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid__item--tall, .gallery-grid__item--wide { grid-column: span 1; grid-row: span 1; }
}

/* ---------- Why us / stats ---------- */
.why { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.why__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-dark); }
.why__media img { width: 100%; height: 100%; object-fit: cover; }
.why__list li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line-light); }
.why__list li:first-child { padding-top: 0; }
.why__list svg { width: 24px; height: 24px; color: var(--lime-dark); flex-shrink: 0; margin-top: 0.15rem; }
.why__list strong { font-family: var(--font-head); text-transform: uppercase; font-size: 0.98rem; }
.why__list span { display: block; color: #52585e; font-size: 0.92rem; margin-top: 0.2rem; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stat-card { text-align: center; padding: 1.75rem 1rem; border: 1px solid var(--line-light); border-radius: var(--radius); }
.section--dark .stat-card { border-color: var(--line-dark); }
.stat-card__big { display: block; font-family: var(--font-head); font-weight: 900; font-size: 2.1rem; color: var(--lime-dark); text-transform: uppercase; }
.stat-card__small { display: block; margin-top: 0.4rem; font-size: 0.85rem; font-weight: 600; color: #52585e; }
.section--dark .stat-card__small { color: var(--grey); }
@media (max-width: 700px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.review-card { background: var(--graphite-2); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 1.85rem; }
.review-card__stars { color: var(--lime); letter-spacing: 0.1em; margin-bottom: 0.9rem; }
.review-card p.review-card__text { font-size: 1rem; color: var(--offwhite); }
.review-card__author { margin-top: 1.1rem; font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.02em; }
.review-card .placeholder-note { display: block; margin-top: 0.55rem; font-size: 0.75rem; font-style: italic; color: var(--grey); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--graphite); color: var(--offwhite); clip-path: polygon(0 3rem, 100% 0, 100% calc(100% - 3rem), 0 100%); margin: 3rem 0; padding: 5.5rem 0; }
.cta-band .container { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4.2vw, 2.7rem); text-transform: uppercase; }
.cta-band h2 .accent { color: var(--lime); }
.cta-band p { margin-top: 1.1rem; font-size: 1.1rem; color: var(--grey); max-width: 52ch; margin-left: auto; margin-right: auto; }
.cta-band__actions { margin-top: 2.1rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Visit / contact ---------- */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.visit-card { background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); padding: 2.1rem; }
.visit-card h3 { font-size: 1.15rem; margin-bottom: 1.35rem; display: flex; align-items: center; gap: 0.6rem; text-transform: uppercase; }
.visit-card h3 svg { width: 22px; height: 22px; color: var(--lime-dark); }
.visit-list li { display: flex; gap: 0.9rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.95rem; }
.visit-list li:last-child { border-bottom: none; }
.visit-list svg { width: 20px; height: 20px; color: var(--lime-dark); flex-shrink: 0; margin-top: 0.1rem; }
.visit-list a:hover { color: #5a7a12; text-decoration: underline; }
.map-embed {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; border: 1px dashed var(--line-light);
  background: #e7e8e5; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; color: #52585e; font-size: 0.9rem;
}
@media (max-width: 800px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--graphite); color: var(--grey); border-top: 4px solid var(--lime); padding: 3.75rem 0 2.25rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
.footer-grid .brand { color: var(--offwhite); }
.footer-grid p { color: var(--grey); font-size: 0.9rem; margin-top: 0.9rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--offwhite); margin-bottom: 1.1rem; }
.footer-col li { padding: 0.4rem 0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--lime-dark); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.1rem; }
.footer-social a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-dark); border-radius: var(--radius); transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.footer-social a:hover { border-color: var(--lime); color: var(--lime-dark); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 3rem; padding-top: 1.85rem; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--lime-dark); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Mobile call/book FAB ---------- */
.mobile-fab { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 400; display: none; gap: 0.75rem; }
.mobile-fab a {
  flex: 1; min-height: 52px; border-radius: var(--radius); font-family: var(--font-head); font-weight: 800;
  text-transform: uppercase; font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.mobile-fab a:active { transform: scale(0.97); }
.mobile-fab .fab-call { background: var(--graphite); color: var(--offwhite); border: 1px solid var(--line-dark); }
.mobile-fab .fab-book { background: var(--lime); color: var(--graphite); }
.mobile-fab svg { width: 20px; height: 20px; }
@media (max-width: 720px) { .mobile-fab { display: flex; } body { padding-bottom: 78px; } }

/* ---------- Page hero (website subpages) ---------- */
.page-hero {
  position: relative; padding: 3rem 0 5rem; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  background: linear-gradient(165deg, var(--graphite) 0%, #14161a 100%); color: var(--offwhite);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--lime-dark); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); text-transform: uppercase; margin-top: 0.9rem; }
.page-hero p { margin-top: 1.1rem; color: var(--grey); font-size: 1.05rem; max-width: 56ch; }
.page-hero__crumb { margin-top: 1.5rem; display: flex; gap: 0.5rem; font-size: 0.82rem; color: var(--grey); }
.page-hero__crumb a:hover { color: var(--lime-dark); }

/* ---------- About page specifics ---------- */
.about-lede { max-width: 760px; margin: 0 auto; text-align: center; font-size: 1.15rem; color: #33383d; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.team-card { border: 1px dashed var(--line-light); border-radius: var(--radius); padding: 2.25rem 1.5rem; text-align: center; }
.team-card__avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--graphite); color: var(--lime); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem; }
.team-card__avatar svg { width: 34px; height: 34px; }
.team-card h3 { font-size: 1rem; text-transform: uppercase; color: #52585e; }
.team-card p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--grey); font-style: italic; }

/* ---------- Contact page specifics ---------- */
.contact-lede { max-width: 700px; margin: 0 auto 3rem; text-align: center; color: #33383d; font-size: 1.08rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours-table td { padding: 0.55rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; font-family: var(--font-head); }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 3rem; }
