/* ==========================================================================
   No Poop Stains — design system
   Bold, modern commercial-service marketing site. Coral + deep navy brand,
   Poppins across weights 400–900. Visual language inspired by spinbox.co:
   dark navy hero sections, oversized display type, chunky rounded-rect CTAs,
   scrolling ticker bars, arrow-linked service cards.
   ========================================================================== */

/* ---- Fonts (self-hosted Poppins) ---- */
@font-face { font-family: 'Poppins'; font-weight: 400; font-display: swap; src: url('/assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-display: swap; src: url('/assets/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-display: swap; src: url('/assets/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-display: swap; src: url('/assets/fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 800; font-display: swap; src: url('/assets/fonts/poppins-800.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-weight: 900; font-display: swap; src: url('/assets/fonts/poppins-900.woff2') format('woff2'); }

/* ---- Tokens ---- */
:root {
  --coral: #f0523d;
  --coral-deep: #d43a26;
  --coral-soft: #fdeeec;
  --navy: #1c3660;
  --navy-mid: #2c4a78;
  --navy-deep: #11213c;
  --navy-line: rgba(255, 255, 255, 0.12);
  --ink: #1b1f24;
  --ink-soft: #5b6472;
  --on-navy: rgba(255, 255, 255, 0.92);
  --on-navy-soft: rgba(255, 255, 255, 0.72);
  --surface: #ffffff;
  --surface-alt: #f7f6f3;
  --border: #e8e6e1;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-btn: 12px;
  --shadow-sm: 0 1px 3px rgba(17, 33, 60, 0.08);
  --shadow-md: 0 10px 28px rgba(17, 33, 60, 0.12);
  --shadow-lg: 0 20px 52px rgba(17, 33, 60, 0.18);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1180px;
  --header-h: 76px;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral); }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; margin: 0 0 0.5em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
p { margin: 0 0 1.1em; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  padding: 0.9em 1.8em;
  border-radius: var(--radius-btn);
  font-weight: 700; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--coral); color: var(--coral-deep); }
.btn-invert { background: #fff; color: var(--navy); }
.btn-invert:hover { background: var(--coral-soft); color: var(--navy); transform: translateY(-2px); }
.btn-outline-invert { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); text-transform: none; letter-spacing: 0; font-weight: 600; }
.btn-outline-invert:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }

/* ---- Announcement bar ---- */
.announce {
  background: var(--navy-deep); color: #fff;
  font-size: 0.85rem; text-align: center;
  padding: 9px 16px;
}
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}
/* blur lives on a pseudo-element: backdrop-filter on the header itself would
   create a containing block that traps the fixed-position mobile nav overlay */
.site-header::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
  /* Full-bleed instead of centered at --container (1180px) so the logo's
     left edge lines up with the H1 in a split hero, which is also just
     padding-inline: 24px from the viewport edge (no max-width). */
  max-width: none; margin-inline: 0;
}
.site-logo img { width: auto; max-height: 46px; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav > .nav-item { position: relative; }
.site-nav a.nav-link, .site-nav button.nav-link {
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
  font: inherit; font-size: 0.95rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  padding: 10px 14px; border: 0; background: none; border-radius: 10px;
  cursor: pointer;
}
.site-nav a.nav-link:hover, .site-nav button.nav-link:hover { background: var(--coral-soft); color: var(--coral-deep); }
.nav-caret { font-size: 0.6em; transition: transform 0.2s ease; }
.nav-item.open .nav-caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 250px; max-height: 70vh; overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
}
/* Set by nav.js when left-aligning would push the dropdown past the right
   edge of the viewport (e.g. Commercial Laundry / Medical Laundry on
   moderate desktop widths) — grow leftward from the nav-item instead. */
.dropdown.dropdown--right { left: auto; right: 0; }
.nav-item.open .dropdown { display: block; }
.dropdown a {
  display: block; padding: 9px 14px; border-radius: 10px;
  color: var(--ink); text-decoration: none; font-size: 0.92rem; font-weight: 500;
}
.dropdown a:hover { background: var(--coral-soft); color: var(--coral-deep); }
.dropdown .dropdown-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--coral); color: #fff; font-weight: 700; text-align: center;
  padding: 11px 14px; margin: 4px 2px 10px; border-radius: 10px;
  box-shadow: 0 2px 8px rgba(240, 82, 61, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}
.dropdown .dropdown-cta:hover { background: var(--coral-deep); color: #fff; transform: translateY(-1px); }
.dropdown .dropdown-heading {
  padding: 10px 14px 4px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft);
}

