/* =========================================================================
   LUBE EXPRESS — Late-night service-station retro
   Black ink. Electric red. Cream paper. A flicker of cobalt.
   ========================================================================= */

:root {
  --paper:       #f3ecd8;   /* warm cream */
  --paper-deep:  #e7dfc7;
  --paper-soft:  #faf5e6;

  --ink:         #0c0c0e;   /* near-black */
  --ink-2:       #18181c;
  --ink-soft:    #2a2a30;
  --ink-mute:    #6c6c74;
  --ink-line:    #1a1a1f;

  --red:         #ee2218;   /* electric stop-sign red */
  --red-deep:    #b81810;
  --red-glow:    rgba(238,34,24,0.55);

  --cobalt:      #1a3da8;   /* lube-express signage blue, used sparingly */
  --cobalt-soft: #2c54c2;

  --neon-cream:  #ffe9b3;   /* warm bulb yellow */

  --font-display: 'Bowlby One', 'Anton', Impact, sans-serif;
  --font-marquee: 'Big Shoulders Display', 'Anton', Impact, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --rule: 1px solid var(--ink);
  --rule-paper: 1px solid rgba(243,236,216,0.18);

  --pad-x: clamp(1.1rem, 4vw, 4rem);
  --pad-y: clamp(3.5rem, 8vw, 7rem);

  --max-w: 1320px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: var(--paper); }

/* =========================================================================
   NAV — sticky, paper, with neon-pill status
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem var(--pad-x);
  background: rgba(243,236,216,0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: var(--rule);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}
.brand-bulb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 2px var(--paper),
    0 0 0 3px var(--ink),
    0 0 14px 2px var(--red-glow);
  flex-shrink: 0;
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-word em {
  font-style: normal;
  color: var(--red);
}

.nav-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.4rem 0.7rem 0.4rem 0.55rem;
  border: 1px solid var(--ink);
  background: var(--paper-soft);
  font-weight: 600;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow);
  animation: blink 2s steps(2, end) infinite;
}
@keyframes blink {
  0%, 55%   { opacity: 1; box-shadow: 0 0 8px 1px var(--red-glow); }
  60%, 100% { opacity: 0.35; box-shadow: 0 0 0 0 transparent; }
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease, color 160ms ease;
  border: 1px solid var(--ink);
}
.nav-call::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px 1px var(--red-glow);
}
.nav-call:hover { background: var(--red); border-color: var(--red); }

/* =========================================================================
   MARQUEE STRIP — runs above the hero, gas-station ticker
   ========================================================================= */

.ticker {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--rule);
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 2.5rem;
  padding: 0.7rem 0;
  white-space: nowrap;
  width: max-content;
  animation: scroll 38s linear infinite;
  font-family: var(--font-marquee);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
}
.ticker-track span::after {
  content: "★";
  color: var(--red);
  font-size: 0.85em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   HERO — stacked marquee headline over storefront photo
   ========================================================================= */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  border-bottom: var(--rule);
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url("img/photo-04.jpg") center 30% / cover no-repeat;
  filter: contrast(1.05) saturate(0.92) brightness(0.62);
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 130%, rgba(238,34,24,0.35) 0%, transparent 55%),
    linear-gradient(180deg, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.25) 35%, rgba(12,12,14,0.85) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(243,236,216,0.05) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: 1;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--pad-x) clamp(3rem, 7vw, 6rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neon-cream);
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,233,179,0.5);
  border-radius: 999px;
  width: fit-content;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-cream);
  box-shadow: 0 0 8px 1px rgba(255,233,179,0.7);
}

