* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  background: #FBF6EF;
  color: #2A2018;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
::selection { background: #C2643F; color: #fff; }
.container { width: min(1180px, calc(100% - 56px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #EADFD0;
  background: rgba(251, 246, 239, .84);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 31px;
  height: 31px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #C2643F;
  color: #fff;
  font-size: 14px;
}
.desktop-nav { display: flex; align-items: center; gap: 22px; color: #5E5346; font-size: 14.5px; font-weight: 500; }
.desktop-nav a { transition: color .18s ease; }
.desktop-nav a:hover, .desktop-nav .active { color: #C2643F; }
.header-cta, .article-link, .article-share {
  border-radius: 999px;
  font-weight: 600;
  transition: background .18s ease;
}
.header-cta, .article-link {
  background: #C2643F;
  color: #fff;
}
.header-cta { flex-shrink: 0; padding: 10px 18px; font-size: 14px; white-space: nowrap; }
.header-cta:hover, .article-link:hover { background: #A8512F; }
.menu-button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #EADFD0;
  border-radius: 11px;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
.menu-button span { width: 18px; height: 2px; border-radius: 2px; background: #2A2018; }
.mobile-nav { border-top: 1px solid #EADFD0; padding: 10px 28px 20px; background: rgba(251,246,239,.97); }
.mobile-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid #F0E8DC; font-size: 16.5px; font-weight: 600; }
.intro { padding: 84px 0 64px; border-bottom: 1px solid #EFE6D8; }
.eyebrow {
  margin: 0;
  color: #C2643F;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1 {
  max-width: 800px;
  margin: 16px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  text-wrap: balance;
}
.lead { margin: 22px 0 0; color: #75685B; font-size: 19px; line-height: 1.62; }
.articles-section { min-height: 380px; padding: 72px 0 100px; }
.articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.article-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #EADFD0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(42,32,24,.03);
  display: flex;
  flex-direction: column;
}
.article-image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid #F0E8DC; background: #F6EFE3; }
.article-content { padding: 25px 26px 28px; display: flex; flex: 1; flex-direction: column; align-items: flex-start; }
.article-date { margin: 0; color: #C2643F; font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.article-title {
  margin: 9px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
}
.article-description {
  margin: 12px 0 22px;
  color: #75685B;
  font-size: 15px;
  line-height: 1.58;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.article-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article-link, .article-share {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 14px;
}
.article-share {
  border: 1px solid #E0D2C0;
  background: #FFF9F1;
  color: #4B3A2D;
  cursor: pointer;
  font-family: inherit;
}
.article-share:hover { background: #F3E7D8; }
.article-share:focus-visible, .article-link:focus-visible {
  outline: 3px solid rgba(194,100,63,.28);
  outline-offset: 3px;
}
.post-header {
  padding: 72px 0 44px;
  border-bottom: 1px solid #EFE6D8;
}
.post-header-inner { max-width: 860px; }
.post-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #75685B;
  font-size: 14px;
  font-weight: 600;
}
.post-back:hover { color: #C2643F; }
.post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.post-image {
  display: block;
  width: min(980px, calc(100% - 56px));
  max-height: 520px;
  margin: 42px auto 0;
  border: 1px solid #EADFD0;
  border-radius: 18px;
  object-fit: cover;
  background: #F6EFE3;
}
.post-body {
  max-width: 820px;
  padding: 52px 0 96px;
  color: #3B2D22;
  font-size: 19px;
  line-height: 1.74;
}
.post-body > *:first-child { margin-top: 0; }
.post-body h2,
.post-body h3 {
  margin: 44px 0 14px;
  font-family: "Bricolage Grotesque", sans-serif;
  color: #2A2018;
  line-height: 1.16;
}
.post-body h2 { font-size: 32px; }
.post-body h3 { font-size: 25px; }
.post-body p,
.post-body ul,
.post-body ol,
.post-body blockquote { margin: 0 0 24px; }
.post-body a {
  color: #A8512F;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
}
.post-body blockquote {
  padding: 4px 0 4px 22px;
  border-left: 3px solid #C2643F;
  color: #5E5346;
}
.post-body pre {
  overflow-x: auto;
  padding: 18px;
  border-radius: 12px;
  background: #271D16;
  color: #FFF9F1;
  font-size: 15px;
  line-height: 1.55;
}
.status {
  padding: 42px 24px;
  border: 1px solid #EADFD0;
  border-radius: 18px;
  background: #fff;
  color: #75685B;
  text-align: center;
  font-size: 16px;
}
.status[hidden] { display: none; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
footer { padding: 38px 28px; background: #271D16; color: #8F7F6E; font-size: 13.5px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer-brand { color: #B7A998; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; }
@media (max-width: 960px) {
  .articles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .desktop-nav { gap: 14px; font-size: 13.5px; }
}
@media (max-width: 760px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: flex; }
  .intro { padding: 64px 0 50px; }
  .articles-section { padding: 50px 0 72px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 36px, 1180px); }
  .header-inner { padding-inline: 18px; }
  .mobile-nav { padding-inline: 18px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-content { padding: 22px; }
  .post-header { padding: 54px 0 36px; }
  .post-image { width: min(100% - 36px, 1180px); border-radius: 14px; }
  .post-body { padding: 42px 0 72px; font-size: 17px; }
  .post-body h2 { font-size: 27px; }
  .post-body h3 { font-size: 22px; }
}
