@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url('/assets/fonts/archivo-600-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-400-600.woff2') format('woff2');
}

/* ==========================================================================
   Lafayette Window Replacement, design system
   Per build-docs/01-DESIGN-SPEC.md. Light theme locked. One accent.
   ========================================================================== */



/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #17202b;
  --body: #2f3a46;
  --muted: #5b6772;
  --paper: #f5f5f2;
  --white: #ffffff;
  --tint: #e9eef6;
  --line: #e2e4e0;
  --accent: #1f56b5;
  --accent-dark: #17458f;
  --navy: #0e1b2c;
  --navy-text: #e7edf5;
  --navy-muted: #9fb0c3;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 1px 2px rgb(14 27 44 / .06), 0 8px 24px rgb(14 27 44 / .07);
  --shadow-lift: 0 2px 4px rgb(14 27 44 / .05), 0 14px 32px rgb(14 27 44 / .11);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.3, 1.4, .45, 1);

  /* Double-bezel shell (hero media, quote form card): outer tinted tray,
     inner core. Inner radius = outer radius - shell padding, so the curves
     stay concentric. */
  --bezel-bg: rgb(31 86 181 / .07);
  --bezel-line: rgb(31 86 181 / .14);
  --bezel-radius: 18px;
  --bezel-pad: 6px;

  /* z-index scale (locked): header 40, mobile nav 45, sticky bar 50 */
  --z-header: 40;
  --z-mobile-nav: 45;
  --z-sticky-bar: 50;
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
}

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

img { height: auto; }

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

button { background: none; border: 0; cursor: pointer; }

ul,
ol { padding-left: 1.2rem; }

/* Keyboard focus, every interactive element */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.band-navy :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible { outline-color: var(--navy-text); }

::selection {
  background: var(--accent);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3 { font-family: var(--font-display); color: var(--ink); }

h1 {
  font-weight: 800;
  font-size: clamp(2.05rem, 4.5vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -.015em;
  text-wrap: balance;
}

h2 {
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.01em;
  text-wrap: balance;
}

h3 {
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.3;
}

p { max-width: 62ch; }

.lead {
  font-size: 1.2rem;
  line-height: 1.55;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .8rem;
}

a { color: var(--accent); }

.text-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.text-link:hover { color: var(--accent-dark); }

.link-on-navy {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.link-on-navy:hover { color: var(--navy-text); }

.visually-hidden,
.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section { padding-block: clamp(4rem, 8vw, 6.5rem); }

/* Hairline between two same-color (paper) sections so the seam reads as
   composed instead of one long run (legal pages). */
main > .section:not(.bg-white):not(.bg-tint):not(.band-navy):not(.cta-band) + .section:not(.bg-white):not(.bg-tint):not(.band-navy):not(.cta-band) {
  border-top: 1px solid var(--line);
}

/* Breadcrumbs (spoke pages): quiet, small, above the H1. Mirrors each
   page's BreadcrumbList schema. Typographic separator, no icons. */
.breadcrumbs {
  font-size: .85rem;
  margin-bottom: 1.1rem;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.breadcrumbs li { color: var(--muted); }

.breadcrumbs li + li::before {
  content: "/";
  margin-inline: .55rem;
  color: var(--muted);
  opacity: .55;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color .18s var(--ease);
}

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

.breadcrumbs [aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.bg-white { background: var(--white); }
.bg-tint { background: var(--tint); }

.band-navy {
  background-color: var(--navy);
  /* Faint cobalt radial + 1px top highlight: the band reads as material,
     not a flat fill. Tonal shift stays inside the navy/cobalt family. */
  background-image: radial-gradient(110% 130% at 12% 0%, rgb(31 86 181 / .18), transparent 55%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .08);
  color: var(--navy-text);
}

.band-navy h2,
.band-navy h3 { color: var(--white); }

.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.section-head .lead { margin-top: .9rem; }

.center { text-align: center; }
.center p { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  padding: .8rem 1.2rem;
  border-radius: 0 0 10px 0;
  text-decoration: none;
}

.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   5. Buttons (pill, one line always)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.2;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  transition:
    background-color .2s var(--ease),
    color .2s var(--ease),
    transform .3s var(--ease-spring),
    box-shadow .3s var(--ease);
}

.btn:hover { transform: translateY(-1px); }

.btn:active {
  transform: translateY(0) scale(.98);
  transition-duration: .15s, .15s, .15s, .15s;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 1px 2px rgb(14 27 44 / .10), 0 3px 10px rgb(31 86 181 / .20);
}

.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 2px 4px rgb(14 27 44 / .08), 0 10px 24px rgb(31 86 181 / .30);
}

.btn-accent:active { box-shadow: 0 1px 3px rgb(31 86 181 / .22); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}

.btn-outline:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--ink), 0 8px 20px rgb(14 27 44 / .10);
}

.band-navy .btn-outline,
.cta-band .btn-outline {
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--white);
}

