/* Minneapolis Janitorial — "Mill City" theme */

:root {
  --ink:        #0F2942;
  --ink-soft:   #1B3A5C;
  --lake:       #1B6CA8;
  --lake-light: #E8F0F7;
  --brass:      #C8922A;
  --brass-soft: #F3E4C4;
  --paper:      #F9F7F3;
  --white:      #FFFFFF;
  --body:       #2C3742;
  --muted:      #5B6B7B;

  --shell: 1200px;
  --pad: 24px;
  --nav-h: 64px;
  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(15, 41, 66, .08), 0 2px 8px rgba(15, 41, 66, .06);
  --shadow-md: 0 6px 24px rgba(15, 41, 66, .10);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: "Public Sans", "Segoe UI", Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: var(--lake); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }

:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 .6em;
  font-variation-settings: "opsz" 36, "SOFT" 0, "WONK" 0;
}

p { margin: 0 0 1.1em; max-width: 68ch; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brass); color: var(--ink);
  padding: 12px 18px; z-index: 200; font-weight: 600;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.nav-bar {
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
  justify-content: space-between;
}

.brand {
  display: inline-flex; align-items: baseline; gap: 8px;
  color: var(--white); font-family: "Fraunces", Georgia, serif;
  font-size: 20px; font-weight: 700; letter-spacing: .01em;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; color: var(--white); }
.brand .brand-mark { color: var(--brass); font-size: 22px; line-height: 1; }
.brand .brand-sub { font-family: "Public Sans", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--brass-soft); }

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid rgba(255,255,255,.28);
  color: var(--white); border-radius: var(--radius);
  padding: 8px 10px; cursor: pointer; line-height: 0;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--white); margin: 4px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }

.nav-link {
  display: inline-block; color: rgba(255,255,255,.9);
  font-size: 15px; font-weight: 500; padding: 10px 12px; border-radius: var(--radius);
  background: transparent; border: 0; cursor: pointer;
  font-family: inherit;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); background: var(--ink-soft); text-decoration: none; }
.nav-link[aria-current="page"] { color: var(--white); box-shadow: inset 0 -2px 0 var(--brass); }

.has-drop { position: relative; }
.drop-toggle::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.drop-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 300px;
  background: var(--white); border: 1px solid #DCE4EC; border-top: 3px solid var(--brass);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  list-style: none; margin: 0; padding: 8px; display: none; z-index: 120;
}
.drop-panel a {
  display: block; padding: 9px 12px; font-size: 14.5px; color: var(--ink);
  border-radius: 3px; line-height: 1.45;
}
.drop-panel a:hover, .drop-panel a:focus-visible { background: var(--lake-light); color: var(--ink); text-decoration: none; }
.has-drop.open > .drop-panel { display: block; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brass); color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 10px 16px; border-radius: var(--radius); white-space: nowrap;
}
.nav-phone:hover { background: #B7811F; color: var(--ink); text-decoration: none; }

/* ---------- Sections ---------- */

.band { padding: 76px 0; }
.band--paper { background: var(--paper); }
.band--white { background: var(--white); }
.band--lake  { background: var(--lake-light); }
.band--ink   { background: var(--ink); color: rgba(255,255,255,.86); }
.band--ink h2, .band--ink h3 { color: var(--white); }

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 12px;
}
.eyebrow--center { text-align: center; }

.section-head { max-width: 820px; margin: 0 auto 48px; }
.section-head h2 {
  text-align: center; font-size: 36px; margin-bottom: 18px;
}
.section-head h2::after {
  content: ""; display: block; width: 48px; height: 3px;
  background: var(--brass); margin: 18px auto 0;
}
.section-head p { margin-inline: auto; text-align: left; }
.band--ink .section-head p { color: rgba(255,255,255,.82); }

