:root {
  --yellow: #f2d900;
  --ink: #101010;
  --paper: #f8f8f4;
  --soft: #ecece5;
  --muted: #66665f;
  --pad: clamp(22px, 4vw, 70px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { color: inherit; font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 1000; background: var(--yellow); padding: 12px 18px; }
.skip-link:focus { top: 20px; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 var(--pad); background: rgba(248,248,244,.94); border-bottom: 1px solid rgba(16,16,16,.2); backdrop-filter: blur(15px); }
.brand { display: inline-flex; align-items: center; gap: 9px; font-size: 19px; letter-spacing: -.04em; font-weight: 900; }
.brand strong { background: var(--yellow); padding: 7px 9px 6px; font-size: 13px; letter-spacing: .02em; }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 36px); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
.main-nav a:not(.nav-cta) { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: flex; gap: 22px; border: 1px solid var(--ink); padding: 11px 14px; transition: .2s; }
.nav-cta:hover { background: var(--ink); color: white; }
.menu-toggle { display: none; border: 0; background: transparent; text-transform: uppercase; }

.blog-hero { min-height: 72vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: clamp(40px, 7vw, 120px); padding: clamp(90px, 12vw, 180px) var(--pad) clamp(60px, 8vw, 110px); border-bottom: 1px solid var(--ink); }
.kicker, .article-kicker { margin: 0 0 34px; font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.kicker::before, .article-kicker::before { content: ""; display: inline-block; width: 10px; height: 10px; margin-right: 10px; border-radius: 50%; background: var(--yellow); }
.blog-hero h1 { margin: 0; max-width: 1000px; font-size: clamp(64px, 9vw, 150px); line-height: .79; letter-spacing: -.078em; text-transform: uppercase; }
.blog-hero h1 em { position: relative; z-index: 1; font-family: Georgia, serif; font-weight: 400; text-transform: none; }
.blog-hero h1 em::after { content: ""; position: absolute; z-index: -1; left: -2%; right: -4%; bottom: .05em; height: .25em; background: var(--yellow); transform: rotate(-1.2deg); }
.blog-hero-copy { max-width: 540px; padding-bottom: 8px; }
.blog-hero-copy p { margin: 0; font-size: clamp(19px, 1.7vw, 26px); line-height: 1.44; letter-spacing: -.025em; }
.blog-hero-copy span { display: block; margin-top: 42px; padding-top: 18px; border-top: 1px solid var(--ink); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.featured { display: grid; grid-template-columns: 1.2fr .8fr; min-height: 720px; background: var(--ink); color: white; }
.featured-media { min-height: 620px; overflow: hidden; }
.featured-media img { transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.featured:hover img { transform: scale(1.025); }
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 110px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-bottom: 40px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-meta span:first-child { color: var(--yellow); }
.featured h2 { margin: 0 0 30px; font-family: Georgia, serif; font-size: clamp(44px, 5vw, 78px); font-weight: 400; line-height: .96; letter-spacing: -.055em; }
.featured-copy > p { max-width: 580px; margin: 0; color: #c7c7c0; font-size: 18px; line-height: 1.55; }
.read-link { display: inline-flex; justify-content: space-between; align-items: center; gap: 36px; width: fit-content; min-width: 190px; margin-top: 48px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.article-list { padding: clamp(80px, 10vw, 150px) var(--pad); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 55px; }
.section-head p { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.section-head h2 { margin: 0; font-size: clamp(45px, 6vw, 90px); line-height: .9; letter-spacing: -.065em; }
.articles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.article-card { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 480px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.card-image { min-height: 360px; overflow: hidden; }
.card-image img { transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .3s; }
.article-card:hover .card-image img { transform: scale(1.04); filter: saturate(1.08); }
.card-copy { display: flex; flex-direction: column; padding: clamp(26px, 3.2vw, 52px); }
.card-copy h3 { margin: 42px 0 22px; font-family: Georgia, serif; font-size: clamp(32px, 3.3vw, 52px); font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.card-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.55; }
.card-copy .read-link { margin-top: auto; color: var(--ink); }

.editorial-note { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 130px); padding: clamp(80px, 10vw, 150px) var(--pad); background: var(--yellow); }
.editorial-note > p { margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.editorial-note blockquote { margin: 0; max-width: 1000px; font-family: Georgia, serif; font-size: clamp(40px, 5.2vw, 82px); line-height: .98; letter-spacing: -.055em; }

.simple-footer { display: grid; grid-template-columns: 1.2fr .8fr .7fr; gap: 50px; align-items: end; padding: 70px var(--pad) 36px; background: var(--ink); color: white; }
.footer-brand { display: inline-flex; align-items: baseline; gap: 7px; font-size: clamp(30px, 4vw, 55px); letter-spacing: -.06em; }
.footer-brand span { font-weight: 900; }
.footer-brand strong { color: var(--yellow); font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.simple-footer p { margin: 18px 0 0; max-width: 430px; color: #aaa; font-size: 15px; line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; gap: 13px; font-size: 13px; text-transform: uppercase; }
.footer-contact { font-size: 14px; line-height: 1.8; overflow-wrap: anywhere; }
.footer-contact a { color: var(--yellow); }
.footer-base { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 30px; margin-top: 30px; padding-top: 24px; border-top: 1px solid #555; color: #888; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

/* Article */
.article-hero { padding: clamp(85px, 10vw, 145px) var(--pad) clamp(50px, 7vw, 95px); }
.article-hero-inner { width: min(1120px, 100%); margin: 0 auto; }
.article-hero h1 { margin: 0; max-width: 1050px; font-family: Georgia, serif; font-size: clamp(54px, 7.8vw, 116px); font-weight: 400; line-height: .91; letter-spacing: -.065em; }
.article-standfirst { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(35px, 7vw, 100px); align-items: start; margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--ink); }
.article-standfirst .article-meta { margin: 0; }
.article-standfirst > p { margin: 0; font-size: clamp(20px, 2vw, 29px); line-height: 1.42; letter-spacing: -.025em; }
.article-cover { width: min(1440px, calc(100% - 2 * var(--pad))); height: min(72vw, 780px); min-height: 460px; margin: 0 auto; overflow: hidden; }
.article-cover img { object-position: center; }
.article-body { display: grid; grid-template-columns: minmax(170px, .55fr) minmax(0, 1.45fr); gap: clamp(45px, 9vw, 150px); width: min(1120px, calc(100% - 2 * var(--pad))); margin: 0 auto; padding: clamp(75px, 10vw, 150px) 0; }
.article-aside { position: sticky; top: 120px; align-self: start; }
.article-aside p { margin: 0 0 16px; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.article-aside a { display: block; width: fit-content; margin-top: 9px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 13px; }
.prose { width: min(740px, 100%); }
.prose > p { margin: 0 0 1.45em; font-family: Georgia, serif; font-size: clamp(19px, 1.55vw, 23px); line-height: 1.72; }
.prose > p:first-child::first-letter { float: left; margin: .06em .12em 0 0; font-family: Arial, sans-serif; font-size: 4.5em; font-weight: 900; line-height: .76; }
.prose h2 { margin: 2em 0 .65em; font-size: clamp(35px, 4.1vw, 59px); line-height: .98; letter-spacing: -.055em; }
.prose h3 { margin: 2em 0 .55em; font-size: clamp(25px, 2.5vw, 36px); line-height: 1.05; letter-spacing: -.035em; }
.prose ul { margin: 0 0 2em; padding: 0; list-style: none; }
.prose li { padding: 16px 0 16px 28px; border-top: 1px solid #b8b8b0; font-size: 17px; line-height: 1.55; position: relative; }
.prose li:last-child { border-bottom: 1px solid #b8b8b0; }
.prose li::before { content: "↘"; position: absolute; left: 0; font-weight: 900; }
.pullquote { margin: 70px calc(-1 * clamp(15px, 4vw, 65px)); padding: clamp(38px, 5vw, 70px); background: var(--yellow); font-family: Georgia, serif; font-size: clamp(32px, 4vw, 56px); line-height: 1.05; letter-spacing: -.045em; }
.article-next { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; background: var(--ink); color: white; }
.article-next-image { overflow: hidden; }
.article-next-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px, 7vw, 110px); }
.article-next-copy span { color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.article-next-copy h2 { margin: 28px 0 0; font-family: Georgia, serif; font-size: clamp(38px, 4.7vw, 70px); font-weight: 400; line-height: .98; letter-spacing: -.05em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .site-header { min-height: 70px; }
  .menu-toggle { display: flex; gap: 12px; }
  .main-nav { position: fixed; inset: 70px 0 0; overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 30px var(--pad); background: var(--yellow); transform: translateX(100%); transition: transform .35s ease; }
  .menu-open .main-nav { transform: none; }
  .main-nav a { padding: 19px 0; border-bottom: 1px solid var(--ink); font-size: clamp(24px, 5vw, 38px); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { border: 0; }
  .blog-hero { grid-template-columns: 1fr; min-height: auto; }
  .blog-hero-copy { margin-left: 18%; }
  .featured { grid-template-columns: 1fr; }
  .featured-media { min-height: 540px; }
  .articles-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .blog-hero { padding-top: 92px; }
  .blog-hero h1 { font-size: clamp(57px, 19vw, 94px); }
  .blog-hero-copy { margin-left: 0; }
  .featured-media { min-height: 420px; }
  .article-card { grid-template-columns: 1fr; }
  .card-image { min-height: 370px; }
  .card-copy { min-height: 340px; }
  .section-head { display: block; }
  .section-head p { margin-bottom: 25px; }
  .editorial-note { grid-template-columns: 1fr; }
  .simple-footer { grid-template-columns: 1fr; }
  .footer-base { display: block; }
  .footer-base span { display: block; margin-bottom: 10px; }
  .article-standfirst { grid-template-columns: 1fr; }
  .article-cover { min-height: 390px; width: 100%; }
  .article-body { grid-template-columns: 1fr; width: min(100% - 2 * var(--pad), 740px); }
  .article-aside { position: static; padding-bottom: 25px; border-bottom: 1px solid var(--ink); }
  .article-next { grid-template-columns: 1fr; }
  .article-next-image { min-height: 360px; }
}

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