.band-navy .btn-outline:hover,
.cta-band .btn-outline:hover {
  background: rgb(255 255 255 / .12);
  box-shadow: inset 0 0 0 1.5px var(--white), 0 10px 24px rgb(0 0 0 / .28);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 2px rgb(14 27 44 / .14), 0 3px 10px rgb(14 27 44 / .16);
}

.btn-navy:hover {
  background: #091321;
  color: var(--white);
  box-shadow: 0 2px 4px rgb(14 27 44 / .10), 0 10px 24px rgb(14 27 44 / .26);
}

.btn-navy:active { box-shadow: 0 1px 3px rgb(14 27 44 / .20); }

.btn-block { width: 100%; }

/* --------------------------------------------------------------------------
   6. Header + nav (sticky, z 40)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: .9rem;
  height: 60px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}

.logo-mark { flex: none; }

.logo-text span { display: block; }

.logo-city {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
  line-height: 1.2;
}

.logo-service {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1.2;
}

.site-nav { display: none; }

.site-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  padding: .35rem 0;
}

.site-nav a:hover { color: var(--accent); }

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.header-call { display: none; }

.header-call-compact {
  margin-left: auto;
  padding: .6rem 1.15rem;
  font-size: .92rem;
}

.nav-toggle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  padding: .55rem .9rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
}

.nav-toggle[aria-expanded="true"] {
  background: var(--tint);
  border-color: var(--accent);
}

/* Mobile nav panel (z 45) */
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: var(--z-mobile-nav);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 32px rgb(14 27 44 / .22);
}

/* Page scrim while the mobile nav is open (JS toggles body.nav-open).
   Sits under the sticky header (z 40), so the header and its panel stay
   bright while the page content dims. Pointer-events off; taps pass through. */
body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgb(14 27 44 / .45);
  pointer-events: none;
}

