/* ============================================================
   RESOLVE ADVISORY — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ── */
:root {
  --cream:        #F3EDE6;
  --cream-mid:    #EAE0D6;
  --cream-dark:   #E0D5C8;
  --charcoal:     #1A1A24;
  --text:         #1C1C28;
  --gold:         #B8916A;
  --divider:      rgba(28,28,40,0.1);
  --warm-white:   #FDFAF7;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --nav-h:        68px;
  --max-w:        1200px;
  --pad-x:        clamp(28px, 6vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
p, li, h1, h2, h3, h4, a, button {
  overflow-wrap: break-word;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 var(--pad-x);
  gap: 40px;
  transition: background 0.4s, color 0.4s, border-color 0.4s;
}
.nav--dark  { color: var(--warm-white); }
.nav--light { color: var(--text); background: var(--cream); border-bottom: 1px solid var(--divider); }

.nav__wordmark {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: auto;
}
.nav__wordmark img {
  width: clamp(150px, 14vw, 186px);
  height: auto;
  display: block;
}
.nav__wordmark .nav__logo--light { display: none; }
.nav--dark .nav__logo--dark { display: none; }
.nav--dark .nav__logo--light { display: block; }
.nav--light .nav__logo--dark,
.nav.open .nav__logo--dark { display: block; }
.nav--light .nav__logo--light,
.nav.open .nav__logo--light { display: none; }
.footer__wordmark img {
  filter: drop-shadow(0 0 1px rgba(253,250,247,0.72));
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  position: relative;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav__links a:hover { opacity: 0.55; }
.nav__links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  border: 1px solid currentColor;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav--dark  .nav__cta:hover { background: var(--warm-white); color: var(--charcoal); }
.nav--light .nav__cta { background: var(--charcoal); color: var(--warm-white); border-color: var(--charcoal); }
.nav--light .nav__cta:hover { background: transparent; color: var(--text); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  color: inherit;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Mobile nav ── */
@media (max-width: 840px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav.open {
    color: var(--warm-white);
    background: var(--charcoal);
    border-bottom-color: rgba(253,250,247,0.14);
  }
  .nav.open .nav__logo--dark { display: none; }
  .nav.open .nav__logo--light { display: block; }
  .nav.open .nav__hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav.open .nav__hamburger span:nth-child(2) { opacity: 0; }
  .nav.open .nav__hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--charcoal);
    color: var(--warm-white);
    padding: 28px var(--pad-x) 44px;
    gap: 22px;
    border-bottom: 1px solid rgba(253,250,247,0.14);
    z-index: 199;
  }
  .nav.open .nav__cta {
    display: inline-flex;
    width: fit-content;
    color: var(--warm-white);
    border-color: var(--warm-white);
    background: transparent;
    margin-top: 8px;
  }
}

/* ── Page offset ── */
.page { padding-top: var(--nav-h); }
.page--hero { padding-top: 0; }

/* ── Rule ── */
.rule {
  width: 42px; height: 1px;
  background: var(--gold);
  margin: 20px 0;
  flex-shrink: 0;
}
.rule--light { background: rgba(253,250,247,0.4); }

/* ── Section label ── */
.label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Typography ── */
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.08;
}
.h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}
.h4 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.25;
}
.body-text {
  font-size: clamp(17px, 1.18vw, 19px);
  font-weight: 400;
  line-height: 1.78;
  color: rgba(28,28,40,0.92);
}
.body-text p + p { margin-top: 1.1em; }
.body-text--light {
  color: rgba(253,250,247,0.82);
}
.tagline {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(28,28,40,0.68);
}
.tagline--gold {
  color: var(--gold);
  letter-spacing: 0.2em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 30px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.22s;
  border: none;
}
.btn--dark  { background: var(--charcoal); color: var(--warm-white); }
.btn--dark:hover { background: #2d2d3e; }
.btn--outline { background: transparent; border: 1px solid var(--text); color: var(--text); }
.btn--outline:hover { background: var(--text); color: var(--cream); }
.btn--outline-light { background: transparent; border: 1px solid rgba(253,250,247,0.6); color: var(--warm-white); }
.btn--outline-light:hover { background: var(--warm-white); color: var(--charcoal); }
.btn--hero-light { background: var(--warm-white); border: 1px solid var(--warm-white); color: var(--charcoal); }
.btn--hero-light:hover { background: var(--warm-white); color: var(--charcoal); opacity: 0.86; }
.btn--text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: none; border: none; padding: 0;
  height: auto; font-weight: 400;
  transition: gap 0.2s;
}
.btn--text-link:hover { gap: 10px; }

