/* Shared styles for About / FAQ / Contact pages */

:root {
  --cream:       #EDEAE3;
  --cream-deep:  #E4E0D8;
  --cream-light: #F5F3EF;
  --brown:       #2C2118;
  --brown-mid:   #6B5443;
  --brown-light: #A8947E;
  --rule:        #C8BFB0;
  --white:       #FAF8F5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--brown);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ─── NAV ─── */
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
}
.nav-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 64px;
  padding: 0 20px;
}
.nav-logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: -0.072em;
  text-decoration: none;
  line-height: 1.4;
}
.m-nav-bag {
  position: absolute;
  right: 20px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  cursor: pointer;
  text-decoration: none;
}
.m-nav-menu {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  -webkit-tap-highlight-color: transparent;
}
.m-nav-menu span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--brown-mid);
}

.nav-bottom { display: none; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown); }

.nav-bag {
  display: none;
}

@media (min-width: 601px) {
  .nav-top { height: 72px; }
  .nav-logo { font-size: 60px; }
  .m-nav-menu { display: none; }
  .m-nav-bag { display: none; }
  .nav-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 8px 56px 12px;
    position: relative;
  }
  .nav-bag {
    display: inline-block;
    position: absolute;
    right: 56px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--brown-mid);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-bag:hover { color: var(--brown); }
}

/* ─── MOBILE MENU DRAWER ─── */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,33,24,0.35);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: var(--cream-light);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  border-right: 1px solid var(--rule);
  padding: 28px 24px 32px;
}
.mobile-menu-drawer.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--brown-mid);
  cursor: pointer;
  align-self: flex-end;
  padding: 4px 8px;
  line-height: 1;
}
.mobile-menu-links {
  list-style: none;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu-links a {
  font-family: 'Cormorant', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* ─── PAGE LAYOUT ─── */
.page {
  padding: 96px 20px 64px;
  max-width: 720px;
  margin: 0 auto;
  min-height: calc(100vh - 64px);
}
@media (min-width: 601px) {
  .page { padding: 128px 32px 96px; }
}
.page--wide {
  max-width: 1280px;
}
@media (min-width: 601px) {
  .page--wide { padding: 128px 56px 96px; }
}
.page-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 14px;
}
.page-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(28px, 8vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--brown);
  margin-bottom: 24px;
}
.page-rule {
  width: 40px;
  height: 1px;
  background: var(--rule);
  margin: 0 0 32px;
}
.page-section-rule {
  border: none;
  height: 1px;
  background: var(--rule);
  width: 100%;
  max-width: 100%;
  margin: 40px 0;
  opacity: 0.7;
}
.about-hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 0 40px;
  background: var(--cream-deep);
}
@media (max-width: 600px) {
  .about-hero-img {
    aspect-ratio: 3 / 4;
    margin: 0 0 28px;
  }
}

.page-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.8;
  color: var(--brown);
  text-align: justify;
  margin-bottom: 18px;
}
.page-body ul,
.page-body ol {
  margin: 0 0 18px;
  padding-left: 24px;
}
.page-body li {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--brown);
  text-align: justify;
  margin-bottom: 6px;
}
.page-body p em {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--brown-mid);
}
.page-body h2 {
  font-family: 'Cormorant', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
  margin: 40px 0 14px;
  letter-spacing: -0.5px;
}
.page-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin: 28px 0 10px;
}
.page-body a {
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-body a:hover { color: var(--brown-mid); }
.page-body hr {
  border: none;
  height: 1px;
  background: var(--brown-light);
  width: 100%;
  margin: 48px 0 36px;
  opacity: 0.6;
}

/* ── BLOG POST FAQ ACCORDION ── */
.post-faq {
  margin: 8px 0 24px;
  border-top: 1px solid var(--rule);
}
.post-faq-item {
  border-bottom: 1px solid var(--rule);
}
.post-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.post-faq-q::-webkit-details-marker { display: none; }
.post-faq-q-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  line-height: 1.4;
}
.post-faq-q-chev {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--brown);
  border-bottom: 1px solid var(--brown);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-bottom: 3px;
}
.post-faq-item[open] .post-faq-q-chev {
  transform: rotate(225deg);
  margin-bottom: 0;
  margin-top: 3px;
}
.post-faq-a {
  padding: 0 0 22px;
}
.post-faq-a p {
  margin: 0;
}
@media (max-width: 720px) {
  .post-faq-q { padding: 18px 0; }
  .post-faq-q-text { font-size: 10.5px; letter-spacing: 0.16em; }
}

