/* ============================================================
   Mr Wash Car Wash — design system
   Palette: brand orange #FE5000, warm charcoal, warm neutrals.
   Type: Archivo (display) + Inter (body), via Google Fonts.
   ============================================================ */

:root {
  --orange: #FE5000;          /* brand orange: large text, buttons, accents */
  --orange-hover: #E04600;
  --orange-text: #C43C00;     /* AA-compliant orange for small text on white */
  --orange-tint: #FFEDE4;
  --yellow: #FFD200;          /* brand sun yellow: badges + marker swipes only */
  --ink: #1B1815;             /* warm charcoal */
  --ink-2: #262220;
  --ink-3: #332E2A;
  --paper: #FFFFFF;
  --cream: #F7F3EE;
  --line: #E7E2DC;
  --line-dark: #3D3733;
  --muted: #6B645D;
  --muted-dark: #A8A09A;      /* muted text on charcoal */
  --river: #BFD9E8;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1140px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 12px 32px rgba(27, 24, 21, 0.10);
  --shadow-btn: 0 8px 20px rgba(254, 80, 0, 0.25);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

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

img, svg { max-width: 100%; display: block; }

a { color: var(--orange-text); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0 0 0.5em;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { margin: 0 0 1em; max-width: 640px; }

:focus-visible {
  outline: 3px solid var(--orange-text);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 768px) {
  .container { padding-inline: 32px; }
}

.section { padding-block: 96px; }
.section--tight { padding-block: 72px; }
@media (max-width: 767px) {
  .section { padding-block: 64px; }
  .section--tight { padding-block: 48px; }
}

.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #fff; }
.section--orange { background: var(--orange); color: #fff; }

/* ---------- type scale ---------- */

.display {
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange-text);
  margin-bottom: 14px;
}
.section--ink .eyebrow,
.section--orange .eyebrow { color: var(--yellow); }

.subhead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 640px;
}
.section--ink .subhead { color: var(--muted-dark); }
.section--orange .subhead { color: #fff; font-weight: 700; }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .subhead { margin-inline: auto; }
@media (max-width: 767px) {
  .section-head { margin-bottom: 36px; }
}

.accent { color: var(--orange); }

/* yellow marker swipe behind a word (light sections, dark text) */
.marker {
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.marker::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.02em;
  height: 0.48em;
  background: var(--yellow);
  border-radius: 0.08em;
  transform: skewX(-8deg) rotate(-1deg);
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms var(--ease), color 180ms var(--ease),
              transform 180ms var(--ease), box-shadow 180ms var(--ease),
              border-color 180ms var(--ease);
}

.btn--primary {
  background: var(--orange);
  color: var(--ink);
}
.btn--primary:hover {
  background: var(--orange-hover);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}
.btn--dark:hover {
  background: var(--ink-3);
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost {
  border-color: currentColor;
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { color: var(--orange-text); transform: translateY(-1px); }
.section--ink .btn--ghost,
.page-hero .btn--ghost,
.hero .btn--ghost { color: #fff; }
.section--ink .btn--ghost:hover,
.page-hero .btn--ghost:hover,
.hero .btn--ghost:hover { color: var(--yellow); }
.section--orange .btn--primary {
  background: var(--ink);
  color: #fff;
}
.section--orange .btn--primary:hover { background: var(--ink-2); color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.3); }

.btn--lg { min-height: 56px; padding: 16px 36px; font-size: 17px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
}
.link-arrow .arrow { transition: transform 180ms var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(27, 24, 21, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: box-shadow 200ms var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 72px;
}

.nav__logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
.nav__links a:not(.btn) {
  color: #fff;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease;
}
.nav__links a:not(.btn):hover { color: var(--yellow); }
.nav__links a[aria-current="page"] { border-bottom-color: var(--orange); }
.nav__links .btn { min-height: 42px; padding: 9px 22px; font-size: 15px; }

.nav__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav__toggle .bar {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: #fff;
  margin: 5px 0;
  transition: transform 200ms var(--ease), opacity 150ms ease;
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line-dark);
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--line-dark); }
  .nav__links li:last-child, .nav__links li:nth-last-child(2) { border-bottom: 0; }
  .nav__links a:not(.btn) { display: block; padding: 16px 0; font-size: 17px; }
  .nav__links .btn { margin-top: 16px; width: 100%; }
  .nav--open .nav__toggle .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav--open .nav__toggle .bar:nth-child(2) { opacity: 0; }
  .nav--open .nav__toggle .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

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

.hero {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: center;
  padding-block: 96px 128px;
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.8vw, 62px);
}
.hero .subhead { margin-bottom: 36px; color: var(--muted-dark); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--yellow);
  border-radius: 999px;
  padding: 7px 16px 7px 10px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__badge img { height: 22px; width: auto; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }

.hero__note { font-size: 14.5px; color: var(--muted-dark); }
.hero__note strong { color: #fff; font-weight: 600; }

.hero__media { position: relative; }
.hero__media > picture img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.hero__seal {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 132px;
  height: 132px;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}
.hero__seal svg { animation: spin 24s linear infinite; }
.hero__seal .seal-mascot {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.hero__seal .seal-mascot img { width: 62px; height: auto; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero__seal svg { animation: none; }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    padding-block: 56px 88px;
    gap: 40px;
  }
  .hero__media > picture img { min-height: 280px; }
  .hero__seal { right: 4px; bottom: -30px; width: 104px; height: 104px; }
  .hero__seal .seal-mascot img { width: 48px; }
}

/* ticket-stub card overlapping the hero bottom edge */
.ticket-wrap { margin-top: -72px; position: relative; z-index: 5; }
.ticket {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(27, 24, 21, 0.18);
  display: grid;
  grid-template-columns: 1fr minmax(240px, 30%);
  overflow: hidden;
  position: relative;
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  right: calc(30% - 14px);
}
.ticket::before { top: -14px; }
.ticket::after { bottom: -14px; background: var(--paper); }

.ticket__main {
  padding: 28px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
}
.ticket__stub {
  border-left: 2px dashed var(--line);
  padding: 28px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: var(--orange-tint);
}
.ticket__stat { display: flex; flex-direction: column; }
.ticket__stat .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.ticket__stat .lbl { font-size: 14px; color: var(--muted); font-weight: 500; }
.ticket__stub .price { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.ticket__stub .price small { font-size: 14px; font-weight: 600; color: var(--muted); }

@media (max-width: 820px) {
  .ticket { grid-template-columns: 1fr; }
  .ticket::before, .ticket::after { display: none; }
  .ticket__stub { border-left: 0; border-top: 2px dashed var(--line); }
  .ticket__main { justify-content: space-between; gap: 16px 28px; padding: 24px 28px; }
  .ticket__stub { padding: 20px 28px; }
}

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

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 24px;
  max-width: 1040px;
  margin-inline: auto;
  align-items: stretch;
}
@media (max-width: 999px) {
  .plans { grid-template-columns: 1fr; max-width: 520px; }
}

.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease),
              border-color 200ms var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-card);
}