/* ── Image Placeholder ── */
.img-ph {
  width: 100%; height: 100%;
  min-height: 420px;
  background: #D5CABF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.img-ph span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,28,40,0.56);
  max-width: 150px;
  line-height: 1.8;
}

.site-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.site-image--top { object-position: center top; }
.site-image--right { object-position: center right; }
.site-image--left { object-position: center left; }

/* ── Split Layouts ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
}
.split--40-60 { grid-template-columns: 40fr 60fr; }
.split--60-40 { grid-template-columns: 60fr 40fr; }
.split__text {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__img { position: relative; overflow: hidden; }
.split__img .img-ph { min-height: 560px; }

/* ── Section Wrapper ── */
.section {
  padding: clamp(70px, 9vw, 110px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section--full { max-width: none; padding-left: 0; padding-right: 0; }
.section--dark { background: var(--charcoal); color: var(--warm-white); max-width: none; }
.section--mid  { background: var(--cream-mid); max-width: none; }

/* ── Three-column grid ── */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
}
.cols-3 .col {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--divider);
}
.cols-3 .col:first-child { padding-left: 0; }
.cols-3 .col:last-child  { border-right: none; padding-right: 0; }

/* ── Numbered items ── */
.numbered-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 0 48px;
  padding: 56px 0;
  border-top: 1px solid var(--divider);
  align-items: start;
}
.numbered-item__num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.numbered-item__num-rule {
  width: 24px; height: 1px;
  background: var(--gold);
  margin-top: 8px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--cream-mid);
  padding: clamp(64px, 8vw, 96px) var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-banner__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-banner__text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  max-width: 580px;
  font-style: italic;
}

/* ── Contact modal ── */
body.modal-open { overflow: hidden; }

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
}
.contact-modal.is-open { display: flex; }
.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,36,0.72);
}
.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  max-height: min(94vh, 900px);
  overflow: auto;
  background: var(--cream);
  color: var(--text);
  border: 1px solid rgba(253,250,247,0.22);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,0.34);
}
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--divider);
  background: rgba(253,250,247,0.72);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}
.contact-modal__intro {
  padding: clamp(34px, 5vw, 52px);
  padding-bottom: 28px;
}
.contact-modal__eyebrow {
  display: block;
  margin-bottom: 16px;
}
.contact-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 22px;
}
.contact-modal__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.72;
  color: rgba(28,28,40,0.82);
}
.contact-modal__copy h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
  margin-top: 18px;
}
.contact-modal__copy ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
  padding-left: 22px;
}
.contact-modal__confirm {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(184,145,106,0.46);
  border-radius: 8px;
  background: rgba(253,250,247,0.68);
  box-shadow: inset 4px 0 0 var(--gold);
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
}
.contact-modal__confirm input {
  width: 24px;
  height: 24px;
  margin-top: 0;
  accent-color: var(--gold);
  flex-shrink: 0;
}
.contact-modal__continue {
  margin-top: 18px;
}
.contact-modal__continue:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.contact-modal__form-step {
  display: none;
  padding: clamp(34px, 5vw, 52px);
}
.contact-modal.is-form-step .contact-modal__intro { display: none; }
.contact-modal.is-form-step .contact-modal__form-step { display: block; }
.contact-modal.is-form-step .contact-modal__dialog {
  width: min(100%, 940px);
}
.contact-modal__back {
  border: none;
  background: transparent;
  color: rgba(28,28,40,0.72);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 18px;
}
.contact-modal__back:hover { color: var(--text); }
.contact-modal__form-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 24px;
}
.contact-modal__form {
  min-height: 592px;
  height: min(592px, calc(94vh - 210px));
  overflow: hidden;
  border-radius: 8px;
  background: var(--warm-white);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  color: rgba(253,250,247,0.86);
  padding: 64px var(--pad-x) 32px;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px repeat(3,1fr);
  gap: 48px;
  padding-bottom: 48px;
}
.footer__brand {}
.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 14px;
  display: block;
}
.footer__wordmark img {
  width: 210px;
  height: auto;
  display: block;
}
.footer__tagline {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(253,250,247,0.62);
  max-width: 220px;
}
.footer__col-head {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(253,250,247,0.56);
  margin-bottom: 18px;
  display: block;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer__links a {
  font-size: 14.5px;
  font-weight: 400;
  color: rgba(253,250,247,0.78);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--warm-white); }
