/* ============================================================================
   TOP TIER — FADES & KICKS
   Lakeshore Road, Oakville

   Palette is deliberately monochrome. The brand mark is chrome, not gold,
   so the only colour on this page comes from the photography.
   ---------------------------------------------------------------------------
   1. Tokens
   2. Reset & base
   3. The taper (page fade, tapered rules, chrome sweep)
   4. Primitives (buttons, eyebrows, section heads, reveals)
   5. Brand mark
   6. Nav & mobile menu
   7. Hero
   8. Services
   9. Barbers
  10. Work / gallery + lightbox
  11. Kicks
  12. Visit
  13. Footer
  14. Reduced motion
   ========================================================================== */


/* ============================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Colour */
  --obsidian:   #08080A;
  --graphite:   #121316;
  --slate:      #1C1E22;
  --steel:      #8A8F99;   /* 6.1:1 on obsidian — safe for body copy */
  --steel-line: #6E727B;   /* borders and rules only, never text */
  --chrome:     #E9EBEF;
  --bone:       #F2F1ED;

  /* Type */
  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --script:  "Pinyon Script", "Apple Chancery", cursive;
  --body:    "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --gutter:  clamp(20px, 5vw, 48px);
  --section: clamp(88px, 12vw, 160px);
  --maxw:    1240px;

  --r-btn:   2px;
  --r-media: 3px;

  --ease: cubic-bezier(0.33, 0, 0.15, 1);
}


/* ============================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  background: var(--obsidian);          /* stops body bg propagating to canvas */
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(15px, 0.55vw + 13.5px, 17px);
  line-height: 1.65;
  color: var(--bone);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

:focus-visible {
  outline: 1px solid var(--chrome);
  outline-offset: 3px;
  border-radius: 1px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--gutter); z-index: 200;
  padding: 12px 20px;
  background: var(--bone); color: var(--obsidian);
  font-size: 14px; font-weight: 600;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 16px; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section); }


/* ============================================================================
   3. THE TAPER
   The page is one continuous fade — obsidian at the hero, lightening through
   the Kicks section, closing back down at the footer. A fade is the product.
   ========================================================================== */
body {
  background-image: linear-gradient(
    180deg,
    #08080A  0%,
    #0A0B0D 18%,
    #0F1013 42%,
    #16171B 64%,   /* Kicks sits here — the lightest point */
    #101114 82%,
    #08080A 100%
  );
  background-repeat: no-repeat;
}

/* Tapered hairline — lifted from the two rules flanking "Fades & Kicks". */
.rule {
  height: 1px; border: 0; margin: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(233, 235, 239, 0.06) 12%,
    rgba(233, 235, 239, 0.22) 50%,
    rgba(233, 235, 239, 0.06) 88%,
    transparent 100%
  );
}

/* Chrome sweep — one specular highlight rakes across the wordmark on load. */
@keyframes chrome-sweep {
  from { background-position: 150% 0, 0 0; }
  to   { background-position: -70% 0, 0 0; }
}
@keyframes chrome-sweep-mask {
  from { background-position: 150% 0; }
  to   { background-position: -70% 0; }
}

.hero__logo { position: relative; display: inline-block; }

.hero__logo::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: linear-gradient(
    100deg,
    transparent 40%,
    rgba(255, 255, 255, 0.85) 50%,
    transparent 60%
  );
  background-size: 260% 100%;
  background-repeat: no-repeat;
  background-position: 150% 0;
  -webkit-mask-image: url("../assets/logo-white.png");
          mask-image: url("../assets/logo-white.png");
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation: chrome-sweep-mask 2.4s var(--ease) 0.5s both;
}
/* No logo file yet — the text fallback carries the sweep instead. */
.hero__logo.is-missing::after { display: none; }

.sweep-text {
  background-image:
    linear-gradient(100deg, transparent 40%, rgba(255,255,255,0.95) 50%, transparent 60%),
    linear-gradient(var(--bone), var(--bone));
  background-size: 260% 100%, 100% 100%;
  background-position: 150% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: chrome-sweep 2.4s var(--ease) 0.5s both;
}


/* ============================================================================
   4. PRIMITIVES
   ========================================================================== */

