/* ==========================================================================
   Snap Roofing & Gutters — Brooklyn, NY
   Palette derived from the logo: forest green + stone + bone.
   Hi-vis amber is reserved exclusively for leak/emergency signalling.
   ========================================================================== */

:root {
  --green-900: #112B20;
  --green-800: #183B2B;
  --green-700: #24503B;
  --green-600: #2E6349;
  --green-500: #35785110;
  --green-400: #4E8C64;
  --stone: #C7C2B2;
  --stone-dim: #A99E86;
  --bone: #F5F2EA;
  --bone-deep: #EAE5D8;
  --paper: #FFFFFF;
  --ink: #14201A;
  --muted: #5C6B60;
  --line: #DCD7C9;
  --hivis: #F0B429;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --body: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
  --radius: 3px;
  --shadow: 0 1px 2px rgba(16, 41, 27, .06), 0 12px 32px -12px rgba(16, 41, 27, .18);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 6.2vw, 4.1rem); font-stretch: 92%; }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); letter-spacing: -.01em; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 760px; }

/* Eyebrow with the roofline mark — the brand's signature structural device */
.eyebrow {
  font-family: var(--display);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green-600);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 0 0 .9rem;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 11px;
  background: currentColor;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 76% 100%, 50% 38%, 24% 100%);
  flex: none;
}
.on-dark .eyebrow, .eyebrow.light { color: var(--stone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-600); }
.btn-ghost { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-ghost:hover { background: var(--green-700); color: #fff; }
.btn-light { background: var(--stone); color: var(--green-900); }
.btn-light:hover { background: #d7cfbb; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: #fff; color: var(--green-900); border-color: #fff; }
.btn-lg { font-size: 1.05rem; padding: 1.1rem 2rem; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--hivis);
  outline-offset: 2px;
}

/* ---------- Top call strip ---------- */
.topbar {
  background: var(--green-900);
  color: var(--stone);
  font-size: .82rem;
  letter-spacing: .04em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: .5rem; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--stone); }
.topbar .hours { color: var(--stone-dim); }
@media (max-width: 720px) { .topbar .hours { display: none; } .topbar .wrap { justify-content: center; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 152px; }
@media (max-width: 480px) { .brand img { width: 124px; } }

.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: .5rem .7rem; cursor: pointer;
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green-800); align-items: center; gap: .5rem;
}
.nav-toggle .bars { display: block; width: 18px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -6px; }
.nav-toggle .bars::after { top: 6px; }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--display); font-weight: 600; font-size: .92rem;
  color: var(--ink); text-decoration: none; padding: .55rem .7rem; border-radius: var(--radius);
}
.nav a:hover { background: var(--bone); color: var(--green-700); }
.nav a[aria-current="page"] { color: var(--green-700); box-shadow: inset 0 -2px 0 var(--green-700); }
.nav .btn { margin-left: .6rem; }

/* dropdown */
.has-sub { position: relative; }
.has-sub > button {
  font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--ink);
  background: none; border: 0; padding: .55rem .7rem; cursor: pointer; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: .35rem;
}
.has-sub > button::after { content: ""; border: 4px solid transparent; border-top-color: currentColor; margin-top: 4px; }
.has-sub > button:hover { background: var(--bone); color: var(--green-700); }
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 268px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: .4rem; display: none; z-index: 70;
}
.submenu.open { display: block; }
@media (hover: hover) and (min-width: 1001px) {
  .has-sub:hover .submenu, .has-sub:focus-within .submenu { display: block; }
}
.submenu a { display: block; padding: .6rem .75rem; font-size: .9rem; }