.mobile-nav nav {
  display: grid;
  padding: .4rem clamp(1rem, 4vw, 2rem) 1.1rem;
  max-width: 1160px;
  margin-inline: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a[aria-current="page"] { color: var(--accent); }

.mobile-nav .mobile-nav-call {
  color: var(--accent);
  border-bottom: 0;
}

/* Small phones: tighten the header row so it never overflows */
@media (max-width: 429.98px) {
  .header-inner { gap: .5rem; }
  .logo { gap: .45rem; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-city { font-size: .64rem; }
  .logo-service { font-size: .9rem; }
  .header-call-compact { padding: .5rem .9rem; font-size: .86rem; }
  .nav-toggle { padding: .45rem .7rem; font-size: .86rem; }
}

/* Header at >=900px: full nav one line, big call pill, no toggle */
@media (min-width: 900px) {
  .header-inner { height: 68px; }
  .site-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: auto;
  }
  .header-call {
    display: inline-flex;
    margin-left: 1.4rem;
    padding: .68rem 1.35rem;
    font-size: .92rem;
  }
  .header-call-compact,
  .nav-toggle,
  .mobile-nav { display: none; }
}

/* --------------------------------------------------------------------------
   7. Mobile sticky call bar (<900px only, z 50)
   -------------------------------------------------------------------------- */
.sticky-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky-bar);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgb(255 255 255 / .96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgb(14 27 44 / .10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sticky-call-bar .btn { width: 100%; padding: .8rem 1rem; }

.sticky-call-bar .btn:hover { transform: none; }
.sticky-call-bar .btn:active { transform: scale(.97); }

/* Thank-you page only: the bar carries a single full-width Call button */
.sticky-call-bar-single { grid-template-columns: 1fr; }

@media (max-width: 899.98px) {
  body { padding-bottom: 76px; }
  /* While a quote form field has focus, the bar yields (JS toggles the class) */
  body.form-focus .sticky-call-bar { display: none; }
}

@media (min-width: 900px) {
  .sticky-call-bar { display: none; }
}

/* --------------------------------------------------------------------------
   8. Hero (home): copy + form card right, framed photo under copy
   Collapses: <900px single column (copy, form, photo)
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(3rem, 6vw, 5rem) clamp(4rem, 8vw, 6rem); }

/* Every page opens on paper; a faint cool wash behind the opening text
   column keeps the top of the page from reading as a flat fill. */
main > .section:first-child {
  background-image: radial-gradient(70% 100% at 12% 0%, rgb(31 86 181 / .05), transparent 62%);
}

.hero-grid {
  display: grid;
  gap: 2.25rem;
  grid-template-areas:
    "copy"
    "form"
    "media";
}

.hero-copy { grid-area: copy; }
.hero-form { grid-area: form; }
.hero-media { grid-area: media; }

.hero-copy .lead { margin-top: 1.1rem; }

.hero-cta {
  margin-top: 1.7rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

/* Double-bezel shell around the hero photo: tinted tray outside, image
   core inside, concentric radii (inner = outer - pad). */
.hero-media,
.hero .split-media,
main > .section:first-child .split-media {
  background: var(--bezel-bg);
  border: 1px solid var(--bezel-line);
  border-radius: var(--bezel-radius);
  padding: var(--bezel-pad);
  box-shadow: var(--shadow-lift);
}

.hero-media img,
.hero .split-media img,
main > .section:first-child .split-media img {
  border-radius: calc(var(--bezel-radius) - var(--bezel-pad));
  box-shadow: none;
  width: 100%;
}

/* Home hero photo only: crop the sky, keep the house windows in frame.
   object-position needs a crop to act on, so the box is fixed at 16/9. */
.hero-media .home-hero-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 78%;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    grid-template-areas:
      "copy form"
      "media form";
    gap: 2.5rem 3.25rem;
    align-items: start;
  }
}

/* --------------------------------------------------------------------------
   9. Quote form card (canonical .quote-form)
   -------------------------------------------------------------------------- */
/* The form card sits in its own double-bezel tray (the hero asset).
   Outer radius 20px - 6px pad = the card's own 14px, so the curves are
   concentric. :has() covers the pages where the wrapper is a bare div;
   .hero-form / .contact-form-block are the classed fallbacks. */
.hero-form,
.contact-form-block,
div:has(> .quote-form) {
  background: var(--bezel-bg);
  border: 1px solid var(--bezel-line);
  border-radius: 20px;
  padding: var(--bezel-pad);
  box-shadow: var(--shadow-lift);
  align-self: start;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.field input:hover,
.field select:hover { border-color: rgb(31 86 181 / .35); }

.field input,
.field select { transition: border-color .18s var(--ease); }

.form-title { font-size: 1.35rem; }

.form-sub {
  color: var(--muted);
  font-size: .95rem;
  margin-top: -.5rem;
}

.field { display: grid; gap: .35rem; }

.field label {
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}

.optional { color: var(--muted); font-weight: 400; }

.field input,
.field select {
  min-height: 48px;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .55rem .9rem;
  color: var(--body);
}

.field input:focus,
.field select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form-fineprint {
  font-size: .82rem;
  line-height: 1.5;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   10. Stat band (4-col, collapses to 2-col under 768px)
   -------------------------------------------------------------------------- */
.stats {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 1.5rem;
}

.stat-figure {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: .5rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.stat-sub {
  display: block;
  margin-top: .2rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
  .stats .stat {
    padding-inline: clamp(1.25rem, 2.5vw, 2rem);
    border-left: 1px solid var(--line);
  }
  .stats .stat:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .stats .stat:last-child { padding-right: 0; }
}

/* --------------------------------------------------------------------------
   11. Split sections (image + copy; collapses to 1 column under 768px)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.split-media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.media-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (min-width: 768px) {
  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2.5rem, 5vw, 4rem);
  }
  .split-media-right .split-media { order: 2; }
}

.split-copy > p { margin-top: 1.1rem; }
.split-copy > p:first-of-type { margin-top: 1.25rem; }

.symptom-list {
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
  display: grid;
  gap: .95rem;
}

.symptom-list strong { color: var(--ink); }

/* --------------------------------------------------------------------------
   12. Services bento (mixed grid, one wide cell, one tall cell)
   Collapses: 2-col under 900px, 1-col under 768px
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  gap: 1.1rem;
}

.bento-cell {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  box-shadow: 0 1px 2px rgb(14 27 44 / .04);
  transition:
    box-shadow .3s var(--ease),
    transform .3s var(--ease-spring),
    border-color .3s var(--ease);
}

.bento-cell:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
  border-color: rgb(31 86 181 / .30);
}

.bento-cell:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.bento-media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: .35rem;
}

.bento-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.bento-cell:hover .bento-media img { transform: scale(1.03); }

.bento-cell h3 { font-size: 1.12rem; }

.bento-cell h3 a {
  color: var(--ink);
  text-decoration: none;
}

/* whole card is the click target */
.bento-cell h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
}

.bento-cell h3 a:focus-visible { outline: none; }

.bento-cell:hover h3 a { color: var(--accent); }

.bento-cell p { font-size: .95rem; }

@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cell-wide,
  .cell-doors { grid-column: span 2; }
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "wide wide wide wide doors doors"
      "vinyl vinyl dh dh doors doors"
      "cas cas energy energy energy energy";
  }
  .cell-wide { grid-area: wide; }
  .cell-vinyl { grid-area: vinyl; }
  .cell-dh { grid-area: dh; }
  .cell-cas { grid-area: cas; }
  .cell-energy { grid-area: energy; }
  .cell-doors { grid-area: doors; }

  .cell-wide .bento-media img { aspect-ratio: 16 / 7; }
  .cell-energy .bento-media img { aspect-ratio: 21 / 9; }

  .cell-doors .bento-media {
    flex: 1 1 auto;
    position: relative;
    min-height: 280px;
    margin-bottom: .35rem;
  }
  .cell-doors .bento-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .cell-vinyl,
  .cell-cas { justify-content: center; }
}

/* --------------------------------------------------------------------------
   13. Numbered process steps
   Collapses: media column drops below text under 900px
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  gap: 2.5rem;
}

.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  display: grid;
  gap: 1.9rem;
  margin-top: 1.75rem;
}

.steps > li {
  counter-increment: step;
  position: relative;
  padding-left: 3.5rem;
}

.steps > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--accent);
}

.steps h3 { margin-bottom: .35rem; }

.process-media {
  display: grid;
  gap: 1.1rem;
  align-content: center;
}

.process-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .process-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

/* --------------------------------------------------------------------------
   14. Navy bands: warranty stack + CTA band over photo
   Warranty grid collapses to 1 column under 768px
   -------------------------------------------------------------------------- */
.warranty-grid {
  display: grid;
  gap: 2.25rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.warranty-figure {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.warranty-label {
  margin-top: .6rem;
  font-weight: 600;
  color: var(--navy-text);
}

.warranty-attribution {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgb(231 237 245 / .16);
  color: var(--navy-muted);
  max-width: none;
}

@media (min-width: 768px) {
  .warranty-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .warranty-grid .warranty {
    padding-inline: clamp(1.5rem, 3vw, 2.25rem);
    border-left: 1px solid rgb(231 237 245 / .14);
  }
  .warranty-grid .warranty:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

/* Compact warranty strip (spoke pages): the full 3-column band lives on
   home, about, and services; spokes carry one padded navy row instead. */
.warranty-strip {
  background-color: var(--navy);
  background-image: radial-gradient(110% 160% at 12% 0%, rgb(31 86 181 / .18), transparent 55%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .08);
  color: var(--white);
  padding-block: clamp(1.5rem, 3vw, 2.1rem);
}

.warranty-strip p {
  max-width: none;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Home band only: one extra plain-spoken line under the attribution */
.warranty-note {
  margin-top: .6rem;
  color: var(--navy-muted);
  max-width: none;
}

.cta-band {
  background-color: var(--navy);
  background-image:
    linear-gradient(rgb(14 27 44 / .86), rgb(14 27 44 / .86)),
    url("/assets/img/hero-bg.webp");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .08);
  color: var(--navy-text);
}

.cta-band h2 { color: var(--white); }

.cta-band .cta-sub { margin: 1rem auto 0; }

.cta-actions {
  margin-top: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   15. Comparison table (horizontal scroll wrapper on mobile)
   -------------------------------------------------------------------------- */
.compare-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.compare col.us { background: var(--tint); }

.compare th,
.compare td {
  text-align: left;
  vertical-align: top;
  padding: 1.05rem 1.35rem;
  border-top: 1px solid var(--line);
  font-size: .98rem;
  line-height: 1.55;
}

.compare thead th {
  border-top: 0;
  border-bottom: 2px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.compare thead th:last-child { color: var(--accent-dark); }

.compare tbody tr:first-child th,
.compare tbody tr:first-child td { border-top: 0; }

/* Translucent hover wash: the tinted our-column still shows through */
.compare tbody tr { transition: background-color .18s var(--ease); }
.compare tbody tr:hover { background-color: rgb(31 86 181 / .045); }

.compare tbody th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
  width: 24%;
}

/* --------------------------------------------------------------------------
   16. Service area tiers (3-col, collapses to 1 column under 768px)
   -------------------------------------------------------------------------- */
.area-grid {
  display: grid;
  gap: 2rem;
}

.area-tier h3 { font-size: 1.05rem; margin-bottom: .5rem; }

.area-note {
  margin-top: clamp(2rem, 4vw, 2.5rem);
  color: var(--muted);
}

@media (min-width: 768px) {
  .area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   17. FAQ (native details, plus/minus marker, top hairlines only)
   -------------------------------------------------------------------------- */
.faq { max-width: 780px; }

.faq details { border-top: 1px solid var(--line); }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  transition: color .18s var(--ease);
}

.faq summary:hover { color: var(--accent); }

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--accent);
  transition: transform .3s var(--ease-spring);
}

.faq summary:hover::after { transform: translateY(1px); }

.faq details[open] summary::after,
.faq details[open] summary:hover::after { transform: rotate(45deg); }

/* Smooth open where the browser can animate details content height
   (interpolate-size + ::details-content). Elsewhere it opens instantly,
   which is the same behavior as before. */
@supports (interpolate-size: allow-keywords) {
  .faq details { interpolate-size: allow-keywords; }

  .faq details::details-content {
    block-size: 0;
    overflow-y: clip;
    opacity: 0;
    transition:
      block-size .35s var(--ease),
      opacity .3s var(--ease),
      content-visibility .35s allow-discrete;
  }

  .faq details[open]::details-content {
    block-size: auto;
    opacity: 1;
  }
}

.faq-body {
  padding-bottom: 1.3rem;
  display: grid;
  gap: .65rem;
}

/* --------------------------------------------------------------------------
   18. Simple link row (404, utility)
   -------------------------------------------------------------------------- */
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-block: 1.6rem 2.2rem;
  padding: 0;
  list-style: none;
}

/* --------------------------------------------------------------------------
   19. Footer (navy; 4-col from 1024px, 2-col from 768px, stacked below)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy);
  background-image: radial-gradient(90% 70% at 88% 0%, rgb(31 86 181 / .14), transparent 55%);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / .06);
  color: var(--navy-muted);
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.footer-grid {
  display: grid;
  gap: 2.75rem;
}

.site-footer .logo { color: var(--white); }
.site-footer .logo-city { color: var(--navy-muted); }
.site-footer .logo-service { color: var(--white); }

.footer-blurb {
  margin-top: 1.2rem;
  font-size: .95rem;
  max-width: 36ch;
}

.footer-blurb + .footer-blurb { margin-top: .8rem; }

/* Compact Home / About / Services / Contact row inside the brand column */
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.15rem;
  margin-top: 1.15rem;
}

.footer-nav-row a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--navy-text);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.footer-nav-row a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--navy-text);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.footer-links a {
  color: var(--navy-muted);
  text-decoration: none;
  font-size: .96rem;
  transition: color .18s var(--ease);
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-contact p { font-size: .95rem; }
.footer-contact p + p { margin-top: .7rem; }

.footer-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
}