/* ── BLOG POST INLINE PRODUCT CTA ── */
.post-product-cta {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  margin: 56px 0 8px;
  background: var(--cream-deep);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.post-product-cta-image {
  position: relative;
  background: var(--cream-deep);
  aspect-ratio: 1 / 1;
}
.post-product-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-product-cta-body {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-product-cta-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 8px;
}
.post-product-cta-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-size: 28px;
  line-height: 1.1;
  color: var(--brown);
  margin: 0 0 14px;
}
.post-product-cta-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--brown-mid);
  margin: 0 0 18px;
}
.post-product-cta-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 18px;
}
.post-product-cta-price {
  font-family: 'Times New Roman', Times, serif;
  font-size: 22px;
  color: var(--brown);
}
.post-product-cta-volume {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-light);
}
.post-product-cta-button {
  display: inline-block;
  align-self: flex-start;
  background: var(--brown);
  color: var(--cream-light);
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  transition: background 0.2s ease;
}
.post-product-cta-button:hover { background: var(--brown-mid); }
@media (max-width: 720px) {
  .post-product-cta {
    grid-template-columns: 1fr;
    margin: 40px 0 8px;
  }
  .post-product-cta-image { aspect-ratio: 4 / 3; }
  .post-product-cta-body { padding: 24px 22px 26px; }
  .post-product-cta-title { font-size: 24px; }
}

/* ── BLOG POST OUTRO (About Baya) ── */
.post-outro {
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
  opacity: 0.85;
}
.post-outro-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 10px;
}
.post-outro-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.7;
  color: var(--brown-mid);
  margin: 0;
}
.post-outro-body a {
  color: var(--brown-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-outro-body a:hover { color: var(--brown); }

/* ── BLOG POST RELATED ARTICLES ── */
.post-related {
  margin: 56px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--rule);
}
.post-related-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 18px;
}
.post-related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-related-item {
  border-top: 1px solid var(--rule);
}
.post-related-item:last-child {
  border-bottom: 1px solid var(--rule);
}
.post-related-item a {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.post-related-item a:hover .post-related-title {
  color: var(--brown-mid);
}
.post-related-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brown);
  transition: color 0.2s ease;
}
.post-related-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--brown-mid);
}
.legal-toc {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.legal-toc a {
  color: var(--brown-mid);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.legal-toc a:hover { color: var(--brown); }
.page-body h2[id] { scroll-margin-top: 120px; }

.footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cream); }

/* ─── FOOTER ─── */
footer {
  padding: 36px 56px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background: var(--brown);
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}
.footer-brand-col { display: none; }
.footer-subscribe-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-logo {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 30px;
  color: var(--cream);
  letter-spacing: -0.072em;
  line-height: 1.4;
  margin-bottom: 6px;
}
.footer-rule {
  width: 40px;
  height: 1px;
  background: rgba(237,234,227,0.15);
  margin-bottom: 10px;
}
.footer-tagline {
  font-family: 'Times New Roman', Times, serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(237,234,227,0.55);
  line-height: 1.55;
}
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(237,234,227,0.12);
}
.footer-legal {
  font-size: 10px;
  color: rgba(237,234,227,0.35);
  letter-spacing: 0.05em;
}
.footer-email-eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,234,227,0.4);
  margin-bottom: 6px;
}
.footer-email-title {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.072em;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0;
}
.footer-email-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(237,234,227,0.55);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  margin-top: 6px;
}
.footer-email-form {
  display: flex;
  margin-top: 14px;
  max-width: 420px;
}
.footer-email-input {
  flex: 1;
  background: rgba(237,234,227,0.08);
  border: 1px solid rgba(237,234,227,0.2);
  border-right: none;
  padding: 14px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: var(--cream);
  outline: none;
}
.footer-email-input::placeholder {
  color: rgba(237,234,227,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 9px;
}
.footer-email-submit {
  background: var(--cream);
  color: var(--brown);
  border: none;
  padding: 14px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}
.footer-email-submit:hover { opacity: 0.85; }
.footer-bg-b {
  position: absolute;
  bottom: -40px;
  right: 56px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 336px;
  font-weight: 400;
  line-height: 1;
  color: rgba(237,234,227,0.25);
  pointer-events: none;
  letter-spacing: -0.072em;
  z-index: 0;
}
footer > *:not(.footer-bg-b) {
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  footer { grid-template-columns: 1fr; padding: 40px 20px; gap: 32px; }
  .footer-brand-col { display: none; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bg-b { font-size: 200px; bottom: -30px; right: -20px; }
  .footer-email-form { flex-direction: column; gap: 8px; }
  .footer-email-input { border-right: 1px solid rgba(237,234,227,0.2); }
  .footer-email-submit { padding: 16px; text-align: center; }
}

/* ─── HEADER FONT OVERRIDE — match logo (Times New Roman, weight 400, -0.072em) ─── */
.page-title,
.page-body h2,
.footer-logo {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.072em;
}

/* ─── BLOG POST PAGE ─── */
.post-wrap {
  max-width: 1280px;
  margin: 200px auto 96px;
}
.post-page {
  background: #FEFAF3;
  min-height: calc(100vh - 64px);
}

.post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-hero-text {
  background: #E9E5DD;
  padding: 96px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 20px;
}
.post-hero-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.072em;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--brown);
  margin: 0 0 14px;
}
.post-hero-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 24px;
}
.post-hero-rule {
  width: 40px;
  height: 1px;
  background: var(--rule);
  margin: 0 0 28px;
}
.post-hero-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 200;
  line-height: 1.4;
  color: var(--brown-mid);
  margin: 0;
}
.post-hero-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.post-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 80px;
  padding: 64px 56px 96px;
}
.post-body h2 { scroll-margin-top: 96px; }

