/* =============================================================================
   Hollywood Ink — Leadville, CO
   Palette sampled directly from the shop's logo: chrome greys dominate, crimson
   is the badge's lettering, gold is a hairline trim (under 2% of the artwork).
   That ratio is held on the page too — chrome carries the structure, crimson is
   reserved for the call-to-action, gold stays a hairline.
   ========================================================================== */

:root {
  --ink:          #0a0a0a;
  --ink-raised:   #141312;
  --ink-sunk:     #060606;

  --crimson:      #c01818;
  --crimson-deep: #7a0f12;

  --chrome-hi:    #f0f0f0;
  --chrome-mid:   #a8a8a8;
  --chrome-lo:    #6e6e6e;
  --chrome-edge:  rgba(240, 240, 240, 0.14);

  --gold:         #c19e3d;
  --gold-hi:      #f2ca5b;

  --bone:         #e8e2d8;
  --bone-dim:     #9a948b;

  --display: "Big Shoulders Display", "Haettenschweiler", "Arial Narrow", sans-serif;
  --flash:   "Rye", "Rockwell", Georgia, serif;
  --body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gut: clamp(1.25rem, 4vw, 3.5rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  /* Height of the sticky bar. Sections offset their scroll targets by this, so
     an anchor jump doesn't park the heading underneath it. */
  --nav-h: 70px;

  --chrome-fill: linear-gradient(
    177deg,
    #ffffff 0%, #f0f0f0 14%, #b8b8b8 38%,
    #6e6e6e 51%, #9a9a9a 60%, #e4e4e4 82%, #ffffff 100%
  );
}

/* ------------------------------------------------------------------ base --- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* A very fine grain keeps the large black fields from reading as flat digital
   black. Fixed so it doesn't swim while scrolling. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .topbar, .footer { position: relative; z-index: 1; }

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

a { color: inherit; }

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold-hi);
  color: #000;
  padding: 0.7rem 1.1rem;
  font-weight: 600;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

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

/* --------------------------------------------------------- shared pieces --- */

.eyebrow {
  font-family: var(--flash);
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* The Walk-of-Fame star out of the logo, reused as the section marker. */
.star {
  width: 12px;
  height: 12px;
  flex: none;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.chrome-text {
  background: var(--chrome-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.linkish {
  font-weight: 600;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--chrome-edge);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  align-self: start;
}
.linkish:hover { color: var(--gold-hi); border-bottom-color: var(--gold); }

.ico { width: 1em; height: 1em; fill: currentColor; flex: none; }

/* ----------------------------------------------------------- sticky nav --- */

.nav {
  position: sticky;
  top: 0;
  /* above <main>, which shares the same stacking level but comes later in the DOM */
  z-index: 50;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
/* Transparent over the hero, solid once the page moves under it — or whenever the
   menu is open, so the bar and the panel below it read as one surface. */
body.is-scrolled .nav,
body.nav-open .nav {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(240, 240, 240, 0.09);
}
body.nav-open .nav { background: var(--ink); border-bottom-color: transparent; }

.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.75rem);
  padding: 0 var(--gut);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
/* The badge is 388x368, not square — height must stay auto or it squashes. */
.nav__brand img { width: 46px; height: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
  margin-left: auto;
}
.nav__menu a {
  position: relative;
  padding: 0.3rem 0;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s;
}
.nav__menu a:hover { color: var(--bone); }
.nav__menu a:hover::after,
.nav__menu a.is-current::after { transform: scaleX(1); }
.nav__menu a.is-current { color: var(--gold-hi); }

/* The one control that is always on screen, at every width and every scroll
   position — it is the whole point of the site. */
.nav__call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  margin-left: clamp(0.25rem, 1.5vw, 0.5rem);
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.06rem;
  letter-spacing: 0.045em;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(178deg, #d81c1c, var(--crimson) 45%, var(--crimson-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 6px 20px rgba(192, 24, 24, 0.28);
  transition: transform 0.18s, box-shadow 0.18s;
}
.nav__call:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -2px 0 rgba(0, 0, 0, 0.3),
    0 10px 26px rgba(192, 24, 24, 0.4);
}
.nav__call:active { transform: translateY(0); }
.nav__call .ico { width: 1.05em; height: 1.05em; }

/* menu toggle — only exists below the breakpoint */
.nav__toggle {
  display: none;
  flex: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--chrome-edge);
  border-radius: 4px;
  background: rgba(20, 19, 18, 0.6);
  cursor: pointer;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--bone);
  transition: transform 0.24s, opacity 0.18s;
}
.nav__bars {
  position: relative;
  margin: 0 auto;
}
.nav__bars::before, .nav__bars::after { content: ""; position: absolute; left: 0; }
.nav__bars::before { top: -6px; }
.nav__bars::after { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ----------------------------------------------------------------- hero --- */

/* Deliberately short of a full viewport: the ticker below has to be visible
   without scrolling, so it reads as a moving strip rather than a hidden section.
   The nav sits over the top of the hero, hence the extra top padding. */
.hero {
  position: relative;
  min-height: 84svh;
  display: flex;
  align-items: center;
  padding: clamp(1.5rem, 4vh, 2.5rem) 0 clamp(1.5rem, 4vh, 2.5rem);
  margin-top: calc(var(--nav-h) * -1);
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Scrim between the particle field and the type. Vertical on small screens
   (machine sits below the copy), horizontal on wide ones (machine sits right). */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--ink) 4%, rgba(10, 10, 10, 0.55) 34%, rgba(10, 10, 10, 0) 62%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  /* clears the nav, which overlays the top of the hero */
  padding: var(--nav-h) var(--gut) 0;
  pointer-events: none;
}

/* Only the controls should catch the pointer — everywhere else feeds the canvas. */
.hero__inner a,
.hero__inner button { pointer-events: auto; }

.hero__copy { max-width: 34rem; }

.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.1rem, 11.5vw, 7.6rem);
  line-height: 0.84;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  display: flex;
  flex-direction: column;
  background: var(--chrome-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Rye is a much wider face than the display, so this is sized on its own scale
   rather than in em of the wordmark — at 0.44em it ran past the column. */
.hero__title-alt {
  font-family: var(--flash);
  font-weight: 400;
  font-size: clamp(1.05rem, 0.82rem + 1.15vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: none;
  padding-top: 0.85em;
  -webkit-text-fill-color: var(--crimson);
  color: var(--crimson);
  text-shadow: 0 0 26px rgba(192, 24, 24, 0.4);
}

.hero__lede {
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.2rem);
  color: var(--bone-dim);
  margin: 0 0 clamp(1.6rem, 4vw, 2.2rem);
  max-width: 30rem;
}

.hero__hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 2;
  margin: 0;
  font-family: var(--flash);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone-dim);
  opacity: 0.5;
  transition: opacity 0.6s;
}
.hero__hint.is-gone { opacity: 0; }

