:root {
  --ivory: #f7f4ef;
  --cream: #efe9e0;
  --charcoal: #2a2724;
  --muted: rgba(42,39,36,0.6);
  --faint: rgba(42,39,36,0.38);
  --gold: #a4885f;
  --hairline: rgba(42,39,36,0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
::selection { background: rgba(164,136,95,0.2); }

/* NAV */
.bnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: rgba(247,244,239,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--hairline);
}
.bnav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
}
.bnav-right { display: flex; align-items: center; gap: 32px; }
.bnav-right a {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.4s ease;
}
.bnav-right a:hover { color: var(--gold); }
.bnav-right .cta {
  color: var(--charcoal);
  padding: 10px 22px;
  border: 0.5px solid var(--charcoal);
  transition: all 0.4s ease;
}
.bnav-right .cta:hover { background: var(--charcoal); color: var(--ivory); }

/* SHARED */
.eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* JOURNAL HEADER */
.journal-head {
  text-align: center;
  padding: 110px 48px 80px;
  border-bottom: 0.5px solid var(--hairline);
}
.journal-head .eyebrow { display: block; margin-bottom: 26px; }
.journal-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.08;
}
.journal-head h1 em { font-style: italic; }
.journal-head p {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
  max-width: 440px;
  margin: 28px auto 0;
}

/* POST LIST */
.post-list {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 48px 120px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.post-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  padding: 64px 0;
  border-bottom: 0.5px solid var(--hairline);
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.post-card:first-child { padding-top: 0; }
.post-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card .cat {
  font-size: 9px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.post-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 16px;
}
.post-card h2 em { font-style: italic; }
.post-card .excerpt { font-size: 12.5px; line-height: 2; color: var(--muted); max-width: 440px; }
.post-card .more {
  display: inline-block;
  margin-top: 20px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 0.5px solid var(--gold);
  padding-bottom: 4px;
}

/* ARTICLE */
.article-hero {
  height: 62vh;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero .overlay { position: absolute; inset: 0; background: rgba(20,18,16,0.32); }
.article-hero .label {
  position: absolute;
  left: 0; right: 0; bottom: 56px;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}
.article-hero .cat {
  font-size: 10px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 22px;
}
.article-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  max-width: 18ch;
  margin: 0 auto;
}
.article-hero h1 em { font-style: italic; }

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px 60px;
}
.article .meta {
  text-align: center;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 56px;
}
.article .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 48px;
}
.article h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin: 52px 0 22px;
}
.article h3 {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 40px 0 16px;
}
.article p { font-size: 15px; line-height: 1.95; color: rgba(42,39,36,0.78); margin-bottom: 24px; }
.article p a { color: var(--charcoal); border-bottom: 0.5px solid var(--gold); text-decoration: none; }
.article ul { margin: 0 0 24px 0; padding-left: 0; list-style: none; }
.article li {
  font-size: 15px; line-height: 1.9; color: rgba(42,39,36,0.78);
  padding-left: 26px; position: relative; margin-bottom: 12px;
}
.article li::before {
  content: '—'; position: absolute; left: 0; color: var(--gold);
}
.article blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  color: var(--charcoal);
  text-align: center;
  margin: 48px 0;
  padding: 0 20px;
}

/* CTA BLOCK */
.post-cta {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  padding: 96px 32px;
  margin-top: 80px;
}
.post-cta .eyebrow { color: var(--gold); display: block; margin-bottom: 24px; }
.post-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 36px;
}
.post-cta h2 em { font-style: italic; color: #e8dcc8; }
.post-cta a {
  display: inline-block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ivory); text-decoration: none;
  border: 0.5px solid rgba(247,244,239,0.5);
  padding: 16px 44px;
  transition: all 0.4s ease;
}
.post-cta a:hover { background: var(--ivory); color: var(--charcoal); }

/* FOOTER */
.bfooter {
  border-top: 0.5px solid var(--hairline);
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bfooter .logo { font-family: 'Cormorant Garamond', serif; font-size: 15px; letter-spacing: 5px; text-transform: uppercase; color: var(--charcoal); text-decoration: none; }
.bfooter .fcopy { font-size: 9px; letter-spacing: 1.5px; color: var(--faint); }

@media (max-width: 760px) {
  .bnav { padding: 16px 24px; }
  .bnav-right { gap: 18px; }
  .bnav-right a:not(.cta) { display: none; }
  .post-card { grid-template-columns: 1fr; gap: 22px; padding: 44px 0; }
  .post-list { padding: 56px 24px 80px; }
  .journal-head { padding: 80px 24px 56px; }
  .article { padding: 56px 24px 40px; }
  .bfooter { flex-direction: column; gap: 14px; text-align: center; }
}