.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: fixed; inset: 0;
    padding-top: calc(var(--header-h) + 16px);
    background: var(--surface); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0;
    padding-inline: 20px; padding-bottom: 40px;
    z-index: 90;
  }
  .site-nav.open { display: flex; }
  /* keep logo + close button clickable above the overlay */
  .site-logo, .nav-toggle { position: relative; z-index: 95; }
  .site-header { background: var(--surface); }
  .site-nav a.nav-link, .site-nav button.nav-link { width: 100%; justify-content: space-between; font-size: 1.05rem; padding: 14px 12px; }
  .dropdown { position: static; box-shadow: none; border: 0; border-left: 2px solid var(--coral-soft); border-radius: 0; margin-left: 12px; max-height: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .nav-toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---- Ticker bars (services + client-wins marquees) ---- */
.ticker {
  background: var(--navy-deep); color: var(--on-navy-soft);
  overflow: hidden; white-space: nowrap;
  padding: 11px 0; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  border-bottom: 1px solid var(--navy-line);
}
.ticker-track { display: inline-flex; gap: 0; animation: marquee 55s linear infinite; }
.ticker-item { flex-shrink: 0; padding: 0 22px; position: relative; }
.ticker-item::after {
  content: '✦'; position: absolute; right: -4px; top: 0;
  color: var(--coral); font-size: 0.7em;
}
.marquee {
  background: var(--navy); color: var(--on-navy);
  overflow: hidden; white-space: nowrap;
  padding: 10px 0; font-size: 0.86rem; font-weight: 500;
  text-transform: none; letter-spacing: normal;
  border-bottom: 1px solid var(--navy-line);
}
.marquee-track { display: inline-flex; gap: 48px; padding-right: 48px; animation: marquee 80s linear infinite; }
.marquee-item { flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker, .marquee { overflow-x: auto; }
  .ticker-track, .marquee-track { animation: none; }
}

/* ---- Sections ---- */
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-alt { background: var(--surface-alt); }
.section-narrow { max-width: 800px; margin-inline: auto; }
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--coral-deep); margin-bottom: 12px;
}

/* ---- Cards (blog index) ---- */
.card-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--coral); }
.card .card-emoji { font-size: 2rem; display: inline-block; margin-bottom: 12px; }

/* ---- Service cards (grouped image+heading+copy+link runs) ---- */
.service-card-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin: 32px 0; }
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--coral); }
.service-card .service-card-image { margin: 0 0 18px; }
.service-card .service-card-image img { max-height: 160px; width: auto; border-radius: var(--radius); }
.service-card h2, .service-card h3 { margin-bottom: 10px; font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 700; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; flex: 1; margin-bottom: 0; }
.service-card-link {
  margin-top: 18px; font-weight: 700; font-size: 0.9rem;
  color: var(--coral-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.service-card-link:hover { color: var(--coral); gap: 10px; }

/* ---- Hero ---- */
.hero-dark {
  position: relative; overflow: hidden;
  padding: clamp(60px, 9vw, 128px) 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0) 0 0 / 26px 26px,
    linear-gradient(155deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--on-navy);
}
.hero-dark h1, .hero-dark h2, .hero-dark h3 { color: #fff; }
.hero-dark p, .hero-dark li { color: var(--on-navy-soft); }
.hero-dark strong { color: #fff; }
.hero-dark h4, .hero-dark h5, .hero-dark h6 {
  color: var(--coral); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 0.9rem; font-weight: 700; margin-bottom: 14px;
}
.hero-dark .hero-inner { max-width: 780px; position: relative; z-index: 1; }
.hero-dark .hero-inner--split {
  max-width: none; display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 5vw, 64px); align-items: center;
}
.hero-inner--split .hero-text { max-width: 640px; }
.hero-inner--split .hero-image { margin: 0; }
.hero-inner--split .hero-image img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.hero-inner--split .hero-image video {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) {
  .hero-dark .hero-inner--split { grid-template-columns: 1fr; }
  .hero-inner--split .hero-image { order: -1; max-width: 420px; margin-inline: auto; }
}
.hero-dark .lede { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--on-navy-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; align-items: center; }
.hero-actions .phone-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy); font-weight: 700;
  padding: 0.9em 1.6em; border-radius: var(--radius-btn);
  text-decoration: none; box-shadow: var(--shadow-md);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-actions .phone-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--navy); }