.plan--featured {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--orange);
  box-shadow: 0 16px 40px rgba(27, 24, 21, 0.25);
}

.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-text);
  margin-bottom: 12px;
}
.plan--featured .plan__name { color: var(--yellow); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
}
.plan__price .amount {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.plan--featured .plan__price .amount { color: var(--orange); }
.plan__price .per { font-size: 16px; font-weight: 600; color: var(--muted); }
.plan--featured .plan__price .per { color: var(--muted-dark); }

.plan__desc { font-size: 15.5px; color: var(--muted); margin: 10px 0 0; }
.plan--featured .plan__desc { color: var(--muted-dark); }

.plan__divider { border: 0; border-top: 1px solid var(--line); margin: 22px 0; }
.plan--featured .plan__divider { border-top-color: var(--line-dark); }

.plan__list { list-style: none; margin: 0 0 28px; padding: 0; flex-grow: 1; }
.plan__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 6px 0;
  font-size: 15.5px;
}
.plan__list .check { flex-shrink: 0; margin-top: 4px; color: var(--orange); }

.plan .btn { width: 100%; }

.plans-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin: 28px auto 0;
}

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

.tunnel-track-wrap { position: relative; }
.tunnel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 40px 24px 28px;
  margin-inline: -24px;
  scrollbar-width: none;
}
.tunnel-track::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .tunnel-track { padding-inline: 32px; margin-inline: -32px; }
}

