/* DeepSteam.ca design tokens. Every colour on the site is one of these; a hex
   value anywhere else in this file is a bug.

   The palette is the client's own logo: a black plate, chrome lettering, two
   red rules, and steam. The old site used that black and red as full-bleed
   slabs slammed against each other. Here black is the truck cab (header, hero,
   booking panel), white and steam-grey are the body panels where the photos
   live, and red is spent in exactly two places: the double rule that echoes
   the logo's two bars, and the primary action. Red never carries large text.

   Roles:
   --black   ground for header, hero, booking panel; matches the logo image.
   --coal    footer and dark cards; slightly lifted so the header still reads.
   --steel   hairlines and borders on dark grounds only.
   --chrome  secondary text on dark grounds; the logo's metal.
   --steam   light section ground; alternates with white.
   --white   main content ground.
   --ink     body text on light grounds.
   --ink-2   secondary text on light grounds.
   --red     the double rule and the primary button. Nothing else.
   --red-2   pressed and hover state of the primary button.
   --line    hairlines on light grounds. */
:root {
  --black: #000000;
  --coal: #15171a;
  --steel: #33373d;
  --chrome: #c8cbd0;
  --steam: #eef0f2;
  --white: #ffffff;
  --ink: #16181b;
  --ink-2: #4e535b;
  --red: #c8161d;
  --red-2: #950f14;
  --line: #d9dce0;

  --display: "Rokkitt", "Rockwell", "Roboto Slab", Georgia, serif;
  --text: "Public Sans", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --header-h: 64px;
}

@font-face {
  font-family: "Rokkitt";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/rokkitt-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/public-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/public-sans-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- base ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, picture, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-underline-offset: 0.15em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin: 0 0 0.35rem; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin: 0 0 0.6rem;
  text-wrap: balance;
}
h1 { font-size: clamp(1.8rem, 3.7vw + 1.03rem, 3.5rem); text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 2.2vw + 0.75rem, 2.5rem); text-transform: uppercase; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-family: var(--text); font-weight: 700; }
strong { font-weight: 700; }
small, .small { font-size: 0.9rem; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.dark :focus-visible, .site-header :focus-visible, .hero :focus-visible, .book-panel :focus-visible { outline-color: var(--white); }
[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

.wrap { width: min(var(--wrap), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.skip { position: absolute; left: 0.5rem; top: -4rem; background: var(--red); color: var(--white); padding: 0.6rem 1rem; z-index: 100; font-weight: 700; }
.skip:focus { top: 0.5rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* The signature: two red rules, the logo's bars. Used as the mark above a
   section heading and as the section divider. It is the only decoration. */
.rule, .sec-h::before {
  content: "";
  display: block;
  width: 64px;
  height: 11px;
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  margin-bottom: 1rem;
}
.rule-wide { width: 100%; height: 11px; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); }

/* ---- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.75rem 1.4rem;
  font: 700 1rem/1.1 var(--text);
  text-decoration: none; text-align: center;
  border: 2px solid transparent; border-radius: 2px;
  cursor: pointer; transition: background-color 120ms, color 120ms, border-color 120ms;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-2); border-color: var(--red-2); }
.btn-ghost { background: transparent; color: var(--white); border-color: var(--chrome); }
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: var(--coal); }
.btn-line { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---- header -------------------------------------------------------------- */
.site-header {
  background: var(--black); color: var(--white);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--steel);
}
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; min-height: 44px; }
.brand img { height: 30px; width: auto; }
.mainnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 0.25rem; flex-wrap: wrap; }
.mainnav a { display: block; padding: 0.55rem 0.6rem; color: var(--chrome); text-decoration: none; font-weight: 600; font-size: 0.9rem; border-bottom: 2px solid transparent; }
.mainnav a:hover, .mainnav a[aria-current] { color: var(--white); border-bottom-color: var(--red); }
/* The header call button is a secondary control: the sticky bar owns Call on
   phones and the hero owns it on desktop, so this one stays small. */
.nav-phone.btn { white-space: nowrap; min-height: 36px; padding: 0.35rem 0.8rem; font-size: 0.9rem; border-width: 1px; }
.nav-phone.btn svg { width: 15px; height: 15px; }
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; min-height: 44px; padding: 0.5rem 0.75rem; color: var(--white); font-weight: 700; border: 1px solid var(--steel); border-radius: 2px; }
.menu summary::-webkit-details-marker { display: none; }
.menu summary svg { width: 20px; height: 20px; }
.menu[open] summary { background: var(--coal); }
.menu .mainnav { position: absolute; right: 0; top: calc(100% + 0.5rem); background: var(--coal); border: 1px solid var(--steel); min-width: 240px; padding: 0.5rem; z-index: 60; }
.menu .mainnav ul { flex-direction: column; gap: 0; }
.menu .mainnav a { padding: 0.8rem 0.9rem; font-size: 1.05rem; border-bottom: 1px solid var(--steel); }
.menu .mainnav li:last-child a { border-bottom: 0; }
.desk-nav { display: none; }
@media (min-width: 1120px) {
  .brand img { height: 34px; }
  .menu { display: none; }
  .desk-nav { display: flex; align-items: center; gap: 0.75rem; }
}
@media (max-width: 1119px) {
  .nav-phone.btn { display: none; }
}

