:root {
    --ink: #22252b;
    --muted: #686a70;
    --soft: #f8f8f6;
    --soft-2: #f1f0ed;
    --line: rgba(34, 37, 43, .14);
    --line-soft: rgba(34, 37, 43, .08);
    --gold: #a98d58;
    --gold-soft: rgba(169, 141, 88, .16);
    --white: #ffffff;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: #f4f2ee;
    font-family: var(--sans);
    font-weight: 300;
    line-height: 1.74;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity .2s ease, color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

a:hover {
    color: var(--gold);
    text-decoration: none;
}

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

.zrca-container {
    width: min(1180px, calc(100% - 42px));
    margin: 0 auto;
}

.area-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(244,242,238,.96) 42%, #fff 100%);
}

.area-topbar {
    padding: 30px 0;
    border-bottom: 1px solid rgba(34, 37, 43, .08);
}

.area-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.area-brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.area-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.area-brand-main {
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.95rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: .16em;
}

.area-brand-sub {
    display: block;
    margin-top: 3px;
    color: rgba(34, 37, 43, .72);
    font-size: .60rem;
    font-weight: 400;
    letter-spacing: .31em;
    text-transform: uppercase;
}

.area-toplinks {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.area-toplinks a {
    color: rgba(34, 37, 43, .80);
    font-size: .64rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(34, 37, 43, .20);
    padding-bottom: 8px;
}

.area-toplinks a:hover { border-color: var(--gold); }

.area-hero { padding: 82px 0 48px; }

.area-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 68px;
    align-items: start;
    padding-top: 22px;
}

.area-kicker {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .42em;
    text-transform: uppercase;
}

.area-title {
    max-width: 790px;
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(3.0rem, 8vw, 7.4rem);
    font-weight: 300;
    line-height: .86;
    letter-spacing: .035em;
}

.area-subtitle {
    max-width: 720px;
    margin: 30px 0 0;
    color: #52555b;
    font-size: .98rem;
    font-weight: 300;
    line-height: 2;
}

.area-meta-card {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(248, 248, 246, .84);
    padding: 22px 24px;
}

.area-meta-label {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: .58rem;
    font-weight: 500;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.area-authors {
    display: grid;
    gap: 12px;
}

.area-author {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: center;
    min-width: 0;
}

.area-author-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 1px solid rgba(34, 37, 43, .16);
    background: #fff;
    filter: grayscale(8%) saturate(.92) contrast(.98);
}

.area-author-name {
    display: block;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.03rem;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: .025em;
}

.area-author-role {
    display: block;
    margin-top: 3px;
    color: #62656a;
    font-size: .58rem;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.area-main { padding: 40px 0 112px; }

.area-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 68px;
    align-items: start;
}

.area-article {
    background: rgba(255,255,255,.92);
    border-top: 1px solid var(--line);
    padding: 58px 72px 64px;
    box-shadow: 0 18px 55px rgba(34, 37, 43, .045);
}

.article-lead {
    margin: 0 0 30px;
    padding: 0 0 28px;
    border-bottom: 1px solid rgba(34, 37, 43, .10);
    color: #4d4f55;
    font-family: var(--sans);
    font-size: .96rem;
    font-weight: 300;
    line-height: 1.96;
    letter-spacing: 0;
}

.area-article h2 {
    margin: 36px 0 14px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.28rem, 1.65vw, 1.62rem);
    font-weight: 400;
    line-height: 1.14;
    letter-spacing: .035em;
}

.area-article h2:first-of-type { margin-top: 0; }

.area-article p {
    margin: 0;
    color: #4d4f55;
    font-size: .96rem;
    line-height: 2;
}

.area-article p + p { margin-top: 20px; }

.area-article ul {
    display: grid;
    gap: 13px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.area-article li {
    position: relative;
    padding-left: 26px;
    color: #4d4f55;
    font-size: .94rem;
    line-height: 1.82;
}

.area-article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .82em;
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.area-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 24px;
}

.side-box {
    width: 100%;
    border: 1px solid var(--line);
    background: rgba(248,248,246,.84);
    padding: 24px 24px;
}

.side-box h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.42rem;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: .035em;
}

.side-box ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.side-box li {
    color: #56595f;
    font-size: .84rem;
    line-height: 1.68;
}

.side-box li strong { color: var(--ink); }

.side-note {
    color: #62656a;
    font-size: .82rem;
    line-height: 1.74;
}

.area-cta-box {
    border: 1px solid rgba(169, 141, 88, .30);
    background: var(--gold-soft);
    padding: 30px 26px;
}

.area-cta-box h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.52rem;
    font-weight: 400;
    line-height: 1.08;
}

.area-cta-box p {
    margin: 18px 0 0;
    color: #55585e;
    font-size: .86rem;
    line-height: 1.78;
}

.area-cta-link,
.article-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding-bottom: 9px;
    border-bottom: 1px solid rgba(34, 37, 43, .22);
    color: rgba(34, 37, 43, .86);
    font-size: .66rem;
    font-weight: 400;
    letter-spacing: .30em;
    text-transform: uppercase;
}

.area-cta-link:hover,
.article-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.area-footer {
    padding: 32px 0;
    border-top: 1px solid var(--line-soft);
    background: #f8f8f6;
    color: rgba(34, 37, 43, .58);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .area-hero-grid,
    .area-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .area-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .area-cta-box { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .zrca-container { width: min(100% - 28px, 1180px); }

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

    .area-toplinks {
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
    }

    .area-hero { padding: 52px 0 34px; }

    .area-hero-grid { padding-top: 18px; }

    .area-title { font-size: 4.2rem; }

    .area-sidebar { grid-template-columns: 1fr; }

    .area-main { padding-bottom: 76px; }

    .area-article { padding: 38px 28px 42px; }
}