/* Decorative glass bubbles — plain CSS circles, no emoji */
.hero-bubble {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 32% 28%, rgba(255,255,255,0.35), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.18);
  animation: floaty 8s ease-in-out infinite;
}
.hero-bubble.b1 { width: 90px; height: 90px; top: 14%; right: 9%; }
.hero-bubble.b2 { width: 46px; height: 46px; top: 52%; right: 18%; animation-delay: -3s; animation-duration: 10s; }
.hero-bubble.b3 { width: 26px; height: 26px; top: 30%; right: 24%; animation-delay: -5.5s; animation-duration: 7s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- Prose (article/legal content) ---- */
.prose { max-width: 760px; margin-inline: auto; }
.prose img { border-radius: var(--radius); margin: 28px auto; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose blockquote {
  margin: 1.5em 0; padding: 4px 24px;
  border-left: 4px solid var(--coral); background: var(--coral-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Checklist styling for genuine content bullet lists inside <main> */
main ul { list-style: none; margin: 0 0 1.2em; padding: 0; }
main ul li {
  position: relative; padding-left: 1.7em; margin-bottom: 10px;
}
main ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--coral); font-weight: 800;
}
main ol { padding-left: 1.3em; }
main li { margin-bottom: 0.4em; }

/* ---- FAQ accordion ---- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 12px; background: var(--surface);
  overflow: hidden; transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--coral); }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4em; font-weight: 400; color: var(--coral); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--ink-soft); }
.faq-item .faq-body ul { margin-bottom: 0; }

/* ---- Pricing blocks ---- */
.price-cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.price-card {
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 30px; text-align: center;
}
.price-card.featured { border-color: var(--coral); box-shadow: var(--shadow-md); }
.price-card .price {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 900; color: var(--coral-deep);
  line-height: 1;
}
.price-card .price .per { font-size: 0.4em; font-weight: 600; color: var(--ink-soft); }
.price-card .price-note { font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; }
table.styled { border-collapse: collapse; width: 100%; font-size: 0.95rem; }
table.styled th, table.styled td { padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left; }
table.styled th { background: var(--surface-alt); font-weight: 700; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-top: 0; }
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--coral); }
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding: 56px 0 32px;
}
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; font-weight: 700; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid ul li::before { content: none; }
.footer-grid li { margin-bottom: 8px; padding-left: 0; }
.footer-legal {
  border-top: 1px solid var(--navy-line);
  padding: 22px 0 30px; font-size: 0.8rem; color: rgba(255,255,255,0.55);
}
.footer-legal a { text-decoration: underline; }

/* ---- Floating mobile CTA bar (Request Quote / Call Us) ---- */
.mobile-cta-bar { display: none; }
@media (max-width: 980px) {
  .mobile-cta-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 85;
    background: var(--surface); border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .mobile-cta-btn {
    flex: 1; text-align: center; text-decoration: none;
    font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em;
    padding: 13px 10px; border-radius: var(--radius);
  }
  .mobile-cta-btn--quote { background: var(--coral); color: #fff; }
  .mobile-cta-btn--quote:hover, .mobile-cta-btn--quote:active { background: var(--coral-deep); color: #fff; }
  .mobile-cta-btn--call { background: var(--navy); color: #fff; }
  .mobile-cta-btn--call:hover, .mobile-cta-btn--call:active { background: var(--navy-mid); color: #fff; }
  /* Keep the fixed bar from covering the last bit of page content. */
  body.has-mobile-cta { padding-bottom: 70px; }
}

/* ---- Content images & galleries ---- */
.content-image { margin: 28px 0; }
.content-image img { margin-inline: auto; max-height: 480px; width: auto; object-fit: contain; }

/* Step rows: consecutive figure+heading pairs collapse into responsive cards */
.step-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 36px 0; text-align: center;
}
.step-grid figure { margin: 0 0 14px; }
.step-grid img { max-height: 260px; width: auto; margin-inline: auto; border-radius: var(--radius); }
.step-grid h3 { font-size: 1.05rem; font-weight: 700; }

/* White line-art assets (drawn white-on-transparent for the old dark theme):
   give them a navy backdrop so they're visible on light sections. */
img[src*="d1fcc9-"], img[src*="55ee6b-"], img[src*="f621cf-"],
img[src*="1b75e3-"], img[src*="661f6c-"], img[src*="847ff6-"],
img[src*="c410af-"], img[src*="e148ee-"] {
  background: var(--navy);
  padding: 26px;
  border-radius: var(--radius-lg);
}

.gallery-grid { columns: 3 280px; column-gap: 18px; }
.gallery-grid img {
  width: 100%; margin-bottom: 18px;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  break-inside: avoid;
}
.cta-row { margin: 26px 0; }
.hero-dark .cta-row { display: inline-flex; margin: 18px 14px 0 0; }
.section-tight { padding: clamp(24px, 4vw, 40px) 0; }
.cta-row-flex { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-row-flex .cta-row { margin: 0; }
hr.soft { border: 0; border-top: 1px solid var(--border); margin: 40px auto; max-width: 200px; }

/* ---- Link grid (browse-by-city style link lists) ---- */
.link-grid {
  display: grid; gap: 6px 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 36px;
}
.link-grid a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink); text-decoration: none; font-size: 0.95rem;
}
.link-grid a:hover { color: var(--coral-deep); }
@media (max-width: 720px) {
  .link-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .link-grid { grid-template-columns: 1fr; }
}

/* Same treatment, but for the original <ul> "browse by city" lists that
   ship straight from the source content (see classifyLinkLists in
   scripts/generate-pages.mjs) rather than a hand-built .link-grid div. */
ul.city-link-list {
  display: grid; gap: 6px 32px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 36px; padding: 0; list-style: none;
}
ul.city-link-list li { margin: 0; }
ul.city-link-list p { margin: 0; }
ul.city-link-list a {
  display: block; padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--ink); text-decoration: none; font-size: 0.95rem;
}
ul.city-link-list a:hover { color: var(--coral-deep); }
@media (max-width: 720px) {
  ul.city-link-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  ul.city-link-list { grid-template-columns: 1fr; }
}

/* ---- Posts ---- */
.post-header { margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.post-date { color: var(--ink-soft); font-size: 0.9rem; }
.post-card { text-decoration: none; color: var(--ink); display: block; }
.post-card:hover { color: var(--ink); }
.post-card-title { font-size: 1.15rem; margin-bottom: 8px; }

/* ---- Utilities ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.grid-2 { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; }
.rounded { border-radius: var(--radius-lg); }
.shadow { box-shadow: var(--shadow-md); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy-deep); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---- Request a Quote page ---- */
.quote-page { background: var(--surface-alt); padding: clamp(40px, 6vw, 72px) 0 96px; }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.quote-sidebar { position: sticky; top: calc(var(--header-h, 76px) + 24px); }
.quote-sidebar .eyebrow { margin-bottom: 14px; }
.quote-sidebar h1 { font-size: clamp(2rem, 3.6vw, 2.75rem); margin-bottom: 0.4em; }
.quote-sidebar .lede { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 28px; }

.quote-checklist { list-style: none; margin: 0 0 32px; padding: 0; display: grid; gap: 14px; }
.quote-checklist li::before { content: none; }
.quote-checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink); }
.quote-checklist .check-icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: var(--coral-soft); color: var(--coral-deep);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 900; margin-top: 1px;
}

