:root {
    --paper: #f4f1ea;
    --surface: #fffdf8;
    --ink: #171715;
    --muted: #6e6a63;
    --line: #d8d3c9;
    --accent: #9d2432;
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --sans: Inter, "Helvetica Neue", Arial, sans-serif;
    --shell: min(1320px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.shell--article { max-width: 980px; }
.screen-reader-text, .skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
    z-index: 1000;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: #fff;
}
.eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.site-header {
    position: relative;
    z-index: 50;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
}
.site-header__utility {
    display: flex;
    justify-content: space-between;
    padding-block: 9px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.site-header__main {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    min-height: 86px;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand__mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: var(--serif);
    font-size: 22px;
    font-style: italic;
}
.brand__name { font-size: 27px; font-weight: 900; letter-spacing: .12em; }
.site-nav__list {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 38px);
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-nav a {
    position: relative;
    padding-block: 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 25px;
    left: 0;
    height: 2px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transition: transform .2s;
}
.site-nav a:hover::after { transform: scaleX(1); }
.search-toggle, .menu-toggle {
    border: 0;
    background: transparent;
    cursor: pointer;
}
.search-toggle {
    padding: 10px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.menu-toggle { display: none; }
.site-search {
    padding-block: 24px;
    border-top: 1px solid var(--line);
}
.site-search[hidden] { display: none; }
.search-form { display: flex; gap: 12px; width: 100%; }
.search-form input {
    width: 100%;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--ink);
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 34px);
}
.search-form button, .button {
    align-self: center;
    padding: 13px 20px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.hero { padding-block: clamp(56px, 7vw, 104px) 80px; }
.section-heading--hero {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 32px;
    align-items: end;
    margin-bottom: 50px;
}
.section-heading--hero .eyebrow { grid-column: 1 / -1; }
.section-heading--hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(52px, 7.3vw, 108px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .88;
}
.section-heading--hero p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 17px;
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 42px;
    padding-top: 32px;
    border-top: 1px solid var(--ink);
}
.hero-story {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
    gap: 30px;
}
.hero-story__image, .story-card__image, .mini-story__image, .brand-feature__image {
    display: block;
    overflow: hidden;
    background: #ded8cc;
}
.hero-story__image { aspect-ratio: 1.18; }
.hero-story__image img, .story-card__image img, .mini-story__image img, .brand-feature__image img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.hero-story:hover img, .story-card:hover img, .mini-story:hover img, .brand-feature__lead:hover img { transform: scale(1.025); }
.hero-story__content { align-self: end; }
.hero-story h2 {
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(32px, 3.2vw, 50px);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1;
}
.hero-story__content > div:not(.entry-meta) { color: var(--muted); }
.text-link {
    display: inline-block;
    margin-top: 18px;
    border-bottom: 1px solid currentColor;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.hero-stack { display: grid; align-content: start; gap: 0; }
.mini-story {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 18px;
    padding-block: 18px;
    border-top: 1px solid var(--line);
}
.mini-story:first-child { padding-top: 0; border-top: 0; }
.mini-story__image { aspect-ratio: 1.2; }
.mini-story h2 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.08;
}
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 14px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.entry-meta__category { color: var(--accent); }

.section { padding-block: clamp(68px, 8vw, 112px); }
.section-heading--line {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--ink);
}
.section-heading h2 {
    margin: 6px 0 0;
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .95;
}
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px 28px;
}
.story-card__image { aspect-ratio: 1.42; margin-bottom: 20px; }
.story-card__title {
    margin: 10px 0 12px;
    font-family: var(--serif);
    font-size: clamp(25px, 2.25vw, 34px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.05;
}
.story-card__excerpt { color: var(--muted); font-size: 14px; }
.story-card__excerpt p { margin: 0; }
.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c8c0b3, #eae4da);
    color: rgba(23, 23, 21, .35);
    font-family: var(--serif);
    font-size: 44px;
    letter-spacing: .15em;
}

