@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 500 650;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #14160f;
  --ink-soft: #3a3d32;
  --paper: #f3eee4;
  --paper-2: #fffdf8;
  --line: #d4cbb8;
  --sage: #1b4636;
  --sage-2: #246049;
  --copper: #b44a1f;
  --copper-2: #cf5c2a;
  --gold: #c2a36a;
  --danger: #8f2a2a;
  --ok: #1c5c3c;
  --shadow: 0 18px 40px rgba(20, 22, 15, 0.08);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Outfit", "Avenir Next", system-ui, sans-serif;
  --bar-h: 4.6rem;
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  padding-bottom: calc(var(--bar-h) + 1.25rem);
}

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

a {
  color: var(--sage);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 80;
}

.skip-link:focus {
  top: 0.75rem;
}

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

.site-wrap,
.container,
.container-sm,
.container-md,
.container-lg,
.container-fluid {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}

.site-header__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 1rem;
  background: var(--ink);
  color: #efe8d8;
  font-size: 0.82rem;
}

.site-header__bar a {
  color: #efe8d8;
}

.site-header__meta {
  margin: 0;
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.site-logo img {
  display: block;
  height: 2.6rem;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

.site-nav a,
.site-nav summary {
  color: var(--ink);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
  cursor: pointer;
}

.site-nav a.is-active {
  color: var(--copper);
}

.site-nav__drop {
  position: relative;
}

.site-nav__drop summary {
  list-style: none;
}

.site-nav__drop summary::-webkit-details-marker {
  display: none;
}

.site-nav__drop div {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 14rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 0.6rem;
  display: grid;
  gap: 0.35rem;
  z-index: 20;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.6rem;
  height: 2.6rem;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  margin: 0 auto;
}

.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;
}

.btn,
.button,
.wb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  background: var(--ink);
  color: #fff !important;
}

.btn-primary,
.button {
  background: var(--copper);
}

.btn-primary:hover,
.button:hover,
.wb-button.secondary:hover {
  background: var(--copper-2);
}

.btn-ghost,
.wb-button {
  background: transparent;
  color: var(--ink) !important;
  border: 1px solid var(--line);
}

.btn-call {
  background: var(--sage);
  flex-direction: column;
  align-items: flex-start;
  padding: 0.45rem 0.9rem;
  line-height: 1.15;
}

.btn-call span {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

.btn-block {
  width: 100%;
}

.text-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--sage);
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.hero-premium {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(196, 163, 106, 0.28), transparent 36%),
    linear-gradient(160deg, #1b4636 0%, #14160f 58%, #3a2416 100%);
  color: #f6f0e4;
}

.hero-premium .site-wrap {
  display: grid;
  gap: 2rem;
}

.hero-premium h1 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.05;
  font-weight: 650;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-premium p.lede {
  font-size: 1.15rem;
  max-width: 36rem;
  color: #efe4cf;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-facts li {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(246, 240, 228, 0.18);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.88rem;
}

.hero-premium .btn-ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35);
}

.legacy-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1.2rem 0 0;
}

.page-header {
  min-height: 15rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 22, 15, 0.2), rgba(20, 22, 15, 0.72));
}

.page-header .container-lg,
.page-header .ph-text {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-header h1 {
  color: #fff;
  padding: 3.2rem 0 1.4rem;
}

.content-wrapper,
.legacy-main .about,
.legacy-main .pricing,
.legacy-main .contact-page {
  padding-top: 0.5rem;
}

.price-table,
.legacy-main .sidebar,
.hero-form-content {
  margin-top: 1rem;
}

.secondary-bg {
  background: var(--sage) !important;
  color: #fff;
}

.legacy-main .content-wrapper {
  padding: 1.5rem 0 2.5rem;
}

.site-section {
  padding: 3.2rem 0;
}

.site-section h2,
.heading h1,
.heading h2,
main h1,
.legacy-main h1 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 650;
  color: #8a3416;
  margin: 0 0 0.5rem;
}

.hero-premium .eyebrow {
  color: #e8c078;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr));
  gap: 1rem;
}