/* The big move: stacked LUBE / EXPRESS, each on its own marquee row */
.hero-h {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: var(--paper);
  display: grid;
  gap: 0.04em;
}
.hero-h-row {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.2rem);
  font-size: clamp(3.6rem, 14vw, 11rem);
  line-height: 0.86;
  position: relative;
}
.hero-h-row.is-red { color: var(--red); }
.hero-h-row.is-out {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.hero-h-row .bulbs {
  flex: 1;
  display: flex;
  gap: clamp(0.35rem, 1vw, 0.6rem);
  align-items: center;
  height: 0.5em;
  overflow: hidden;
}
.hero-h-row .bulbs i {
  flex: 0 0 clamp(8px, 1.2vw, 14px);
  height: clamp(8px, 1.2vw, 14px);
  border-radius: 50%;
  background: var(--neon-cream);
  box-shadow: 0 0 6px 1px rgba(255,233,179,0.65);
  display: block;
}
.hero-h-row .bulbs i:nth-child(odd)  { background: var(--red); box-shadow: 0 0 8px 1px var(--red-glow); }
.hero-h-row .bulbs i:nth-child(3n)   { background: var(--paper); box-shadow: 0 0 6px 1px rgba(243,236,216,0.5); }

.hero-sub {
  max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
  color: rgba(243,236,216,0.86);
  margin: 0;
}
.hero-sub strong { color: var(--paper); font-weight: 700; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.hero-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,236,216,0.6);
  border-top: 1px solid rgba(243,236,216,0.15);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}
.hero-foot span strong { color: var(--neon-cream); font-weight: 600; }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.3rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--red);
  color: var(--paper);
  border-color: var(--red);
  box-shadow: 0 0 0 0 var(--red-glow), 4px 4px 0 0 var(--ink);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 0 0 18px 2px var(--red-glow), 6px 6px 0 0 var(--ink);
}
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 0 0 0 0 transparent, 0 0 0 0 transparent; }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper);
}
.btn-ghost:hover { background: var(--paper); color: var(--ink); }

.btn .btn-num {
  font-size: 1.05em;
  letter-spacing: 0.02em;
}
.btn .btn-arrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1em;
  margin-left: 0.2rem;
}

.btn-xl {
  padding: 1.4rem 2rem;
  font-size: 1.2rem;
  gap: 1rem;
}

/* =========================================================================
   STATS BAND — gas-station gauges
   ========================================================================= */

.band {
  background: var(--paper-soft);
  border-bottom: var(--rule);
}
.band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.band-cell {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2.2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: var(--rule);
  position: relative;
}
.band-cell:last-child { border-right: 0; }
.band-cell::before {
  content: "";
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.8;
  box-shadow: 0 0 6px 1px var(--red-glow);
}
.band-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  text-transform: uppercase;
}
.band-star { color: var(--red); font-size: 0.7em; }
.band-slash { color: var(--ink-mute); font-weight: 400; }
.band-tail { color: var(--ink-mute); font-size: 0.55em; }
.band-cap {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-top: 0.4rem;
}

/* =========================================================================
   COMMON SECTION HEADS
   ========================================================================= */

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 2px;
  background: var(--red);
}

.section-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
}
.section-h em {
  font-style: normal;
  color: var(--red);
}

/* =========================================================================
   SERVICES — clipboard list with red ticks
   ========================================================================= */

.services {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 22rem) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.services-head { position: sticky; top: 6rem; }
.services-head .section-h { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.services-head p.lede {
  margin: 1.2rem 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 22rem;
}

.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.svc {
  padding: 1.6rem 0 1.6rem 3.5rem;
  border-bottom: 1px solid var(--ink);
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  align-items: baseline;
}
.svc-num {
  position: absolute;
  left: 0;
  top: 1.7rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--red);
}
.svc h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  white-space: nowrap;
}
.svc p {
  grid-column: 1 / -1;
  margin: 0.3rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 38rem;
}
.svc p strong { color: var(--ink); font-weight: 700; }
.svc p em { font-style: normal; color: var(--red); font-weight: 600; }

/* =========================================================================
   IN-AND-OUT — cinematic full-bleed photo break
   ========================================================================= */