.post-toc {
  background: var(--cream-deep);
  padding: 32px 28px;
  align-self: start;
  position: sticky;
  top: 96px;
}
.post-toc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin: 0 0 20px;
  padding: 0;
  background: none;
  border: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
}
.post-toc-chev {
  display: none;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--brown-light);
  border-bottom: 1px solid var(--brown-light);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-bottom: 3px;
}
.post-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.post-toc-list li {
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
}
.post-toc-list li:last-child { border-bottom: none; }
.post-toc-list a {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--brown);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3;
  display: block;
  transition: opacity 0.2s;
}
.post-toc-list a:hover { opacity: 0.7; }

.post-back {
  margin: 0;
  padding: 0 56px 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.post-back a {
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
}
.post-back a:hover { color: var(--brown-mid); }

@media (max-width: 900px) {
  .post-hero { grid-template-columns: 1fr; }
  .post-hero-text { padding: 48px 24px; }
  .post-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 56px;
  }
  .post-wrap { margin: 120px auto 48px; }
  .post-back { padding: 0 24px 16px; }

  .post-body { padding: 0 24px; order: 2; }
  .post-toc {
    order: 1;
    position: static;
    margin: 0;
    padding: 18px 24px;
    background: var(--cream-deep);
  }
  .post-toc-label {
    margin: 0;
    cursor: pointer;
  }
  .post-toc-chev { display: inline-block; }
  .post-toc-list { display: none; margin-top: 16px; }
  .post-toc.is-open .post-toc-list { display: block; }
  .post-toc.is-open .post-toc-chev { transform: rotate(225deg); margin-bottom: 0; margin-top: 3px; }
}

.blog-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rule);
  margin-top: 48px;
}
.blog-mosaic-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
}
.blog-mosaic-card:nth-child(3n) { border-right: none; }
.blog-mosaic-card:hover { background: var(--cream-deep); }

.bm-image-wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.bm-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bm-image-wrap--letter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bm-image-wrap--letter span {
  font-family: 'Cormorant', serif;
  font-size: 120px;
  font-weight: 700;
  color: var(--rule);
  line-height: 1;
  opacity: 0.6;
}

.bm-body { padding: 32px 32px 36px; }
.bm-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-bottom: 14px;
}
.bm-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: -0.072em;
  color: var(--brown);
  line-height: 1.05;
  font-size: 26px;
  margin: 0 0 14px;
}
.bm-excerpt {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.4;
  color: var(--brown-mid);
  margin: 0;
}
.bm-date {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-light);
  margin-top: 20px;
}


.blog-mosaic-card--feature:only-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.blog-mosaic-card--feature:only-child .bm-image-wrap {
  aspect-ratio: auto;
  height: 100%;
  border-bottom: none;
  border-right: 1px solid var(--rule);
}
.blog-mosaic-card--feature:only-child .bm-body {
  align-self: center;
  padding: 48px 56px;
}
.blog-mosaic-card--feature:only-child .bm-title { font-size: clamp(32px, 4vw, 48px); line-height: 1.05; }

@media (max-width: 720px) {
  .blog-mosaic { grid-template-columns: 1fr; margin-top: 24px; }
  .blog-mosaic-card,
  .blog-mosaic-card:nth-child(3n) { border-right: none; }
  .bm-body { padding: 20px 18px 24px; }
  .bm-title,
  .blog-mosaic-card--feature .bm-title { font-size: 22px; line-height: 1.1; }
  .bm-excerpt { font-size: 15px; }
  .blog-mosaic-card--feature:only-child {
    display: block;
    grid-column: 1 / -1;
  }
  .blog-mosaic-card--feature:only-child .bm-image-wrap {
    aspect-ratio: 4 / 3;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--rule);
  }
  .blog-mosaic-card--feature:only-child .bm-image {
    object-position: center 25%;
  }
  .blog-mosaic-card--feature:only-child .bm-body { padding: 20px 18px 24px; }
  .blog-mosaic-card--feature:only-child .bm-title { font-size: 22px; line-height: 1.1; }
  .blog-mosaic-card--feature:only-child .bm-excerpt { font-size: 15px; line-height: 1.4; }
}

@media (max-width: 600px) {
  .page--wide { padding: 96px 16px 56px; }
  .page-eyebrow { font-size: 9px; margin-bottom: 10px; }
  .page-title { font-size: clamp(24px, 7.5vw, 36px); }
}

.post-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.post-pagination--top {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-top: 0;
  padding-bottom: 24px;
  border-top: none;
  border-bottom: 1px solid var(--rule);
}
.post-pagination-link {
  color: var(--brown-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.post-pagination-link:hover { color: var(--brown); }
.post-pagination-link.disabled {
  color: var(--brown-light);
  opacity: 0.4;
  cursor: default;
}
.post-pagination-info {
  color: var(--brown-light);
  font-size: 10px;
}
@media (max-width: 600px) {
  .post-pagination-info { display: none; }
}
.footer-email-thanks {
  max-width: 420px;
  margin-top: 16px;
}
.footer-email-thanks-headline {
  font-family: 'Cormorant', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--cream);
  line-height: 1.2;
}
