:root {
  --mm-ivory: #FDFBF7;
  --mm-cream: #F7F5F0;
  --mm-sand: #EFEBE1;
  --mm-linen: #E6DFD3;
  --mm-gold: #B89E73;
  --mm-honey: #C68735;
  --mm-espresso: #3B2B20;
  --mm-text: #2D2018;
  --mm-text-soft: #5C4D42;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--mm-ivory);
  color: var(--mm-text);
  font-family: "Manrope", -apple-system, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.blog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 6vw, 72px);
  border-bottom: 1px solid var(--mm-linen);
  background: var(--mm-ivory);
}

.blog-header img { height: 40px; width: auto; display: block; }
.mm-lockup-link { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; }
/* 5.5px to match the site header (styles.css), which uses the same 40px lockup. The
   descriptor has to stay: without it the master's bee / wordmark / descriptor composition
   loses its balance and the bee is stranded above the wordmark. See styles.css. */
.mm-lockup-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 5.5px;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--mm-espresso);
  line-height: 1;
  margin-top: 4px;
  white-space: nowrap;
}

.blog-header nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mm-text-soft);
  margin-left: 28px;
}
.blog-header nav a:hover { color: var(--mm-espresso); }

.blog-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 88px) 24px 96px;
}

.eyebrow-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mm-honey);
  margin-bottom: 18px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  color: var(--mm-espresso);
  line-height: 1.2;
}

h1 { font-size: clamp(34px, 5vw, 50px); margin-bottom: 18px; }
h2 { font-size: clamp(26px, 3.5vw, 32px); margin: 52px 0 16px; }
h3 { font-size: 21px; margin: 36px 0 12px; }

.article-meta {
  font-size: 13px;
  color: var(--mm-text-soft);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--mm-linen);
}

p { margin-bottom: 18px; color: var(--mm-text-soft); }
p strong { color: var(--mm-text); font-weight: 500; }

article a {
  color: var(--mm-honey);
  text-decoration: underline;
  text-decoration-color: var(--mm-gold);
  text-underline-offset: 3px;
}
article a:hover { color: var(--mm-espresso); }

.answer-block {
  background: var(--mm-cream);
  border-left: 3px solid var(--mm-honey);
  padding: 22px 26px;
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
}
.answer-block p { margin: 0; color: var(--mm-text); }

ul, ol { margin: 0 0 18px 22px; color: var(--mm-text-soft); }
li { margin-bottom: 8px; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 14.5px;
}
th, td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--mm-linen);
  vertical-align: top;
}
th {
  background: var(--mm-sand);
  color: var(--mm-espresso);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
td { color: var(--mm-text-soft); }

.article-figure { margin: 32px 0; text-align: center; }
.article-figure img {
  max-width: 100%;
  width: auto;
  max-height: 440px;
  border-radius: 14px;
  display: inline-block;
  border: 1px solid var(--mm-linen);
}
.article-figure figcaption {
  font-size: 13px;
  color: var(--mm-text-soft);
  margin-top: 10px;
  text-align: center;
}

/* Blog index cards */
.post-list { display: grid; gap: 28px; margin-top: 44px; }
.post-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--mm-linen);
  border-radius: 16px;
  padding: 32px 34px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.post-card:hover { border-color: var(--mm-gold); transform: translateY(-2px); }
.post-card h2 { margin: 8px 0 10px; font-size: 26px; }
.post-card p { margin: 0; font-size: 15px; }
.post-card .post-date {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mm-honey);
}
.post-card .read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mm-espresso);
}

.cta-block {
  background: var(--mm-espresso);
  color: var(--mm-ivory);
  border-radius: 16px;
  padding: 36px 38px;
  margin-top: 56px;
  text-align: center;
}
.cta-block h2 { color: var(--mm-ivory); margin: 0 0 10px; }
.cta-block p { color: rgba(253, 251, 247, 0.75); margin-bottom: 22px; }
.cta-block a {
  display: inline-block;
  background: var(--mm-honey);
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-footer {
  border-top: 1px solid var(--mm-linen);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--mm-text-soft);
}
.blog-footer a { color: var(--mm-espresso); }

@media (max-width: 560px) {
  /* 36px, not 32px: the descriptor needs 5.5px to stay legible (below that the tracked
     uppercase collapses into a smudge, which is the bug this whole change set fixes), and
     5.5px only sits right under a 36px lockup. The nav still holds HOME / JOURNAL /
     ENQUIRE on one line at 36px, verified down to 360px; 40px wraps it at 360px, which is
     why the lockup is not simply matched to the desktop size.
     The 5.5px/15.1px ratio here is 0.36x vs the site header's 0.33x. Slightly looser, but
     the alternative is an illegible descriptor, and 0.03x is not visible. */
  .blog-header img { height: 36px; }
  .blog-header .mm-lockup-tag { font-size: 5.5px; letter-spacing: 0.28em; text-indent: 0.28em; }
  .blog-header nav a { margin-left: 12px; font-size: 10.5px; }
  .post-card { padding: 26px 24px; }
  th, td { padding: 10px 8px; font-size: 13px; }
}