.footer-phone:hover { text-decoration: underline; }

.footer-email {
  color: var(--navy-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgb(231 237 245 / .14);
  padding-block: 1.4rem;
  font-size: .88rem;
}

.footer-bottom a {
  color: var(--navy-muted);
  transition: color .18s var(--ease);
}

.footer-bottom a:hover { color: var(--white); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr .95fr 1.05fr 1.1fr;
    gap: 0 clamp(1.75rem, 3vw, 2.5rem);
  }
  .footer-links,
  .footer-contact {
    border-left: 1px solid rgb(231 237 245 / .12);
    padding-left: clamp(1.75rem, 3vw, 2.5rem);
  }
}

/* --------------------------------------------------------------------------
   20. Reveal animation (JS adds .js to <html>; no JS = fully visible)
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   21. Reduced motion: kill all reveals and transitions
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   22a. Page additions (appended per design spec: prefer existing classes;
   these two layouts have no existing class).

   A) Services hub bento variant: 7 cells (6 spokes + West Lafayette).
      The base .bento area map only names 6 cells, so .bento-services
      remaps the grid and adds the .cell-wl area.
      Collapse: 2 columns under 900px (wide, doors, wl span both),
      1 column under 768px (inherited from base .bento).

   B) Contact page: large phone block and stacked contact blocks,
      per the Copy Bible contact brief ("Phone block (big), email block").
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  .bento-services .cell-wl { grid-column: span 2; }
}

@media (min-width: 900px) {
  .bento-services {
    grid-template-areas:
      "wide wide wide wide doors doors"
      "vinyl vinyl dh dh doors doors"
      "cas cas cas energy energy energy"
      "wl wl wl wl wl wl";
  }
  .bento-services .cell-wl { grid-area: wl; }
  .bento-services .cell-wl .bento-media img { aspect-ratio: 16 / 5; }
  .bento-services .cell-energy .bento-media img { aspect-ratio: 16 / 9; }
  .bento-services .cell-vinyl,
  .bento-services .cell-cas { justify-content: flex-start; }
}

/* Contact page split: three grid children in mobile-first source order
   (phone block, form, write/when-to-call copy). Under 768px .split is a
   single column, so that source order IS the stack. From 768px up the
   explicit placements below rebuild the old two-column look: both copy
   blocks in the left column, the form filling the right. */
