/* ============================================================
   M & S WATCH GALLERY — MECHANICAL ZINE / PLATE Ø
   Variant 03 of 03
============================================================ */

:root {
  /* --------- PALETTE --------- */
  --paper:     #FAF7F0;        /* warm white */
  --ink:       #111111;        /* body / lines */
  --ink-soft:  #4a4a48;
  --rule:      rgba(17,17,17,0.18);
  --rule-soft: rgba(17,17,17,0.10);

  --yellow:    #F4C430;        /* signage yellow */
  --yellow-d:  #d9ac1e;
  --blue:      #1E40AF;        /* blueprint */
  --blue-soft: rgba(30,64,175,0.55);
  --red:       #DC2626;        /* caution */
  --red-soft:  rgba(220,38,38,0.10);

  /* --------- TYPE --------- */
  --t-display: 'Big Shoulders Display', 'Archivo Black', Impact, system-ui, sans-serif;
  --t-display-wide: 'Archivo Black', 'Big Shoulders Display', Impact, sans-serif;
  --t-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --fs-xxl: clamp(4.2rem, 14vw, 11rem);
  --fs-xl:  clamp(2.8rem, 9vw,  6.5rem);
  --fs-l:   clamp(2.0rem, 5vw,  3.6rem);
  --fs-m:   clamp(1.1rem, 1.6vw, 1.25rem);
  --fs-base: 0.95rem;
  --fs-small: 0.78rem;
  --fs-eyebrow: 0.74rem;

  /* --------- SPACE --------- */
  --gutter: clamp(1.1rem, 3vw, 2.4rem);
  --section-pad: clamp(3.5rem, 8vw, 7rem);
  --max: 1280px;

  /* --------- MOTION --------- */
  --ease: cubic-bezier(.6, .04, .25, 1);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--t-mono);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;

  /* subtle blueprint grid as page background */
  background-image:
    linear-gradient(to right, rgba(17,17,17,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,17,17,0.025) 1px, transparent 1px);
  background-size: 32px 32px;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-underline-offset: 3px; }
a:hover { color: var(--blue); }

button, input { font: inherit; }

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

/* ============================================================
   TYPE PRIMITIVES
============================================================ */
.display-xl, .display-l, .display-xxl {
  font-family: var(--t-display);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.display-xl  { font-size: var(--fs-xl); }
.display-l   { font-size: var(--fs-l); }
.display-xxl {
  font-family: var(--t-display-wide);
  font-size: var(--fs-xxl);
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.eyebrow {
  font-family: var(--t-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 1.1rem;
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--blue);
  border-radius: 1px;
  font-weight: 500;
}
.eyebrow--dark { color: var(--paper); border-color: var(--paper); }

.mono { font-family: var(--t-mono); }
.small { font-size: var(--fs-small); }
.mute  { color: var(--ink-soft); }

.lede {
  font-size: var(--fs-m);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0;
  color: var(--ink-soft);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.4rem;
  font-family: var(--t-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1.5px solid var(--ink);
  border-radius: 1px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }

.btn--primary {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--primary:hover { background: var(--yellow-d); color: var(--ink); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn--dark {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 4px 4px 0 var(--yellow);
}
.btn--dark:hover { background: var(--yellow); border-color: var(--yellow); box-shadow: 6px 6px 0 var(--paper); }

.btn--ghost-dark {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
  box-shadow: none;
}
.btn--ghost-dark:hover { background: var(--paper); color: var(--ink); box-shadow: 3px 3px 0 var(--yellow); }

.btn--small { padding: 0.65rem 1rem; font-size: 0.74rem; }

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
}
.header-rule {
  height: 6px;
  background:
    repeating-linear-gradient(
      to right,
      var(--ink) 0 8px,
      transparent 8px 12px
    );
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--t-display-wide);
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}
.wm-mono {
  font-family: var(--t-mono);
  font-weight: 700;
  background: var(--yellow);
  color: var(--ink);
  padding: 0.18rem 0.45rem;
  border: 1.5px solid var(--ink);
  letter-spacing: 0.02em;
  font-size: 0.85rem;
}
.wm-divider { color: var(--blue); font-family: var(--t-mono); }
.wm-display { font-size: 1rem; letter-spacing: 0.04em; }

.primary-nav {
  display: none; /* shown on wider screens */
  gap: 1.4rem;
  font-family: var(--t-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.primary-nav a { text-decoration: none; padding: 0.3rem 0; border-bottom: 1.5px solid transparent; }
.primary-nav a:hover { border-bottom-color: var(--blue); color: var(--blue); }

.header-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--t-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.55rem;
  border: 1.5px solid var(--ink);
  border-radius: 1px;
  background: var(--paper);
  white-space: nowrap;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-soft);
}
.status--open .status-dot {
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: pulse 2.2s var(--ease) infinite;
}
.status--open { color: var(--ink); }
.status--closed .status-dot { background: var(--red); }
.status--closed { color: var(--red); border-color: var(--red); }
.status--warm   { color: var(--ink); }
.status--warm .status-dot { background: var(--yellow); }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0); }
  100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); }
}