/* ---------- Homepage hero: asymmetric split ---------- */

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--ink);
  position: relative;
  align-items: stretch;
}
.hero-copy {
  padding: 84px clamp(24px, 4vw, 64px) 84px max(24px, calc((100vw - var(--shell)) / 2 + 24px));
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink);
  border-right: 4px solid var(--brass);
}
.hero-copy h1 {
  color: var(--white); font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 22px; font-variation-settings: "opsz" 60;
}
.hero-copy p { color: rgba(255,255,255,.85); font-size: 17px; max-width: 56ch; }
.hero-photo { position: relative; min-height: 520px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* Hero slideshow. Slides enter from the right and leave to the left every 3s.
   No overlay, by request: the photos carry the panel on their own. */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .9s cubic-bezier(.4, 0, .2, 1), opacity .9s ease;
  will-change: transform;
}
.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}
.hero-slide.is-leaving {
  opacity: 1;
  transform: translateX(-100%);
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity .4s ease; transform: none; }
  .hero-slide.is-active { transform: none; }
  .hero-slide.is-leaving { opacity: 0; transform: none; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }

/* ---------- Subpage hero band ---------- */

.hero-band {
  /* Height and padding intentionally match the homepage hero (.hero-photo
     min-height + .hero-copy vertical padding) so every page opens the same. */
  position: relative; min-height: 520px;
  display: grid; place-items: center; text-align: center;
  background: var(--ink);
  overflow: hidden;
}
/* Direct child only: a slideshow hero's .hero-slide images are positioned by
   the .hero-slide rules instead, and this must not override their transforms. */
.hero-band > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
/* Slideshow inside a hero band sits under the band's 30% overlay. */
.hero-band .hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-band::after { z-index: 1; }
.hero-band .hero-band-inner { z-index: 2; }
.hero-band::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.30);
}
.hero-band .hero-band-inner { position: relative; z-index: 2; padding: 84px clamp(24px, 4vw, 64px); max-width: 900px; }
/* 16:9 hero for industry and service-area pages. The supplied photos are
   2752x1536 (~16:9), so this shows them essentially uncropped. aspect-ratio
   replaces the fixed height; min-height keeps the copy readable on narrow
   screens where 16:9 alone would be too short. */
.hero-band--ratio {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
@media (max-width: 900px) {
  .hero-band--ratio { aspect-ratio: auto; min-height: 340px; }
}

.hero-band h1 { color: var(--white); font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 14px; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-band p { color: rgba(255,255,255,.92); margin: 0 auto; max-width: 62ch; text-align: center; }
.hero-band .eyebrow { color: var(--brass-soft); }

.crumbs { font-size: 13.5px; color: var(--muted); padding: 16px 0 0; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--lake); }
.crumbs span[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease;
  text-align: center;
}
.btn:hover { text-decoration: none; }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: #B7811F; color: var(--ink); }
.btn--lake { background: var(--lake); color: var(--white); }
.btn--lake:hover { background: #155A8C; color: var(--white); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: var(--white); background: transparent; }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass-soft); }
.btn--outline { border-color: var(--lake); color: var(--lake); background: transparent; }
.btn--outline:hover { background: var(--lake); color: var(--white); }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: 14.5px; color: var(--lake);
}
.textlink::after { content: "\2192"; transition: transform .18s ease; }
.textlink:hover::after { transform: translateX(4px); }

/* ---------- Card grids ---------- */

.grid { display: grid; gap: 28px; }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  background: var(--white); border: 1px solid #E2E8EF; border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-photo { height: 300px; overflow: hidden; background: var(--lake-light); }
.card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: 21px; margin-bottom: 12px; }
.card-body p { font-size: 15.5px; color: var(--body); margin-bottom: 18px; }
.card-body .textlink { margin-top: auto; }

/* Plain (photo-free) cards */
.tile {
  background: var(--white); border: 1px solid #E2E8EF; border-left: 3px solid var(--brass);
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm);
}
.tile h3 { font-size: 19px; margin-bottom: 10px; }
.tile p { font-size: 15.5px; margin-bottom: 0; }

.band--ink .tile { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); border-left-color: var(--brass); }
.band--ink .tile p { color: rgba(255,255,255,.82); }

/* ---------- Process sequence ---------- */

