:root {
  --ink: #151713;
  --ink-soft: #484b44;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d9;
  --lime: #cfff45;
  --lime-deep: #a7d62d;
  --white: #fff;
  --line: rgba(21,23,19,.16);
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Avenir Next Condensed", "DIN Condensed", Impact, "Roboto Condensed", "Liberation Sans Narrow", "Nimbus Sans Narrow", Arial, sans-serif;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { max-width: 100%; font-weight: 900; overflow-wrap: normal; word-break: normal; -webkit-hyphens: auto; hyphens: auto; text-wrap: balance; }
::selection { color: var(--ink); background: var(--lime); }
.shell { width: min(var(--max), calc(100% - 8vw)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 10px; left: 10px; padding: 12px 16px; color: var(--paper); background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0; font-size: 12px; line-height: 1.2; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; }
.eyebrow::before { content: ""; width: 30px; height: 2px; background: currentColor; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 23px; border: 1px solid var(--ink); border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 800; transition: transform .22s ease, box-shadow .22s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(21,23,19,.14); }
.btn--dark { color: var(--paper); background: var(--ink); }
.btn--lime { color: var(--ink); background: var(--lime); border-color: var(--lime); }

.site-nav { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid var(--line); background: rgba(244,241,233,.92); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); }
.site-nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 82px; }
.brand { text-decoration: none; font-size: 19px; line-height: 1; font-weight: 900; letter-spacing: .21em; }
.brand em { color: var(--lime-deep); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.nav-links a { text-decoration: none; }
.nav-links a[aria-current="page"] { box-shadow: inset 0 -2px var(--lime-deep); }
.site-nav__right { justify-self: end; }
.site-nav__right .btn { min-height: 44px; padding-inline: 18px; }

.blog-hero { padding: clamp(72px, 8vw, 130px) 0; color: #fff; background: var(--ink); border-bottom: 1px solid var(--lime); }
.blog-hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.blog-hero__grid > *, .post-grid > *, .article-layout > *, .article-pager > *, .footer-grid > * { min-width: 0; }
.blog-hero h1 { max-width: 900px; margin: 25px 0 0; font-family: var(--display); font-size: clamp(58px, 7.4vw, 120px); line-height: .88; letter-spacing: -.07em; text-transform: uppercase; }
.blog-hero__grid > div:last-child > p { max-width: 650px; margin: 0 0 28px; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.7vw, 24px); line-height: 1.58; }
.text-link { display: inline-flex; gap: 16px; align-items: center; color: inherit; text-decoration: none; font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.text-link span { color: var(--lime-deep); font-size: 20px; }
.blog-hero .text-link span { color: var(--lime); }

.journal-section { padding: clamp(70px, 8vw, 125px) 0; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(45px, 6vw, 92px) 24px; }
.post-card { min-width: 0; border-top: 1px solid var(--ink); }
.post-card__media { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 10; overflow: hidden; color: var(--lime); background: #1b1d18; text-decoration: none; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.22,.8,.22,1); }
.post-card:hover .post-card__media img { transform: scale(1.025); }
.post-card__media--portrait { aspect-ratio: 4 / 5; background: #25231f; }
.post-card__media--portrait img { object-fit: contain; }
.post-card:hover .post-card__media--portrait img { transform: none; }
.post-card__placeholder { font-family: var(--display); font-size: clamp(42px, 6vw, 82px); font-weight: 900; line-height: .78; letter-spacing: -.07em; text-align: center; }
.post-card__body { padding: 24px 0 0; }
.post-card__meta { display: flex; justify-content: space-between; gap: 18px; color: var(--ink-soft); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.post-card__meta span { color: var(--lime-deep); }
.post-card h2 { margin: 22px 0 15px; font-family: var(--display); font-size: clamp(34px, 3.4vw, 54px); line-height: .96; letter-spacing: -.05em; text-transform: uppercase; }
.post-card h2 a { text-decoration: none; }
.post-card p { max-width: 660px; margin: 0 0 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.65; }

.journal-cta { padding: clamp(72px, 8vw, 120px) 0; color: #fff; background: var(--ink); border-top: 1px solid var(--lime); }
.journal-cta h2 { max-width: 980px; margin: 24px 0 38px; font-family: var(--display); font-size: clamp(46px, 5.5vw, 88px); line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }

.article-hero { padding: clamp(55px, 6vw, 92px) 0 clamp(40px, 5vw, 72px); color: #fff; background: var(--ink); border-bottom: 1px solid var(--lime); }
.article-hero__copy { max-width: 1120px; margin-bottom: 48px; }
.article-back { display: inline-block; margin-bottom: 50px; color: var(--lime); text-decoration: none; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.article-meta { display: flex; flex-wrap: wrap; gap: 13px 24px; color: rgba(255,255,255,.56); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-meta span:first-child { color: var(--lime); }
.article-hero h1 { margin: 24px 0 25px; font-family: var(--display); font-size: clamp(52px, 6.8vw, 106px); line-height: .9; letter-spacing: -.065em; text-transform: uppercase; }
.article-hero__copy > p { max-width: 850px; margin: 0; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.58; }
.article-hero__media { aspect-ratio: 16 / 7; overflow: hidden; background: #24261f; }
.article-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.article-hero__media--portrait { width: min(100%, 780px); aspect-ratio: auto; margin-inline: auto; background: transparent; }
.article-hero__media--portrait img { display: block; width: 100%; height: auto; object-fit: contain; }

.article-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: clamp(50px, 8vw, 125px); padding-top: clamp(65px, 8vw, 115px); padding-bottom: clamp(70px, 8vw, 120px); }
.article-layout > aside { position: sticky; top: 120px; align-self: start; padding-top: 14px; border-top: 1px solid var(--ink); }
.article-layout > aside span { color: var(--lime-deep); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.article-layout > aside p { font-family: var(--display); font-size: 25px; font-weight: 900; line-height: 1.08; letter-spacing: -.035em; text-transform: uppercase; }
.article-content { min-width: 0; }
.article-rich { font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.78; }
.article-rich + .article-rich, .article-media + .article-rich, .article-rich + .article-media { margin-top: 42px; }
.article-rich p { margin: 0 0 1.35em; }
.article-rich h2 { margin: 2em 0 .72em; font-family: var(--display); font-size: clamp(35px, 4vw, 58px); line-height: .98; letter-spacing: -.05em; text-transform: uppercase; }
.article-rich h3 { margin: 1.8em 0 .65em; font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase; }
.article-rich a { text-decoration-color: var(--lime-deep); text-decoration-thickness: 2px; text-underline-offset: 4px; }
.article-rich blockquote { margin: 2em 0; padding: 25px 0 25px 28px; border-left: 5px solid var(--lime-deep); font-size: 1.2em; line-height: 1.55; }
.article-rich li { margin: .6em 0; }
.article-media { margin: 48px 0; }
.article-media__frame { display: grid; place-items: center; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line); }
.article-media__frame img { width: 100%; height: 100%; object-fit: contain; }
.article-media figcaption { margin-top: 12px; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.article-embed { position: relative; aspect-ratio: 16 / 9; margin: 48px 0; overflow: hidden; background: #000; }
.article-embed iframe { width: 100%; height: 100%; border: 0; }
.article-disclaimer { margin-top: 65px; padding: 20px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); color: var(--ink-soft); font-size: 13px; line-height: 1.55; }
.article-pager { display: grid; grid-template-columns: repeat(2, 1fr); padding-bottom: clamp(70px, 8vw, 120px); }
.article-pager a { min-height: 175px; padding: 28px; border: 1px solid var(--line); text-decoration: none; }
.article-pager a + a { border-left: 0; }
.article-pager span { display: block; margin-bottom: 28px; color: var(--lime-deep); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.article-pager strong { display: block; font-family: var(--display); font-size: clamp(24px, 2.6vw, 38px); line-height: 1; letter-spacing: -.04em; text-transform: uppercase; }

.site-footer { padding: 55px 0 90px; color: rgba(255,255,255,.68); background: var(--ink); border-top: 1px solid rgba(255,255,255,.16); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.site-footer .brand { color: #fff; }
.site-footer h3 { margin: 0 0 16px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.site-footer p { margin: 18px 0 0; max-width: 470px; line-height: 1.65; }
.site-footer a:not(.brand) { display: block; margin: 8px 0; text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); font-size: 11px; line-height: 1.5; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .site-nav__inner { grid-template-columns: 1fr auto; }
  .site-nav__inner .brand { justify-self: start; }
  .blog-hero__grid, .article-layout { grid-template-columns: 1fr; }
  .article-layout > aside { display: none; }
  .article-content { width: min(760px, 100%); margin-inline: auto; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 36px, var(--max)); }
  .site-nav__inner { height: 70px; }
  .site-nav__right .btn { min-height: 42px; padding: 0 13px; font-size: 11px; }
  .brand { font-size: 16px; }
  .post-grid { grid-template-columns: 1fr; }
  .post-card__media { aspect-ratio: 4 / 3; }
  .post-card__media--portrait { aspect-ratio: 4 / 5; }
  .article-hero__media { aspect-ratio: 4 / 3; }
  .article-hero__media--portrait { aspect-ratio: auto; }
  .article-hero__copy { margin-bottom: 34px; }
  .article-back { margin-bottom: 35px; }
  .article-media__frame { aspect-ratio: 4 / 3; }
  .article-pager { grid-template-columns: 1fr; }
  .article-pager a + a { border-top: 0; border-left: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