.header-phone {
  display: none; /* hide compact on mobile, status alone */
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  font-family: var(--t-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.55rem;
  border: 1.5px solid var(--ink);
  border-radius: 1px;
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
}
.header-phone:hover { background: var(--yellow); color: var(--ink); }
.phone-label { font-size: 0.62rem; letter-spacing: 0.18em; }

/* ============================================================
   HERO — PLATE Ø
============================================================ */
.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) var(--gutter) clamp(3rem, 6vw, 6rem);
  max-width: var(--max);
  margin: 0 auto;
}

.corner {
  position: absolute;
  width: 26px; height: 26px;
  border-color: var(--ink);
  border-style: solid;
  border-width: 0;
}
.corner--tl { top: 16px; left: 16px;    border-top-width: 2px;    border-left-width: 2px;    }
.corner--tr { top: 16px; right: 16px;   border-top-width: 2px;    border-right-width: 2px;   }
.corner--bl { bottom: 16px; left: 16px; border-bottom-width: 2px; border-left-width: 2px;    }
.corner--br { bottom: 16px; right: 16px;border-bottom-width: 2px; border-right-width: 2px;   }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.hero-meta { display: none; }

.hero-headline { max-width: 38ch; }
.hilite {
  display: inline-block;
  background: var(--yellow);
  padding: 0.04em 0.18em;
  margin-top: 0.15em;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero-lede {
  font-family: var(--t-mono);
  font-size: var(--fs-m);
  line-height: 1.6;
  margin-top: 1.6rem;
  color: var(--ink);
  border-left: 2px solid var(--blue);
  padding-left: 0.9rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* ----- HERO DIAGRAM ----- */
.hero-diagram {
  margin: 0;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 0.8rem;
  box-shadow:
    inset 0 0 0 1px var(--paper),
    inset 0 0 0 2px var(--ink);
}
.hero-diagram::before {
  /* faux drafting grid behind */
  content: '';
  position: absolute;
  inset: 0.8rem;
  background-image:
    linear-gradient(to right, rgba(30,64,175,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(30,64,175,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.movement-svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.movement-svg .cal-key {
  font-family: var(--t-mono);
  font-size: 12px;
  font-weight: 700;
  fill: var(--blue);
}
.movement-svg .cal-label {
  font-family: var(--t-mono);
  font-size: 10px;
  fill: var(--ink);
  letter-spacing: 0.04em;
}
.movement-svg .dim-label {
  font-family: var(--t-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.movement-svg .tb-label {
  font-family: var(--t-display-wide);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.movement-svg .tb-sub {
  font-family: var(--t-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  fill: var(--ink-soft);
}

/* Draw-in animation on load */
@media (prefers-reduced-motion: no-preference) {
  .movement-svg .draw-line {
    stroke-dasharray: 1800;
    stroke-dashoffset: 1800;
    animation: draw 2.4s var(--ease) 0.2s forwards;
  }
  .movement-svg .part {
    opacity: 0;
    animation: fadepart 0.6s var(--ease) forwards;
  }
  .movement-svg .part:nth-child(5)  { animation-delay: 0.6s; }
  .movement-svg .part:nth-child(6)  { animation-delay: 0.75s; }
  .movement-svg .part:nth-child(7)  { animation-delay: 0.9s; }
  .movement-svg .part:nth-child(8)  { animation-delay: 1.05s; }
  .movement-svg .part:nth-child(9)  { animation-delay: 1.2s; }
  .movement-svg .part:nth-child(10) { animation-delay: 1.35s; }
  .movement-svg .part:nth-child(11) { animation-delay: 1.5s; }

  .movement-svg .callout {
    opacity: 0;
    animation: fadepart 0.4s var(--ease) 1.8s forwards;
  }
}
@keyframes draw   { to { stroke-dashoffset: 0; } }
@keyframes fadepart { to { opacity: 1; } }

.reduce-motion .movement-svg .draw-line,
.reduce-motion .movement-svg .part,
.reduce-motion .movement-svg .callout {
  animation: none !important;
  opacity: 1 !important;
  stroke-dashoffset: 0 !important;
}

/* ============================================================
   SECTION HEAD
============================================================ */
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter) clamp(2rem, 4vw, 3rem);
}
.section-head--center { text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* shared section wrapper for direct children */
section { max-width: 100vw; }

/* ============================================================
   SERVICES — PLATES
============================================================ */
.services { padding-bottom: var(--section-pad); }

.plates {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--gutter);
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.plate {
  position: relative;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 4px 4px 0 var(--ink);
}
.plate::before {
  /* sheet hole punches, top corners */
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 6px; height: 6px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.plate::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 6px; height: 6px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.plate:hover {
  transform: translate(-3px, -3px) rotate(-0.4deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.plate--featured {
  background:
    repeating-linear-gradient(
      45deg,
      var(--paper) 0 18px,
      rgba(244,196,48,0.18) 18px 19px
    );
  border-color: var(--ink);
}
.plate--featured::after {
  content: 'BENCH WORK';
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--t-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.5rem;
  border: none;
  width: auto; height: auto;
  border-radius: 0;
}

.plate-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--t-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 0.5rem;
  margin-bottom: 0.3rem;
  margin-top: 0.4rem;
}
.plate-num { font-weight: 700; }
.plate-meta { color: var(--ink-soft); }

.plate-title {
  font-family: var(--t-display-wide);
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin: 0.2rem 0 0;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.plate-price {
  font-family: var(--t-mono);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  background: var(--yellow);
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border: 1.5px solid var(--ink);
  align-self: flex-start;
}
.plate-desc {
  font-family: var(--t-mono);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0.3rem 0 0.5rem;
  color: var(--ink);
}
.plate-tags {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  border-top: 1px dashed var(--rule);
  padding-top: 0.7rem;
}
.plate-tags li {
  font-family: var(--t-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 0.12rem 0.4rem;
  border-radius: 1px;
}

/* ============================================================
   FIELD NOTES
============================================================ */
.field-notes {
  background: var(--ink);
  color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(250,247,240,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(250,247,240,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.field-notes .section-head { padding-bottom: 0; }
.field-notes .eyebrow { color: var(--yellow); border-color: var(--yellow); }
.field-notes .display-l { color: var(--paper); }

.notes-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) var(--gutter) var(--section-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.note {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--paper);
  padding: 1.4rem 1.5rem 1.6rem;
  position: relative;
  box-shadow: 5px 5px 0 var(--yellow);
}
.note p { margin: 0.5rem 0; font-size: 0.92rem; line-height: 1.6; }
.note p em { font-style: italic; background: rgba(244,196,48,0.4); padding: 0 0.18em; }

.note-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--t-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  margin-bottom: 0.4rem;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 0.5rem;
}
.note-stamp { font-weight: 700; color: var(--ink); }
.note-stamp--mute { color: var(--ink-soft); font-weight: 500; }

.note-title {
  font-family: var(--t-display-wide);
  font-size: 1.7rem;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0.2rem;
  line-height: 1;
}

.note--diagram { background: var(--paper); padding: 1rem 1rem 1.2rem; }
.note--diagram .mini-diagram { width: 100%; height: auto; border: 1px dashed var(--rule); padding: 0.5rem; background: var(--paper); }
.note--diagram p { margin: 0.6rem 0 0; color: var(--ink-soft); }

/* ============================================================
   RECOGNITION / SPECS
============================================================ */
.recognition {
  background: var(--paper);
  padding-bottom: var(--section-pad);
}
.recognition .section-head { padding-top: var(--section-pad); }

.spec-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.spec {
  margin: 0;
  padding: 1.4rem 1.2rem 1.6rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  position: relative;
  background: var(--paper);
}
.spec:nth-child(odd) {
  background-image:
    linear-gradient(135deg, transparent 0 49.5%, rgba(30,64,175,0.06) 49.5% 50.5%, transparent 50.5% 100%);
  background-size: 8px 8px;
}
.spec-key {
  font-family: var(--t-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.spec-val {
  margin: 0;
  font-size: clamp(3rem, 9vw, 6rem);
  color: var(--ink);
}
.spec-val .unit { font-size: 0.45em; vertical-align: top; margin-left: 0.05em; }
.spec-sub {
  font-family: var(--t-mono);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
}

/* ============================================================
   COORDINATES
============================================================ */
.coordinates {
  background: var(--paper);
  padding-bottom: var(--section-pad);
  border-top: 6px solid var(--ink);
}

.coord-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.coord-card {
  border: 1.5px solid var(--ink);
  background: var(--paper);
  padding: 1.2rem 1.3rem 1.4rem;
  position: relative;
}
.coord-head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 0.5rem;
}
.coord-num {
  font-family: var(--t-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-weight: 700;
}
.coord-title {
  font-family: var(--t-display-wide);
  font-size: 1.15rem;
  margin: 0;
  letter-spacing: 0.02em;
}

.address {
  font-style: normal;
  font-family: var(--t-mono);
  display: block;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.1rem;
}
.address .line { display: block; }

.big-phone {
  display: block;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--t-display-wide);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.big-phone:hover { color: var(--blue); background: rgba(30,64,175,0.06); }
.big-phone-code {
  display: block;
  font-family: var(--t-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.big-phone-num {
  display: block;
  font-size: clamp(2rem, 6vw, 2.8rem);
}

.social-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.3rem; }
.social-list a { text-decoration: none; }
.social-list a:hover { color: var(--blue); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.45rem 0.4rem;
  border-bottom: 1px dashed var(--rule);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hours-table th {
  font-weight: 700;
  color: var(--blue);
  width: 4rem;
}
.hours-table td.closed { color: var(--red); font-weight: 700; letter-spacing: 0.18em; }

.note-line {
  margin: 0.9rem 0 0;
  padding: 0.6rem 0.7rem;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  color: var(--ink);
  font-weight: 500;
}

.storefront-fig {
  position: relative;
  margin: 0;
  border: 1px solid var(--ink);
}
.storefront-fig img {
  width: 100%;
  display: block;
  filter: contrast(1.05) saturate(1.1);
}
.coord-card--photo .mono.small { margin-top: 0.6rem; color: var(--ink-soft); }

/* annotations on the photo */
.annot {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--t-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: rgba(17,17,17,0.85);
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--yellow);
  white-space: nowrap;
  pointer-events: none;
}
.annot-key {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.3rem;
  font-weight: 700;
}
.annot--sign { top: 12%; left: 30%; }
.annot--door { bottom: 22%; left: 30%; }
.annot--roof { top: 5%; right: 6%; }

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--ink);
  background: var(--ink);
}
.map-wrap iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(1.05);
}

/* ============================================================
   ENGAGE — final block
============================================================ */
.engage {
  background: var(--ink);
  color: var(--paper);
  padding: var(--section-pad) var(--gutter);
  position: relative;
  overflow: hidden;
}
.engage::before, .engage::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  background:
    repeating-linear-gradient(
      to right,
      var(--yellow) 0 8px,
      var(--ink) 8px 12px
    );
}
.engage::before { top: 0; }
.engage::after  { bottom: 0; }
.engage-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}
.engage-headline { color: var(--paper); margin: 0.5rem 0 1.6rem; }
.engage-headline #engage-status {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 0.12em;
}
.engage-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.engage-sub { margin: 1.3rem 0 0; color: rgba(250,247,240,0.7); }
.engage-rule {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--t-mono);
  color: rgba(250,247,240,0.3);
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(2rem, 5vw, 3.5rem) var(--gutter) 1.4rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.footer-block .mute { color: var(--blue); font-weight: 700; letter-spacing: 0.18em; margin: 0 0 0.4rem; font-size: 0.66rem; }
.footer-block p { margin: 0; line-height: 1.6; }
.footer-block a { color: var(--ink); }
.footer-block a:hover { color: var(--blue); }

.footer-rule {
  margin: 1.6rem 0 0.8rem;
  max-width: var(--max);
  margin-inline: auto;
  height: 3px;
  background:
    repeating-linear-gradient(
      to right,
      var(--ink) 0 6px,
      transparent 6px 10px
    );
}
.footer-meta {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

/* ============================================================
   FOCUS / A11Y
============================================================ */
:focus-visible {
  outline: 2.5px solid var(--blue);
  outline-offset: 3px;
  border-radius: 1px;
}

/* ============================================================
   RESPONSIVE
============================================================ */

/* Hide some manual furniture on the smallest screens to declutter */
@media (max-width: 539px) {
  .annot { display: none; }
  .corner { width: 18px; height: 18px; }
}

/* >= 540 */
@media (min-width: 540px) {
  :root { --fs-base: 0.98rem; }
  .header-phone { display: inline-flex; }
  .plates { grid-template-columns: 1fr 1fr; gap: 1.3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coord-grid { grid-template-columns: 1fr 1fr; }
  .notes-grid { grid-template-columns: 1fr 1fr; }
  .spec-val { font-size: clamp(3.5rem, 8vw, 5rem); }
}

/* >= 760 */
@media (min-width: 760px) {
  .primary-nav { display: inline-flex; }
  .hero-grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
  }
  .hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
    position: absolute;
    top: 28px;
    right: 30px;
    z-index: 3;
    border: 1px solid var(--ink);
    padding: 0.5rem 0.7rem;
    background: var(--paper);
    font-family: var(--t-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    min-width: 200px;
  }
  .meta-row { display: contents; }
  .meta-row span:first-child { color: var(--blue); font-weight: 700; }
  .meta-row span:last-child { color: var(--ink); text-align: right; }

  .plates { grid-template-columns: 1fr 1fr 1fr; }
  .spec-grid { grid-template-columns: repeat(4, 1fr); }
  .notes-grid { grid-template-columns: 1.2fr 0.8fr; }
  .note--diagram { grid-row: span 2; }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .coord-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
  }
  .coord-card--address { grid-column: span 2; }
  .coord-card--phone   { grid-column: span 2; }
  .coord-card--hours   { grid-column: span 2; }
  .coord-card--photo   { grid-column: span 3; }
  .coord-card--map     { grid-column: span 3; }
}

/* >= 880 */
@media (min-width: 880px) {
  .engage-inner { max-width: 56ch; }
  .engage-headline { font-size: clamp(3.5rem, 9vw, 7.5rem); }
}

/* >= 1100 */
@media (min-width: 1100px) {
  .hero { padding-top: clamp(3rem, 6vw, 5rem); }
  .hero-headline { padding-left: 1rem; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@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;
  }
  .status--open .status-dot { animation: none; }
}

/* ============================================================
   PRINT
============================================================ */
@media print {
  .site-header, .engage, .map-wrap, .hero-ctas, .engage-ctas { display: none; }
  body { background: white; }
}
