:root {
  --bg: #0c0b0a;
  --bg-soft: #12110f;
  --paper: #eee9df;
  --paper-soft: #d6d0c5;
  --muted: #9a9388;
  --line: #37332d;
  --line-soft: rgba(255,255,255,.08);
  --amber: #c99b5b;
  --amber-bright: #e4b66f;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
svg { display: block; width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.screen-reader-text { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.shell { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.shell--wide { width: min(calc(100% - 52px), 1220px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,7,.96);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.site-header__inner {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  min-width: 225px;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  line-height: 1;
}
.brand__title {
  font-size: 1.42rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand__subtitle {
  margin-top: 6px;
  color: #d2ccc0;
  font: 700 .56rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.primary-nav { margin-left: auto; }
.site-menu {
  display: flex;
  align-items: center;
  gap: 31px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-menu a {
  color: #d8d2c8;
  font: 700 .67rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .21em;
  text-transform: uppercase;
  transition: color .18s ease;
}
.site-menu a:hover,
.site-menu .current-menu-item > a,
.site-menu .current_page_item > a { color: var(--amber-bright); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.search-toggle, .menu-toggle, .social-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: #eee9df;
  padding: 4px;
  cursor: pointer;
}
.search-toggle { font-size: 1.15rem; }
.social-link { display: inline-grid; place-items: center; min-width: 22px; height: 22px; font: 500 1rem/1 Georgia,serif; }
.social-link svg { width: 18px; height: 18px; }
.social-link--x { font-size: 1.05rem; }
.header-search { width: 174px; }
.search-form { margin: 0; }
.search-field {
  width: 100%;
  height: 31px;
  padding: 0 12px;
  border: 1px solid #25231f;
  border-radius: 2px;
  outline: 0;
  background: #1b1a18;
  color: #e5dfd3;
  font-size: .82rem;
  font-style: italic;
}
.search-field:focus { border-color: #5e503c; }
.menu-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  padding: 8px 11px;
  font: 700 .65rem/1 Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  min-height: 405px;
  display: flex;
  align-items: stretch;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center 47%;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.87) 0%, rgba(0,0,0,.59) 33%, rgba(0,0,0,.20) 66%, rgba(0,0,0,.05) 100%),
    linear-gradient(0deg, rgba(0,0,0,.60) 0%, transparent 42%);
}
.hero__inner { position: relative; z-index: 2; display: flex; align-items: flex-end; padding-bottom: 32px; }
.hero__copy { width: min(620px, 64%); }
.eyebrow {
  color: var(--amber-bright);
  font: 700 .66rem/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 13px 0 2px;
  font-weight: 400;
  font-size: clamp(2.9rem, 5vw, 4.2rem);
  line-height: .98;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.hero p {
  margin: 8px 0 13px;
  color: #e2ddd4;
  font-size: 1.12rem;
}
.hero__rule { display: block; width: 45px; height: 2px; margin: 12px 0 18px; background: var(--amber-bright); }
.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  min-height: 42px;
  padding: 0 19px;
  border: 1px solid var(--amber);
  color: #f0ebe2;
  background: rgba(0,0,0,.14);
  font: 700 .66rem/1 Arial, Helvetica, sans-serif;
  letter-spacing: .21em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.button:hover { background: var(--amber); border-color: var(--amber); color: #100e0b; }
.button--small { min-height: 41px; margin-top: 8px; }

/* Baseline feature layout */
.home-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 38px;
  padding-top: 27px;
  padding-bottom: 22px;
}
.home-feature__main { min-width: 0; padding-right: 0; }
.home-sidebar { border-left: 1px solid var(--line); padding-left: 23px; min-width: 0; }
.breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 7px;
  color: #bdb7ac;
  font: 700 .64rem/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.breadcrumb span:first-child, .breadcrumb a:first-child { color: var(--amber-bright); }
.feature-title,
.article-header h1 {
  margin: 0;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.015em;
}
.feature-title { font-size: 2.78rem; }
.feature-deck,
.article-deck {
  margin: 10px 0 16px;
  max-width: 760px;
  color: #d4cec4;
  font-size: 1.15rem;
  line-height: 1.4;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  color: #c2bbb0;
  font-size: .76rem;
  margin: 0 0 17px;
}
.meta-item { display: inline-flex; align-items: center; gap: 8px; }
.meta-item svg { width: 15px; height: 15px; color: #e8e2d7; }
.feature-image {
  display: block;
  border: 1px solid #3b3731;
  background: #090909;
  overflow: hidden;
}
.feature-image img { width: 100%; aspect-ratio: 16/7.2; object-fit: cover; object-position: center 50%; filter: saturate(.88) contrast(1.03); transform: scale(1.01); }
.home-preview { margin: 10px 0 11px; max-width: 820px; color: #ddd7cd; font-size: 1.06rem; line-height: 1.43; }
.home-preview p { margin: 0 0 10px; }

.sidebar-section + .sidebar-section { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.sidebar-heading {
  margin: 0 0 15px;
  color: var(--amber-bright);
  font: 700 .67rem/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .21em;
  text-transform: uppercase;
}
.related-list { display: grid; gap: 11px; }
.related-card {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 14px;
  align-items: center;
  color: #eee9df;
}
.related-card img { width: 135px; height: 94px; object-fit: cover; border: 1px solid #2e2b26; filter: saturate(.85); transform: scale(1.012); }
.related-card__copy { display: block; min-width: 0; }
.related-card__copy strong { display: block; font-size: 1rem; font-weight: 400; line-height: 1.15; }
.related-card__copy span { display: block; margin-top: 4px; color: #aaa398; font-size: .82rem; line-height: 1.25; }
.related-card:hover strong { color: var(--amber-bright); }
.related-card--static { cursor: default; }
.category-list { margin: 0; padding: 0; list-style: none; }
.category-list li { border-bottom: 1px solid #292621; }
.category-list a, .category-list li > span { color: #d7d1c7; }
.category-list a, .category-list li:not(:has(a)) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 29px;
  font-size: .91rem;
}
.category-list a:hover { color: var(--amber-bright); }

/* Single article */
.article-header { padding-top: 36px; padding-bottom: 18px; }
.article-header h1 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 318px;
  gap: 38px;
  padding-bottom: 56px;
}
.article-main { min-width: 0; }
.article-feature { margin: 0 0 22px; border: 1px solid #3a3630; overflow: hidden; }
.article-feature img { width: 100%; max-height: 550px; object-fit: cover; transform: scale(1.01); }
.prose { color: #ded8cf; font-size: 1.08rem; line-height: 1.7; }
.prose > * { max-width: 820px; }
.prose p { margin: 0 0 1.15em; }
.prose h2, .prose h3 { margin: 1.8em 0 .6em; color: #f2ede4; font-weight: 400; line-height: 1.12; }
.prose h2 { font-size: 2.2rem; }
.prose h3 { font-size: 1.7rem; }
.prose blockquote { margin: 1.8em 0; padding: 5px 0 5px 24px; border-left: 2px solid var(--amber); color: #f0eadf; font-size: 1.35rem; line-height: 1.45; }
.prose blockquote p { margin: 0; }
.prose a { color: var(--amber-bright); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose img { margin: 1.4em 0; border: 1px solid #3a3630; }
.article-sidebar { align-self: start; }
.post-navigation-wrap { margin-top: 38px; padding-top: 20px; border-top: 1px solid var(--line); }
.post-navigation-wrap .nav-links { display: flex; justify-content: space-between; gap: 30px; font-size: .95rem; }

/* Archive */
.archive-head, .page-head { padding-top: 52px; padding-bottom: 25px; }
.archive-head h1, .page-head h1 { margin: 7px 0 0; font-weight: 400; font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1; }
.archive-description, .page-head p { max-width: 800px; color: var(--muted); font-size: 1.1rem; }
.archive-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; padding-bottom: 35px; }
.archive-card { display: grid; grid-template-columns: 220px 1fr; min-height: 180px; border: 1px solid var(--line); background: #11100e; }
.archive-card__image { min-height: 180px; overflow: hidden; }
.archive-card__image img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.012); }
.archive-card__copy { padding: 19px 20px; }
.archive-card h2 { margin: 7px 0 6px; font-weight: 400; font-size: 1.55rem; line-height: 1.05; }
.archive-card p { margin: 0 0 13px; color: #aaa398; font-size: .92rem; }
.archive-card__meta { color: #867f75; font: .65rem/1.4 Arial, sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.pagination-wrap { padding-bottom: 50px; }
.nav-links { display: flex; gap: 8px; }
.page-numbers { display: inline-grid; place-items: center; min-width: 36px; height: 36px; border: 1px solid var(--line); }
.page-numbers.current { color: #111; background: var(--amber); border-color: var(--amber); }
.empty-state { min-height: 35vh; color: var(--muted); }

/* Pages */
.page-body { padding-bottom: 70px; }
.prose--page { max-width: 850px; }
.page-head--404 { min-height: 65vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.page-head--404 .button { margin-top: 8px; }

/* Footer */
.site-footer { border-top: 1px solid #3b3731; background: #0b0a09; }
.footer-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 230px 1fr 310px;
  gap: 24px;
  align-items: center;
}
.brand--footer { min-width: 0; }
.brand--footer .brand__title { font-size: 1.18rem; }
.brand--footer .brand__subtitle { font-size: .5rem; }
.footer-nav .site-menu { justify-content: center; gap: 26px; }
.site-menu--footer a { font-size: .59rem; }
.footer-end { display: flex; justify-content: flex-end; align-items: center; gap: 19px; }
.footer-motto { color: #746f66; font: 700 .55rem/1.2 Arial, sans-serif; letter-spacing: .23em; text-transform: uppercase; white-space: nowrap; }
.footer-social { display: flex; gap: 8px; }

@media (max-width: 1080px) {
  .site-header__inner { gap: 18px; }
  .brand { min-width: 190px; }
  .site-menu { gap: 18px; }
  .header-search { display: none; position: absolute; top: 62px; right: 24px; width: 250px; padding: 10px; background: #0b0b0a; border: 1px solid var(--line); }
  .header-search.is-open { display: block; }
  .home-feature, .article-grid { grid-template-columns: minmax(0,1fr) 290px; gap: 28px; }
  .related-card { grid-template-columns: 110px 1fr; }
  .related-card img { width: 110px; height: 80px; }
}

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .primary-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px 26px;
    background: #0a0a09;
    border-top: 1px solid #27241f;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav .site-menu { flex-direction: column; align-items: flex-start; gap: 17px; }
  .header-tools { margin-left: 0; }
  .hero { min-height: 390px; background-position: 55% center; }
  .hero__copy { width: 75%; }
  .home-feature, .article-grid { grid-template-columns: 1fr; }
  .home-sidebar { border-left: 0; border-top: 1px solid var(--line); padding: 24px 0 0; }
  .related-list { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
  .related-card { grid-template-columns: 128px 1fr; }
  .related-card img { width: 128px; height: 88px; }
  .archive-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 30px 0; text-align: center; }
  .brand--footer { align-items: center; }
  .footer-nav .site-menu { flex-wrap: wrap; }
  .footer-end { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .shell, .shell--wide { width: min(calc(100% - 28px), var(--max)); }
  .site-header__inner { min-height: 58px; }
  .brand { min-width: 0; }
  .brand__title { font-size: 1.02rem; }
  .brand__subtitle { margin-top: 5px; font-size: .46rem; }
  .primary-nav { top: 58px; }
  .header-tools { gap: 7px; }
  .search-toggle { display: none; }
  .hero { min-height: 470px; background-position: 61% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.45)), linear-gradient(0deg, rgba(0,0,0,.78), transparent 58%); }
  .hero__inner { padding-bottom: 27px; }
  .hero__copy { width: 100%; }
  .hero h1 { font-size: 2.72rem; }
  .hero p { max-width: 310px; font-size: 1rem; }
  .home-feature { padding-top: 22px; gap: 30px; }
  .feature-title { font-size: 2.2rem; }
  .feature-deck { font-size: 1rem; }
  .article-meta { gap: 10px 16px; font-size: .7rem; }
  .feature-image img { aspect-ratio: 4/3; }
  .home-preview { font-size: 1rem; }
  .related-list { grid-template-columns: 1fr; }
  .related-card { grid-template-columns: 112px 1fr; }
  .related-card img { width: 112px; height: 78px; }
  .archive-card { grid-template-columns: 1fr; }
  .archive-card__image { min-height: 220px; }
  .article-header { padding-top: 28px; }
  .article-feature img { max-height: none; }
  .footer-nav .site-menu { flex-direction: column; gap: 13px; }
  .footer-motto { white-space: normal; }
}


/* All articles index */
.articles-index {
  padding-top: 34px;
  padding-bottom: 54px;
  border-top: 1px solid var(--line);
}
.articles-index__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.articles-index__head h2 {
  margin: 8px 0 0;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1;
}
.articles-index__head p {
  margin: 0 0 2px;
  max-width: 470px;
  color: var(--muted);
  text-align: right;
  font-size: .98rem;
}
.articles-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.articles-index__card {
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  min-height: 190px;
  border: 1px solid var(--line);
  background: #11100e;
  overflow: hidden;
}
.articles-index__image {
  display: block;
  min-height: 190px;
  overflow: hidden;
  background: #090909;
}
.articles-index__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.012);
  filter: saturate(.88) contrast(1.02);
}
.articles-index__copy {
  padding: 18px 19px 16px;
  min-width: 0;
}
.articles-index__copy h3 {
  margin: 8px 0 8px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.08;
}
.articles-index__copy p {
  margin: 0 0 14px;
  color: #aaa398;
  font-size: .9rem;
  line-height: 1.38;
}
.articles-index__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: #817b72;
  font: .62rem/1.35 Arial, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .articles-index__grid { grid-template-columns: 1fr; }
  .articles-index__head { align-items: flex-start; }
}
@media (max-width: 620px) {
  .articles-index__head { display: block; }
  .articles-index__head p { margin-top: 10px; text-align: left; }
  .articles-index__card { grid-template-columns: 1fr; }
  .articles-index__image { min-height: 220px; }
}
