/* ============================================================
   El Camino Laundromat — Mountain View
   Aesthetic: the honest sign.
   Painted vinyl letters, fluorescent-lit interior, posted prices.
   Cobalt blue + warm cream paper + navy stripe + red Sharpie.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Color */
  --blue:        #1b4ea8;   /* the LAUNDROMAT sign letters */
  --blue-deep:   #163d85;   /* hover / pressed */
  --blue-soft:   #cbdcf3;   /* the logo bubble */
  --navy:        #0e1f3a;   /* the wall stripe behind the dryers */
  --paper:       #f5efe1;   /* warm fluorescent-lit interior / signage paper */
  --paper-deep:  #ece4d0;
  --cream:       #faf6ec;
  --ink:         #14171f;
  --ink-soft:    #3b3f4a;
  --rule:        #1f2a44;   /* hairline rules */
  --brown:       #6b4f3a;   /* the awning */
  --red:         #c2410c;   /* Sharpie accent — use VERY sparingly */
  --white:       #ffffff;

  /* Type */
  --font-sign:   "Anton", "Arial Black", sans-serif;
  --font-body:   "DM Sans", system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --font-mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Space */
  --maxw: 1200px;
  --pad:  clamp(20px, 5vw, 64px);
  --gap:  clamp(20px, 4vw, 48px);
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* paper grain */
  background-image:
    radial-gradient(at 12% 8%, rgba(27, 78, 168, 0.04) 0, transparent 50%),
    radial-gradient(at 88% 92%, rgba(14, 31, 58, 0.05) 0, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

button,
input,
select,
textarea { font: inherit; color: inherit; }

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

.skip {
  position: absolute; left: 0; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 10px 14px; font: 600 14px/1 var(--font-body);
  transform: translateY(-150%);
  transition: transform 120ms;
  z-index: 100;
}
.skip:focus { transform: translateY(0); }

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px var(--pad);
  background: var(--paper);
  border-bottom: 1px solid rgba(14, 31, 58, 0.14);
  backdrop-filter: saturate(1.2);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
  flex: none;
}
.brand__name strong {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue);
}

.topbar__nav {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 26px);
  font-size: 15px;
  font-weight: 500;
}
.topbar__nav a {
  color: var(--ink-soft);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 120ms, border-color 120ms;
}
.topbar__nav a:hover { color: var(--blue); border-bottom-color: var(--blue); }

.topbar__cta {
  background: var(--blue);
  color: var(--paper) !important;
  padding: 9px 14px !important;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 0 !important;
  transition: background 120ms, transform 120ms;
  white-space: nowrap;
}
.topbar__cta:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

/* Hide some nav on small screens */
@media (max-width: 700px) {
  .topbar__nav a:not(.topbar__cta) { display: none; }
}

/* Sections scroll-margin to clear sticky topbar */
.hero,
.services,
.prices,
.story,
.visit,
.cta { scroll-margin-top: 76px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(28px, 5vw, 56px) var(--pad) clamp(40px, 8vw, 88px);
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}

.hero__stamp {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(24px, 4vw, 40px);
  background: var(--cream);
}

.hero__title {
  font-family: var(--font-sign);
  color: var(--blue);
  line-height: 0.86;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.title__line {
  display: block;
}
.title__line--lg {
  font-size: clamp(54px, 13vw, 130px);
}
.title__line--xl {
  font-size: clamp(72px, 19vw, 208px);
  letter-spacing: -0.018em;
  position: relative;
}
/* the famous painted-letter look — give the big word a subtle outline shadow */
.title__line--xl::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__sub {
  max-width: 36em;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: clamp(28px, 4vw, 40px);
}
.hero__sub strong { color: var(--blue); font-weight: 600; }

/* The machine row — a four-machine diagram drawn in CSS */
.hero__machines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1.5vw, 18px);
  margin: clamp(24px, 4vw, 40px) 0 clamp(32px, 4vw, 44px);
}
.machine {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  padding: clamp(10px, 1.6vw, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.4vw, 16px);
  position: relative;
  box-shadow: 0 1px 0 var(--paper-deep);
}
.machine__porthole {
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.8) 0, transparent 38%),
    radial-gradient(circle at 70% 75%, var(--blue-soft), var(--blue) 90%);
  border: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 1;
  flex: none;
  align-self: center;
}
.machine__porthole--open {
  background: var(--paper);
  border-style: dashed;
  border-width: 3px;
  border-color: var(--ink-soft);
}
.porthole__bubble {
  position: absolute;
  top: 22%; left: 28%;
  width: 18%; height: 18%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    25px 8px 0 -2px rgba(255, 255, 255, 0.7),
    -8px 18px 0 -4px rgba(255, 255, 255, 0.55);
}
.machine[data-state="on"] .machine__porthole {
  animation: tumble 4s cubic-bezier(.5,.2,.5,.8) infinite;
}
.machine:nth-child(2)[data-state="on"] .machine__porthole { animation-delay: -1.3s; animation-duration: 5s; }
.machine:nth-child(3)[data-state="on"] .machine__porthole { animation-delay: -2.4s; animation-duration: 6s; }
@keyframes tumble {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .machine[data-state="on"] .machine__porthole { animation: none; }
}