.contact-write-block .contact-block:first-child { margin-top: 0; }

@media (min-width: 768px) {
  .contact-split { align-items: start; }
  .contact-split .contact-lead-block { grid-column: 1; grid-row: 1; }
  .contact-split .contact-form-block { grid-column: 2; grid-row: 1 / span 2; }
  .contact-split .contact-write-block { grid-column: 1; grid-row: 2; }
}

/* Legal / utility prose (privacy, terms, thank-you): one centered reading
   column. Paragraph max-width is released so every block, list items
   included, shares the wrapper's measure instead of mixing widths. */
.legal-prose {
  max-width: 70ch;
  margin-inline: auto;
}

.legal-prose p { max-width: none; }

.legal-prose .lead {
  margin-top: 1.1rem;
  font-size: 1.25rem;
  color: var(--ink);
}

.legal-prose h2 {
  margin-top: 2.5rem;
  font-size: 1.22rem; /* legal H2s step down to the h3 scale */
}

.legal-meta {
  margin-top: 1.3rem;
  font-size: .88rem;
  color: var(--muted);
}

.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--accent);
  text-decoration: none;
}

.contact-phone:hover { color: var(--accent-dark); }

.contact-block { margin-top: 2.1rem; }

.contact-block h3 {
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.contact-block p + p { margin-top: .35rem; }

/* --------------------------------------------------------------------------
   22c. v2 integration additions (quiet link row, service-area map,
   services-hub grouped grids, guide index rows).
   -------------------------------------------------------------------------- */

/* Homepage: quiet text row under the services bento */
.also-row {
  margin-top: 1.5rem;
  font-size: .98rem;
  color: var(--muted);
  max-width: none;
}

/* Contact page: bezeled service-area map */
.map-embed {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--bezel-bg);
  border: 1px solid var(--bezel-line);
  border-radius: var(--bezel-radius);
  padding: var(--bezel-pad);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: calc(var(--bezel-radius) - var(--bezel-pad));
}