.tunnel-track::before {
  content: "";
  position: absolute;
  top: 89px;
  left: 0;
  right: 0;
  border-top: 3px dashed rgba(254, 80, 0, 0.5);
}

.stage {
  scroll-snap-align: start;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}
.stage:hover { transform: translateY(-4px); border-color: var(--orange); }

.stage__num {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--ink);
}
.stage h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.stage p { font-size: 15px; color: var(--muted-dark); margin: 0; }

.tunnel-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted-dark);
  margin-top: 4px;
}

/* giant outline watermark */
.watermark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  font-family: var(--font-display);
  font-size: clamp(90px, 14vw, 170px);
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

/* ---------- location explorer ---------- */

.locex {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .locex { grid-template-columns: 1fr; }
}

.locex__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 560px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
}

.locrow {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  transition: border-color 180ms var(--ease), transform 180ms var(--ease),
              box-shadow 180ms var(--ease);
}
.locrow:hover, .locrow.is-active {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  color: inherit;
}
.locrow__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.locrow__addr { font-size: 14px; color: var(--muted); grid-column: 1; }
.locrow__meta {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
}
.locrow__state {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--cream);
  border-radius: 6px;
  padding: 2px 8px;
}

.badge-new {
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 999px;
}

.open-pill { font-weight: 600; }
.open-pill.is-open { color: #1E7B34; }
.open-pill.is-closed { color: var(--muted); }

.locex__map {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  position: sticky;
  top: 96px;
}
.locex__map svg { width: 100%; height: auto; }

.map-pin { cursor: pointer; }
.map-pin circle.dot {
  fill: var(--orange);
  stroke: #fff;
  stroke-width: 2.5;
  transition: r 150ms var(--ease);
}
.map-pin text {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  fill: var(--ink);
  paint-order: stroke;
  stroke: var(--cream);
  stroke-width: 3px;
  stroke-linejoin: round;
}
.map-pin.is-active circle.dot { r: 9; fill: var(--orange-hover); }
.map-pin .pulse {
  fill: none;
  stroke: var(--yellow);
  stroke-width: 3;
  opacity: 0;
}
.map-pin.is-active .pulse { animation: pulse 1.2s ease-out infinite; }
@keyframes pulse {
  0% { r: 9; opacity: 0.9; }
  100% { r: 22; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .map-pin.is-active .pulse { animation: none; opacity: 0.9; r: 14; }
}

/* ---------- amenities strip ---------- */

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.amenity { text-align: left; }
.amenity__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--orange-tint);
  color: var(--orange);
  border-radius: 16px;
  margin-bottom: 16px;
}
.amenity h3 {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.amenity p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 24px;
}
.quote {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote__stars { color: var(--yellow); display: flex; gap: 2px; }
.quote__stars svg { width: 18px; height: 18px; fill: currentColor; stroke: #B8860B; stroke-width: 0.5; }
.quote p { font-size: 16px; margin: 0; flex-grow: 1; }
.quote footer {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
}
.quote footer span { color: var(--muted); font-weight: 500; font-family: var(--font-body); }

/* ---------- legacy / about band ---------- */

.legacy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .legacy { grid-template-columns: 1fr; }
}
.legacy__media { position: relative; }
.legacy__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.legacy__year {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 800;
  font-size: 21px;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(27, 24, 21, 0.2);
  transform: rotate(-3deg);
}
@media (max-width: 900px) {
  .legacy__year { left: 12px; top: -16px; }
}

/* timeline (about page) */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 720px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  border-left: 3px dashed rgba(254, 80, 0, 0.4);
}
.timeline li {
  position: relative;
  padding: 0 0 40px 48px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  border: 5px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}