.process { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 22px; }
.process::before {
  content: ""; position: absolute; top: 27px; left: 10%; right: 10%;
  height: 2px; background: var(--brass); opacity: .55;
}
.process-step { position: relative; text-align: center; }
.process-glyph {
  width: 54px; height: 54px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--brass);
  display: grid; place-items: center; position: relative; z-index: 2;
  color: var(--lake);
}
.band--ink .process-glyph { background: var(--ink); }
.process-glyph svg { width: 24px; height: 24px; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 15px; margin: 0 auto; text-align: left; max-width: 34ch; }
.band--ink .process-step p { color: rgba(255,255,255,.82); }

/* ---------- Task list (two columns) ---------- */

.tasklist {
  columns: 2; column-gap: 44px; list-style: none; margin: 0; padding: 0;
}
.tasklist li {
  break-inside: avoid; position: relative; padding: 0 0 12px 26px;
  font-size: 15.5px; line-height: 1.6;
}
.tasklist li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border: 2px solid var(--brass); border-top: 0; border-left: 0;
  transform: rotate(45deg);
}

/* ---------- Coverage card ---------- */

.coverage {
  background: var(--white); border: 1px solid #E2E8EF; border-top: 4px solid var(--brass);
  border-radius: var(--radius); padding: 44px clamp(24px, 4vw, 52px);
  box-shadow: var(--shadow-sm);
}
.coverage-head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.coverage-head h2 { margin-bottom: 16px; }
.coverage-head p { text-align: left; margin-inline: auto; }
.coverage-foot { text-align: center; margin-top: 34px; }

/* ---------- Benefits ---------- */

.benefits { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 26px; }
.benefit { border-top: 2px solid var(--brass-soft); padding-top: 20px; }
.benefit h3 { font-size: 18px; margin-bottom: 8px; }
.benefit p { font-size: 15.5px; margin-bottom: 0; }

/* ---------- Local / prose blocks ---------- */

.prose-narrow { max-width: 760px; margin-inline: auto; }
.prose-narrow p { margin-inline: auto; }
/* Overview heading: centered with the standard brass rule, body copy stays
   left-aligned. Matches .section-head h2 so intro sections read as sections. */
.prose-narrow > .eyebrow { text-align: center; }
.prose-narrow h2 {
  text-align: center;
  font-size: 36px;
  margin: 0 0 18px;
}
.prose-narrow h2::after {
  content: ""; display: block; width: 48px; height: 3px;
  background: var(--brass); margin: 18px auto 26px;
}
@media (max-width: 700px) {
  .prose-narrow h2 { font-size: 28px; }
}

.factbar {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px;
  border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16);
  padding: 28px 0; margin-top: 8px;
}
.factbar div h3 { font-size: 16px; margin-bottom: 6px; color: var(--brass-soft); font-family: "Public Sans", sans-serif; letter-spacing: .04em; text-transform: uppercase; font-size: 12.5px; }
.factbar div p { margin: 0; font-size: 16px; color: var(--white); }

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

.cta-band { background: var(--ink); color: var(--white); padding: 78px 0; text-align: center; }
.cta-band h2 { color: var(--white); font-size: 34px; margin-bottom: 18px; }
.cta-band h2::after { content: ""; display: block; width: 48px; height: 3px; background: var(--brass); margin: 18px auto 0; }
.cta-band p { color: rgba(255,255,255,.84); max-width: 70ch; margin: 0 auto 28px; text-align: left; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-panel { background: var(--white); border: 1px solid #E2E8EF; border-left: 3px solid var(--brass); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); }
.contact-panel h2 { text-align: left; font-size: 26px; }
.contact-panel h2::after { display: none; }
.contact-item { margin-bottom: 24px; }
.contact-item h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: "Public Sans", sans-serif; margin-bottom: 6px; }
.contact-item p, .contact-item address { margin: 0; font-style: normal; font-size: 17px; color: var(--ink); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--body);
  padding: 12px 14px; border: 1px solid #C9D4DE; border-radius: var(--radius);
  background: var(--white); width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 14px; color: var(--muted); margin-top: 18px; }

/* ---------- Footer ---------- */