.inout {
  position: relative;
  min-height: clamp(420px, 65vh, 700px);
  border-top: var(--rule);
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x);
  overflow: hidden;
  background: var(--ink);
}
.inout-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.05) saturate(0.85) brightness(0.7);
  z-index: 0;
}
.inout-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,12,14,0.78) 0%, rgba(12,12,14,0.55) 45%, rgba(12,12,14,0.1) 100%);
  z-index: 1;
}
.inout-copy {
  position: relative;
  z-index: 2;
  max-width: 36rem;
  color: var(--paper);
}
.inout-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 1.2rem;
}
.inout-h em { font-style: normal; color: var(--red); }
.inout-sub {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(243,236,216,0.85);
  margin: 0;
  max-width: 30rem;
}

/* =========================================================================
   TEAM — names plate
   ========================================================================= */

.team {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
}
.team-head { max-width: 42rem; }
.team-head .section-h em { color: var(--red); }
.team-lede {
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 36rem;
}

.crew {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.crew-card {
  padding: 1.6rem 1.2rem;
  border-right: var(--rule);
  border-bottom: var(--rule);
  background: var(--paper-soft);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 9rem;
  position: relative;
}
.crew-card::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.crew-role {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin: 0;
}
.crew-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.005em;
}
.crew-note {
  margin: auto 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  line-height: 1.4;
  text-transform: none;
}
.crew-card.is-lead { background: var(--ink); color: var(--paper); }
.crew-card.is-lead::before { border-color: var(--paper); background: var(--red); }
.crew-card.is-lead .crew-role { color: var(--neon-cream); }
.crew-card.is-lead .crew-note { color: rgba(243,236,216,0.6); }

/* =========================================================================
   REVIEWS — receipt strips
   ========================================================================= */

.reviews {
  background: var(--ink);
  color: var(--paper);
  padding: var(--pad-y) var(--pad-x);
  border-top: var(--rule);
  border-bottom: var(--rule);
}
.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.reviews .kicker { color: var(--neon-cream); }
.reviews .kicker::before { background: var(--neon-cream); }
.reviews .section-h { color: var(--paper); }
.reviews .section-h em { color: var(--red); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.review {
  background: var(--paper);
  color: var(--ink);
  padding: 1.5rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  box-shadow: 4px 4px 0 0 var(--red);
}
.review.r-1 { grid-column: span 3; }
.review.r-2 { grid-column: span 3; }
.review.r-3 { grid-column: span 2; box-shadow: 4px 4px 0 0 var(--neon-cream); }
.review.r-4 { grid-column: span 2; }
.review.r-5 { grid-column: span 2; box-shadow: 4px 4px 0 0 var(--cobalt); }

.stars {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1rem;
  letter-spacing: 0.18em;
  line-height: 1;
}
.review p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.review footer {
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--ink-line);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.review footer strong { color: var(--ink); font-weight: 700; }

/* =========================================================================
   VISIT — hours + map + address
   ========================================================================= */

.visit {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.visit-head { max-width: 42rem; }
.visit-head .section-h em { color: var(--red); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 0;
  border: var(--rule);
  background: var(--ink);
}
.visit-block {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-right: var(--rule);
  background: var(--paper-soft);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.visit-block:last-child { border-right: 0; }
.visit-block.dark { background: var(--ink); color: var(--paper); }
.visit-block.dark .visit-label { color: var(--neon-cream); }
.visit-block.dark .visit-cta { color: var(--neon-cream); border-top-color: rgba(243,236,216,0.2); }
.visit-block.dark .visit-cta:hover { color: var(--paper); }

.visit-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  font-weight: 700;
}
.visit-value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0;
}
.visit-value small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-mute);
  margin-top: 0.4rem;
  line-height: 1.35;
}
.visit-block.dark .visit-value small { color: rgba(243,236,216,0.55); }

.visit-cta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.visit-cta:hover { color: var(--red-deep); }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.32rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(243,236,216,0.8);
  padding: 0.18rem 0;
  border-bottom: 1px dotted rgba(243,236,216,0.2);
}
.hours li.is-today { color: var(--neon-cream); font-weight: 700; }
.hours li.is-today span:last-child { color: var(--red); }
.hours li span:first-child { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.78rem; }