@media (min-width: 1001px) and (max-width: 1180px) {
  .nav a, .has-sub > button { font-size: .86rem; padding-inline: .5rem; }
  .nav .btn { font-size: .86rem; padding: .8rem 1.1rem; }
  .brand img { width: 132px; }
}

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: .6rem var(--gut) 1.4rem;
    max-height: 78vh; overflow-y: auto; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a, .has-sub > button { padding: .8rem .2rem; width: 100%; text-align: left; font-size: 1rem; }
  .nav > a, .has-sub { border-bottom: 1px solid var(--line); }
  .submenu { position: static; display: block; border: 0; box-shadow: none; padding: 0 0 .5rem .9rem; min-width: 0; }
  .submenu a { padding: .55rem .2rem; color: var(--muted); border: 0; }
  .nav .btn { margin: .9rem 0 0; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--green-900); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,43,32,.95) 0%, rgba(17,43,32,.86) 42%, rgba(17,43,32,.55) 100%);
}
@media (max-width: 860px) {
  .hero-media::after { background: linear-gradient(180deg, rgba(17,43,32,.9) 0%, rgba(17,43,32,.88) 55%, rgba(17,43,32,.94) 100%); }
}
.hero .wrap { position: relative; z-index: 2; padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero-copy { max-width: 660px; }
.hero h1 { color: #fff; margin-bottom: .55rem; }
.hero h1 .accent { color: var(--stone); display: block; }
.hero .lede { font-size: clamp(1.05rem, 2.1vw, 1.22rem); color: #DCE6DD; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem; margin-top: 2.2rem;
  padding-top: 1.4rem; border-top: 1px solid rgba(198,188,164,.28);
  font-family: var(--display); font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--stone);
}
.hero-trust span { display: flex; align-items: center; gap: .45rem; }
.hero-trust span::before { content: ""; width: 6px; height: 6px; background: var(--stone); transform: rotate(45deg); }

/* page header for interior pages */
.page-head { background: var(--green-800); color: #fff; padding-block: clamp(2.6rem, 6vw, 4.2rem); }
.page-head h1 { color: #fff; margin-bottom: .35rem; }
.page-head p { color: #CFDDD2; max-width: 62ch; font-size: 1.08rem; }
.page-head .eyebrow { color: var(--stone); }
.crumbs { font-size: .82rem; color: var(--stone-dim); margin-bottom: 1rem; }
.crumbs a { color: var(--stone); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-bone { background: var(--bone); }
.section-green { background: var(--green-800); color: #fff; }
.section-green h2, .section-green h3 { color: #fff; }
.section-green p { color: #CFDDD2; }
.section-head { max-width: 660px; margin-bottom: 2.6rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-green .section-head p { color: #CFDDD2; }


/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.15rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .98rem; }
a.card { text-decoration: none; color: inherit; }
a.card:hover { border-color: var(--green-600); transform: translateY(-3px); box-shadow: var(--shadow); }
.card .more {
  margin-top: auto; padding-top: 1.1rem;
  font-family: var(--display); font-weight: 700; font-size: .87rem;
  color: var(--green-700); letter-spacing: .02em;
}
.card .more::after { content: " →"; }
.section-bone .card { background: var(--paper); }
.section-green .card { background: rgba(255,255,255,.05); border-color: rgba(198,188,164,.25); }
.section-green .card p { color: #C3D3C7; }
.section-green .card .more { color: var(--stone); }

.icon-roof {
  width: 34px; height: 20px; background: var(--green-600); margin-bottom: 1rem;
  clip-path: polygon(0 100%, 50% 0, 100% 100%, 74% 100%, 50% 44%, 26% 100%);
}
.section-green .icon-roof { background: var(--stone); }

/* value props */
.props { display: grid; gap: 1.6rem 2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.prop h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.prop p { color: var(--muted); font-size: .96rem; }
.prop .num {
  font-family: var(--display); font-weight: 800; font-size: .78rem; letter-spacing: .14em;
  color: var(--stone-dim); display: block; margin-bottom: .6rem;
}
.section-green .prop p { color: #C3D3C7; }

/* ---------- Split media ---------- */
.split { display: grid; gap: clamp(1.8rem, 5vw, 3.6rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.media-right .split-media { order: 2; } }
.split-media img { border-radius: var(--radius); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split ul { padding-left: 0; list-style: none; margin: 1.3rem 0; }
.split ul li { position: relative; padding-left: 1.75rem; margin-bottom: .7rem; }
.split ul li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 13px; height: 8px; background: var(--green-600);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.section-green .split ul li::before { background: var(--stone); }

/* ---------- Process (a real sequence, so it is numbered) ---------- */
.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.step { position: relative; padding-top: 1.6rem; border-top: 2px solid var(--green-600); }
.section-green .step { border-top-color: var(--stone); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--display); font-weight: 800; font-size: .82rem; letter-spacing: .12em;
  color: var(--green-600); position: absolute; top: -1.65rem; left: 0;
}
.section-green .step::before { color: var(--stone); }
.step h3 { font-size: 1.08rem; margin-bottom: .35rem; }
.step p { color: var(--muted); font-size: .95rem; }
.section-green .step p { color: #C3D3C7; }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bone-deep); }
.shot img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform .5s ease; }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem .9rem .8rem;
  background: linear-gradient(180deg, transparent, rgba(17,43,32,.9));
  color: #fff; font-size: .84rem; font-family: var(--display); font-weight: 600;
}
.shot.wide { grid-column: span 2; }
.shot.wide img { aspect-ratio: 16/10; }
@media (max-width: 640px) { .shot.wide { grid-column: span 1; } .shot.wide img { aspect-ratio: 4/5; } }

/* ---------- Reviews ---------- */
.review {
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--green-600);
  border-radius: var(--radius); padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
}
.section-green .review { background: rgba(255,255,255,.06); border-color: rgba(198,188,164,.25); border-left-color: var(--stone); }
.section-green .review blockquote { color: #E4EDE6; }
.section-green .review cite { color: var(--stone); }
.section-green .review cite span { color: #A8BCAE; }

.stars { color: var(--hivis); letter-spacing: .1em; font-size: 1rem; margin-bottom: .8rem; }
.review blockquote { margin: 0 0 1.1rem; font-size: 1.02rem; }
.review cite {
  margin-top: auto; font-style: normal; font-family: var(--display); font-weight: 700;
  font-size: .88rem; color: var(--green-700);
}
.review cite span { display: block; font-weight: 500; color: var(--muted); font-size: .8rem; letter-spacing: .04em; }

/* ---------- Emergency strip (the only place hi-vis appears) ---------- */
.leak-strip { background: var(--hivis); color: var(--green-900); }
.leak-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 1.1rem;
}
.leak-strip p { font-family: var(--display); font-weight: 800; font-size: clamp(1rem, 2.4vw, 1.25rem); margin: 0; }
.leak-strip a {
  color: var(--green-900); font-family: var(--display); font-weight: 800; text-decoration: none;
  border-bottom: 2px solid var(--green-900); white-space: nowrap;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.4rem 1.15rem 0; position: relative;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--green-800);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .4rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--green-600);
}
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 2.4rem 1.35rem 0; color: var(--muted); }

/* ---------- Areas ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.chips a {
  font-family: var(--display); font-weight: 600; font-size: .87rem;
  padding: .5rem .95rem; border: 1px solid var(--line); border-radius: 100px;
  text-decoration: none; color: var(--green-800); background: var(--paper);
}
.chips a:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.section-green .chips a { background: transparent; border-color: rgba(198,188,164,.35); color: var(--stone); }
.section-green .chips a:hover { background: var(--stone); color: var(--green-900); }

/* ---------- Form ---------- */
.form-shell {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--shadow);
}
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-family: var(--display); font-weight: 700; font-size: .84rem;
  letter-spacing: .04em; margin-bottom: .4rem; color: var(--green-800);
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 1rem; color: var(--ink);
  padding: .85rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  background: var(--paper); transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-600); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; gap: 0 1.05rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .field-row { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .9rem; }
.form-status {
  background: #FFF6E0; border: 1.5px solid var(--hivis); border-left-width: 4px;
  border-radius: var(--radius); padding: 1rem 1.1rem; margin-bottom: 1.4rem;
  font-size: .96rem; color: var(--ink); line-height: 1.55;
}
.form-status a { color: var(--green-700); font-weight: 600; }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------- Contact detail list ---------- */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .k {
  font-family: var(--display); font-weight: 700; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); display: block; margin-bottom: .2rem;
}
.contact-list .v { font-size: 1.12rem; font-weight: 600; color: var(--green-800); text-decoration: none; }
.contact-list .v:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #B9C9BD; padding-block: clamp(2.8rem, 6vw, 4rem) 1.5rem; }
.site-footer h4 {
  font-family: var(--display); font-weight: 700; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--stone); margin: 0 0 1rem;
}
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.footer-brand img { width: 190px; background: var(--bone); padding: .7rem .9rem; border-radius: var(--radius); }
.footer-brand p { margin-top: 1.1rem; font-size: .93rem; max-width: 34ch; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: #B9C9BD; text-decoration: none; font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid rgba(198,188,164,.3); border-radius: var(--radius); color: var(--stone);
}
.socials a:hover { background: var(--stone); color: var(--green-900); border-color: var(--stone); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.legal {
  margin-top: 2.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(198,188,164,.2);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .8rem; color: #8DA093;
}

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; background: var(--green-900);
  border-top: 1px solid rgba(198,188,164,.25);
  padding: .55rem .6rem calc(.55rem + env(safe-area-inset-bottom));
  gap: .5rem;
}
.mobile-bar a {
  flex: 1; text-align: center; padding: .85rem .5rem; border-radius: var(--radius);
  font-family: var(--display); font-weight: 700; font-size: .92rem; text-decoration: none;
}
.mobile-bar .call { background: var(--stone); color: var(--green-900); }
.mobile-bar .text { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.mobile-bar .quote { background: var(--green-600); color: #fff; }
@media (max-width: 860px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
}

.skip {
  position: absolute; left: -9999px; background: var(--hivis); color: var(--green-900);
  padding: .8rem 1.2rem; font-weight: 700; z-index: 100;
}
.skip:focus { left: .5rem; top: .5rem; }

.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .95rem; }
.prose th, .prose td { text-align: left; padding: .8rem .7rem; border-bottom: 1px solid var(--line); }
.prose th { font-family: var(--display); font-weight: 700; background: var(--bone); }