.site-footer { background: var(--ink); color: rgba(255,255,255,.76); padding: 62px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.site-footer h2, .site-footer h3 { color: var(--white); font-size: 15px; font-family: "Public Sans", sans-serif; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 18px; }
.site-footer p { font-size: 15px; color: rgba(255,255,255,.76); }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: var(--brass-soft); }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 9px; font-size: 14.5px; line-height: 1.5; }
.footer-nap address { font-style: normal; font-size: 15px; line-height: 1.7; }
.footer-phone { display: inline-block; margin-top: 12px; font-size: 19px; font-weight: 600; color: var(--brass-soft); font-family: "Fraunces", Georgia, serif; }
/* Compact footer map: sits under the NAP in the left column, sized to the
   text block already there so it adds height without widening the footer. */
.footer-map {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 2;
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-soft);
}
.footer-map iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) contrast(.9) opacity(.85);
  transition: filter .25s ease;
}
.footer-map:hover iframe { filter: none; }
.footer-maplink {
  display: inline-block;
  margin-top: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brass-soft) !important;
  border-bottom: 1px solid rgba(243,228,196,.4);
  padding-bottom: 1px;
}
@media (max-width: 980px) {
  .footer-map { max-width: 340px; }
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 22px 0 30px; font-size: 13.5px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav-menu { gap: 0; }
  .nav-link { padding: 10px 9px; font-size: 14.5px; }
}

@media (max-width: 980px) {
  .band { padding: 60px 0; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-photo { min-height: 300px; order: -1; }
  .hero-copy { padding: 54px 24px 60px; border-right: 0; border-top: 4px solid var(--brass); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch;
    background: var(--ink); border-top: 1px solid rgba(255,255,255,.12);
    padding: 10px 16px 22px; gap: 2px; display: none;
    max-height: calc(100vh - var(--nav-h)); overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-bar { position: relative; flex-wrap: wrap; }
  .nav-link { width: 100%; text-align: left; }
  .drop-panel { position: static; display: none; box-shadow: none; border: 0; border-left: 2px solid var(--brass); border-radius: 0; background: transparent; min-width: 0; padding: 4px 0 8px 12px; }
  .drop-panel a { color: rgba(255,255,255,.82); }
  .drop-panel a:hover, .drop-panel a:focus-visible { background: var(--ink-soft); color: var(--white); }
  .has-drop.open > .drop-panel { display: block; }
  .nav-phone { width: 100%; margin-top: 10px; }
}

@media (max-width: 760px) {
  .band { padding: 52px 0; }
  .section-head h2, .cta-band h2 { font-size: 28px; }
  .grid--3, .grid--2, .benefits, .form-grid { grid-template-columns: 1fr; }
  .tasklist { columns: 1; }
  .factbar { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-band { min-height: 300px; }
  .hero-band .hero-band-inner { padding: 54px 24px 60px; }
  .coverage { padding: 32px 22px; }
}

@media (max-width: 420px) {
  :root { --pad: 18px; }
  .process { grid-template-columns: 1fr; }
  .card-photo { height: 240px; }
  .brand { font-size: 18px; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .card:hover { transform: none; }
}

/* ---------- Map embed ---------- */
.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 8px 0 0;
  border: 1px solid #dbe5ee;
  border-radius: 4px;
  overflow: hidden;
  background: var(--lake-light);
  box-shadow: 0 10px 30px rgba(15, 41, 66, .07);
}
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-link { text-align: center; margin-top: 18px; }
@media (max-width: 700px) {
  .map-embed { aspect-ratio: 4 / 3; }
}

/* ---------- Legal / policy pages ---------- */
.legal-body h3 {
  font-size: 22px;
  margin: 38px 0 12px;
  text-align: left;
}
.legal-body h3:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; }
.legal-nap {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px solid var(--brass);
  font-size: 16px;
  line-height: 1.8;
}

/* ---------- Service-area city grid ---------- */
.city-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.city-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 18px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid #dbe5ee;
  border-left: 3px solid var(--brass);
  border-radius: 4px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease,
              transform .18s ease, color .18s ease;
}
.city-grid a:hover {
  color: var(--lake);
  border-color: #c3d5e4;
  border-left-color: var(--brass);
  box-shadow: 0 8px 22px rgba(15, 41, 66, .09);
  transform: translateY(-2px);
}
.city-grid a:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 2px;
}
@media (max-width: 1000px) {
  .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .city-grid a { min-height: 68px; font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .city-grid a:hover { transform: none; }
}

/* ---- Sitewide quote band (above the footer) ---- */
/* Two columns on desktop: copy left, form right. The H2 here is deliberately
   left-aligned, overriding the centered global section heading. */
.quote-band {
  background: var(--lake-light);
  border-top: 1px solid #d6e2ec;
  padding: 76px 0 84px;
}
.quote-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote-band__copy { padding-top: 4px; }
.quote-band__copy h2 {
  text-align: left !important;
  font-size: 34px;
  margin: 0 0 20px;
  max-width: 15ch;
}
.quote-band__copy .eyebrow { text-align: left; }
.quote-band__copy p {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 16px;
}
.quote-band__phone { margin-top: 24px; }
.quote-band__phone a {
  font-family: "Fraunces", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--brass);
  padding-bottom: 2px;
  transition: color .18s ease;
}
.quote-band__phone a:hover { color: var(--lake); }
.quote-band__form {
  background: var(--white);
  border: 1px solid #dbe5ee;
  border-radius: 6px;
  padding: 34px 36px;
  box-shadow: 0 10px 30px rgba(15, 41, 66, .07);
}
@media (max-width: 900px) {
  .quote-band__grid { grid-template-columns: 1fr; gap: 34px; }
  .quote-band__copy h2 { max-width: none; }
  .quote-band__copy p { max-width: none; }
}
@media (max-width: 700px) {
  .quote-band { padding: 56px 0 62px; }
  .quote-band__form { padding: 24px 20px; }
  .quote-band__copy h2 { font-size: 28px; }
}