.visit-map {
  width: 100%;
  height: 380px;
  border: var(--rule);
  border-top: 0;
  background: var(--paper-soft);
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: contrast(1.04) saturate(0.92);
}

/* =========================================================================
   FOOT CTA — neon sign
   ========================================================================= */

.cta-foot {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x);
  text-align: center;
  overflow: hidden;
  border-top: var(--rule);
}
.cta-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(238,34,24,0.22) 0%, transparent 55%);
  z-index: 0;
}
.cta-foot-inner {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
  justify-items: center;
}
.cta-h {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0;
}
.cta-h em { font-style: normal; color: var(--red); }
.cta-h .out {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.cta-fine {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243,236,216,0.55);
  margin: 0.6rem 0 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.foot {
  background: var(--paper-deep);
  border-top: var(--rule);
  padding: clamp(2rem, 4vw, 3rem) var(--pad-x);
}
.foot-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.foot-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0 0 0.4rem;
}
.foot-brand em { font-style: normal; color: var(--red); }
.foot-line {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0.2rem 0;
  line-height: 1.45;
}
.foot-fine {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.5;
}
.foot-bulbs {
  display: flex;
  gap: 0.4rem;
  margin: 0 0 0.8rem;
}
.foot-bulbs i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  display: block;
}
.foot-bulbs i:nth-child(2) { background: var(--red); }
.foot-bulbs i:nth-child(3) { background: var(--neon-cream); }

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

@media (max-width: 1080px) {
  .crew { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review.r-1, .review.r-2, .review.r-3, .review.r-4, .review.r-5 { grid-column: span 1; }
}

@media (max-width: 860px) {
  .band-inner { grid-template-columns: repeat(2, 1fr); }
  .band-cell:nth-child(2) { border-right: 0; }
  .band-cell:nth-child(1), .band-cell:nth-child(2) { border-bottom: var(--rule); }

  .services { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-head { position: static; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-block { border-right: 0; border-bottom: var(--rule); }
  .visit-block:last-child { border-bottom: 0; }

  .crew { grid-template-columns: repeat(2, 1fr); }

  .foot-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }

  .nav { padding: 0.6rem var(--pad-x); gap: 0.5rem; }
  .brand-word { font-size: 1rem; }
  .nav-call { padding: 0.5rem 0.75rem; font-size: 0.88rem; }
  .status { font-size: 0.62rem; padding: 0.32rem 0.55rem 0.32rem 0.42rem; letter-spacing: 0.1em; }
  .status .status-text { display: none; }

  .ticker-track { font-size: 0.92rem; gap: 1.5rem; padding: 0.55rem 0; }
  .ticker-track span { gap: 1.5rem; }

  .hero-h-row { font-size: 4.6rem; gap: 0.4rem; }
  .hero-h-row .bulbs { display: none; }
  .hero-foot { font-size: 0.66rem; gap: 0.7rem 1.4rem; padding-top: 1.2rem; }
  .btn { padding: 0.9rem 1.1rem; font-size: 0.92rem; }
  .btn-xl { padding: 1.1rem 1.4rem; font-size: 1rem; }

  .band-inner { grid-template-columns: 1fr; }
  .band-cell { border-right: 0; border-bottom: var(--rule); padding: 1.4rem 1rem; }
  .band-cell:last-child { border-bottom: 0; }

  .svc { padding-left: 2.6rem; }
  .svc-num { top: 1.8rem; }
  .svc-tag { display: none; }

  .crew { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .visit-map { height: 320px; }
}

/* =========================================================================
   PRINT
   ========================================================================= */

@media print {
  .nav, .ticker, .hero-photo, .hero-veil, .hero-grain, .visit-map, .inout-img, .inout-veil, .cta-foot { display: none; }
  body { background: white; color: black; }
}
