/* Develtechhub Digital — warm sage & honey theme */
:root {
  --bg: #f3f6f1;
  --bg-soft: #e7eee6;
  --surface: #fafcf8;
  --ink: #24302a;
  --ink-soft: #4a5a52;
  --muted: #6d7c73;
  --forest: #3d5a4c;
  --forest-deep: #2d4339;
  --sage: #6b8f7a;
  --sage-light: #c5d6cb;
  --honey: #d4a054;
  --honey-soft: #f0dfc2;
  --clay: #b56b4f;
  --line: rgba(61, 90, 76, 0.14);
  --shadow: 0 12px 32px rgba(36, 48, 42, 0.08);
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --max: 72rem;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(212, 160, 84, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(107, 143, 122, 0.22), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--clay);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest-deep);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 0.75rem; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.35rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.35rem; margin: 0 0 0.5rem; }

p { margin: 0 0 1rem; }

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--forest);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(243, 246, 241, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--forest-deep);
  font-weight: 800;
  font-size: 1.05rem;
}

.brand:hover { color: var(--forest); }

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  background:
    radial-gradient(circle at 70% 28%, var(--honey) 0 28%, transparent 29%),
    linear-gradient(145deg, var(--sage), var(--forest));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px var(--line);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--forest);
  margin: 0 auto;
  position: relative;
  border-radius: 2px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--forest-deep);
}

.nav-cta {
  background: var(--forest);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 16px rgba(61, 90, 76, 0.22);
}

.nav-cta:hover {
  background: var(--forest-deep);
  color: #fff !important;
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1rem 1.25rem;
    display: none;
  }
  .site-nav.is-open { display: block; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-list a {
    display: block;
    padding: 0.7rem 0.85rem;
    border-radius: var(--radius-sm);
  }
  .nav-cta { text-align: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--forest);
  color: #fff;
  box-shadow: 0 10px 24px rgba(61, 90, 76, 0.25);
}

.btn-primary:hover { background: var(--forest-deep); color: #fff; }

.btn-secondary {
  background: var(--surface);
  color: var(--forest-deep);
  box-shadow: inset 0 0 0 1.5px var(--sage-light);
}

.btn-secondary:hover { color: var(--forest-deep); background: #fff; }

.btn-honey {
  background: var(--honey);
  color: #2a2418;
}

.btn-honey:hover { background: #c89242; color: #2a2418; }

.hero {
  position: relative;
  min-height: min(88vh, 44rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(36, 48, 42, 0.15) 0%, rgba(36, 48, 42, 0.55) 45%, rgba(36, 48, 42, 0.82) 100%);
}

.hero-content {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto 3.5rem;
  color: #f7faf5;
  max-width: 38rem;
  animation: riseIn 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 650;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,0.28);
}

.hero-line {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  margin: 0 0 0.65rem;
  color: var(--honey-soft);
}

.hero-copy {
  margin: 0 0 1.5rem;
  color: rgba(247, 250, 245, 0.9);
  max-width: 32rem;
}

.hero .btn-primary {
  background: var(--honey);
  color: #2a2418;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
}

.hero .btn-primary:hover {
  background: #e0b06a;
  color: #2a2418;
}

@keyframes heroDrift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-1.5%); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(0.8rem); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: fadeUp 0.7s var(--ease) both;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-soft {
  background: rgba(250, 252, 248, 0.65);
  border-block: 1px solid var(--line);
}

.section-intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.lede {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--forest);
  margin: 0;
}

.trust-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .trust-strip { grid-template-columns: 1fr; margin-top: -1.5rem; }
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .tile-grid { grid-template-columns: 1fr; }
}

.tile {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s var(--ease);
}

.tile:hover { transform: translateY(-4px); }

.tile-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.tile:hover .tile-media img { transform: scale(1.04); }

.tile-body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tile-meta {
  font-size: 0.85rem;
  color: var(--sage);
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.tile-body p { flex: 1; color: var(--ink-soft); }

.tile-link {
  font-weight: 800;
  text-decoration: none;
  color: var(--forest);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 700px) {
  .benefit-list { grid-template-columns: 1fr; }
}

.benefit-list li {
  position: relative;
  padding-left: 1.75rem;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--sage));
}

.benefit-list h3 { margin-bottom: 0.35rem; }
.benefit-list p { margin: 0; color: var(--ink-soft); }