.map-caption {
  margin-top: .7rem;
  font-size: .9rem;
  color: var(--muted);
}

/* Services hub: "Window styles" bento, 8 cells (one wide, one tall,
   one full-width banner). Collapse: 2 columns under 900px (wide and
   energy span both), 1 column under 768px (inherited from base .bento). */
@media (min-width: 768px) {
  .bento-styles .cell-energy { grid-column: span 2; }
  .bento-styles .cell-bay { grid-column: span 1; }
}

@media (min-width: 900px) {
  .bento-styles {
    grid-template-areas:
      "wide wide wide wide bay bay"
      "vinyl vinyl dh dh bay bay"
      "cas cas slide slide pic pic"
      "energy energy energy energy energy energy";
  }
  .bento-styles .cell-bay { grid-area: bay; }
  .bento-styles .cell-slide { grid-area: slide; }
  .bento-styles .cell-pic { grid-area: pic; }
  .bento-styles .cell-energy { grid-area: energy; }
  .bento-styles .cell-energy .bento-media img { aspect-ratio: 16 / 5; }
  .bento-styles .cell-vinyl,
  .bento-styles .cell-cas { justify-content: flex-start; }
  .bento-styles .cell-bay .bento-media {
    flex: 1 1 auto;
    position: relative;
    min-height: 280px;
    margin-bottom: .35rem;
  }
  .bento-styles .cell-bay .bento-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
}