.svc-card,
.card-holder {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.15rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.svc-card h3,
.svc-card h5,
.card-holder h5 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0;
}

.svc-card .from,
.price h5 {
  color: var(--sage);
  font-weight: 650;
}

.svc-card p {
  margin: 0;
  color: var(--ink-soft);
}

.svc-card__actions,
.ch-footer .row {
  display: flex;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 0.7rem;
}

.trust-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 1rem;
}

.trust-card,
.step-card {
  background: var(--paper-2);
  padding: 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
}

.coverage-note {
  background: #efe6d2;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.1rem;
}

.phone-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.55rem 0.7rem calc(0.55rem + env(safe-area-inset-bottom));
  background: rgba(20, 22, 15, 0.94);
  backdrop-filter: blur(10px);
}

.phone-bar .btn {
  flex: 1;
}

.site-footer {
  background: var(--ink);
  color: #efe8d8;
  padding: 3rem 0 6.5rem;
  margin-top: 2rem;
}

.site-footer a,
.site-footer .text-btn {
  color: #efe8d8;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.5rem;
}

.site-footer__brand,
.site-footer__label {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.site-footer__copy {
  text-align: center;
  opacity: 0.7;
  font-size: 0.85rem;
  margin: 2rem 0 0;
}

.quote-modal[hidden] {
  display: none;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 15, 0.62);
}

.quote-modal__dialog {
  position: relative;
  width: min(34rem, calc(100% - 1.4rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin: 1rem auto;
  background: var(--paper-2);
  border-radius: 1.15rem;
  padding: 1.3rem 1.2rem 1.4rem;
  box-shadow: var(--shadow);
}

.quote-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.quote-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0;
  margin: 0 0 1rem;
  list-style: none;
}

.quote-prices li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.8rem;
}

.quote-form {
  display: grid;
  gap: 0.75rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.field input,
.field select,
.field textarea,
.form-control,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.7rem 0.75rem;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.form-control:focus {
  outline: 2px solid var(--sage);
  border-color: var(--sage);
}

.field.is-invalid input,
.field.is-invalid select {
  border-color: var(--danger);
}

.field-error,
.quote-form__status.is-error {
  color: var(--danger);
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
}

.quote-form__status.is-loading {
  color: var(--ink-soft);
}

.quote-form__fine {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.optional {
  font-weight: 400;
  color: var(--ink-soft);
}

.faq-item,
#faqs article {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}

.faq-item h3,
#faqs h3 {
  font-family: var(--serif);
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.area-cover .nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border: 0;
}

.area-cover .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.area-cover .nav-link.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.area-cover .tab-pane {
  display: none;
}

.area-cover .tab-pane.active,
.area-cover .tab-pane.show {
  display: block;
}

.flex-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 0.4rem 1rem;
}

.flex-item {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flex-item li {
  margin: 0.2rem 0;
}

.legacy-main,
.hero,
.services,
.content-wrapper,
.contact-page,
.appointment-page {
  background: var(--paper);
}

.top-header,
.navbar.navbar-dark,
.navbar-toggler {
  display: none !important;
}

.hero {
  padding: 2.4rem 0 1.5rem;
}

.hero-text h1,
.heading-copy h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.hero-form-content,
.card,
.table,
table {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

th,
td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.ch-image-holder {
  display: none;
}

.star {
  color: var(--gold);
  font-size: 0.8rem;
}

body.quote-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header__bar {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .site-nav summary,
  .site-nav .btn {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
  }

  .site-nav__drop div {
    position: static;
    box-shadow: none;
  }

  .hero-premium {
    padding-top: 2.2rem;
  }
}

@media (min-width: 900px) {
  .phone-bar {
    padding-inline: calc((100vw - min(var(--max), 100vw - 2rem)) / 2);
  }
}

.prices-page .price-answer {
  font-size: 1.06rem;
  max-width: 46rem;
}

.prices-page section {
  margin: 2.2rem 0 0;
}

.price-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.1rem 0;
}

.price-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 1.3rem 0 0.4rem;
}

.price-jump a {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 550;
}

.price-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.4rem;
}

.price-table-wrap table.price-table {
  min-width: 38rem;
}