.machine__panel {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
  padding: 6px 8px;
  background: var(--ink);
  color: var(--blue-soft);
  border-radius: 4px;
  font-family: var(--font-mono);
}
.panel__num {
  font-size: clamp(13px, 1.6vw, 18px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffd56a; /* warm LED amber */
}
.panel__label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

/* Buttons */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(8px, 2vw, 12px);
}
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 22px;
  border-radius: 8px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 600;
  transition: background 120ms, transform 120ms, border-color 120ms, color 120ms;
  cursor: pointer;
}
.btn--primary {
  background: var(--blue);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn--xl { padding: 22px 36px; font-size: 18px; }
.btn__label { font-size: 16px; letter-spacing: 0.01em; }
.btn__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 32px) clamp(20px, 4vw, 40px);
  margin-top: clamp(24px, 4vw, 36px);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.hero__chips li { display: inline-flex; align-items: center; gap: 8px; }
.chip__dot {
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* ---------- Ticker strip ---------- */
.ticker {
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(0,0,0,0.2);
  height: 56px;
  display: flex;
  align-items: center;
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(20px, 4vw, 36px);
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-left: 0;
}
.ticker__item {
  font-family: var(--font-sign);
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.04em;
  color: var(--paper);
}
.ticker__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-soft);
  flex: none;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ---------- Section primitives ---------- */
.section__head {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section__head--center { text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--blue);
}
.section__title {
  font-family: var(--font-sign);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  max-width: 18ch;
  margin-bottom: 8px;
}
.section__head--center .section__title { margin-left: auto; margin-right: auto; }

/* ---------- Services ---------- */
.services {
  padding: clamp(60px, 10vw, 120px) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.services .section__head { margin-bottom: clamp(36px, 5vw, 56px); }
.services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 var(--pad);
  border-top: 1.5px solid var(--rule);
}
.service {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: clamp(20px, 4vw, 48px);
  padding: clamp(28px, 5vw, 48px) 0;
  border-bottom: 1.5px solid var(--rule);
  position: relative;
}
.service__num {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--blue);
  padding-top: 6px;
  position: relative;
}
.service__num::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.service__name {
  font-family: var(--font-sign);
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.04;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.service__body {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.service__body strong { color: var(--ink); font-weight: 600; }
.service__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

@media (min-width: 760px) {
  .service { grid-template-columns: 80px 1fr; }
}

/* ---------- Priceboard ---------- */
.prices {
  background: var(--navy);
  color: var(--paper);
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}
.prices .section__head { margin-bottom: clamp(40px, 6vw, 64px); }
.prices .section__eyebrow { color: var(--blue-soft); border-bottom-color: var(--blue-soft); }
.prices .section__title { color: var(--paper); }

.priceboard {
  max-width: 900px;
  margin: 0 auto;
  width: calc(100% - 2 * var(--pad));
  border-collapse: collapse;
  font-family: var(--font-mono);
  background: transparent;
}
.priceboard th,
.priceboard td {
  padding: clamp(14px, 2.4vw, 22px) 0;
  text-align: left;
  border-bottom: 1px dashed rgba(245, 239, 225, 0.22);
  font-weight: 400;
  vertical-align: baseline;
}
.priceboard th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--paper);
  letter-spacing: 0.005em;
}
.priceboard td.price {
  text-align: right;
  white-space: nowrap;
}
.price__unit {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-right: 12px;
  vertical-align: middle;
  opacity: 0.7;
}
.price__amt {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: #ffd56a; /* the warm LED amber, like a real price-board */
  vertical-align: middle;
  letter-spacing: -0.005em;
}
.priceboard__feature th,
.priceboard__feature td {
  border-bottom-style: solid;
  border-bottom-color: var(--blue-soft);
  padding-top: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(20px, 3vw, 32px);
}
.priceboard__feature th {
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 22px);
}
.priceboard__feature .price__amt {
  font-size: clamp(24px, 3.5vw, 38px);
}

.prices__note {
  max-width: 60ch;
  margin: 32px auto 0;
  padding: 0 var(--pad);
  text-align: center;
  font-size: 14px;
  color: rgba(245, 239, 225, 0.7);
}
.prices__note a {
  color: var(--blue-soft);
  border-bottom: 1px solid currentColor;
}