/* --- Eyebrow ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--script);
  font-size: clamp(19px, 1.4vw, 23px);
  line-height: 1;
  color: var(--steel);
  margin-bottom: 18px;
}

/* --- Section head ------------------------------------------------------- */
.sec-head { max-width: 62ch; margin-bottom: clamp(44px, 5vw, 72px); }

.sec-head__title {
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 118%;
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.005em;
  color: var(--bone);
}

.sec-head__note {
  margin-top: 20px;
  max-width: 52ch;
  color: var(--steel);
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  border-radius: var(--r-btn);
  font-family: var(--display);
  font-weight: 500;
  font-stretch: 112%;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background-color 0.35s var(--ease),
              color 0.35s var(--ease),
              border-color 0.35s var(--ease);
}

.btn--solid  { background: var(--bone); color: var(--obsidian); }
.btn--solid:hover  { background: #fff; }

.btn--outline {
  border: 1px solid rgba(233, 235, 239, 0.28);
  color: var(--bone);
}
.btn--outline:hover {
  border-color: var(--chrome);
  background: rgba(233, 235, 239, 0.07);
}

.btn--ghost {
  padding-inline: 4px;
  color: var(--steel);
  border-bottom: 1px solid rgba(233, 235, 239, 0.22);
  border-radius: 0;
}
.btn--ghost:hover { color: var(--bone); border-bottom-color: var(--chrome); }

/* --- Scroll reveal ------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }


/* ============================================================================
   5. BRAND MARK
   ========================================================================== */
.mark { display: inline-block; }
.mark__img { display: block; width: auto; }
.mark__fallback { display: none; }

.mark.is-missing .mark__img,
.hero__logo.is-missing img { display: none; }

.mark.is-missing .mark__fallback,
.hero__logo.is-missing .mark__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mark__word {
  font-family: var(--display);
  font-weight: 400;
  font-stretch: 125%;
  letter-spacing: 0.16em;
  line-height: 1;
  color: var(--bone);
  text-indent: 0.16em;   /* balances the trailing letterspace */
}

.mark__script {
  font-family: var(--script);
  color: var(--steel);
  line-height: 1;
  position: relative;
  padding: 0 1.4em;
}
/* The two rules flanking the script, straight off the logo. */
.mark__script::before,
.mark__script::after {
  content: "";
  position: absolute; top: 55%;
  width: 1.1em; height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel-line));
}
.mark__script::before { left: 0; }
.mark__script::after  { right: 0; transform: scaleX(-1); }

.mark--sm .mark__img { height: 34px; }
.mark--sm .mark__word   { font-size: 17px; }
.mark--sm .mark__script { font-size: 12px; }

.mark--md .mark__img { height: 52px; }
.mark--md .mark__word   { font-size: 25px; }
.mark--md .mark__script { font-size: 16px; }


/* ============================================================================
   6. NAV
   ========================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,235,239,0.16), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav.is-stuck {
  background: rgba(10, 11, 13, 0.72);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.nav.is-stuck::after { opacity: 1; }

.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}

.nav__links {
  display: none;
  margin-inline: auto;
  gap: clamp(22px, 2.6vw, 40px);
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  padding-block: 4px;
  transition: color 0.3s var(--ease);
}
.nav__links a:hover { color: var(--bone); }

.nav__cta { display: none; padding: 12px 24px; font-size: 12px; }

/* --- Hamburger ---------------------------------------------------------- */
.nav__toggle {
  margin-left: auto;
  width: 42px; height: 42px;
  display: grid; align-content: center; justify-items: end; gap: 7px;
  padding: 0 2px;
}
.nav__toggle span {
  display: block; height: 1px; background: var(--bone);
  transition: width 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span:first-child { width: 26px; }
.nav__toggle span:last-child  { width: 17px; }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { width: 26px; transform: translateY(-4px) rotate(-45deg); }

/* --- Mobile menu -------------------------------------------------------- */
.menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 108px var(--gutter) 48px;
  display: flex; flex-direction: column; gap: 30px;
  overflow-y: auto;
}
.menu[hidden] { display: none; }

.menu__links { display: flex; flex-direction: column; gap: 6px; }
.menu__links a {
  font-family: var(--display);
  font-weight: 300;
  font-stretch: 118%;
  font-size: clamp(30px, 9vw, 44px);
  line-height: 1.25;
  color: var(--bone);
}
.menu__cta { align-self: flex-start; }
.menu__tel {
  font-size: 15px; letter-spacing: 0.05em; color: var(--steel);
}