/* ---- RingRobin embedded quote form ---- */
/* The widget injects its own <style> at runtime, after this sheet, so these
   overrides need !important to win. Keep that in mind before "cleaning up". */
.rr-form-embed { width: 100%; }
.rr-form-embed form,
.rr-form-embed [class^="rr-form-"] {
  font-family: "Public Sans", system-ui, sans-serif !important;
  max-width: none !important;
  padding: 0 !important;
}
.rr-form-embed label,
.rr-form-embed .rr-label {
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}
.rr-form-embed input[type="text"],
.rr-form-embed input[type="email"],
.rr-form-embed input[type="tel"],
.rr-form-embed textarea,
.rr-form-embed select {
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: 15.5px !important;
  color: var(--body) !important;
  border: 1px solid #ccd6e0 !important;
  border-radius: 4px !important;
  padding: 11px 13px !important;
  background: var(--white) !important;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.rr-form-embed input:focus,
.rr-form-embed textarea:focus,
.rr-form-embed select:focus {
  outline: none !important;
  border-color: var(--lake) !important;
  box-shadow: 0 0 0 3px rgba(27, 108, 168, .16) !important;
}
.rr-form-embed textarea { min-height: 120px !important; resize: vertical !important; }
.rr-form-embed button,
.rr-form-embed .rr-submit,
.rr-form-embed input[type="submit"] {
  font-family: "Public Sans", system-ui, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: .01em !important;
  background: var(--brass) !important;
  background-image: none !important;
  color: var(--ink) !important;
  border: none !important;
  border-radius: 4px !important;
  padding: 13px 26px !important;
  cursor: pointer !important;
  transition: background .18s ease, transform .18s ease;
}
.rr-form-embed button:hover,
.rr-form-embed .rr-submit:hover,
.rr-form-embed input[type="submit"]:hover {
  background: #b5811f !important;
  transform: translateY(-1px);
}
.rr-form-embed button:focus-visible,
.rr-form-embed .rr-submit:focus-visible,
.rr-form-embed input[type="submit"]:focus-visible {
  outline: 3px solid var(--lake) !important;
  outline-offset: 2px !important;
}
@media (prefers-reduced-motion: reduce) {
  .rr-form-embed button:hover,
  .rr-form-embed .rr-submit:hover,
  .rr-form-embed input[type="submit"]:hover { transform: none; }
}