/* --------------------------------------------------------- price plates --- */

.plates {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.4rem);
  padding: 0;
}

.plate {
  position: relative;
  padding: 0.7rem 1.15rem 0.75rem;
  background: linear-gradient(168deg, rgba(240, 240, 240, 0.11), rgba(240, 240, 240, 0.02));
  border: 1px solid var(--chrome-edge);
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
/* the gold hairline, matching the trim on the logo's star */
.plate::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(193, 158, 61, 0.42);
  border-radius: 2px;
  pointer-events: none;
}

.plate__label {
  display: block;
  font-family: var(--flash);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 0.15rem;
}
.plate__price {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.7rem);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chrome-hi);
}

/* --------------------------------------------------- marquee call button --- */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
}

.marquee-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.1rem;
  border-radius: 4px;
  text-decoration: none;
  background: linear-gradient(178deg, #d81c1c, var(--crimson) 45%, var(--crimson-deep));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 12px 34px rgba(192, 24, 24, 0.3);
  transition: transform 0.18s, box-shadow 0.18s;
}
.marquee-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -2px 0 rgba(0, 0, 0, 0.35),
    0 16px 40px rgba(192, 24, 24, 0.42);
}
.marquee-btn:active { transform: translateY(0); }

.marquee-btn__text {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.45rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Bulbs around the edge, like a theatre marquee. This is the one loud device on
   the page, so it appears on the call buttons and nowhere else. */
.marquee-btn__bulbs {
  position: absolute;
  inset: 5px;
  border-radius: 2px;
  pointer-events: none;
  --bulb: rgba(255, 226, 168, 0.5);
  background:
    radial-gradient(circle, var(--bulb) 1.5px, transparent 1.9px) 0 0 / 15px 9px repeat-x,
    radial-gradient(circle, var(--bulb) 1.5px, transparent 1.9px) 0 100% / 15px 9px repeat-x,
    radial-gradient(circle, var(--bulb) 1.5px, transparent 1.9px) 0 0 / 9px 15px repeat-y,
    radial-gradient(circle, var(--bulb) 1.5px, transparent 1.9px) 100% 0 / 9px 15px repeat-y;
}
/* A brighter copy of the same bulbs, revealed through a sweeping mask so the
   lights appear to chase around the edge. */
.marquee-btn__bulbs::after {
  content: "";
  position: absolute;
  inset: 0;
  --bulb: var(--gold-hi);
  background: inherit;
  -webkit-mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  mask-image: linear-gradient(100deg, transparent 38%, #000 50%, transparent 62%);
  -webkit-mask-size: 260% 100%;
  mask-size: 260% 100%;
  animation: chase 3.6s linear infinite;
}
@keyframes chase {
  from { -webkit-mask-position: 160% 0; mask-position: 160% 0; }
  to   { -webkit-mask-position: -60% 0; mask-position: -60% 0; }
}

.marquee-btn--wide {
  display: flex;
  width: min(100%, 30rem);
  margin: clamp(2.5rem, 6vw, 3.5rem) auto 0;
  padding: 1.2rem 2rem;
}

/* --------------------------------------------------------------- ticker --- */

.ticker {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: 1px solid var(--chrome-edge);
  border-bottom: 1px solid var(--chrome-edge);
  background: linear-gradient(180deg, rgba(240, 240, 240, 0.06), rgba(240, 240, 240, 0.01));
  padding: 0.85rem 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: roll 42s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker__group b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  padding: 0 1.6rem;
  white-space: nowrap;
}
.ticker__group i {
  width: 9px;
  height: 9px;
  flex: none;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
@keyframes roll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* -------------------------------------------------------------- section --- */

.section {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: var(--section-pad) var(--gut);
  /* stops an anchor jump parking the heading under the sticky bar */
  scroll-margin-top: var(--nav-h);
}
/* Full-bleed background, but the content still sits on the same grid as every
   other section. Done with padding rather than a `> *` max-width rule, which
   would collide with .section__head's own max-width and centre the headings. */
.section--alt {
  max-width: none;
  padding-inline: max(var(--gut), (100% - var(--wrap)) / 2);
  background: var(--ink-sunk);
  border-top: 1px solid rgba(240, 240, 240, 0.06);
  border-bottom: 1px solid rgba(240, 240, 240, 0.06);
}

.section__head { max-width: 42rem; margin-bottom: clamp(2.5rem, 6vw, 3.75rem); }

.section__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 1.6rem + 3.4vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  background: var(--chrome-fill);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section__lede {
  color: var(--bone-dim);
  font-size: clamp(1rem, 0.96rem + 0.28vw, 1.14rem);
  margin: 0;
}
.section__lede a { color: var(--bone); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.section__lede a:hover { color: var(--gold-hi); }

/* -------------------------------------------------------------- gallery --- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: clamp(0.75rem, 2vw, 1.15rem);
}

.shot {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--chrome-edge);
  border-radius: 3px;
  background: var(--ink-raised);
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), filter 0.4s;
}
.shot:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.06); }
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(193, 158, 61, 0.16);
}

/* Shown while the shop's photos are still being collected, so the section never
   renders as broken image icons. */
.gallery__empty {
  grid-column: 1 / -1;
  display: grid;
  place-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: clamp(3rem, 9vw, 5.5rem) 1.5rem;
  border: 1px dashed rgba(240, 240, 240, 0.16);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(240, 240, 240, 0.035), transparent);
}
.gallery__empty h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  margin: 0;
}
.gallery__empty p { margin: 0; color: var(--bone-dim); max-width: 30rem; }

/* ---------------------------------------------------------------- cards --- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
}

.card {
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  background: linear-gradient(172deg, rgba(240, 240, 240, 0.055), rgba(240, 240, 240, 0.012));
  border: 1px solid var(--chrome-edge);
  border-radius: 4px;
}

.card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(193, 158, 61, 0.28);
}

.card__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.3rem);
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  margin: 0;
  color: var(--chrome-hi);
}

.card__from { margin: 0; text-align: right; line-height: 1.15; }
.card__from span {
  display: block;
  font-family: var(--flash);
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__from strong {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.4rem + 1vw, 2.1rem);
  color: var(--bone);
}

.card__list { list-style: none; margin: 0 0 1.35rem; padding: 0; display: grid; gap: 0.6rem; }
.card__list li { position: relative; padding-left: 1.5rem; color: var(--bone); }
.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.card__note { margin: 0; color: var(--bone-dim); font-size: 0.95rem; }

/* ----------------------------------------------------------------- form --- */

.req {
  max-width: 46rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(172deg, rgba(240, 240, 240, 0.05), rgba(240, 240, 240, 0.012));
  border: 1px solid var(--chrome-edge);
  border-radius: 4px;
}

.req__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(1rem, 2.5vw, 1.4rem);
}

.field { display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.field--wide { grid-column: 1 / -1; }

.field > label,
.blocks > legend {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  padding: 0;
}
.field .opt {
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--bone-dim);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--bone);
  background: rgba(6, 6, 6, 0.65);
  border: 1px solid rgba(240, 240, 240, 0.16);
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { resize: vertical; min-height: 6rem; }
.field input::placeholder,
.field textarea::placeholder { color: #6b665f; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(240, 240, 240, 0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(6, 6, 6, 0.9);
}

/* keep the native date picker legible on a dark field in Chromium/WebKit */
.field input[type="date"] { color-scheme: dark; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--chrome-mid);
  border-bottom: 2px solid var(--chrome-mid);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 2.4rem; }