/* Services hub: "Doors" bento, 4 cells (tall hub cell, two standard
   cells, one wide text cell). Collapse: 2 columns under 900px (hub and
   patio span both), 1 column under 768px (inherited from base .bento). */
@media (min-width: 768px) {
  .bento-doors .cell-dhub,
  .bento-doors .cell-dpatio { grid-column: span 2; }
}

@media (min-width: 900px) {
  .bento-doors {
    grid-template-areas:
      "dhub dhub dentry dentry dstorm dstorm"
      "dhub dhub dpatio dpatio dpatio dpatio";
  }
  .bento-doors .cell-dhub { grid-area: dhub; }
  .bento-doors .cell-dentry { grid-area: dentry; }
  .bento-doors .cell-dstorm { grid-area: dstorm; }
  .bento-doors .cell-dpatio { grid-area: dpatio; }
  .bento-doors .cell-dhub .bento-media {
    flex: 1 1 auto;
    position: relative;
    min-height: 280px;
    margin-bottom: .35rem;
  }
  .bento-doors .cell-dhub .bento-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .bento-doors .cell-dpatio { justify-content: center; }
}

/* Services hub: guide index rows (title left, one-liner right,
   hairlines between rows only). Single column under 768px. */
.guide-list { display: grid; }

.guide-row {
  padding-block: 1.35rem;
  display: grid;
  gap: .35rem 2.5rem;
}

.guide-row + .guide-row { border-top: 1px solid var(--line); }

.guide-row h3 { font-size: 1.12rem; }

.guide-row h3 a {
  color: var(--ink);
  text-decoration: none;
  transition: color .18s var(--ease);
}

.guide-row h3 a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.guide-row p { font-size: .98rem; }

@media (min-width: 768px) {
  .guide-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.7fr);
    align-items: baseline;
  }
  .guide-row p { grid-column: 2; }
  .guide-row h3 { grid-column: 1; grid-row: 1; }
}

/* --------------------------------------------------------------------------
   22b. Print
   -------------------------------------------------------------------------- */
