/* ==========================================================================
   Murphy Brothers Solar — stylesheet
   Design tokens, accessible base, components. WCAG 2.1 / 2.2 AA.
   ========================================================================== */

:root {
  /* Brand palette — all text/background pairings meet WCAG AA (>=4.5:1) */
  --c-ink:        #11201c;   /* primary text */
  --c-ink-soft:   #3a4a45;   /* secondary text on light */
  --c-dark:       #04342c;   /* deep teal — headers, footer */
  --c-green:      #0f6e56;   /* primary action green */
  --c-green-700:  #0b5946;   /* hover */
  --c-amber:      #9a5b09;   /* accessible amber for text/icons on light */
  --c-amber-bri:  #f5b945;   /* bright amber for fills on dark */
  --c-cream:      #f5f8f4;   /* page background */
  --c-surface:    #ffffff;   /* cards */
  --c-line:       #d8e0db;   /* hairline borders */
  --c-line-soft:  #e7ede9;
  --c-mist:       #eef4ef;   /* tinted section background */

  --shadow-sm: 0 1px 2px rgba(4,52,44,.06), 0 2px 8px rgba(4,52,44,.05);
  --shadow-md: 0 4px 16px rgba(4,52,44,.10);

  --radius:    14px;
  --radius-sm: 9px;
  --radius-pill: 999px;

  --maxw: 1140px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(.84rem, .8rem + .2vw, .92rem);
  --step-0:  clamp(1rem, .96rem + .2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.1rem + .5vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4:  clamp(2.6rem, 2rem + 3vw, 4rem);
}

/* ------- reset / base ------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--c-green-700); text-underline-offset: .18em; }
a:hover { color: var(--c-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--c-dark); font-optical-sizing: auto; }
p { max-width: 68ch; }

/* ------- accessibility helpers ------- */
.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--c-dark); color: #fff; padding: .75rem 1.1rem;
  border-radius: var(--radius-sm); z-index: 999; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 1rem; color: #fff; }

:focus-visible {
  outline: 3px solid var(--c-amber-bri);
  outline-offset: 2px;
  border-radius: 3px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ------- layout ------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section--tint { background: var(--c-mist); }
.section--dark { background: var(--c-dark); color: #e7f1ec; }
.section--dark h2, .section--dark h3 { color: #fff; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700; font-size: var(--step--1);
  letter-spacing: .08em; text-transform: uppercase; color: var(--c-green);
  margin-bottom: .6rem;
}
.section--dark .eyebrow { color: var(--amber); color: var(--c-amber-bri); }
.lead { font-size: var(--step-1); color: var(--c-ink-soft); }
.center { text-align: center; }
.center p { margin-inline: auto; }
p.center { max-width: none; }

/* ------- buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem; text-align: center;
  font-family: var(--font-body); font-weight: 700; font-size: var(--step-0);
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.5rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; min-height: 48px;
  transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--c-green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--c-green-700); color: #fff; }
.btn--amber { background: var(--c-amber-bri); color: #3a2403; }
.btn--amber:hover { background: #ffcd6b; color: #3a2403; }
.btn--ghost { background: transparent; color: var(--c-green-700); border-color: var(--c-green); }
.btn--ghost:hover { background: var(--c-green); color: #fff; }
.btn--ondark { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ondark:hover { background: #fff; color: var(--c-dark); }
.btn svg { width: 1.15em; height: 1.15em; }

/* ------- header ------- */
.topbar {
  background: #042520; color: #d7ece2;
  font-size: var(--step--1);
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .4rem 1.5rem; justify-content: space-between; align-items: center; padding-block: .5rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { text-decoration: underline; }
.topbar svg { width: 1em; height: 1em; }
/* On phones, drop the service-area line (it's in the footer) and keep just the tap-to-call */
@media (max-width: 640px) {
  .topbar .wrap { justify-content: center; }
  .topbar .wrap > span { display: none; }
}

.site-header { position: sticky; top: 0; z-index: 100; background: var(--c-dark); border-bottom: 1px solid rgba(255,255,255,.12); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { display: block; height: 52px; width: auto; }
@media (max-width: 520px) { .brand img { height: 44px; } }

.nav-toggle { display: none; }
.primary-nav ul { list-style: none; padding: 0; display: flex; align-items: center; gap: .25rem; }
.primary-nav a:not(.btn) {
  display: inline-block; text-decoration: none; color: #e7f1ec;
  font-weight: 600; font-size: var(--step-0); padding: .55rem .8rem; border-radius: var(--radius-sm);
}
.primary-nav a:not(.btn):hover { background: rgba(255,255,255,.12); color: #fff; }
.primary-nav a[aria-current="page"] { color: #fff; box-shadow: inset 0 -3px 0 var(--c-amber-bri); }
.primary-nav .btn { margin-left: .5rem; }

.menu-btn {
  display: none; align-items: center; gap: .5rem; background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28); border-radius: var(--radius-sm);
  padding: .55rem .8rem; font: inherit; font-weight: 700; color: #fff; cursor: pointer; min-height: 44px;
}
.menu-btn svg { width: 1.25em; height: 1.25em; }

@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }
  .primary-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--c-dark); border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow-md);
    display: none; padding: .75rem var(--gutter) 1.25rem;
  }
  .primary-nav[data-open="true"] { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: .15rem; }
  .primary-nav a:not(.btn) { padding: .85rem .8rem; font-size: var(--step-1); }
  .primary-nav .btn { margin: .5rem 0 0; justify-content: center; }
}

