@font-face {
    font-family: "IvyPresto Display";
    src: local("IvyPresto Display");
    font-weight: 400;
}

@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: local("Neue Haas Grotesk Display Pro 55 Roman");
    font-weight: 400;
}

@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: local("Neue Haas Grotesk Display Pro 45 Light");
    font-weight: 300;
}

:root {
    --canvas: #f4f1ea;
    --paper: #ece6da;
    --ink: #16140f;
    --body: #302c24;
    --forest: #46543d;
    --gold: #c5a87c;
    --gold-soft: #e4d6bc;
    --line: rgba(22, 20, 15, 0.16);
    --serif: "IvyPresto Display", "Times New Roman", Georgia, serif;
    --sans: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--canvas);
    color: var(--body);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

a:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px;
}

.site-header {
    min-height: 88px;
    padding: 16px clamp(22px, 4vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    color: var(--canvas);
    background: var(--ink);
    border-bottom: 1px solid rgba(244, 241, 234, 0.12);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-mark img {
    width: 40px;
    height: 56px;
    filter: invert(92%) sepia(8%) saturate(300%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
}

.text-link {
    color: var(--canvas);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 6px;
    background: rgba(244, 241, 234, 0.35);
    transition: background-color 180ms ease;
}

.text-link:hover {
    color: var(--gold-soft);
}

.text-link:hover::after {
    background: var(--gold);
}

.language-link {
    min-width: 38px;
    padding: 10px 9px;
    text-align: center;
    border: 1px solid rgba(244, 241, 234, 0.32);
}

.language-link::after {
    display: none;
}

.language-link:hover {
    border-color: var(--gold);
}

.eyebrow {
    display: block;
    color: var(--forest);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-transform: uppercase;
}

.blog-hero {
    min-height: 560px;
    padding: clamp(90px, 12vw, 170px) clamp(24px, 7vw, 110px) 90px;
    display: grid;
    align-items: end;
    color: var(--canvas);
    background:
        radial-gradient(circle at 82% 8%, rgba(197, 168, 124, 0.2), transparent 32%),
        var(--forest);
}

.blog-hero-inner {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.blog-hero .eyebrow {
    color: var(--gold-soft);
}

.blog-hero h1 {
    max-width: 900px;
    margin-top: 22px;
    font: 400 clamp(52px, 9vw, 108px)/0.94 var(--serif);
    letter-spacing: -0.025em;
}

.blog-hero p {
    max-width: 610px;
    margin-top: 30px;
    color: rgba(244, 241, 234, 0.76);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.65;
}

.articles-section {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 120px) clamp(24px, 5vw, 64px) clamp(90px, 12vw, 160px);
}

.section-intro {
    padding-bottom: 32px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
}

.section-intro h2 {
    margin-top: 12px;
    color: var(--ink);
    font: 400 clamp(34px, 5vw, 58px)/1.04 var(--serif);
}

.article-count {
    color: rgba(48, 44, 36, 0.55);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-card {
    padding: clamp(38px, 6vw, 72px) 0;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
    gap: clamp(34px, 7vw, 88px);
    border-bottom: 1px solid var(--line);
}

.article-card-image {
    overflow: hidden;
    min-height: 520px;
    background: var(--paper);
}

.article-card-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: 50% 38%;
    transition: transform 600ms cubic-bezier(0.2, 0.72, 0.22, 1);
}

.article-card:hover .article-card-image img {
    transform: scale(1.025);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    color: rgba(48, 44, 36, 0.63);
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.article-card h3 {
    margin-top: 22px;
    color: var(--ink);
    font: 400 clamp(36px, 5vw, 60px)/1.04 var(--serif);
    letter-spacing: -0.018em;
}

.article-card-copy > p {
    margin-top: 24px;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
}

.read-link {
    margin-top: 34px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: var(--forest);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

.read-link span {
    width: 48px;
    height: 1px;
    background: var(--gold);
    transition: width 180ms ease;
}

.read-link:hover span {
    width: 68px;
}

.article-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    min-height: calc(100vh - 88px);
    background: var(--forest);
}

.article-hero-copy {
    padding: clamp(70px, 9vw, 130px) clamp(28px, 6vw, 96px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--canvas);
}

.article-hero-copy .eyebrow {
    color: var(--gold-soft);
}

.article-hero h1 {
    max-width: 720px;
    margin-top: 26px;
    font: 400 clamp(48px, 6.2vw, 88px)/0.96 var(--serif);
    letter-spacing: -0.025em;
}

.article-hero .article-meta {
    margin-top: 34px;
    color: rgba(244, 241, 234, 0.62);
}

.article-hero-image {
    min-height: 620px;
    overflow: hidden;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.article-layout {
    width: min(100%, 1160px);
    margin: 0 auto;
    padding: clamp(74px, 10vw, 140px) clamp(24px, 5vw, 64px);
    display: grid;
    grid-template-columns: 190px minmax(0, 690px);
    justify-content: center;
    gap: clamp(44px, 8vw, 110px);
}

.article-aside {
    align-self: start;
    position: sticky;
    top: 40px;
}

.article-aside-label {
    color: rgba(48, 44, 36, 0.53);
    font-size: 10px;
    letter-spacing: 0.18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.share-links {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.share-links a {
    color: var(--forest);
    font-size: 12px;
    text-decoration-color: rgba(70, 84, 61, 0.35);
    text-underline-offset: 4px;
}

.article-body .standfirst {
    padding-bottom: 42px;
    color: var(--ink);
    font: 400 clamp(26px, 3vw, 34px)/1.36 var(--serif);
    border-bottom: 1px solid var(--line);
}

.article-body h2 {
    margin: 68px 0 24px;
    color: var(--forest);
    font: 400 clamp(32px, 4vw, 45px)/1.08 var(--serif);
}

.article-body p {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.85;
}

.article-body p + p {
    margin-top: 25px;
}

.article-closing {
    margin-top: 64px;
    padding: 42px 0;
    color: var(--ink);
    font: 400 clamp(28px, 4vw, 42px)/1.22 var(--serif);
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.article-cta {
    padding: clamp(90px, 11vw, 145px) 24px;
    text-align: center;
    color: var(--canvas);
    background:
        radial-gradient(circle at 50% 0, rgba(197, 168, 124, 0.2), transparent 38%),
        var(--ink);
}

.article-cta .eyebrow {
    color: var(--gold);
}

.article-cta h2 {
    max-width: 800px;
    margin: 22px auto 0;
    font: 400 clamp(42px, 7vw, 78px)/1 var(--serif);
}

.primary-button {
    margin-top: 38px;
    padding: 17px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    background: var(--gold-soft);
    border: 1px solid var(--gold-soft);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, background-color 180ms ease;
}

.primary-button:hover {
    color: var(--canvas);
    background: transparent;
}

.site-footer {
    padding: 46px clamp(24px, 5vw, 64px);
    color: rgba(244, 241, 234, 0.66);
    background: var(--ink);
    border-top: 1px solid rgba(244, 241, 234, 0.12);
}

.footer-inner {
    width: min(100%, 1160px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.responsible {
    font-size: 10px;
    letter-spacing: 0.13em;
    line-height: 1.7;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    font-size: 11px;
    text-decoration-color: rgba(244, 241, 234, 0.25);
    text-underline-offset: 4px;
}

@media (max-width: 900px) {
    .article-card,
    .article-hero {
        grid-template-columns: 1fr;
    }

    .article-card-image {
        min-height: 460px;
    }

    .article-card-image img {
        min-height: 460px;
    }

    .article-hero-copy {
        min-height: 520px;
        order: 2;
    }

    .article-hero-image {
        height: min(85vh, 760px);
        min-height: 540px;
        order: 1;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-aside {
        position: static;
        padding-bottom: 28px;
        border-bottom: 1px solid var(--line);
    }

    .share-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .site-header {
        min-height: 72px;
        padding: 10px 20px;
    }

    .brand-mark img {
        width: 32px;
        height: 48px;
    }

    .header-actions .text-link:first-child {
        display: none;
    }

    .header-actions {
        gap: 14px;
    }

    .blog-hero {
        min-height: 500px;
        padding: 82px 24px 64px;
    }

    .article-card {
        grid-template-columns: 1fr;
    }

    .article-card-image,
    .article-card-image img {
        min-height: 390px;
    }

    .section-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .article-hero-copy {
        min-height: 490px;
        padding: 64px 24px;
    }

    .article-hero-image {
        height: 67vh;
        min-height: 480px;
    }

    .article-layout {
        padding-top: 64px;
        padding-bottom: 82px;
        gap: 42px;
    }

    .article-body h2 {
        margin-top: 54px;
    }

    .article-body p {
        line-height: 1.75;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