.timeline .year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--orange-text);
  display: block;
  margin-bottom: 4px;
}
.timeline h3 { font-size: 19px; margin-bottom: 6px; }
.timeline p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- split cards (fleet / careers) ---------- */

.split-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.bigcard {
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.bigcard--ink { background: var(--ink); color: #fff; }
.bigcard--ink .eyebrow { color: var(--yellow); }
.bigcard--tint { background: var(--orange-tint); }
.bigcard h3 { font-size: 26px; }
.bigcard p { font-size: 16px; margin-bottom: 8px; }
.bigcard--ink p { color: var(--muted-dark); }
.bigcard .btn { margin-top: auto; }

/* ---------- CTA band ---------- */

.cta-band { text-align: center; }
.cta-band .headline { color: #fff; max-width: 720px; margin-inline: auto; }
.cta-band .subhead { margin: 12px auto 36px; }
.cta-band__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.cta-band .btn--ghost { color: #fff; }
.cta-band .btn--ghost:hover { color: var(--ink); background: #fff; }

/* ---------- FAQ accordion ---------- */

.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
  transition: transform 200ms var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 24px 20px; color: var(--muted); font-size: 16px; }
.faq details > div p { max-width: none; }
.faq details[open] { border-color: var(--orange); }

/* ---------- forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 150ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(254, 80, 0, 0.15);
}
.field textarea { min-height: 120px; resize: vertical; }

/* ---------- page hero (interior pages) ---------- */

.page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: 72px 80px;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .subhead { margin-bottom: 0; color: var(--muted-dark); }
.page-hero .eyebrow { color: var(--yellow); }
.breadcrumb {
  font-size: 14px;
  color: var(--muted-dark);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted-dark); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }

/* ---------- location detail ---------- */

.loc-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .loc-detail { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.info-card h2, .info-card h3 { font-size: 18px; margin-bottom: 14px; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.hours-table td, .hours-table th { padding: 8px 0; border-bottom: 1px solid var(--line); }
.hours-table th { text-align: left; font-weight: 500; }
.hours-table tr:last-child td, .hours-table tr:last-child th { border-bottom: 0; }
.hours-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--orange-tint);
  color: var(--orange-text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
}

/* ---------- legal prose ---------- */

.legal-prose { max-width: 800px; }
.legal-prose p, .legal-prose li { font-size: 15.5px; overflow-wrap: break-word; }
.legal-prose p { max-width: none; }
.legal-prose ol, .legal-prose ul { padding-left: 24px; margin-bottom: 1em; }
.legal-prose a { overflow-wrap: anywhere; }

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

.site-footer {
  background: var(--ink);
  color: var(--muted-dark);
  padding: 72px 0 40px;
  font-size: 14.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: #fff;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--muted-dark); text-decoration: none; }
.site-footer a:hover { color: var(--yellow); }
.footer-brand img { height: 48px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  transition: border-color 150ms ease, color 150ms ease;
}
.footer-social a:hover { border-color: var(--yellow); }
.footer-social svg { width: 17px; height: 17px; fill: currentColor; }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(16px);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-group > * { opacity: 0; transform: translateY(16px); }
.reveal-group.in-view > * {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-group.in-view > :nth-child(1) { transition-delay: 0ms; }
.reveal-group.in-view > :nth-child(2) { transition-delay: 60ms; }
.reveal-group.in-view > :nth-child(3) { transition-delay: 120ms; }
.reveal-group.in-view > :nth-child(4) { transition-delay: 180ms; }
.reveal-group.in-view > :nth-child(5) { transition-delay: 240ms; }
.reveal-group.in-view > :nth-child(n+6) { transition-delay: 300ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn, .plan, .locrow, .stage { transition: none; }
}
.no-js .reveal, .no-js .reveal-group > * { opacity: 1; transform: none; }