/* ------- hero ------- */
.hero { background: linear-gradient(180deg, #f7faf6 0%, var(--c-mist) 100%); position: relative; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,185,69,.35), transparent 70%); pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(2.5rem, 6vw, 4.5rem); position: relative; z-index: 1; }
.hero h1 { font-size: var(--step-4); letter-spacing: -.01em; }
.hero p.lead { margin-top: 1rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.6rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; margin-top: 1.4rem; padding: 0; list-style: none; color: var(--c-ink-soft); font-weight: 600; font-size: var(--step--1); }
.hero-points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-points svg { width: 1.15em; height: 1.15em; color: var(--c-green); }
@media (max-width: 820px) { .hero .wrap { grid-template-columns: 1fr; } }

/* ------- quote form card ------- */
.quote-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.75rem); box-shadow: var(--shadow-md); }
.quote-card h2 { font-size: var(--step-2); }
.quote-card .form-note { font-size: var(--step--1); color: var(--c-ink-soft); }
.field { margin-top: .9rem; }
.field label { display: block; font-weight: 700; font-size: var(--step--1); color: var(--c-ink); margin-bottom: .3rem; }
.field .req { color: #a32d2d; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--c-ink);
  padding: .8rem .9rem; border: 1.5px solid #9aa8a2; border-radius: var(--radius-sm);
  background: #fff; min-height: 48px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: #6f7e78; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--c-green); outline-offset: 1px; }
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: var(--step--1); color: var(--c-ink-soft); margin-top: .3rem; }
/* "enter kWh — or — email your bill" alternative on the detailed quote form */
.usage-or { display: flex; align-items: center; gap: .75rem; margin: 1rem 0 .8rem; color: var(--c-ink-soft); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .06em; }
.usage-or::before, .usage-or::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--c-line); }
.bill-email-btn { width: 100%; }
.bill-email-hint { display: block; margin-top: .4rem; }
/* consent fine-print under the submit button (replaces the consent checkbox) */
.consent-note { font-size: .8rem; line-height: 1.45; color: var(--c-ink-soft); margin-top: .7rem; text-align: center; }
/* homepage quick-form: optional "add more" pop-down (native <details>) */
.more-details { margin-top: .9rem; border: 1px dashed var(--c-line); border-radius: var(--radius-sm); background: var(--c-mist); }
.more-details > summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: .5rem; padding: .7rem .9rem; font-weight: 700; font-size: var(--step--1); color: var(--c-green-700); }
.more-details > summary::-webkit-details-marker { display: none; }
.more-details > summary:hover { color: var(--c-dark); }
.more-details > summary .more-summary { flex: 1 1 auto; }
.more-details > summary .chev { flex: 0 0 auto; width: 1.2em; height: 1.2em; color: var(--c-green); transition: transform .2s ease; }
.more-details[open] > summary .chev { transform: rotate(180deg); }
.opt-pill { flex: 0 0 auto; font-weight: 600; font-size: .66rem; text-transform: uppercase; letter-spacing: .05em; color: var(--c-ink-soft); background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 999px; padding: .12rem .5rem; }
.more-details .more-body { padding: 0 .9rem .9rem; }
.more-details .more-note { margin-top: 0; margin-bottom: .2rem; }
.checkbox { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1rem; font-size: var(--step--1); color: var(--c-ink-soft); }
.checkbox input { width: 1.3rem; height: 1.3rem; min-height: 0; flex: 0 0 auto; margin-top: .15rem; accent-color: var(--c-green); }
.form-actions { margin-top: 1.2rem; }
.form-actions .btn { width: 100%; justify-content: center; }