/* ============================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: 132px 0 72px;
  overflow: hidden;
}

/* Deliberately not positioned — the figure inside it anchors to .hero so it can
   bleed off the viewport edge. .hero__copy carries the stacking context instead. */
.hero__grid {
  width: 100%; max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero__copy { position: relative; z-index: 2; }

.hero__eyebrow { margin-bottom: 26px; }
.hero__title   { margin: 0 0 30px; }

.hero__logo img { width: min(520px, 82vw); }
.hero__logo .mark__word   { font-size: clamp(38px, 9vw, 70px); }
.hero__logo .mark__script { font-size: clamp(20px, 4.4vw, 32px); }

.hero__lede {
  max-width: 46ch;
  font-size: clamp(16px, 1.1vw, 19px);
  color: var(--steel);
}

.hero__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  margin-top: 38px;
}

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 14px 44px;
  margin-top: clamp(48px, 7vw, 84px);
  padding-top: 26px;
  border-top: 1px solid rgba(233, 235, 239, 0.09);
}
.hero__facts dt {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--steel); margin-bottom: 6px;
}
.hero__facts dd {
  font-family: var(--display); font-weight: 400; font-stretch: 112%;
  font-size: 16px; letter-spacing: 0.02em; color: var(--bone);
}

/* Photography enters as a tight crop that fades out of the black. */
.hero__figure { margin-top: 44px; }
.hero__figure img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 50% 32%;
  border-radius: var(--r-media);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 42%);
}

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 26px; z-index: 2;
  display: none; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--steel);
}
.hero__scroll span {
  width: 46px; height: 1px;
  background: linear-gradient(90deg, var(--steel-line), transparent);
}

@media (min-width: 960px) {
  .hero { min-height: 100vh; min-height: 100svh; padding: 140px 0 96px; }
  .hero__grid { padding-right: 46%; }

  .hero__figure {
    position: absolute; inset: 0 0 0 auto; z-index: 1;
    width: 46%; max-width: 660px; margin: 0;
  }
  .hero__figure img {
    width: 100%; height: 100%;
    aspect-ratio: auto;
    object-position: 42% 30%;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 46%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 46%);
  }
  .hero__scroll { display: flex; }
}


/* ============================================================================
   8. SERVICES
   An editorial ruled price list. Not cards.
   ========================================================================== */
.svc-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 4px 20px;
  padding-block: 22px;
}
.svc-row::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(
    90deg,
    rgba(233,235,239,0.03) 0%,
    rgba(233,235,239,0.14) 40%,
    rgba(233,235,239,0.14) 60%,
    rgba(233,235,239,0.03) 100%
  );
  transition: background 0.45s var(--ease);
}
.svc-row:hover::after {
  background: linear-gradient(
    90deg,
    rgba(233,235,239,0.05) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(233,235,239,0.30) 70%,
    rgba(233,235,239,0.05) 100%
  );
}

.svc-row__name {
  grid-column: 1;
  font-family: var(--display);
  font-weight: 400; font-stretch: 116%;
  font-size: clamp(19px, 2.2vw, 25px);
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--bone);
}
.svc-row__name em {
  font-style: normal; font-size: 0.6em; letter-spacing: 0.06em;
  color: var(--steel);
}

.svc-row__price {
  grid-column: 2; grid-row: 1;
  font-family: var(--display);
  font-weight: 400; font-stretch: 108%;
  font-size: clamp(19px, 2.2vw, 25px);
  font-variant-numeric: tabular-nums;
  color: var(--bone);
  text-align: right;
}

.svc-row__desc {
  grid-column: 1 / -1;
  max-width: 56ch;
  font-size: 15px;
  color: var(--steel);
}

.svc-row__time {
  grid-column: 1 / -1;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--steel);
  margin-top: 6px;
}

@media (min-width: 820px) {
  .svc-row {
    grid-template-columns: minmax(190px, 1fr) minmax(0, 1.7fr) 92px 92px;
    align-items: baseline;
    gap: 0 32px;
    padding-block: 28px;
  }
  .svc-row__desc  { grid-column: 2; grid-row: 1; max-width: none; }
  .svc-row__time  { grid-column: 3; grid-row: 1; margin-top: 0; text-align: right; }
  .svc-row__price { grid-column: 4; grid-row: 1; }
}