.field--invalid input,
.field--invalid select,
.field--invalid textarea { border-color: #e0483f; }

.field__err {
  margin: 0;
  min-height: 0;
  font-size: 0.87rem;
  color: #ff8078;
}
.field__err:empty { display: none; }

/* time-of-day choice */
.blocks { border: 0; margin: 0; padding: 0; min-width: 0; }
.blocks__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 130px), 1fr)); gap: 0.65rem; }

.block { position: relative; display: block; cursor: pointer; }
.block input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}
.block__box {
  display: grid;
  gap: 0.15rem;
  padding: 0.9rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(240, 240, 240, 0.16);
  border-radius: 3px;
  background: rgba(6, 6, 6, 0.6);
  transition: border-color 0.18s, background 0.18s, transform 0.18s;
}
.block__box b {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bone);
}
.block__box i { font-style: normal; font-size: 0.82rem; color: var(--bone-dim); }
.block:hover .block__box { border-color: rgba(240, 240, 240, 0.34); }
.block input:checked + .block__box {
  border-color: var(--gold);
  background: rgba(193, 158, 61, 0.13);
  transform: translateY(-1px);
}
.block input:checked + .block__box b { color: var(--gold-hi); }
.block input:focus-visible + .block__box { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

.blocks__note { margin: 0.7rem 0 0; font-size: 0.88rem; color: var(--bone-dim); }

.req__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: clamp(1.5rem, 3.5vw, 2rem);
}