.price-table-wrap table.price-table thead th:nth-child(4),
.price-table-wrap table.price-table tbody td:nth-child(4) {
  min-width: 10rem;
}

table.price-table th[scope="row"] {
  font-weight: 600;
}

.quote-on-request {
  font-weight: 650;
  color: var(--sage);
  white-space: nowrap;
}

.price-method {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.9rem 1rem;
}

.source-list {
  padding-left: 1.2rem;
}

.source-list li {
  margin: 0.35rem 0;
}

.source-date {
  color: var(--ink-soft);
  font-size: 0.88em;
}

/* Individual area / borough pages */
.area-page .area-hero {
  padding: 1.35rem 0 1.6rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 163, 106, 0.18), transparent 42%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
}

.area-hero__grid {
  display: grid;
  gap: 1.25rem;
}

.area-quote {
  order: -1;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: var(--shadow);
}

.area-quote h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
}

.area-quote .table,
.area-price-table {
  margin: 0.85rem 0 0.3rem;
}

.area-price-table th,
.area-price-table td {
  padding: 0.48rem 0.65rem;
  font-size: 0.92rem;
}

.area-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0.35rem;
}

.area-cta .btn {
  flex: 1 1 10rem;
  justify-content: center;
  text-align: center;
}

.area-quote__fine {
  margin: 0.55rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.area-crumbs {
  font-size: 0.88rem;
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
}

.area-crumbs a {
  text-decoration: none;
}

.area-meta {
  margin: 0 0 0.75rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.area-hero__copy .lede {
  font-size: 1.08rem;
  max-width: 36rem;
}

.area-hero__copy .hero-facts {
  margin-top: 1rem;
}

.area-hero__copy .hero-facts li {
  background: var(--paper-2);
  border-color: var(--line);
  color: var(--ink);
}

.area-need-grid h3,
.area-steps h3,
.area-faq__item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.area-steps {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  counter-reset: area-step;
}

.area-steps .step-card {
  counter-increment: area-step;
}

.area-steps .step-card h3::before {
  content: counter(area-step) ". ";
  color: var(--copper);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0 0 1.4rem;
  list-style: none;
}

.area-chips a {
  display: inline-block;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
}

.area-chips a:hover {
  border-color: var(--copper);
}

.area-empty {
  color: var(--ink-soft);
}

.area-faq__list {
  display: grid;
  gap: 0.75rem;
}

.area-faq__item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 1rem 1.1rem;
}

.area-guides {
  margin: 1.2rem 0 0;
}

.area-trust {
  padding-top: 0.4rem;
}

.area-trust__card h2 {
  margin-bottom: 0.5rem;
}

.borough-hero .lede {
  max-width: 44rem;
}

.borough-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  margin: 0.85rem 0 1.4rem;
}

.borough-jump a {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 550;
}

.borough-jump a:hover {
  border-color: var(--copper);
}

.borough-grid {
  display: grid;
  gap: 1.1rem;
}

.borough-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: var(--shadow);
}

.borough-card h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  margin: 0 0 0.25rem;
}

.borough-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0.85rem 0 0.55rem;
}

.borough-card__meta,
.borough-card__page {
  margin: 0 0 0.45rem;
  color: var(--ink-soft);
}

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

.crumbs {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.article-hero img,
.blog-card img {
  width: 100%;
  border-radius: 1rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper-2);
}

.answer-lede {
  font-size: 1.12rem;
  max-width: 42rem;
}

.article-body {
  max-width: 44rem;
}

.article-body h2 {
  margin-top: 1.8rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: 1.15rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.blog-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card a {
  color: inherit;
  text-decoration: none;
}

.blog-card h2 {
  font-size: 1.2rem;
  margin: 0.85rem 1rem 0.35rem;
}

.blog-card p {
  margin: 0 1rem 1rem;
  color: var(--ink-soft);
}

.related-posts {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  margin: 0 0 1rem;
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
}

@media (min-width: 900px) {
  .area-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
    align-items: start;
  }

  .area-hero__copy {
    order: 0;
  }

  .area-quote {
    order: 1;
    position: sticky;
    top: 5.6rem;
  }
}