.svc-foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
  margin-top: clamp(40px, 5vw, 64px);
}
.svc-foot p { color: var(--steel); max-width: 42ch; }


/* ============================================================================
   9. BARBERS
   Greyscale by default. In a palette with no accent, the barbers are the colour.
   ========================================================================== */
.brb-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(36px, 4vw, 48px);
}
@media (min-width: 700px)  { .brb-grid { grid-template-columns: repeat(3, 1fr); } }

.brb-card__media {
  position: relative;
  background: var(--slate);
  border-radius: var(--r-media);
  overflow: hidden;
  margin-bottom: 22px;
}
.brb-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.92);
  transition: filter 0.6s var(--ease), transform 0.8s var(--ease);
}
.brb-card:hover .brb-card__media img,
.brb-card:focus-within .brb-card__media img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.03);
}

.brb-card__name {
  font-family: var(--display);
  font-weight: 400; font-stretch: 116%;
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.2;
  color: var(--bone);
}
.brb-card__role {
  margin-top: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--steel);
}
.brb-card__note {
  margin-top: 14px;
  font-size: 15px;
  color: var(--steel);
  max-width: 34ch;
}

/* Stagger the three cards. */
.brb-card:nth-child(2) { transition-delay: 0.09s; }
.brb-card:nth-child(3) { transition-delay: 0.18s; }


/* ============================================================================
   10. WORK / GALLERY
   ========================================================================== */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: clamp(130px, 26vw, 190px);
  grid-auto-flow: dense;
  gap: 12px;
}
/* Six items on four columns: one tall + one wide + four square fills exactly two
   rows with no ragged edge. Below 760px they collapse to a plain 2-up of squares. */
@media (min-width: 760px) {
  .gal-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
  }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--tall { grid-row: span 2; }
}

.gal-btn {
  display: block;
  width: 100%; height: 100%;
  padding: 0;
  background: var(--slate);
  border-radius: var(--r-media);
  overflow: hidden;
}
.gal-btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.05) brightness(0.9);
  transition: filter 0.6s var(--ease), transform 0.9s var(--ease);
}
.gal-btn:hover img,
.gal-btn:focus-visible img {
  filter: grayscale(0) contrast(1) brightness(1);
  transform: scale(1.05);
}

/* --- Lightbox ----------------------------------------------------------- */
.lbox {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: clamp(20px, 5vw, 64px);
  background: rgba(6, 6, 8, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: lbox-in 0.3s var(--ease) both;
}
.lbox[hidden] { display: none; }
@keyframes lbox-in { from { opacity: 0; } to { opacity: 1; } }

.lbox__img {
  max-width: 100%; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--r-media);
}
.lbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 46px; height: 46px;
  font-size: 30px; line-height: 1;
  color: var(--bone);
  border: 1px solid rgba(233,235,239,0.22);
  border-radius: var(--r-btn);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.lbox__close:hover { border-color: var(--chrome); background: rgba(233,235,239,0.08); }


/* ============================================================================
   11. KICKS
   The lightest point of the page taper — the one place colour is allowed in.
   ========================================================================== */
.section--kicks {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(233,235,239,0.028) 22%, rgba(233,235,239,0.028) 78%, transparent);
}

.kicks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
@media (min-width: 900px) { .kicks-grid { grid-template-columns: repeat(4, 1fr); } }

.kicks-card__media {
  background: var(--slate);
  border-radius: var(--r-media);
  overflow: hidden;
  margin-bottom: 18px;
}
.kicks-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.kicks-card:hover .kicks-card__media img { transform: scale(1.05); }

.kicks-card__name {
  font-family: var(--display);
  font-weight: 400; font-stretch: 112%;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.3;
  color: var(--bone);
}
.kicks-card__meta {
  margin-top: 7px;
  font-size: 12px; letter-spacing: 0.07em;
  color: var(--steel);
}
.kicks-card__price {
  margin-top: 10px;
  font-family: var(--display);
  font-weight: 500; font-stretch: 108%;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: var(--bone);
}