/* address autocomplete (OpenStreetMap / Photon) */
.addr-wrap { position: relative; }
.addr-suggest {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 4px);
  margin: 0; padding: 4px; list-style: none;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); max-height: 248px; overflow-y: auto;
}
.addr-suggest li {
  padding: .6rem .65rem; border-radius: 7px; cursor: pointer;
  font-size: var(--step--1); color: var(--c-ink); line-height: 1.4;
}
.addr-suggest li:hover, .addr-suggest li[aria-selected="true"] { background: var(--c-mist); color: var(--c-dark); }

/* help bubble */
.help-btn {
  display: inline-grid; place-content: center; width: 24px; height: 24px;
  margin-left: .25rem; vertical-align: -5px; padding: 0;
  border: 1.5px solid var(--c-green); border-radius: 50%;
  background: #fff; color: var(--c-green-700); font: 700 13px/1 var(--font-body);
  cursor: pointer;
}
.help-btn:hover { background: var(--c-green); color: #fff; }
.help-pop {
  margin-top: .55rem; padding: .8rem .9rem;
  background: var(--c-mist); border: 1px solid var(--c-line);
  border-left: 4px solid var(--c-amber-bri); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: var(--step--1); line-height: 1.55; color: var(--c-ink-soft);
}
.help-pop strong { color: var(--c-dark); }

/* ------- trust strip ------- */
.trust-strip { background: var(--c-dark); color: #eafaf3; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.12); border-radius: var(--radius); overflow: hidden; margin-block: -2.5rem; box-shadow: var(--shadow-md); position: relative; z-index: 5; }
.trust-strip .cell { background: var(--c-dark); padding: 1.3rem 1rem; text-align: center; }
.trust-strip .num { font-family: var(--font-display); font-size: var(--step-2); font-weight: 600; color: var(--c-amber-bri); }
.trust-strip .lbl { font-size: var(--step--1); color: #cfe6db; margin-top: .15rem; }
@media (max-width: 680px) { .trust-strip .wrap { grid-template-columns: 1fr; margin-block: -1.5rem; } }

/* ------- generic grids / cards ------- */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }

.card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.75rem); box-shadow: var(--shadow-sm); }
.card h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.card .icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--c-mist); color: var(--c-green); margin-bottom: .9rem; }
.card .icon svg { width: 26px; height: 26px; }
.step-num { font-family: var(--font-display); font-weight: 600; color: var(--c-amber); font-size: var(--step-1); }

.section-head { max-width: 60ch; margin-bottom: clamp(1.5rem, 4vw, 2.5rem); }
.section-head.center { margin-inline: auto; }

/* ------- testimonials ------- */
.quote-block { background: var(--c-surface); border: 1px solid var(--c-line); border-left: 5px solid var(--c-amber-bri); border-radius: var(--radius); padding: clamp(1.25rem, 3vw, 1.75rem); box-shadow: var(--shadow-sm); }
.quote-block .stars { color: var(--c-amber); display: flex; gap: .15rem; margin-bottom: .7rem; }
.quote-block .stars svg { width: 1.15em; height: 1.15em; }
/* 5-star rating badge under the reviews heading */
.rating-badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: .8rem; font-weight: 700; color: var(--c-ink); }
.rating-badge .stars { display: inline-flex; gap: .1rem; color: var(--c-amber); }
.rating-badge .stars svg { width: 1.2em; height: 1.2em; }
.quote-block blockquote { font-size: var(--step-1); font-family: var(--font-display); color: var(--c-ink); line-height: 1.4; }
.quote-block cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 700; color: var(--c-ink-soft); font-size: var(--step--1); font-family: var(--font-body); }
.quote-block blockquote { font-size: var(--step-0); } /* reviews can run long — keep readable */
.reviews .quote-block { display: flex; flex-direction: column; }
.quote-block a { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; font-size: var(--step--1); text-decoration: none; }
.quote-block a:hover { text-decoration: underline; }
.quote-block a svg { width: 1.1em; height: 1.1em; }