.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .quote-grid { grid-template-columns: 1fr; }
}

.quote {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.quote p { font-size: 1.05rem; }
.quote footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.quote-wide { grid-column: 1 / -1; }

.cta-band {
  background:
    linear-gradient(135deg, rgba(61, 90, 76, 0.95), rgba(61, 90, 76, 0.82)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #f7faf5;
  border-radius: calc(var(--radius) + 0.35rem);
  padding: clamp(2rem, 5vw, 3rem);
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1.4fr auto;
}

.cta-band h2 { color: #fff; }
.cta-band p { margin: 0; color: rgba(247, 250, 245, 0.88); }

@media (max-width: 700px) {
  .cta-band { grid-template-columns: 1fr; }
}

.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 2rem;
}

.page-hero .lede { max-width: 40rem; }

.page-hero-media {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  max-height: 22rem;
}

.page-hero-media img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-tier {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.price-tier.is-featured {
  background: linear-gradient(180deg, #fff 0%, #eef5ef 100%);
  box-shadow: 0 16px 40px rgba(61, 90, 76, 0.16);
  border-color: var(--sage-light);
}

.price-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 0.35rem;
  color: var(--forest);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.5rem 0;
  color: var(--forest-deep);
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.price-tier ul {
  margin: 0 0 1.5rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

.form-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 850px) {
  .form-layout { grid-template-columns: 1fr; }
}

.contact-panel,
.form-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--forest-deep);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--sage-light);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(107, 143, 122, 0.22);
}

.form-group textarea { min-height: 9rem; resize: vertical; }

.field-error {
  color: var(--clay);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.35rem;
  display: none;
}

.form-group.has-error .field-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: var(--clay);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  background: #e5f2e8;
  color: var(--forest-deep);
}

.form-status.is-error {
  display: block;
  background: #f8e8e3;
  color: #7a3a2a;
}

.address-block {
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.7;
}

.module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.module-list li {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
}

.module-list strong { color: var(--forest); }

.instructor {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
}

.instructor img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 700px) {
  .outcomes { grid-template-columns: 1fr; }
  .instructor { grid-template-columns: 1fr; justify-items: start; }
}

.outcomes li {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--forest-deep);
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
}

.blog-list {
  display: grid;
  gap: 1.5rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--ease);
}

.blog-item:hover {
  transform: translateY(-3px);
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: cover;
}

.blog-item-body { padding: 1.15rem 1.15rem 1.15rem 0; }
.blog-item-body h2 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.blog-item-body p { margin: 0; color: var(--ink-soft); }

@media (max-width: 700px) {
  .blog-item { grid-template-columns: 1fr; }
  .blog-item-body { padding: 0 1.15rem 1.25rem; }
}

.article {
  max-width: 44rem;
  margin: 0 auto;
}

.article-meta {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.article figure {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.article figure img {
  width: 100%;
  max-height: 24rem;
  object-fit: cover;
}

.article figcaption {
  padding: 0.65rem 0.2rem 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal {
  max-width: 48rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--bg-soft);
  color: var(--forest-deep);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--sage);
  margin: 0;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 34rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(36, 48, 42, 0.18);
  padding: 1.25rem 1.35rem;
  display: none;
  animation: riseIn 0.45s var(--ease);
}

.cookie-banner.is-visible { display: block; }

.cookie-banner p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions .btn { padding: 0.65rem 1.1rem; font-size: 0.95rem; }

.inline-script-error {
  margin: 1rem;
  padding: 0.85rem 1rem;
  background: #f8e8e3;
  color: #7a3a2a;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.site-footer {
  margin-top: 3rem;
  background: var(--forest-deep);
  color: rgba(247, 250, 245, 0.86);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.65rem;
}

.footer-tag { color: rgba(247, 250, 245, 0.75); }

.footer-heading {
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-contact a {
  color: rgba(247, 250, 245, 0.8);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--honey-soft);
}

.footer-links li { margin-bottom: 0.4rem; }

.footer-address {
  font-style: normal;
  color: rgba(247, 250, 245, 0.75);
  margin-bottom: 0.75rem;
}

.footer-base {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  color: rgba(247, 250, 245, 0.6);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; }
}

.case-study {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.rating {
  color: var(--honey);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.prose-narrow { max-width: 40rem; }
