/* ==========================================================================
   TK 3D Printing — styles
   Colors and fonts are set once in :root just below. Change them there.
   ========================================================================== */
:root {
  --plate:  #e9eef2;   /* build-plate grey (page bands) */
  --grid:   #d5dde4;   /* grid lines on the plate */
  --paper:  #ffffff;
  --tint:   #f5f7f9;
  --ink:    #111c27;   /* main text + dark sections */
  --muted:  #536170;
  --line:   #d3dae1;
  --accent: #1c4fff;   /* buttons + links */
  --accent-dark: #0a2fb8;
  --signal: #ffc21a;   /* filament yellow highlight */
  --ok:     #137a4b;
  --err:    #b3261e;

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 8px;
  --wrap: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }   /* makes the HTML "hidden" attribute always win */
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 5rem; }
body { margin: 0; font: 400 1.0625rem/1.6 var(--font-body); color: var(--ink); background: var(--paper); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.3rem, 6.2vw, 4rem); letter-spacing: -0.025em; line-height: 1.02; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: .6rem 1rem; z-index: 100; }
.skip-link:focus { left: 0; }
.noscript { background: var(--signal); margin: 0; padding: 1rem; text-align: center; font-weight: 600; }
.muted-on-dark { color: #9fb0c0; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 34em; }
.side-note { margin-top: 2rem; color: var(--muted); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 64px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; font: 700 1.2rem var(--font-display); color: var(--ink); text-decoration: none; letter-spacing: -0.01em; }
.brand:hover { color: var(--ink); }
.nav-toggle { font: 600 .95rem var(--font-body); background: none; border: 1px solid var(--ink); color: var(--ink); border-radius: 6px; padding: .5rem .9rem; min-height: 44px; cursor: pointer; }
.site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--line); padding: .5rem 1.25rem 1.25rem; flex-direction: column; }
.site-nav.open { display: flex; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 500; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.site-nav a[aria-current="page"] { font-weight: 700; box-shadow: inset 4px 0 0 var(--signal); padding-left: .8rem; }
.site-nav .nav-cta { margin-top: 1rem; color: #fff; text-align: center; border: 0; }
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: flex; position: static; flex-direction: row; align-items: center; gap: 1.6rem; border: 0; padding: 0; background: none; }
  .site-nav a { border: 0; padding: .4rem 0; box-shadow: none; }
  .site-nav a:not(.btn):hover { color: var(--accent); }
  .site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--signal); padding-left: 0; }
  .site-nav .nav-cta { margin: 0 0 0 .5rem; padding: .6rem 1.1rem; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-block; font: 600 1rem/1.2 var(--font-body); text-align: center; text-decoration: none; background: var(--accent); color: #fff; border: 2px solid var(--accent); border-radius: 6px; padding: .85rem 1.4rem; min-height: 46px; cursor: pointer; transition: background .15s, border-color .15s, transform .1s; }
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .6; cursor: wait; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-signal { background: var(--signal); border-color: var(--signal); color: var(--ink); }
.btn-signal:hover { background: #ffd24d; border-color: #ffd24d; color: var(--ink); }
.btn-small { padding: .55rem 1rem; min-height: 40px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.text-link { font-weight: 600; }
.link-button { background: none; border: 0; color: var(--accent); text-decoration: underline; cursor: pointer; font: inherit; padding: .4rem; min-height: 40px; }

/* ---------- Build-plate bands ---------- */
.plate { background-color: var(--plate); background-image: linear-gradient(var(--grid) 1px, transparent 1px), linear-gradient(90deg, var(--grid) 1px, transparent 1px); background-size: 32px 32px; }
.page-head { padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2.1rem, 5vw, 3.3rem); max-width: 16em; }
.page-head .lead { margin: 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 7vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero h1 { max-width: 11em; }
.hero-visual { max-width: 460px; width: 100%; justify-self: center; }
.print-frame { display: block; position: relative; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: var(--radius); overflow: hidden; background: var(--paper); box-shadow: 8px 8px 0 var(--ink); }
.print-frame img { width: 100%; height: 100%; object-fit: cover; }
.spec-tag { display: flex; justify-content: space-between; gap: 1rem; margin: 1.5rem 0 0; padding: .75rem 1rem; background: var(--paper); border: 1px solid var(--ink); border-radius: 6px; font-weight: 600; }
.spec-price { font-variant-numeric: tabular-nums; }
@media (min-width: 860px) { .hero-grid { grid-template-columns: 1.15fr .85fr; gap: 4rem; } }

/* The one motion moment: the hero image "prints" in from the bottom, layer by layer. */
@media (prefers-reduced-motion: no-preference) {
  .print-frame img { animation: print 2.2s steps(36, end) .2s both; }
  .print-frame::after { content: ""; position: absolute; left: 0; right: 0; height: 4px; background: var(--signal); box-shadow: 0 0 12px var(--signal); animation: nozzle 2.2s steps(36, end) .2s both; }
}
@keyframes print { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes nozzle { from { top: 100%; opacity: 1; } 96% { opacity: 1; } to { top: 0; opacity: 0; } }

/* ---------- Highlights strip ---------- */
.strip { background: var(--ink); color: #fff; }
.highlights { list-style: none; margin: 0; padding: 1.75rem 0; display: grid; gap: 1.25rem; }
.highlights h3 { margin-bottom: .2rem; color: var(--signal); }
.highlights p { margin: 0; color: #c7d2dc; font-size: .98rem; }
@media (min-width: 760px) { .highlights { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; padding: 2.25rem 0; } }

/* ---------- Sections ---------- */
.section { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.section-tint { background: var(--tint); border-top: 1px solid var(--line); }
.section-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .5rem 1.5rem; margin-bottom: 1.5rem; }
.section-head h2 { margin: 0; }

/* ---------- Product cards ---------- */
.product-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 520px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; } }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.card.pad { padding: 1.5rem; }
.product-card { display: flex; flex-direction: column; transition: border-color .15s; }
.product-card:hover, .product-card:focus-within { border-color: var(--ink); }
.card-media { display: block; aspect-ratio: 1; background: var(--plate); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { display: flex; flex-direction: column; flex: 1; padding: 1.1rem 1.15rem 1.25rem; }
.card-title { margin: .1rem 0 .25rem; font-size: 1.25rem; }
.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { text-decoration: underline; }
.card-text { color: var(--muted); font-size: .96rem; margin-bottom: .9rem; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.price { font: 700 1.3rem var(--font-display); margin: 0 0 .5rem; font-variant-numeric: tabular-nums; }
.price-large { font-size: 2rem; }
.tag { display: inline-block; align-self: flex-start; font-size: .85rem; font-weight: 600; color: var(--muted); background: var(--plate); border-radius: 4px; padding: .15rem .55rem; margin: 0 0 .5rem; }
.swatch-row { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 1.1rem; }
.card-body .btn { margin-top: auto; }
.swatch { display: inline-block; width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(17,28,39,.35); flex: none; vertical-align: middle; }
.swatch-none { background: repeating-linear-gradient(45deg, #fff, #fff 3px, #d5dde4 3px, #d5dde4 6px); }

@media (min-width: 1000px) { .product-grid-four { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Shop toolbar ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { font: 600 .95rem var(--font-body); border: 1.5px solid var(--ink); background: var(--paper); color: var(--ink); border-radius: 999px; padding: .5rem 1rem; min-height: 42px; cursor: pointer; }
.pill:hover { background: var(--plate); }
.pill[aria-pressed="true"] { background: var(--ink); color: #fff; }
.search input { width: 100%; min-width: 230px; }
.result-count { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); border: 2px dashed var(--line); border-radius: var(--radius); }

/* ---------- Custom band ---------- */
.custom-band { background: var(--ink); color: #fff; padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.custom-band .lead { color: #c7d2dc; }
.custom-band-inner { display: grid; gap: 2rem; align-items: center; }
.file-types { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.file-types li { border: 1.5px dashed #5a6b7c; border-radius: 6px; padding: .8rem 1rem; font-weight: 500; }
@media (min-width: 860px) { .custom-band-inner { grid-template-columns: 1.4fr .6fr; gap: 4rem; } }

/* ---------- CTA ---------- */
.cta { background: var(--tint); border-top: 1px solid var(--line); }
.cta-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; }
.cta h2 { margin-bottom: .25rem; } .cta p { margin: 0; color: var(--muted); }

/* ---------- Process (a real sequence, so numbered) ---------- */
.process { list-style: none; counter-reset: step; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.5rem; }
.process li { counter-increment: step; position: relative; padding-left: 3.4rem; }
.process li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: var(--ink); color: var(--signal); border-radius: 50%; font: 700 1.1rem var(--font-display); }
.process h3 { margin-bottom: .2rem; } .process p { margin: 0; color: var(--muted); font-size: .98rem; }
@media (min-width: 900px) {
  .process { grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
  .process li { padding: 3.3rem 0 0; }
}

/* ---------- Product page ---------- */
.crumbs { font-size: .95rem; color: var(--muted); margin-bottom: 1.5rem; }
.product-layout { display: grid; gap: 2rem; }
.product-media { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--plate); align-self: start; }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.product-desc { color: var(--muted); font-size: 1.1rem; margin-bottom: 1.5rem; }
@media (min-width: 860px) { .product-layout { grid-template-columns: 1.05fr .95fr; gap: 3.5rem; } .product-media { position: sticky; top: 5.5rem; } }
.order-form { border-top: 1px solid var(--line); padding-top: 1.5rem; display: grid; gap: 1.1rem; }
.order-total { font-weight: 600; margin: .3rem 0 0; }
.total { font: 700 1.5rem var(--font-display); margin-left: .3rem; font-variant-numeric: tabular-nums; }
.not-found { text-align: center; padding: 3rem 0; }

/* ---------- Forms ---------- */
.stack-form { display: grid; gap: 1.25rem; margin-top: 1.5rem; }
.field { display: grid; gap: .4rem; min-width: 0; }
label, legend { font-weight: 600; font-size: .98rem; padding: 0; }
input, select, textarea { font: 400 1rem/1.4 var(--font-body); color: var(--ink); background: var(--paper); border: 1.5px solid #8a97a4; border-radius: 6px; padding: .75rem .85rem; width: 100%; min-height: 46px; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(28,79,255,.35); border-color: var(--accent); }
input[type="file"] { padding: .55rem; background: var(--tint); }
input[type="radio"] { width: auto; min-height: 0; accent-color: var(--accent); }
[aria-invalid="true"] { border-color: var(--err); }
.field-error { color: var(--err); font-size: .93rem; font-weight: 500; margin: 0; }
.hint { color: var(--muted); font-size: .9rem; margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
.group { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; display: grid; gap: 1rem; }
.group legend { font: 700 1.15rem var(--font-display); padding: 0 .4rem; margin-left: -.4rem; }
.grid-2, .grid-4 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 639px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
.notice { background: #fff6d6; border-left: 5px solid var(--signal); padding: .9rem 1.1rem; border-radius: 4px; margin: 1rem 0 0; }
.form-status { border-radius: 6px; padding: .9rem 1.1rem; }
.form-status p { margin: 0 0 .4rem; } .form-status p:last-child { margin: 0; }
.form-status.error { background: #fdeceb; border: 1px solid var(--err); color: #6d150f; }
.form-status.ok { background: #e6f5ed; border: 1px solid var(--ok); }
.success { border: 2px solid var(--ok); background: #f0faf4; border-radius: var(--radius); padding: 1.5rem; margin-top: 1.5rem; }
.success h2 { color: var(--ok); }
.summary { font-weight: 600; }

.choices { display: flex; flex-wrap: wrap; gap: .6rem; }
.choices-stack { flex-direction: column; }
.choice { display: flex; align-items: center; gap: .55rem; border: 1.5px solid #8a97a4; border-radius: 6px; padding: .6rem .85rem; min-height: 46px; cursor: pointer; font-weight: 500; background: var(--paper); }
.choice:has(input:checked) { border-color: var(--accent); box-shadow: 0 0 0 1.5px var(--accent); background: #f2f5ff; }
.choice:has(input:focus-visible) { outline: 3px solid rgba(28,79,255,.35); outline-offset: 2px; }
.choice-wide { align-items: flex-start; }
.choice-wide span { display: grid; gap: .1rem; }
.choice-wide small { color: var(--muted); font-weight: 400; font-size: .88rem; }
.stepper { display: inline-flex; max-width: 190px; }
.stepper button { width: 48px; min-height: 46px; font-size: 1.4rem; background: var(--tint); border: 1.5px solid #8a97a4; cursor: pointer; color: var(--ink); }
.stepper button:first-child { border-radius: 6px 0 0 6px; } .stepper button:last-child { border-radius: 0 6px 6px 0; }
.stepper input { text-align: center; border-radius: 0; border-left: 0; border-right: 0; -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.file-list { list-style: none; margin: .25rem 0 0; padding: 0; display: grid; gap: .5rem; }
.file-list li { display: flex; align-items: center; gap: .75rem; border: 1px solid var(--line); border-radius: 6px; padding: .4rem .6rem; background: var(--paper); }
.thumb { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; flex: none; }
.thumb-file { display: grid; place-items: center; background: var(--ink); color: var(--signal); font: 700 .8rem var(--font-display); }
.file-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .95rem; }
.file-size { color: var(--muted); font-size: .85rem; white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; font: 600 1.15rem var(--font-display); padding: 1.1rem 2.5rem 1.1rem 0; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; translate: 0 -50%; font-size: 1.6rem; color: var(--accent); transition: rotate .2s; }
.faq-item[open] summary::after { rotate: 45deg; }
.faq-item p { color: var(--muted); padding-right: 2rem; }

/* ---------- About / Contact ---------- */
.prose p { font-size: 1.12rem; }
.two-services { display: grid; gap: 1rem; margin-top: 2.5rem; }
.two-services p { color: var(--muted); }
@media (min-width: 640px) { .two-services { grid-template-columns: 1fr 1fr; } }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; } .contact-grid .stack-form { margin-top: 0; } }
.contact-block { margin-bottom: 1.5rem; } .contact-block h2 { font-size: 1.15rem; margin-bottom: .3rem; }
.contact-block p { margin: 0 0 .2rem; }
.plain-links { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.hours { display: grid; grid-template-columns: auto 1fr; gap: .25rem 1.25rem; margin: 0; }
.hours dt { font-weight: 600; } .hours dd { margin: 0; white-space: nowrap; }

.card-gallery {
  display: flex;
  gap: 6px;
  margin: 8px 0;
}

.card-gallery .thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.card-gallery-wrapper {
  position: relative;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.arrow.left { left: 4px; }
.arrow.right { right: 4px; }

.card-gallery {
  display: flex;
  overflow-x: auto;       /* enables horizontal scrolling */
  scroll-behavior: smooth;
  gap: 6px;
  margin: 8px 0;
  scroll-snap-type: x mandatory; /* optional for smoother snapping */
}

.card-gallery .thumb {
  flex: none;             /* prevents shrinking */
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
  scroll-snap-align: start; /* optional for snapping */
}

.card-gallery {
  max-width: 180px;   /* 👈 forces overflow so arrows can scroll */
}

.card-media img {
  width: 100%;
  max-height: 260px;       /* keeps it from being too tall */
  object-fit: contain;     /* preserves proportions without cropping */
  object-position: center; /* centers the drawing */
  background-color: var(--plate); /* optional neutral backdrop */
}

.product-media img {
  width: 100%;
  max-height: 260px;        /* keeps tall drawings from stretching */
  object-fit: contain;      /* preserves proportions */
  object-position: center;  /* centers the drawing */
  background-color: var(--plate);
}

.hero-visual .card-gallery-wrapper {
  position: relative;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-visual .card-gallery {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 6px;
  scroll-snap-type: x mandatory;
}

.hero-visual .thumb {
  flex: none;
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.hero-visual .arrow {
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
}


.color-picker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.color-picker input[type="color"] {
  width: 3rem;
  height: 3rem;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
}

.hidden-color {
  position: absolute;
  left: -9999px;
}

.color-picker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}


/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #dbe3ea; margin-top: 0; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.1fr 1fr 1.2fr .8fr; } }
.footer-brand { font: 700 1.4rem var(--font-display); color: #fff; margin-bottom: .3rem; }
.footer-head { font: 700 1rem var(--font-display); color: var(--signal); margin-bottom: .6rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .3rem; }
.site-footer .hours dt { color: #fff; }
.footer-base { border-top: 1px solid #2c3b4b; padding: 1.25rem 0 2rem; font-size: .9rem; color: #9fb0c0; }
.footer-base p { margin: 0; }