/* ---------- Story ---------- */
.story {
  padding: clamp(60px, 10vw, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
}
@media (min-width: 880px) {
  .story { grid-template-columns: 1.2fr 1fr; align-items: start; }
}
.story__copy p + p { margin-top: 1.1em; }
.story__copy .section__title { margin-bottom: 28px; max-width: none; }
.story__copy { font-size: 18px; line-height: 1.6; color: var(--ink-soft); }
.story__sig {
  margin-top: 1.6em !important;
  padding-top: 1.4em;
  border-top: 1.5px solid var(--rule);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
}
.story__sig strong { color: var(--blue); font-weight: 600; }

.story__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  overflow: hidden;
}
.stat {
  background: var(--cream);
  padding: clamp(20px, 3vw, 28px) clamp(16px, 3vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__num {
  font-family: var(--font-sign);
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.86;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.stat__num .stat__unit {
  font-size: 0.5em;
  color: var(--ink);
  vertical-align: super;
  margin-left: 2px;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 18ch;
}

/* ---------- Visit ---------- */
.visit {
  background: var(--cream);
  padding: clamp(60px, 10vw, 120px) var(--pad);
  border-top: 1.5px solid var(--rule);
  border-bottom: 1.5px solid var(--rule);
}
.visit {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 64px);
  max-width: var(--maxw);
  margin: 0 auto;
}
@media (min-width: 880px) {
  .visit { grid-template-columns: 1.1fr 1fr; }
}

.visit__hours .section__eyebrow,
.visit__where .section__eyebrow { margin-bottom: 18px; }

.visit__big {
  font-family: var(--font-sign);
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.86;
  color: var(--blue);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: clamp(8px, 2vw, 24px);
  margin-bottom: 12px;
}
.visit__open,
.visit__close {
  position: relative;
}
.visit__suf {
  font-size: 0.32em;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-left: 4px;
  vertical-align: super;
}
.visit__to {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--ink-soft);
  text-transform: lowercase;
  letter-spacing: 0;
  align-self: center;
}
.visit__every {
  font-family: var(--font-sign);
  font-size: clamp(20px, 2.6vw, 30px);
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.visit__note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 36ch;
}

.visit__addr {
  font-style: normal;
  font-family: var(--font-sign);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  margin-bottom: 22px;
  color: var(--blue);
}
.visit__addr a {
  border-bottom: 3px solid var(--blue);
  display: inline-block;
  transition: color 120ms, border-bottom-color 120ms;
}
.visit__addr a:hover {
  color: var(--blue-deep);
  border-bottom-color: var(--blue-deep);
}

.visit__directions {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 42ch;
}
.visit__directions em {
  font-style: normal;
  font-family: var(--font-sign);
  font-size: 1.08em;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.visit__contact {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1.5px solid var(--rule);
}
.contact__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1.5px solid var(--rule);
  transition: background 120ms;
}
.contact__row:hover {
  background: var(--paper);
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding-top: 2px;
}
.contact__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
}

/* ---------- CTA ---------- */
.cta {
  background: var(--blue);
  color: var(--paper);
  padding: clamp(60px, 10vw, 120px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* a subtle constellation of bubbles in the bg */
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--blue-deep);
  pointer-events: none;
}
.cta::before {
  width: 320px; height: 320px;
  top: -120px; left: -80px;
  opacity: 0.4;
}
.cta::after {
  width: 220px; height: 220px;
  bottom: -90px; right: -60px;
  opacity: 0.5;
}
.cta__title {
  font-family: var(--font-sign);
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.94;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--paper);
  margin-bottom: clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
.cta__title em {
  font-style: normal;
  color: #ffd56a;
}
.cta__or {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.2em;
  color: var(--blue-soft);
  margin: 6px 0;
  vertical-align: middle;
  text-transform: uppercase;
}
.cta .btn--primary {
  background: var(--paper);
  color: var(--blue);
  position: relative;
  z-index: 1;
}
.cta .btn--primary:hover {
  background: var(--white);
  color: var(--blue-deep);
}

/* ---------- Footer ---------- */
.foot {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(40px, 6vw, 60px) var(--pad);
  border-top: 1px solid var(--rule);
}
.foot__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.foot__mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 18px;
}
.foot__mark strong {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.foot__line {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.foot__line a {
  color: var(--blue);
  border-bottom: 1px solid currentColor;
}
.foot__small {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border-top: 1px dashed rgba(14, 31, 58, 0.3);
  padding-top: 14px;
  max-width: 60ch;
}

/* ---------- Reveal animations ---------- */
.will-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 540ms ease-out, transform 540ms ease-out;
}
.will-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .will-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Mobile tweaks ---------- */
@media (max-width: 540px) {
  body { font-size: 16px; }

  .hero__machines {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .machine { padding: 8px; }
  .machine__panel { padding: 4px 6px; }
  .panel__num { font-size: 12px; }
  .panel__label { font-size: 8px; letter-spacing: 0.1em; }

  .ticker { height: 44px; }
  .ticker__item { font-size: 18px; }

  .service { grid-template-columns: 36px 1fr; gap: 14px; }

  .priceboard th,
  .priceboard td { font-size: 14px; }
  .priceboard__feature th { font-size: 16px; }

  .visit__big { font-size: 76px; }
  .visit__addr { font-size: 26px; }

  .topbar { padding: 10px 16px; }
}

/* Tablet: services grid into two columns */
@media (min-width: 760px) and (max-width: 1023px) {
  .story__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .story__stats { grid-template-columns: repeat(2, 1fr); }
}

/* Lift cards on hover */
.service:hover { background: var(--cream); }
.service { transition: background 160ms; padding-left: 12px; padding-right: 12px; margin-left: -12px; margin-right: -12px; border-radius: 6px; }