.section--ink { background: var(--ink); color: #f7f3ea; }
.section-heading--inverse { border-color: rgba(255,255,255,.35); }
.section-heading--inverse .eyebrow { color: #e16b78; }
.brand-feature {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 70px;
}
.brand-feature__image { aspect-ratio: 1.55; margin-bottom: 22px; }
.brand-feature__lead h2 {
    max-width: 760px;
    margin: 12px 0 0;
    font-family: var(--serif);
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: .98;
}
.brand-feature__list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding-block: 22px;
    border-top: 1px solid rgba(255,255,255,.22);
}
.brand-feature__number { color: #e16b78; font-family: var(--serif); font-size: 20px; }
.brand-feature__list h3 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.05;
}
.section--ink .entry-meta { color: rgba(255,255,255,.55); }
.section--ink .entry-meta__category { color: #e16b78; }
.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--ink);
    border-left: 1px solid var(--line);
}
.topic-card {
    min-height: 310px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .2s, color .2s;
}
.topic-card:hover { background: var(--accent); color: #fff; }
.topic-card > span { font-family: var(--serif); font-size: 18px; }
.topic-card h3 { margin: 70px 0 12px; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.topic-card p { min-height: 72px; color: var(--muted); font-size: 14px; }
.topic-card:hover p { color: rgba(255,255,255,.75); }
.topic-card b { font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.archive-hero {
    padding-block: clamp(70px, 9vw, 135px) 55px;
    border-bottom: 1px solid var(--ink);
}
.archive-hero h1, .page-article__header h1 {
    max-width: 1100px;
    margin: 12px 0 18px;
    font-family: var(--serif);
    font-size: clamp(60px, 9vw, 132px);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: .87;
}
.archive-hero p, .archive-hero__description { max-width: 670px; color: var(--muted); font-size: 18px; }
.archive-search {
    width: 100%;
    max-width: none;
    margin-top: 40px;
}
.archive-search .search-form { align-items: end; }
.archive-search .search-form input { min-width: 0; }
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 65px;
}
.page-numbers {
    display: grid;
    place-items: center;
    min-width: 42px;
    height: 42px;
    border: 1px solid var(--line);
}
.page-numbers.current, a.page-numbers:hover { background: var(--ink); color: #fff; }

.article { padding-top: clamp(65px, 8vw, 120px); }
.article-header h1 {
    margin: 16px 0 24px;
    font-family: var(--serif);
    font-size: clamp(52px, 7.6vw, 105px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .91;
}
.article-header__dek {
    max-width: 740px;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 22px;
}
.article-hero { margin-top: 55px; }
.article-hero img { max-height: 820px; object-fit: cover; }
.article-hero figcaption { margin-top: 10px; color: var(--muted); font-size: 12px; }
.article-layout {
    display: grid;
    grid-template-columns: 180px minmax(0, 760px);
    justify-content: center;
    gap: 64px;
    padding-block: 70px;
}
.article-aside {
    display: flex;
    flex-direction: column;
    align-self: start;
    gap: 3px;
    padding-top: 10px;
    border-top: 1px solid var(--ink);
    font-size: 11px;
    text-transform: uppercase;
}
.article-aside b { margin-bottom: 22px; font-size: 12px; }
.article-content { min-width: 0; font-family: var(--serif); font-size: 20px; line-height: 1.72; }
.article-content > p:first-child::first-letter {
    float: left;
    margin: .06em .12em 0 0;
    color: var(--accent);
    font-size: 5em;
    line-height: .72;
}
.article-content h2, .article-content h3 {
    margin: 1.7em 0 .6em;
    color: var(--ink);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: 1.05;
}
.article-content h2 { font-size: clamp(36px, 5vw, 58px); }
.article-content h3 { font-size: 32px; }
.article-content a { color: var(--accent); border-bottom: 1px solid currentColor; }
.article-content img { height: auto; margin-block: 2em; }
.article-content blockquote {
    margin: 2em 0;
    padding: 0 0 0 28px;
    border-left: 3px solid var(--accent);
    font-size: 30px;
    line-height: 1.2;
}
.article-content table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; font-family: var(--sans); font-size: 14px; }
.article-content th, .article-content td { padding: 12px; border: 1px solid var(--line); }
.article-content iframe { max-width: 100%; }
.article-footer { padding-bottom: 20px; }
.article-footer__line { margin-block: 30px 18px; border-top: 1px solid var(--ink); }
.article-footer > span { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.article-tags a { padding: 7px 10px; border: 1px solid var(--line); font-size: 11px; }
.page-article { padding-block: 100px; }
.page-article__header { margin-bottom: 60px; }
.empty-state { padding-block: 120px; text-align: center; }
.empty-state h1 { margin: 12px 0; font-family: var(--serif); font-size: 58px; font-weight: 400; }
.empty-state p { margin-bottom: 35px; color: var(--muted); }
.error-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    min-height: 70vh;
    padding-block: 70px;
}
.error-page__code { color: var(--accent); font-family: var(--serif); font-size: clamp(180px, 25vw, 390px); line-height: .7; }
.error-page h1 { margin: 12px 0 20px; font-family: var(--serif); font-size: 58px; font-weight: 400; line-height: .95; }
.error-page p { color: var(--muted); }
.error-page .search-form { margin-block: 30px; }

.site-footer { padding-top: 70px; background: var(--ink); color: #f8f4ec; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 70px;
    padding-bottom: 70px;
}
.brand--footer .brand__mark { background: #f8f4ec; color: var(--ink); }
.site-footer p { max-width: 400px; color: rgba(255,255,255,.56); }
.site-footer h2 { margin: 0 0 18px; color: #e16b78; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover { color: #e16b78; }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px;
    border-top: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.5);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

@media (max-width: 1050px) {
    .site-header__main { grid-template-columns: 1fr auto auto; }
    .menu-toggle { display: block; width: 30px; height: 30px; padding: 6px 0; }
    .menu-toggle span:not(.screen-reader-text) { display: block; width: 28px; height: 1px; margin: 6px 0; background: var(--ink); }
    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        min-height: calc(100vh - 116px);
        padding: 40px 24px;
        border-top: 1px solid var(--ink);
        background: var(--paper);
    }
    .site-nav.is-open { display: block; }
    .site-nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
    .site-nav a { display: block; padding: 13px 0; font-family: var(--serif); font-size: 34px; font-weight: 400; text-transform: none; }
    .site-nav a::after { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-stack {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--line);
    }
    .mini-story,
    .mini-story:first-child {
        grid-template-columns: 1fr;
        padding: 0;
        border: 0;
    }
    .brand-feature { gap: 40px; }
    .topic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    :root { --shell: min(100% - 28px, 1320px); }
    .site-header__utility { display: none; }
    .site-header__main { min-height: 70px; gap: 15px; }
    .brand__name { font-size: 22px; }
    .brand__mark { width: 30px; height: 30px; font-size: 19px; }
    .search-toggle { font-size: 0; }
    .search-toggle::before { content: "⌕"; font-size: 25px; }
    .section-heading--hero { grid-template-columns: 1fr; margin-bottom: 32px; }
    .section-heading--hero h1 { font-size: clamp(48px, 16vw, 72px); }
    .hero { padding-block: 50px 65px; }
    .hero-grid { gap: 35px; }
    .hero-story { grid-template-columns: 1fr; }
    .hero-story__content { margin-top: -2px; }
    .hero-story h2 { font-size: 38px; }
    .hero-stack {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 0;
        border-top: 0;
    }
    .mini-story,
    .mini-story:first-child {
        grid-template-columns: 115px 1fr;
        padding-block: 18px;
        border-top: 1px solid var(--line);
    }
    .mini-story:first-child {
        padding-top: 0;
        border-top: 0;
    }
    .story-grid { grid-template-columns: 1fr; gap: 42px; }
    .story-card__title { font-size: 32px; }
    .section-heading--line { align-items: start; }
    .section-heading--line > .text-link { display: none; }
    .brand-feature { grid-template-columns: 1fr; }
    .brand-feature__list h3 { font-size: 24px; }
    .topic-grid { grid-template-columns: 1fr; }
    .topic-card { min-height: 260px; }
    .topic-card h3 { margin-top: 45px; }
    .article-header h1 { font-size: clamp(46px, 14.5vw, 70px); }
    .article-hero { width: 100%; }
    .article-layout { grid-template-columns: 1fr; gap: 20px; padding-top: 45px; }
    .article-aside { display: none; }
    .article-content { font-size: 18px; }
    .article-content blockquote { font-size: 25px; }
    .archive-hero h1, .page-article__header h1 { font-size: clamp(52px, 17vw, 82px); }
    .error-page { grid-template-columns: 1fr; gap: 40px; }
    .error-page__code { font-size: 180px; }
    .error-page h1 { font-size: 43px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 38px; }
}
.stilno-video {
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    background: #111;
    aspect-ratio: 16 / 9;
}

.stilno-video iframe,
.article-content iframe[src*="youtube.com"],
.article-content iframe[src*="youtube-nocookie.com"],
.article-content iframe[src*="youtu.be"] {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 0;
    aspect-ratio: 16 / 9;
}