.btn--send {
  padding: 0.95rem 2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--chrome-fill);
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.22);
  transition: transform 0.18s, filter 0.18s;
}
.btn--send:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--send:active { transform: translateY(0); }
.btn--send[disabled] { opacity: 0.55; cursor: progress; transform: none; }

.req__aside { margin: 0; color: var(--bone-dim); font-size: 0.94rem; }
.req__aside a { color: var(--bone); text-decoration-color: var(--gold); text-underline-offset: 3px; }
.req__aside a:hover { color: var(--gold-hi); }

.req__status { margin: 1.25rem 0 0; font-size: 0.98rem; }
.req__status:empty { display: none; }
.req__status.is-ok {
  padding: 0.9rem 1.1rem;
  color: var(--gold-hi);
  border: 1px solid rgba(193, 158, 61, 0.42);
  border-radius: 3px;
  background: rgba(193, 158, 61, 0.09);
}
.req__status.is-bad { color: #ff8078; }

/* ---------------------------------------------------------------- visit --- */

.visit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}

.visit__block { display: flex; flex-direction: column; align-items: start; gap: 0.6rem; }

.visit__h {
  font-family: var(--flash);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.visit__addr { font-style: normal; font-size: 1.16rem; line-height: 1.5; margin: 0; }

.hours { margin: 0; width: 100%; display: grid; gap: 0.4rem; }
.hours > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(240, 240, 240, 0.08);
}
.hours dt { color: var(--bone); }
.hours dd { margin: 0; color: var(--bone-dim); text-align: right; }
.hours[data-placeholder="true"] dd { color: #6b665f; font-style: italic; }

.visit__note { margin: 0.3rem 0 0; color: var(--bone-dim); font-size: 0.94rem; }

.visit__tel {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1.4rem + 1.6vw, 2.35rem);
  letter-spacing: 0.015em;
  text-decoration: none;
  color: var(--chrome-hi);
  transition: color 0.2s;
}
.visit__tel:hover { color: var(--gold-hi); }

