/* =========================================================
   HeatingOilExpress — mobile-first stylesheet
   Body: Open Sans   Headings: Inter
   ========================================================= */

:root {
  --brand:        #678c20;
  --brand-dark:   #52701a;
  --brand-tint:   #f2f6e9;
  --ink:          #15212e;
  --ink-soft:     #4a5a6a;
  --line:         #e3e8ee;
  --bg:           #ffffff;
  --bg-alt:       #f6f8fa;
  --bg-card:      #f7f9fa;
  --bg-dark:      #15212e;
  --gold:         #f5a623;
  --max:          1160px;
  --radius:       12px;
  --font-head: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* overflow-x lives on html and uses `clip`, not `hidden`: `hidden` would turn the
   element into a scroll container and break the sticky header and sticky sidebar. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.7;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 18px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.22; color: var(--ink); font-weight: 700; letter-spacing: -.015em; }
h1 { font-size: clamp(1.85rem, 6vw, 3rem); }
h2 { font-size: clamp(1.45rem, 4.4vw, 2.15rem); margin-bottom: .55em; }
h3 { font-size: clamp(1.1rem, 3vw, 1.25rem); margin-bottom: .35em; }
h4 { font-size: 1.02rem; margin-bottom: .3em; }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
a  { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--brand); color: #fff;
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-family: var(--font-body); font-size: .98rem;
  border: 2px solid var(--brand); cursor: pointer; text-align: center;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--lg { padding: 16px 32px; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* button rows never stack on desktop */
.btn-row { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
@media (min-width: 640px) { .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; } }

.muted { color: var(--ink-soft); font-size: .88rem; }

/* gold stars */
.stars { display: flex; gap: 3px; justify-content: center; margin-top: 14px; }
.stars svg { width: 20px; height: 20px; fill: var(--gold); }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 18px; max-width: var(--max); margin: 0 auto; }
.nav__logo img { max-height: 42px; width: auto; }
.nav__links { display: none; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav__links a:hover { color: var(--brand); text-decoration: none; }

.nav__toggle { display: block; background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; color: var(--ink); padding: 4px 6px; }

/* header phone + pulsing dot */
.nav__call { display: inline-flex; align-items: center; gap: 9px; background: var(--brand); color: #fff !important; padding: 10px 16px; border-radius: var(--radius); font-weight: 700; }
.nav__call:hover { background: var(--brand-dark); text-decoration: none; }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: #46e05f; flex: 0 0 9px; box-shadow: 0 0 0 0 rgba(70,224,95,.75); animation: pulse 1.9s infinite; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(70,224,95,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(70,224,95,0); }
  100% { box-shadow: 0 0 0 0 rgba(70,224,95,0); }
}
@media (prefers-reduced-motion: reduce) { .pulse-dot { animation: none; } }

/* mobile menu panel */
@media (max-width: 959px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 6px 18px 16px; max-height: 78vh; overflow-y: auto;
    box-shadow: 0 14px 30px rgba(0,0,0,.10);
  }
  .nav__links.open { display: flex; }
  .nav__links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav__links > li:last-child { border-bottom: 0; padding-top: 12px; }
  .nav__links > li > a { display: block; padding: 13px 0; }
  .nav__call { justify-content: center; }
}

/* dropdown — collapsed by default, arrow sits next to the word */
.has-dropdown > .drop-toggle { display: inline-flex; align-items: center; gap: 6px; }
.drop-arrow { display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid currentColor; transition: transform .2s ease; flex: 0 0 auto; }
.has-dropdown.open > .drop-toggle .drop-arrow { transform: rotate(180deg); }
.dropdown { display: none; list-style: none; }
.has-dropdown.open > .dropdown { display: block; }
.dropdown a { display: block; font-size: .92rem; font-weight: 500; }

@media (max-width: 959px) {
  .has-dropdown > .drop-toggle { padding: 13px 0; width: auto; }
  .dropdown { padding: 0 0 10px 16px; }
  .dropdown a { padding: 9px 0; color: var(--ink-soft); }
}