.kicks-foot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 22px;
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 30px;
  border-top: 1px solid rgba(233,235,239,0.09);
}
.kicks-foot p { color: var(--steel); max-width: 46ch; }


/* ============================================================================
   12. VISIT
   ========================================================================== */
.visit { display: grid; gap: clamp(34px, 4vw, 56px); }

@media (min-width: 860px)  { .visit { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1160px) {
  .visit { grid-template-columns: 0.8fr 1fr 1.5fr; align-items: start; }
}

.visit__label {
  font-family: var(--body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(233,235,239,0.12);
}
.visit__label--gap { margin-top: 38px; }

.hours th, .hours td {
  padding: 11px 0;
  text-align: left;
  font-weight: 400;
  font-size: 15px;
  border-bottom: 1px solid rgba(233,235,239,0.06);
}
.hours th { color: var(--steel); }
.hours td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  color: var(--bone);
}
.hours td.hours__closed { color: var(--steel); }

/* Today's row, marked by JS. */
.hours tr.is-today th,
.hours tr.is-today td { color: var(--bone); }
.hours tr.is-today th {
  position: relative;
  padding-left: 16px;
}
.hours tr.is-today th::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 6px; height: 1px;
  background: var(--chrome);
}

.visit__addr {
  font-style: normal;
  font-family: var(--display);
  font-weight: 400; font-stretch: 112%;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.45;
  color: var(--bone);
}
.visit__note { margin-top: 14px; font-size: 14px; color: var(--steel); }

.visit__link {
  display: block;
  padding: 9px 0;
  font-size: 16px;
  color: var(--steel);
  transition: color 0.3s var(--ease);
}
.visit__link:hover { color: var(--bone); }

.visit__cta { margin-top: 30px; }

.visit__map {
  background: var(--slate);
  border-radius: var(--r-media);
  overflow: hidden;
  min-height: 320px;
}
.visit__map iframe {
  width: 100%; height: 100%; min-height: 320px;
  border: 0;
  /* Inverted and desaturated so the map reads as part of the palette. */
  filter: invert(0.92) grayscale(1) contrast(0.92) brightness(0.96);
}
@media (min-width: 860px)  { .visit__map { grid-column: 1 / -1; min-height: 380px; } }
@media (min-width: 1160px) { .visit__map { grid-column: 3; grid-row: 1; min-height: 440px; height: 100%; } }


/* ============================================================================
   13. FOOTER
   ========================================================================== */
.foot { padding-bottom: 44px; }

.foot__grid {
  display: grid; gap: 40px;
  padding-top: clamp(48px, 6vw, 76px);
}
@media (min-width: 780px) {
  .foot__grid { grid-template-columns: 1.6fr 1fr 1fr; align-items: start; }
}

.foot__tag { margin-top: 20px; font-size: 14px; color: var(--steel); max-width: 32ch; }

.foot__nav, .foot__contact { display: flex; flex-direction: column; gap: 11px; }
.foot__nav a, .foot__contact a {
  font-size: 14px;
  color: var(--steel);
  transition: color 0.3s var(--ease);
  width: fit-content;
}
.foot__nav a:hover, .foot__contact a:hover { color: var(--bone); }

.foot__legal {
  display: flex; flex-wrap: wrap; gap: 8px 28px;
  margin-top: clamp(48px, 6vw, 76px);
  padding-top: 24px;
  border-top: 1px solid rgba(233,235,239,0.07);
  font-size: 12px; letter-spacing: 0.05em;
  color: var(--steel);
}


/* ============================================================================
   BREAKPOINT — desktop nav
   ========================================================================== */
@media (min-width: 900px) {
  .nav__links  { display: flex; }
  .nav__cta    { display: inline-flex; }
  .nav__toggle { display: none; }
  .menu        { display: none !important; }
}


/* ============================================================================
   14. REDUCED MOTION
   Everything arrives at its final state immediately. Nothing moves.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal { opacity: 1; transform: none; }

  /* Settle the sweep on its solid fill rather than mid-highlight. */
  .sweep-text {
    animation: none;
    background-image: linear-gradient(var(--bone), var(--bone));
    -webkit-background-clip: border-box;
            background-clip: border-box;
    color: var(--bone);
  }
  .hero__logo::after { display: none; }

  .brb-card__media img,
  .gal-btn img,
  .kicks-card__media img { transform: none !important; }
}
