/* Briefing Desk — commercial brand system
   Copper #C45C26 · ink #11100E · paper #F7F0E6
   Outfit 800 (display) + Source Sans 3 (body) + IBM Plex Mono (labels)
   Photo-heavy ops consultancy — high-contrast blocks, no gradients */

:root {
  --ink: #11100E;
  --ink-soft: #2C2A27;
  --muted: #6B6560;
  --line: #D9D0C3;
  --line-soft: #E8E1D5;
  --paper: #F7F0E6;
  --paper-deep: #EDE4D6;
  --surface: #FFFFFF;
  --copper: #C45C26;
  --copper-hover: #A64A1E;
  --copper-soft: #F3E4DA;
  --copper-bright: #D4682E;
  --slate: #3D4F5F;
  --sage: #5A8F7B;
  --radius: 4px;
  --font: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --display: "Outfit", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --wrap: 1180px;
  --narrow: 640px;
  --prose: 680px;
  --header-h: 4.25rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--copper);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
a:hover { color: var(--copper-hover); }
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}
.wrap.narrow { width: min(100% - 2rem, var(--narrow)); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.logo:hover { color: var(--ink); }
.logo-mark { width: 1.7rem; height: 1.7rem; flex-shrink: 0; }
.logo-mark svg { width: 100%; height: 100%; }
.logo-sub {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 0.1rem;
  border-left: 1px solid var(--line);
  padding-left: 0.6rem;
}
.nav { display: none; align-items: center; gap: 1.35rem; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--copper);
  padding-bottom: 0.1rem;
}
.nav-cta {
  background: var(--copper) !important;
  color: #fff !important;
  padding: 0.55rem 0.95rem !important;
  box-shadow: none !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--copper-hover) !important; }
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 0.5rem 1.25rem 1rem;
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
}
@media (min-width: 900px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* Type — heavy commercial sans */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
h1 { font-size: clamp(2.25rem, 5.2vw, 3.5rem); }
h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--copper);
}
h2 { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.025em; font-weight: 800; }
p { margin: 0 0 1rem; }
.lede {
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36em;
}
.lede-sm {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 34em;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 0.7rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-copper {
  background: var(--copper);
  color: #fff;
  border-color: var(--copper);
}
.btn-copper:hover {
  background: var(--copper-hover);
  border-color: var(--copper-hover);
  color: #fff;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Photo hero — solid overlay wash, no gradients */
.hero-photo {
  position: relative;
  min-height: clamp(28rem, 62vw, 36rem);
  display: flex;
  align-items: flex-end;
  background: var(--ink);
  overflow: hidden;
}
.hero-photo__media { position: absolute; inset: 0; }
.hero-photo__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-photo__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,16,14,0.66);
}
@media (min-width: 880px) {
  .hero-photo__overlay {
    background: rgba(17,16,14,0.42);
    box-shadow: inset min(38rem, 55vw) 0 0 rgba(17,16,14,0.82);
  }
}
.hero-photo__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
  padding: 3.5rem 0 3rem;
  color: var(--paper);
  max-width: 40rem;
}
.hero-photo__content .eyebrow { color: var(--copper-bright); }
.hero-photo__content h1 { color: #fff; margin-bottom: 1rem; }
.hero-photo__content .lede { color: #E8E1D5; }
.hero-photo__content .hero-actions { margin-top: 1.75rem; }
.hero-photo__content .btn-ghost {
  border-color: rgba(246,241,232,0.55);
  color: #fff;
}
.hero-photo__content .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
@media (max-width: 700px) {
  .hero-photo { min-height: 0; display: block; }
  .hero-photo__media { position: relative; height: 14rem; }
  .hero-photo__overlay {
    background: rgba(17,16,14,0.28);
    box-shadow: none;
  }
  .hero-photo__content {
    padding: 1.75rem 0 2rem;
    max-width: none;
    background: var(--ink);
  }
}

/* Proof strip — dark utility bar */
.proof-strip {
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--copper);
  padding: 1.4rem 0;
}
.proof-strip ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 800px) {
  .proof-strip ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.proof-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-right: 0.5rem;
}
.proof-strip .stat {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.proof-strip .label {
  font-size: 0.8rem;
  color: #B8B0A4;
  line-height: 1.35;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-alt {
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}
.section-ink {
  background: var(--ink);
  color: var(--paper);
}
.section-ink h2,
.section-ink h3 { color: var(--paper); }
.section-ink p,
.section-ink li { color: #C8C2B8; }
.section-ink a { color: var(--copper-bright); }
.section-kicker {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid var(--line);
}
.section-ink .section-kicker { border-bottom-color: #2A2826; }
.section-kicker .idx {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.statement { display: grid; gap: 1.25rem; }
@media (min-width: 800px) {
  .statement {
    grid-template-columns: 7.5rem 1fr;
    gap: 2.25rem;
    align-items: start;
  }
}
.statement-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
  padding-top: 0.35rem;
  font-weight: 500;
}
.statement-body h2 { margin-bottom: 1rem; }
.statement-body p:last-child { margin-bottom: 0; }

/* Photo service cards */
.card-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
}
.photo-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.photo-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-deep);
}
.photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-card__body {
  padding: 1.25rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.35rem;
}
.photo-card__body h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.photo-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.975rem;
  flex: 1;
}
.photo-card__meta {
  margin-top: 1rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

/* Split + media */
.split-illust {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .split-illust {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.75rem;
  }
  .split-illust.reverse { grid-template-columns: 1.05fr 1fr; }
  .split-illust.reverse .illust-frame { order: -1; }
}
.illust-frame {
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  border-radius: var(--radius);
}
.illust-frame img { width: 100%; }
.illust-frame.photo img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.work-list li {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .work-list li {
    grid-template-columns: 5.5rem 1fr;
    gap: 1.35rem;
    align-items: start;
  }
}
.work-list .num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.work-list h3 { margin-bottom: 0.35rem; }
.work-list p { margin: 0; color: var(--muted); }

/* Tariff */
.tariff {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.tariff-row {
  display: grid;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.tariff-row:last-child { border-bottom: none; }
@media (min-width: 800px) {
  .tariff-row {
    grid-template-columns: 1fr 8rem 11rem;
    align-items: start;
    gap: 1.5rem;
  }
}
.tariff-row.featured {
  background: var(--ink);
  color: var(--paper);
}
.tariff-row.featured h3 { color: var(--paper); }
.tariff-row.featured p,
.tariff-row.featured li { color: #C8C2B8; }
.tariff-row.featured .price { color: var(--copper-bright); }
.tariff-row ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.tariff-row.featured ul { color: #C8C2B8; }
.tariff-row li { margin-bottom: 0.35rem; }
.price {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.price small {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tariff-row.featured .price small { color: #9A948C; }
.tariff-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}
@media (min-width: 800px) {
  .tariff-actions { align-items: flex-end; }
}

/* Trust */
.trust-bar { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .trust-bar { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.trust-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
}
.trust-item h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.trust-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Process */
.process {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.process li {
  position: relative;
  padding: 1.6rem 0 1.6rem 4rem;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}
.process li:last-child { border-bottom: none; }
.process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.7rem;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--copper);
  font-weight: 500;
}
.process h3 { margin-bottom: 0.4rem; }
.process p { margin: 0; color: var(--muted); max-width: 40em; }
.process-visual { display: grid; gap: 1.5rem; }
@media (min-width: 900px) {
  .process-visual {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
  }
}

/* Page hero */
.page-hero {
  padding: 2.75rem 0 2.25rem;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  background: var(--paper);
}
.page-hero .wrap { padding-left: 0.5rem; }
.page-hero .lede { margin-bottom: 0; }

/* About */
.about-grid { display: grid; gap: 2rem; }
@media (min-width: 840px) {
  .about-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.75rem;
  }
}
.about-aside {
  background: var(--ink);
  color: var(--paper);
  padding: 1.5rem;
  border-radius: var(--radius);
  height: fit-content;
}
.about-aside dl { margin: 0; }
.about-aside dl > div {
  padding: 0.85rem 0;
  border-bottom: 1px solid #2A2826;
}
.about-aside dl > div:last-child { border-bottom: none; padding-bottom: 0; }
.about-aside dl > div:first-child { padding-top: 0; }
.about-aside dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin: 0 0 0.25rem;
  font-weight: 500;
}
.about-aside dd { margin: 0; color: var(--paper); }
.about-aside a { color: var(--paper); text-decoration-color: var(--copper); }
.about-aside a:hover { color: var(--copper-bright); }

.rule-cols {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 800px) {
  .rule-cols { grid-template-columns: repeat(3, 1fr); }
}
.rule-col {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .rule-col {
    padding: 1.6rem 1.35rem 1.6rem 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
  }
  .rule-col:last-child {
    border-right: none;
    padding-right: 0;
    padding-left: 1.35rem;
  }
  .rule-col:first-child { padding-left: 0; }
  .rule-col:nth-child(2) { padding-left: 1.35rem; }
}
.rule-col h3 { margin-bottom: 0.5rem; }
.rule-col p { margin: 0; color: var(--muted); font-size: 0.975rem; }

/* Contact */
.contact-panel { display: grid; gap: 1.25rem; }
@media (min-width: 800px) {
  .contact-panel { grid-template-columns: 1fr 1.1fr; gap: 1.5rem; }
}
.contact-card,
.discovery-box {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.6rem;
  border-radius: var(--radius);
}
.contact-card dl { margin: 1.25rem 0 0; }
.contact-card dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-card dt {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  padding-top: 0.2rem;
  font-weight: 500;
}
.contact-card dd { margin: 0; }
.discovery-box ul {
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
  color: var(--muted);
}
.discovery-box li { margin-bottom: 0.4rem; }
.contact-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.payment-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}
.payment-list li { margin-bottom: 0.65rem; }

/* Legal */
.legal-prose { max-width: var(--prose); }
.legal-prose h2 { margin-top: 2.25rem; font-size: 1.3rem; }
.legal-prose h3 { margin-top: 1.5rem; font-size: 1.1rem; }
.meta-line {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--muted);
}
.notice {
  background: var(--copper-soft);
  border-left: 3px solid var(--copper);
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.notice p { margin: 0; }

/* CTA */
.cta-band { padding: 3.25rem 0; }
.cta-band-inner { display: grid; gap: 1.35rem; }
@media (min-width: 720px) {
  .cta-band-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 2rem;
  }
}
.cta-band .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.cta-band.cta-strong {
  background: var(--ink);
  color: var(--paper);
  border-block: none;
}
.cta-band.cta-strong h2 { color: #fff; }
.cta-band.cta-strong .lede-sm,
.cta-band.cta-strong p { color: #C8C2B8; }
.cta-band.cta-strong .eyebrow { color: var(--copper-bright); }
.cta-band.cta-strong .btn-ghost {
  border-color: rgba(246,241,232,0.5);
  color: #fff;
}
.cta-band.cta-strong .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #9A948C;
  padding: 3rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }
}
.site-footer .footer-brand {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.site-footer a { color: var(--paper); text-decoration: none; }
.site-footer a:hover { color: var(--copper-bright); }
.footer-col h3 {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin: 0 0 0.85rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #2A2826;
  font-size: 0.875rem;
}
.footer-bottom nav { display: flex; gap: 1.25rem; }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.faq summary {
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  font-family: var(--mono);
  color: var(--copper);
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  max-width: 40em;
}

.prose-block { max-width: var(--prose); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