/* ---- hero ---------------------------------------------------------------- */
.hero { background: var(--black); color: var(--white); padding: clamp(0.9rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 3.5rem); }
.hero-grid { display: grid; gap: 0.85rem; align-items: center; }
/* On a phone the header wordmark sits 200px above this, so the big lockup was
   the same brand mark twice and it pushed the CTA off the fold. Desktop keeps
   it: there it is the brand statement and there is room for it. */
.hero-logo { display: none; }
.hero-photo { order: -1; }
@media (min-width: 900px) {
  .hero-logo { display: block; width: min(100%, 420px); margin-bottom: 1.25rem; }
  .hero-photo { order: 0; }
}
.hero .eyebrow { color: var(--chrome); font-weight: 600; margin: 0 0 0.5rem; }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero .lede { color: var(--chrome); font-size: 1.15rem; max-width: 34rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1.25rem; }
.hero-trust { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; color: var(--chrome); font-size: 0.95rem; }
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; margin: 0; }
.hero-trust svg { width: 18px; height: 18px; color: var(--red); flex: none; }
.hero-photo { position: relative; }
.hero-photo img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hero-photo::after { content: ""; display: block; height: 11px; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); margin-top: 0.5rem; }
/* Phone order: photo, then the claim, then the two actions, then the detail.
   The buttons sit directly under the headline so the fold ends on an action
   rather than mid-paragraph. DOM order is unchanged for screen readers. */