/* --------------------------------------------------------------- footer --- */

.footer {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
  padding: clamp(3rem, 7vw, 4.5rem) var(--gut) clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(240, 240, 240, 0.06);
}
.footer img { width: 110px; height: auto; opacity: 0.9; margin-bottom: 0.4rem; }
.footer__name {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--chrome-mid);
}
.footer__meta { margin: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; color: var(--bone-dim); font-size: 0.95rem; }
.footer__meta a { text-decoration-color: var(--gold); text-underline-offset: 3px; }
.footer__meta a:hover { color: var(--gold-hi); }
.footer__fine { margin: 0.5rem 0 0; font-size: 0.85rem; color: #6b665f; }

/* ------------------------------------------------------------ responsive --- */

@media (min-width: 900px) {
  .hero::after {
    background: linear-gradient(105deg, var(--ink) 22%, rgba(10, 10, 10, 0.72) 44%, rgba(10, 10, 10, 0) 74%);
  }
  .hero__copy { max-width: 33rem; }
}

/* Below this the four links no longer fit beside the brand and the call button,
   so they collapse into a panel. The call button itself never collapses. */
@media (max-width: 900px) {
  .nav__toggle { display: block; }

  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0.5rem var(--gut) 1rem;
    /* solid, not translucent: the hero's particle field behind it turns the
       links to mush at anything less */
    background: var(--ink);
    border-bottom: 1px solid rgba(240, 240, 240, 0.09);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    /* hidden from pointer *and* keyboard while closed, not just invisible */
    display: none;
  }
  .nav__menu.is-open { display: flex; }

  .nav__menu a {
    padding: 0.95rem 0;
    font-size: 1.35rem;
    border-bottom: 1px solid rgba(240, 240, 240, 0.07);
  }
  .nav__menu a::after { display: none; }
  .nav__menu a.is-current { color: var(--gold-hi); }
}

@media (max-width: 620px) {
  .nav__brand span { display: none; }
}

@media (max-width: 560px) {
  .marquee-btn { width: 100%; }
  .hero__actions { align-items: stretch; }
}

/* At the very narrowest the number itself is what has to go, not the button. */
@media (max-width: 380px) {
  .nav__call { padding: 0.6rem 0.85rem; }
  .nav__call-num { display: none; }
  .nav__call::after {
    content: "Call";
    font-family: var(--display);
    font-weight: 800;
    letter-spacing: 0.045em;
  }
}

/* ------------------------------------------------------- reduced motion --- */

@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;
  }
  .ticker__track { animation: none; }
  .marquee-btn__bulbs::after { display: none; }
  .shot:hover img { transform: none; }
}