@media print {
  body { background: #fff; padding-bottom: 0 !important; }
  .sticky-call-bar,
  .nav-toggle,
  .mobile-nav,
  .site-nav,
  .header-call,
  .header-call-compact,
  .skip-link { display: none !important; }
  .site-header { position: static; }
  .band-navy,
  .cta-band,
  .site-footer {
    background: #fff !important;
    background-image: none !important;
    color: var(--body) !important;
  }
  .band-navy h2,
  .cta-band h2,
  .warranty-figure { color: var(--ink) !important; }
  .warranty-label,
  .warranty-attribution,
  .footer-links a,
  .footer-nav-row a,
  .footer-contact p,
  .footer-bottom,
  .footer-blurb { color: var(--body) !important; }
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .quote-form,
  .bento-cell,
  .compare-wrap,
  .split-media img,
  .process-media img,
  .hero-media img { box-shadow: none !important; }
  main > .section:first-child { background-image: none !important; }
  .hero-media,
  .hero .split-media,
  main > .section:first-child .split-media,
  .hero-form,
  .contact-form-block,
  div:has(> .quote-form) {
    background: none !important;
    border: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  a { color: var(--ink); }
}


/* ===== v2.1 mobile audit fixes ===== */
/* Tap targets: footer + breadcrumb links reach 24px+ */
.site-footer a { display: inline-block; padding-block: 0.3rem; }
.breadcrumbs a { display: inline-block; padding-block: 0.4rem; }

/* Legible logo eyebrow at every width */
.logo-city { font-size: 0.75rem; }

/* Guide rows read as tappable */
.guide-row h3 a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-block;
  padding-block: 0.25rem;
  transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.guide-row h3 a:hover { color: var(--accent-dark); }

/* Bento cards: explicit affordance + whole-card hit area */
.bento-cell { position: relative; }
.bento-cell h3 a::after { content: ""; position: absolute; inset: 0; }
.card-more {
  display: inline-block;
  margin-top: 0.5rem;
  padding-block: 0.2rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bento-cell:hover .card-more { color: var(--accent-dark); }

/* Compact inline CTA band (home, between comparison and season) */
.cta-inline {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgb(14 27 44 / 0.06), 0 8px 24px rgb(14 27 44 / 0.07);
}
.cta-inline p {
  margin: 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  max-width: none;
}
.cta-inline .hero-cta { margin: 0; }

/* Mobile: sticky-bar spacer lives in the footer so overflow is navy, not beige */
@media (max-width: 899.98px) {
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)); }
}

/* Mobile: comparison table stacks; no horizontal scroll for decision content */
@media (max-width: 767.98px) {
  .compare thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .compare, .compare tbody, .compare tr, .compare th[scope="row"], .compare td { display: block; width: 100%; }
  .compare { min-width: 0; }
  .compare col.us { background: none; }
  .compare tbody tr { padding: 1rem 1.1rem; border-top: 1px solid var(--line); }
  .compare tbody tr:first-child { border-top: 0; }
  .compare th[scope="row"] { padding: 0 0 0.5rem; border: 0; font-size: 1.05rem; }
  .compare td { border: 0; padding: 0.3rem 0; }
  .compare td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.15rem;
  }
  .compare td[data-us]::before { color: var(--accent-dark); }
  .compare td[data-us] { background: var(--tint); border-radius: 8px; padding: 0.55rem 0.7rem; margin-top: 0.35rem; }
}

/* Mobile art direction: crops where the window subject sits low or small in frame */
@media (max-width: 767.98px) {
  .img-crop-low { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; object-position: center 68%; }
  .img-crop-mid { aspect-ratio: 4 / 3; width: 100%; height: auto; object-fit: cover; object-position: center 38%; }
  .map-embed iframe { height: 260px; }
}

/* --------------------------------------------------------------------------
   Launch additions
   -------------------------------------------------------------------------- */
.footer-links li { color: var(--navy-muted); font-size: .96rem; }
.legal-prose ul { margin-top: .6rem; }
.legal-prose li + li { margin-top: .35rem; }
.legal-prose h2 + p, .legal-prose h2 + ul { margin-top: .6rem; }
.legal-prose p + p { margin-top: .9rem; }
.legal-prose .btn { margin-top: 1.4rem; }
.next-steps { margin-top: 1.2rem; padding-left: 1.3rem; }
.next-steps li { margin-top: .5rem; }
.next-steps li::marker { color: var(--accent); font-weight: 700; }