.quote-call-card {
  background: var(--navy); color: #fff;
  border-radius: var(--radius-lg); padding: 26px 28px;
  box-shadow: var(--shadow-md);
}
.quote-call-card .call-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--on-navy-soft); margin-bottom: 6px; display: block;
}
.quote-call-card a { color: #fff; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.01em; }
.quote-call-card a:hover { color: var(--coral-soft); }

.quote-form-card {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 48px);
}
.quote-form-card .form-embed-note {
  font-size: 0.8rem; color: var(--ink-soft); margin-top: 18px; text-align: center;
}

@media (max-width: 900px) {
  .quote-grid { grid-template-columns: 1fr; }
  .quote-sidebar { position: static; }
  .quote-sidebar .lede, .quote-checklist { display: none; }
}

/* ---- Native quote form ---- */
.quote-form .form-group { margin-bottom: 26px; }
.quote-form .form-label {
  display: block; font-weight: 700; font-size: 0.95rem;
  color: var(--ink); margin-bottom: 10px;
}
.quote-form .form-label .req { color: var(--coral); margin-left: 2px; }

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea,
.quote-form select {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; background: var(--surface);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.quote-form input:focus, .quote-form textarea:focus, .quote-form select:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px var(--coral-soft);
}
.quote-form textarea { resize: vertical; min-height: 120px; }

.quote-form .form-row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.quote-form .form-row-3 { display: grid; gap: 16px; grid-template-columns: 2fr 1fr 1fr; }
@media (max-width: 560px) {
  .quote-form .form-row, .quote-form .form-row-3 { grid-template-columns: 1fr; }
}

.quote-form .radio-options { display: grid; gap: 10px; }
.quote-form .radio-option {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.quote-form .radio-option:hover { border-color: var(--coral); }
.quote-form .radio-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--coral); flex-shrink: 0; }
.quote-form .radio-option:has(input:checked) { border-color: var(--coral); background: var(--coral-soft); }

.quote-form .form-submit { margin-top: 8px; width: 100%; justify-content: center; font-size: 1rem; }
.quote-form .form-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; margin: 16px 0 0; }
.quote-form .form-error {
  background: var(--coral-soft); color: var(--coral-deep); border: 1px solid var(--coral);
  border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.9rem; font-weight: 600;
  margin-bottom: 20px;
}