/* social icons (footer) */
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  display: inline-grid; place-content: center; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(255,255,255,.10); color: #fff;
}
.social a:hover { background: var(--c-amber-bri); color: #042520; }
.social a svg { width: 20px; height: 20px; }
.info-list .ic svg { width: 22px; height: 22px; }

/* ------- split content ------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.split--media-first .media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--media-first .media { order: 0; } }
.media-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow-sm); background: var(--c-mist); }
.media-frame img { display: block; width: 100%; height: auto; }

/* placeholder image block (swap for real photos) */
.ph {
  display: grid; place-content: center; gap: .4rem; text-align: center;
  aspect-ratio: 4 / 3; background:
    repeating-linear-gradient(45deg, #e3ece6 0 14px, #edf3ee 14px 28px);
  color: var(--c-ink-soft); font-weight: 600; font-size: var(--step--1); padding: 1rem;
}
.ph svg { width: 34px; height: 34px; margin-inline: auto; color: var(--c-green); opacity: .7; }

/* ------- gallery ------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.75rem, 2vw, 1.25rem); }
@media (max-width: 820px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-surface); box-shadow: var(--shadow-sm); }
.gallery-grid figure img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-grid figcaption { padding: .7rem .9rem; font-size: var(--step--1); color: var(--c-ink-soft); }

/* ------- FAQ accordion ------- */
.faq-group { margin-bottom: 2.5rem; }
.faq-group > h2 { font-size: var(--step-2); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--c-line); }
.faq-item { border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-surface); margin-bottom: .7rem; overflow: hidden; }
.faq-item summary, .faq-item .faq-q {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; text-align: left; font: inherit; background: none; border: 0;
  padding: 1rem 1.15rem; font-weight: 700; color: var(--c-dark); font-size: var(--step-0);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item .faq-q:hover { background: var(--c-mist); }
.faq-item .chev { flex: 0 0 auto; width: 1.3em; height: 1.3em; color: var(--c-green); transition: transform .2s ease; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item .faq-a { padding: 0 1.15rem 1.15rem; color: var(--c-ink-soft); }
.faq-item .faq-a p { max-width: 72ch; }

/* ------- contact page ------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.info-list li { display: flex; gap: .85rem; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: var(--c-mist); color: var(--c-green); display: grid; place-content: center; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list strong { display: block; color: var(--c-dark); }
.info-list a { font-weight: 600; }

/* ------- CTA band ------- */
.cta-band { background: var(--c-dark); color: #eafaf3; text-align: center; }
.cta-band h2 { color: #fff; font-size: var(--step-3); }
.cta-band p { margin-inline: auto; color: #bfe0d3; }
.cta-band .btn { margin-top: 1.4rem; }

/* ------- footer ------- */
.site-footer { background: #042520; color: #cfe6db; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; }
.site-footer a { color: #eafaf3; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { color: #fff; font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-footer .brand-foot { display: inline-block; text-decoration: none; margin-bottom: .9rem; }
.site-footer .brand-foot img { width: 200px; height: auto; }
.site-footer .muted { color: #9cc4b6; font-size: var(--step--1); line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 2.2rem; padding-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; color: #9cc4b6; font-size: var(--step--1); }
.footer-bottom .build-stamp { opacity: .6; font-variant-numeric: tabular-nums; letter-spacing: .02em; }

/* ------- page hero (interior) ------- */
.page-hero { background: var(--c-dark); color: #e7f1ec; }
.page-hero .wrap { padding-block: clamp(2.5rem, 6vw, 4rem); }
.page-hero h1 { color: #fff; font-size: var(--step-3); }
.page-hero p { color: #bfe0d3; margin-top: .6rem; }
.breadcrumb { font-size: var(--step--1); color: #8fc0b1; margin-bottom: .6rem; }
.breadcrumb a { color: #cfe6db; }

/* ------- prose ------- */
.prose p { margin-bottom: 1.1rem; }
.prose h2 { font-size: var(--step-2); margin: 1.8rem 0 .8rem; }
.prose h3 { font-size: var(--step-1); margin: 1.4rem 0 .6rem; }
.prose ul { margin: 0 0 1.1rem 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; }
.flow > * + * { margin-top: 1.1rem; }