@media (min-width: 960px) {
  .nav__toggle { display: none; }
  /* gap scales with the viewport: roomy on wide screens, still safe at 960px */
  .nav__links { display: flex; align-items: center; gap: clamp(22px, 2.6vw, 36px); position: static; padding: 0; box-shadow: none; border: 0; max-height: none; overflow: visible; }
  .nav__links > li { border: 0; }
  /* a little extra air between the last link and the phone button */
  .nav__links > li:last-child { margin-left: 6px; }
  .has-dropdown { position: relative; }
  .has-dropdown > .drop-toggle { padding: 8px 0; }
  .dropdown {
    position: absolute; top: 100%; left: 0; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius);
    min-width: 258px; padding: 8px 0; box-shadow: 0 14px 34px rgba(0,0,0,.10);
  }
  .has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; }
  .has-dropdown:hover > .dropdown, .has-dropdown:focus-within > .dropdown { display: block; }
  .has-dropdown:hover > .drop-toggle .drop-arrow { transform: rotate(180deg); }
  .dropdown a { padding: 11px 20px; }
  .dropdown a:hover { background: var(--bg-alt); text-decoration: none; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; background: var(--bg-dark); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(21,33,46,.86) 0%, rgba(21,33,46,.66) 55%, rgba(21,33,46,.80) 100%); z-index: 1; }
/* the video footage is already night-dark, so the scrim is lighter */
.hero--video::after { background: linear-gradient(160deg, rgba(21,33,46,.72) 0%, rgba(21,33,46,.46) 50%, rgba(21,33,46,.74) 100%); }
/* motion is decorative: hide it for users who ask for reduced motion */
@media (prefers-reduced-motion: reduce) { .hero__media video { display: none; } }
/* every hero is centered */
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 56px 18px 60px; text-align: center; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .09em; font-size: .76rem; font-weight: 700; color: #cfe08f; margin-bottom: 12px; }
.hero h1 { color: #fff; margin: 0 auto 14px; max-width: 22ch; text-wrap: balance; }
.hero p { color: rgba(255,255,255,.92); font-size: 1.06rem; max-width: 58ch; margin-left: auto; margin-right: auto; text-wrap: pretty; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.75); background: transparent; }
.hero .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
@media (min-width: 768px) { .hero__inner { padding: 84px 18px 88px; } }