.footer__disclaimer {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(253,250,247,0.68);
  max-width: 260px;
}
.footer__newsletter {
  max-width: var(--max-w);
  margin: 0 auto 28px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(253,250,247,0.09);
  border-bottom: 1px solid rgba(253,250,247,0.09);
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 520px);
  gap: 40px;
  align-items: start;
  justify-content: space-between;
}
.footer__newsletter-text {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(253,250,247,0.68);
  max-width: 360px;
}
.footer__newsletter-form {
  height: 230px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(253,250,247,0.04);
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(253,250,247,0.09);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: rgba(253,250,247,0.52);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .split, .split--40-60, .split--60-40 {
    grid-template-columns: 1fr;
  }
  .split__img { min-height: 340px; }
  .split__img .img-ph { min-height: 340px; }
  .cols-3 { grid-template-columns: 1fr; }
  .cols-3 .col { border-right: none; border-bottom: 1px solid var(--divider); padding-right: 0; padding-left: 0; }
  .cols-3 .col:last-child { border-bottom: none; }
  .numbered-item { grid-template-columns: 50px 1fr; }
  .numbered-item > *:last-child { grid-column: 2; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__newsletter { grid-template-columns: 1fr; gap: 24px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .contact-modal__dialog { max-height: 94vh; }
  .contact-modal__form {
    height: min(592px, calc(94vh - 190px));
    min-height: 520px;
  }
}
@media (max-width: 600px) {
  :root { --pad-x: clamp(22px, 6vw, 28px); }
  .h1 { font-size: clamp(40px, 12vw, 52px); }
  .h2 { font-size: clamp(34px, 10vw, 44px); }
  .btn { width: 100%; justify-content: center; text-align: center; }
  .nav__wordmark { font-size: 18px; letter-spacing: 0.22em; }
  .nav__wordmark img { width: 148px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .numbered-item { grid-template-columns: 1fr; }
  .numbered-item > *:last-child { grid-column: auto; }
  .numbered-item__num { font-size: 36px; }
  .contact-modal { padding: 10px; }
  .contact-modal__intro,
  .contact-modal__form-step { padding: 28px 18px; }
  .contact-modal__confirm { padding: 16px; }
  .contact-modal__form {
    height: calc(94vh - 170px);
    min-height: 480px;
  }
}


/* =========================================================
   Blog article template
   ========================================================= */

.blog-article-body {
  background: #f5f1ea;
  color: #1f2623;
}

.article-header {
  width: 100%;
  background: #18211e;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-header__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.article-header__brand {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.article-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.article-header__nav a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.article-header__nav a:hover {
  color: #fff;
}

.article-page {
  overflow: hidden;
}

.article-hero {
  background: #18211e;
  color: #fff;
  padding: 72px 0 96px;
}

.article-hero__inner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.article-back-link {
  display: inline-flex;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 56px;
}

.article-back-link:hover {
  color: #fff;
}

.article-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.article-kicker span + span::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.28);
  margin-right: 14px;
  vertical-align: middle;
}

.article-title {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.article-description {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.article-cover-section {
  background: linear-gradient(to bottom, #18211e 0%, #18211e 50%, #f5f1ea 50%, #f5f1ea 100%);
  padding: 0 0 56px;
}

.article-cover-wrap {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.article-cover {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.article-content-section {
  padding: 40px 0 96px;
}

.article-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  background: #fff;
  padding: clamp(32px, 6vw, 72px);
  box-shadow: 0 18px 60px rgba(24,33,30,0.08);
}

.article-content > *:first-child {
  margin-top: 0;
}

.article-content > *:last-child {
  margin-bottom: 0;
}

.article-content p {
  margin: 0 0 26px;
  color: #303a35;
  font-size: 19px;
  line-height: 1.78;
}

.article-content h2 {
  margin: 56px 0 20px;
  color: #18211e;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 500;
}

.article-content h3 {
  margin: 44px 0 16px;
  color: #18211e;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 500;
}

.article-content ul,
.article-content ol {
  margin: 0 0 30px 24px;
  padding: 0;
  color: #303a35;
  font-size: 19px;
  line-height: 1.75;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  margin: 48px 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid #a88b62;
  color: #18211e;
  font-size: 24px;
  line-height: 1.45;
}

.article-content a {
  color: #18211e;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 44px 0;
}

.article-bottom-cta {
  background: #f5f1ea;
  padding: 0 0 96px;
}

.article-bottom-cta__inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  background: #18211e;
  color: #fff;
}

.article-bottom-cta__eyebrow {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.article-bottom-cta h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.article-bottom-cta p:not(.article-bottom-cta__eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.6;
}

.article-bottom-cta__button {
  display: inline-flex;
  margin-top: 34px;
  color: #18211e;
  background: #fff;
  text-decoration: none;
  padding: 15px 22px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.article-footer {
  background: #18211e;
  color: rgba(255,255,255,0.68);
  padding: 32px 0;
}

.article-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}

.article-footer p {
  margin: 0;
}

.article-footer a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}

.article-footer a:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .article-header__inner {
    min-height: auto;
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .article-header__nav {
    gap: 16px 20px;
  }

  .article-hero {
    padding: 48px 0 72px;
  }

  .article-back-link {
    margin-bottom: 40px;
  }

  .article-content {
    box-shadow: none;
  }

  .article-content p,
  .article-content ul,
  .article-content ol {
    font-size: 17px;
  }
}


/* =========================================================
   Blog post page
   Uses the same site header/footer. Only styles article body.
   ========================================================= */

.blog-post-page {
  background: #f5f1ea;
  color: #1f2623;
}

.blog-post-hero {
  background: #18211e;
  color: #fff;
  padding: 150px 0 96px;
}

.blog-post-hero__inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-post-back {
  display: inline-block;
  margin-bottom: 56px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
}

.blog-post-back:hover {
  color: #fff;
}

.blog-post-title {
  max-width: 980px;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 500;
}

.blog-post-description {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.blog-post-date {
  margin: 28px 0 0;
  color: rgba(255,255,255,0.56);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.blog-post-cover-section {
  background: linear-gradient(to bottom, #18211e 0%, #18211e 45%, #f5f1ea 45%, #f5f1ea 100%);
  padding-bottom: 72px;
}

.blog-post-cover-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-post-cover {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.blog-post-content-section {
  padding: 24px 0 96px;
}

.blog-post-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
}

.blog-post-content > *:first-child {
  margin-top: 0;
}

.blog-post-content > *:last-child {
  margin-bottom: 0;
}

.blog-post-content p {
  margin: 0 0 28px;
  color: #303a35;
  font-size: 19px;
  line-height: 1.82;
}

.blog-post-content h2 {
  margin: 64px 0 22px;
  color: #18211e;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.blog-post-content h3 {
  margin: 48px 0 18px;
  color: #18211e;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 0 0 32px 24px;
  padding: 0;
  color: #303a35;
  font-size: 19px;
  line-height: 1.75;
}

.blog-post-content li {
  margin-bottom: 10px;
}

.blog-post-content blockquote {
  margin: 52px 0;
  padding: 8px 0 8px 28px;
  border-left: 2px solid currentColor;
  color: #18211e;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.blog-post-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 48px 0;
}

.blog-post-content a {
  color: #18211e;
  text-underline-offset: 4px;
}

.blog-post-related-cta {
  background: #f5f1ea;
  padding: 0 0 110px;
}

.blog-post-related-cta__inner {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 72px);
  background: #18211e;
  color: #fff;
}

.blog-post-related-cta h2 {
  max-width: 760px;
  margin: 30px 0 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.blog-post-related-cta p {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.6;
}

.blog-post-cta-link {
  display: inline-block;
  margin-top: 36px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 6px;
}

.blog-post-cta-link:hover {
  border-color: #fff;
}

@media (max-width: 760px) {
  .blog-post-hero {
    padding: 120px 0 72px;
  }

  .blog-post-back {
    margin-bottom: 42px;
  }

  .blog-post-cover-section {
    padding-bottom: 48px;
  }

  .blog-post-content-section {
    padding-bottom: 72px;
  }

  .blog-post-content p,
  .blog-post-content ul,
  .blog-post-content ol {
    font-size: 17px;
  }
}