@media (max-width: 899px) {
  .hero-grid > div:not(.hero-photo) { display: flex; flex-direction: column; }
  .hero .eyebrow { order: 1; }
  .hero h1 { order: 2; }
  .hero-ctas { order: 3; margin: 1rem 0 1.25rem; }
  .hero .lede { order: 4; }
  .hero-trust { order: 5; }
}
@media (max-width: 559px) {
  /* Full-bleed buttons on a phone only; at 768 a 700px wide button is absurd. */
  .hero-ctas .btn { width: 100%; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
  .hero-logo { width: min(100%, 320px); }
  .hero-photo img { aspect-ratio: 3 / 2; }
}

/* Page hero for inner pages: black band, short. */
.page-hero { background: var(--black); color: var(--white); padding: clamp(1.75rem, 4vw, 3rem) 0; }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero .lede { color: var(--chrome); font-size: 1.1rem; max-width: 42rem; margin-bottom: 0; }
.page-hero .rule { margin-bottom: 1rem; }
.page-hero-grid { display: grid; gap: 1.5rem; align-items: end; }
.page-hero-grid img { width: 100%; max-height: 320px; object-fit: cover; }
@media (min-width: 900px) {
  .page-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
  /* Masthead: title left, standfirst right, baselines aligned. Without this the
     right half of the black band is dead space on every inner page. */
  .page-hero > .wrap:not(.page-hero-grid) { display: grid; grid-template-columns: 1.15fr 1fr; column-gap: 3rem; align-items: end; }
  .page-hero > .wrap:not(.page-hero-grid) > .rule { grid-column: 1 / -1; }
  .page-hero > .wrap:not(.page-hero-grid) > h1 { grid-column: 1; margin-bottom: 0; }
  .page-hero > .wrap:not(.page-hero-grid) > .lede { grid-column: 2; padding-bottom: 0.35rem; }
}

/* ---- sections ------------------------------------------------------------ */
.sec { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.sec-steam { background: var(--steam); }
.sec-dark, .dark { background: var(--coal); color: var(--white); }
.sec-dark h2, .sec-dark h3 { color: var(--white); }
.sec-dark p { color: var(--chrome); }
.sec-h { margin-bottom: 1.5rem; }
.sec-h h2 { margin-bottom: 0.5rem; }
.sec-h p { color: var(--ink-2); max-width: 44rem; margin-bottom: 0; }
.sec-dark .sec-h p { color: var(--chrome); }
.two { display: grid; gap: 2rem; align-items: start; }
@media (max-width: 859px) { .two > div { max-width: 42rem; } }
@media (min-width: 860px) { .two { grid-template-columns: 1fr 1fr; gap: 3rem; } .two-wide { grid-template-columns: 1.4fr 1fr; } .two > div { max-width: none; } }
.prose { max-width: 42rem; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.25rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul li, .prose ol li { margin-bottom: 0.5rem; }

/* Answer-first block: the sentence an assistant lifts. */
.answer { border-left: 4px solid var(--red); padding: 0.25rem 0 0.25rem 1rem; margin: 0 0 1.5rem; font-size: 1.1rem; }
.answer p { margin: 0; }

/* Fact strip: four facts under the hero. */
.facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 1px; background: var(--line); }
.facts li { background: var(--steam); padding: 1.1rem 1rem; margin: 0; }
.facts b { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 800; line-height: 1.1; }
.facts span { color: var(--ink-2); font-size: 0.95rem; }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .facts { grid-template-columns: repeat(4, 1fr); } }

/* Service ledger: rows, not a card kit. Phone: name left, link right, description
   under both. Desktop: name | description | link. Every cell is placed
   explicitly, because an auto-placed cell next to an explicitly-rowed one gets
   pushed to the wrong column (it did, on the first build). */
.ledger { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.ledger li { margin: 0; border-bottom: 1px solid var(--line); }
.ledger a { display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1rem; align-items: baseline; padding: 1.1rem 0; text-decoration: none; }
.ledger a:hover .ledger-name { text-decoration: underline; }
.ledger-name { grid-column: 1; grid-row: 1; font-family: var(--display); font-size: 1.4rem; font-weight: 800; line-height: 1.1; }
.ledger-go { grid-column: 2; grid-row: 1; color: var(--red); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.ledger-desc { grid-column: 1 / span 2; grid-row: 2; color: var(--ink-2); }
@media (min-width: 760px) {
  .ledger a { grid-template-columns: minmax(220px, 0.5fr) 1fr auto; align-items: center; }
  .ledger-desc { grid-column: 2; grid-row: 1; }
  .ledger-go { grid-column: 3; }
}

/* Comparison tables: real tables that stack into labelled cards on a phone. */
.cmp { margin: 1rem 0 1.5rem; font-size: 0.98rem; }
.cmp caption { text-align: left; font-weight: 700; padding: 0 0 0.6rem; color: var(--ink-2); }
.cmp th, .cmp td { text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp tbody th a { display: inline-block; padding: 0.3rem 0; }
.cmp thead th { background: var(--black); color: var(--white); font-weight: 700; }
.cmp tbody th { font-weight: 700; width: 28%; }
@media (max-width: 680px) {
  .cmp thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .cmp caption { display: block; }
  .cmp tr { display: block; border: 1px solid var(--line); margin-bottom: 0.75rem; }
  .cmp tbody th { display: block; width: auto; background: var(--steam); border-bottom: 0; }
  .cmp td { display: block; border-bottom: 1px solid var(--line); }
  .cmp td:last-child { border-bottom: 0; }
  .cmp td::before { content: attr(data-label); display: block; font-size: 0.8rem; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 0.2rem; }
}

/* Work grid: the half-cleaned photos. */
.work { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); list-style: none; margin: 0; padding: 0; }
.work li { margin: 0; }
.work figure { margin: 0; }
.work img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: var(--steam); }
.work figcaption { padding: 0.6rem 0 0; font-size: 0.95rem; color: var(--ink-2); }
.work figcaption b { color: var(--ink); }
@media (min-width: 700px) { .work img { aspect-ratio: 3 / 4; } }
@media (min-width: 1000px) { .work { grid-template-columns: repeat(4, 1fr); } .work-3 { grid-template-columns: repeat(3, 1fr); } }

/* Quotes: real Google reviews, quoted with attribution, no review schema. */
.quotes { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.quotes li { margin: 0; background: var(--steam); padding: 1.25rem 1.25rem 1.4rem; }
.quotes blockquote { margin: 0 0 0.75rem; font-size: 1.02rem; }
.quotes cite { font-style: normal; color: var(--ink-2); font-size: 0.92rem; }
@media (min-width: 800px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.disclose { color: var(--ink-2); font-size: 0.92rem; max-width: 52rem; }

/* City list. */
.cities { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem 1.5rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.cities li { margin: 0; }
.cities a { display: block; padding: 0.7rem 0; border-bottom: 1px solid var(--line); text-decoration: none; font-weight: 600; }
.cities a:hover { color: var(--red); }

/* Booking panel and form. */
.book-panel { background: var(--black); color: var(--white); }
.book-panel h2, .book-panel h3 { color: var(--white); }
.book-panel p { color: var(--chrome); }
.form { display: grid; gap: 0.9rem; }
.form label { display: grid; gap: 0.3rem; font-weight: 600; font-size: 0.95rem; }
.form input, .form select, .form textarea {
  font: inherit; color: var(--ink); background: var(--white);
  border: 2px solid var(--line); border-radius: 2px; padding: 0.7rem 0.8rem; min-height: 48px; width: 100%;
}
.form textarea { min-height: 110px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--red); outline: none; }
.form .row { display: grid; gap: 0.9rem; }
@media (min-width: 640px) { .form .row { grid-template-columns: 1fr 1fr; } }
.form .fine { font-size: 0.9rem; color: var(--chrome); margin: 0; }
.form-note { border: 2px solid var(--red); padding: 0.9rem 1rem; margin-top: 1rem; }
.form-note[hidden] { display: none; }
.book-panel .form label { color: var(--white); }
.book-side h3 { margin-top: 1.5rem; }
/* The big phone number, wherever it appears. Was three inline styles. */
.big, .phone-big { display: inline-block; font-family: var(--display); font-size: clamp(1.6rem, 4.5vw, 2rem); font-weight: 800; line-height: 1.1; text-decoration: none; padding: 0.35rem 0; margin: 0.25rem 0 0.75rem; }
/* Honeypot. Clipped rather than pushed to -9999px, which showed up as a
   left-overflowing element in every layout audit. */
.hp { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.contact-lines a { display: inline-block; padding: 0.35rem 0; }

/* Steps. */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: step; }
.steps li { margin: 0; padding-left: 3.2rem; position: relative; counter-increment: step; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; background: var(--black); color: var(--white); font: 800 1.2rem var(--display); }
.steps b { display: block; font-size: 1.1rem; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }

/* Videos: click-to-load. */
.videos { display: grid; gap: 1rem; list-style: none; margin: 0; padding: 0; }
.videos li { margin: 0; }
.yt { position: relative; aspect-ratio: 16 / 9; background: var(--black); display: block; overflow: hidden; }
.yt img { width: 100%; height: 100%; object-fit: cover; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-play { position: absolute; inset: 0; display: grid; place-items: center; background: transparent; border: 0; cursor: pointer; padding: 0; }
.yt-play span { display: inline-grid; place-items: center; width: 64px; height: 64px; background: var(--red); color: var(--white); border-radius: 2px; }
.yt-play svg { width: 28px; height: 28px; }
.yt-cap { font-size: 0.92rem; color: var(--ink-2); padding-top: 0.5rem; }
@media (min-width: 720px) { .videos { grid-template-columns: repeat(2, 1fr); } }

/* Crumbs, meta, footer. */
.crumbs { font-size: 0.9rem; padding: 0.35rem 0; background: var(--coal); color: var(--chrome); }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem 0.5rem; width: min(var(--wrap), calc(100% - 2 * var(--gutter))); margin-inline: auto; }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--steel); }
.crumbs a, .crumbs [aria-current] { color: var(--chrome); display: inline-block; padding: 0.4rem 0; }
.crumbs [aria-current] { color: var(--white); }
.byline { color: var(--ink-2); font-size: 0.92rem; margin: 0 0 1.5rem; }
.site-footer { background: var(--black); color: var(--chrome); padding: 2.5rem 0 1.5rem; font-size: 0.95rem; border-top: 1px solid var(--steel); }
.site-footer a { color: var(--white); }
.site-footer p a, .site-footer address a { display: inline-block; padding: 0.4rem 0; }
.site-footer a[href^="tel:"], .site-footer a[href^="mailto:"] { font-weight: 700; padding: 0.5rem 0; }
.footer-grid { display: grid; gap: 2rem; }
.footer-h { color: var(--white); font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin: 0; }
.footer-links a { text-decoration: none; display: inline-block; padding: 0.42rem 0; }
.footer-links a:hover { text-decoration: underline; }
.footer-logo { width: 220px; margin-bottom: 0.75rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; border-bottom: 1px solid var(--steel); }
.foot-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--steel); display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; justify-content: space-between; font-size: 0.88rem; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

/* Sticky action bar on phones. The two things a phone visitor does. */
/* minmax(0,1fr): with a plain 1fr the two labels set a min-content floor that
   made this bar 334px wide inside a 320px viewport and scrolled the page. */
.actbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--steel); border-top: 1px solid var(--steel); }
.actbar a { display: flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 56px; padding: 0 0.4rem; font-weight: 700; font-size: 0.98rem; text-decoration: none; }
.actbar .a-call { background: var(--black); color: var(--white); }
.actbar .a-book { background: var(--red); color: var(--white); }
.actbar svg { width: 20px; height: 20px; }
body.has-actbar { padding-bottom: 57px; }
@media (min-width: 1120px) { .actbar { display: none; } body.has-actbar { padding-bottom: 0; } }

/* Utilities. */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.muted { color: var(--ink-2); }
.frame img { width: 100%; }
.frame::after { content: ""; display: block; height: 11px; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); margin-top: 0.75rem; }
.inline-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.badges { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center; margin: 1rem 0; }
.badges img { height: 56px; width: auto; }
.badges p { margin: 0; font-size: 0.92rem; color: var(--ink-2); }