/* ---------- hero zipcode price-check form ---------- */
.sr-only {
  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;
}
.zipform {
  margin: 26px 0 0; padding: 22px 20px; max-width: 620px;
  background: rgba(9, 16, 24, .58);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  text-align: center;
}
.zipform__title {
  color: #fff; font-size: clamp(1.05rem, 3.2vw, 1.35rem);
  margin: 0 0 16px; text-wrap: balance;
}
.zipform__row { display: flex; flex-direction: column; gap: 10px; }
.zipform__input {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink); background: #fff;
  border: 2px solid transparent; border-radius: var(--radius);
  text-align: center; letter-spacing: .06em;
}
.zipform__input::placeholder { color: #8493a1; letter-spacing: .04em; }
.zipform__input:focus { outline: none; border-color: var(--brand); }
.zipform__input:not(:placeholder-shown):invalid { border-color: #e2574c; }
.zipform__btn {
  padding: 14px 26px; font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: #fff; background: var(--brand); border: 2px solid var(--brand);
  border-radius: var(--radius); cursor: pointer; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease;
}
.zipform__btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.zipform__btn:active { transform: translateY(1px); }
.zipform__note { color: rgba(255,255,255,.72); font-size: .82rem; margin: 12px 0 0; }
@media (min-width: 480px) {
  .zipform__row { flex-direction: row; align-items: stretch; justify-content: center; }
  .zipform__input { flex: 1 1 auto; min-width: 0; text-align: left; }
  .zipform__btn  { flex: 0 0 auto; }
}
/* the panel is centered in every hero */
.zipform { margin-left: auto; margin-right: auto; }

/* slim hero for pages without imagery */
.hero--slim .hero__inner { padding: 46px 18px 48px; }
@media (min-width: 768px) { .hero--slim .hero__inner { padding: 62px 18px 64px; } }

/* ---------- trust badge banner ---------- */
.trustbar { background: var(--brand-tint); border-bottom: 1px solid #e4ecd2; padding: 22px 0; }
.trustbar__grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 620px) { .trustbar__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trustbar__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.trustbar__item { display: flex; align-items: center; gap: 12px; }
.trustbar__icon { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1px solid #dde8c4; display: grid; place-items: center; }
.trustbar__icon svg { width: 21px; height: 21px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trustbar__label { font-family: var(--font-head); font-weight: 700; font-size: .93rem; color: var(--ink); line-height: 1.3; }

/* ---------- sections ---------- */
.section { padding: 46px 0; }
@media (min-width: 768px) { .section { padding: 64px 0; } }
.section--alt { background: var(--bg-alt); }
/* body copy runs the full width of its container so it never looks
   narrower than the heading above it */
.section__lead { max-width: none; }
.center { text-align: center; }
.center .section__lead { margin-left: auto; margin-right: auto; }
.sec-head { margin-bottom: 26px; }

/* ---------- content + sticky sidebar ---------- */
.layout { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 980px) { .layout { grid-template-columns: minmax(0,1fr) 340px; gap: 46px; align-items: start; } }
.layout__main > p { max-width: none; }

.sticky-card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  border-top: 4px solid var(--brand);
}
@media (min-width: 980px) { .sticky-card { position: sticky; top: 88px; } }
.sticky-card h2, .sticky-card h3 { font-size: 1.15rem; margin-bottom: 14px; }
.sticky-card ul { list-style: none; margin-bottom: 18px; }
.sticky-card li { position: relative; padding-left: 26px; margin-bottom: 11px; font-size: .93rem; color: var(--ink-soft); line-height: 1.55; }
.sticky-card li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 15px; height: 8px; border-left: 2.5px solid var(--brand); border-bottom: 2.5px solid var(--brand);
  transform: rotate(-45deg);
}
.sticky-card__phone { display: block; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 1.16rem; margin-top: 12px; }
.sticky-card .muted { display: block; text-align: center; margin-top: 8px; }

/* ---------- grids & cards ---------- */
.grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } .grid { gap: 24px; } }

.card {
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.card h3 { margin-bottom: .4em; }
.card p { font-size: .95rem; }
.card--link:hover { border-color: var(--brand); box-shadow: 0 10px 26px rgba(21,33,46,.07); transform: translateY(-2px); }
.card__cta { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .93rem; }
.section--alt .card { background: #fff; }

/* cards with an image on top */
.card--media { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-alt); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.card--link.card--media:hover .card__media img { transform: scale(1.045); }
.card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
/* pin the CTA to the bottom so it lines up across cards of different text lengths */
.card__body .card__cta { margin-top: auto; padding-top: 12px; }
@media (prefers-reduced-motion: reduce) { .card__media img { transition: none; } }

/* the "all services" hub card reads differently to the five service cards */
.card--all .card__body { background: var(--brand-tint); }
.section--alt .card--all .card__body { background: var(--brand-tint); }

/* numbered process steps */
.step { position: relative; padding-left: 56px; }
.step__num {
  position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}

/* ---------- media band ---------- */
.media-band { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
@media (min-width: 900px) { .media-band { grid-template-columns: 1fr 1fr; gap: 46px; } .media-band--rev .media-band__img { order: 2; } }
.media-band__img img { border-radius: var(--radius); width: 100%; }

/* ---------- link list ---------- */
.linklist { display: grid; grid-template-columns: 1fr; gap: 10px; list-style: none; }
@media (min-width: 560px) { .linklist { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .linklist { grid-template-columns: repeat(4, 1fr); } }
.linklist a { display: block; padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); font-weight: 600; font-size: .94rem; }
.linklist a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* ---------- table ---------- */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; min-width: 540px; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .93rem; }
th { background: var(--bg-alt); font-family: var(--font-head); font-weight: 700; color: var(--ink); }
tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: none; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2px 20px; margin-bottom: 10px; }
.faq details[open] { border-color: var(--brand); }
.faq summary { cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: 15px 30px 15px 0; list-style: none; position: relative; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--brand); font-size: 1.5rem; line-height: 1; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { padding-bottom: 16px; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--brand); color: #fff; text-align: center; padding: 46px 18px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.94); max-width: 62ch; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 22px; }
.cta-band .btn { background: #fff; color: var(--brand); border-color: #fff; }
.cta-band .btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.cta-band .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.8); }
.cta-band .btn--ghost:hover { background: #fff; color: var(--brand); border-color: #fff; }

/* ---------- breadcrumbs (silo bar above footer, same dark band) ---------- */
.crumbs { background: var(--bg-dark); padding: 16px 0 0; font-size: .88rem; }
/* hairline between the crumbs and the footer; sits on the list so its edges
   line up exactly with the copyright bar inside the footer's .wrap */
.crumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.15);
}
.crumbs li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.62); }
.crumbs li + li::before { content: "\203A"; color: rgba(255,255,255,.38); }
.crumbs a { color: rgba(255,255,255,.72); font-weight: 600; }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current="page"] { color: #fff; font-weight: 700; }
/* crumbs sit flush against the footer, so drop the footer's own top padding */
.crumbs + .site-footer { padding-top: 30px; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.78); padding: 44px 0 24px; }
.footer-head { display: block; color: #fff; margin-bottom: 13px; font-family: var(--font-head); font-size: 1rem; font-weight: 700; letter-spacing: .01em; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 38px; } }
.site-footer p { color: rgba(255,255,255,.78); font-size: .92rem; }
.footer-nap { font-style: normal; color: rgba(255,255,255,.78); font-size: .92rem; line-height: 1.9; }
.footer-nap strong { color: #fff; }
.footer-nap a { font-size: .92rem; }
.footer-hours { color: #a8c66c; font-weight: 600; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255,255,255,.78); font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); margin-top: 34px; padding-top: 18px;
  font-size: .84rem; color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center;
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.footer-legal a { font-size: .84rem; color: rgba(255,255,255,.62); }

.wc-phone { font-weight: 700; }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--brand); padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform .28s ease;
  box-shadow: 0 -6px 20px rgba(0,0,0,.18);
}
.callbar.show { transform: translateY(0); }
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem;
}
.callbar a:hover { text-decoration: none; }
.callbar svg { width: 19px; height: 19px; fill: #fff; }
@media (min-width: 960px) { .callbar { display: none; } }
@media (max-width: 959px) { body.has-callbar { padding-bottom: 62px; } }

/* ---------- 404 ---------- */
.err-code { font-family: var(--font-head); font-size: clamp(3.4rem, 15vw, 6.5rem); font-weight: 800; color: var(--brand); line-height: 1; margin-bottom: 4px; }
.hero .err-code { color: #a8c66c; }   /* lighter green for contrast on the dark band */

/* ---------- scroll reveal ----------
   Scoped to .js so content is always visible without JavaScript, and
   switched off entirely for anyone who prefers reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(22px); will-change: opacity, transform; }
  .js .reveal.is-in {
    opacity: 1; transform: none;
    transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1);
  }
  /* children stagger in behind their section */
  .js .reveal-item { opacity: 0; transform: translateY(14px); }
  .js .reveal-item.is-in {
    opacity: 1; transform: none;
    transition: opacity .5s ease-out var(--d, 0ms), transform .5s ease-out var(--d, 0ms);
  }
}

/* ---------- misc ---------- */
.note { background: var(--brand-tint); border-left: 4px solid var(--brand); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin-top: 20px; }
.note p { color: var(--ink); font-size: .94rem; }
.map-embed { border: 0; width: 100%; height: 340px; border-radius: var(--radius); display: block; }
