:root {
    --ink: #15120f;
    --ink-soft: #211b17;
    --ink-lift: #302821;
    --paper: #eee7d8;
    --paper-light: #f8f3e9;
    --paper-deep: #d9cfbd;
    --gold: #c8a159;
    --gold-light: #e1bf78;
    --rust: #8e3f31;
    --olive: #686b55;
    --line-light: rgba(244, 235, 217, 0.22);
    --line-dark: rgba(29, 24, 20, 0.18);
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
    --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
    --wrap: min(88vw, 1260px);
    --header-height: 88px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--paper-light);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

::selection {
    color: var(--ink);
    background: var(--gold-light);
}

.wrap {
    width: var(--wrap);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--paper-light);
    border: 1px solid var(--gold);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.reading-progress {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    pointer-events: none;
}

.reading-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left center;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--header-height);
    padding: 12px 5.8vw;
    color: var(--paper-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    transition: min-height 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
    min-height: 70px;
    background: rgba(18, 15, 13, 0.94);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex: 0 0 auto;
}

.site-header > .brand {
    position: relative;
    z-index: 2;
}

.brand__mark {
    width: 36px;
    height: 42px;
    object-fit: contain;
}

.brand__name {
    display: flex;
    flex-direction: column;
    color: var(--paper-light);
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.brand__name small {
    margin-top: 7px;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.25em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 42px);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-nav a {
    position: relative;
    padding-block: 10px;
    color: rgba(248, 243, 233, 0.76);
    transition: color 180ms ease;
}

.site-nav a:not(.site-nav__cta)::after {
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--paper-light);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav__cta {
    padding: 11px 18px !important;
    color: var(--paper-light) !important;
    border: 1px solid rgba(226, 191, 120, 0.65);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--paper-light);
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.menu-toggle__icon {
    display: grid;
    gap: 6px;
    width: 24px;
}

.menu-toggle__icon i {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: max(720px, 100svh);
    color: var(--paper-light);
    background: var(--ink);
    isolation: isolate;
    overflow: hidden;
}

.hero__media,
.hero__media img,
.hero__veil,
.hero__grain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    z-index: -4;
}

.hero__media img {
    object-fit: cover;
    object-position: center center;
    animation: hero-settle 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__veil {
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(9, 8, 7, 0.9) 0%, rgba(12, 10, 8, 0.74) 30%, rgba(13, 11, 9, 0.26) 60%, rgba(10, 8, 7, 0.22) 100%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.56) 0%, transparent 28%, rgba(7, 6, 5, 0.4) 100%);
}

.hero__grain {
    z-index: -2;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.28) 0 0.55px, transparent 0.8px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.2) 0 0.55px, transparent 0.9px);
    background-size: 5px 5px, 7px 7px;
    mix-blend-mode: soft-light;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 48px);
    padding-bottom: 110px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 28px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.eyebrow > span {
    display: inline-block;
    width: 48px;
    height: 1px;
    background: currentColor;
}

.eyebrow--dark {
    color: var(--rust);
}

.eyebrow--center {
    justify-content: center;
}

.hero h1 {
    max-width: 970px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(72px, 9.3vw, 154px);
    font-weight: 400;
    line-height: 0.73;
    letter-spacing: -0.047em;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    margin-top: 0.28em;
    color: var(--paper);
    font-size: 0.48em;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.hero__lead {
    margin: 40px 0 0;
    padding-left: 3px;
    color: rgba(248, 243, 233, 0.84);
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 29px);
    line-height: 1.35;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 44px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    min-width: 235px;
    padding: 15px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button span {
    font-size: 18px;
    font-weight: 400;
}

.button--gold {
    color: var(--ink);
    background: var(--gold-light);
}

.button--gold:hover,
.button--gold:focus-visible {
    background: var(--paper-light);
    transform: translateY(-2px);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(248, 243, 233, 0.7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.status i {
    width: 7px;
    height: 7px;
    background: var(--rust);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(142, 63, 49, 0.2);
    animation: status-pulse 2.4s ease-in-out infinite;
}

.hero__caption {
    position: absolute;
    right: 5.8vw;
    bottom: 54px;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    padding: 18px 0 0 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__caption-number {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 54px;
    line-height: 0.85;
}

.hero__caption p {
    margin: 0;
    color: rgba(248, 243, 233, 0.74);
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__caption strong {
    color: var(--paper-light);
}

.scroll-cue {
    position: absolute;
    bottom: 0;
    left: 5.8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(248, 243, 233, 0.6);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-cue i {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--gold-light), transparent);
}

.section {
    position: relative;
    padding-block: clamp(96px, 10vw, 160px);
}

.intro {
    background:
        radial-gradient(circle at 84% 18%, rgba(200, 161, 89, 0.16), transparent 26%),
        var(--paper-light);
}

.intro::before {
    position: absolute;
    top: 0;
    right: 9vw;
    width: 1px;
    height: 100%;
    background: rgba(31, 26, 22, 0.08);
    content: "";
}

.intro__grid {
    display: grid;
    grid-template-columns: minmax(120px, 0.26fr) minmax(0, 1.74fr);
    gap: clamp(38px, 6vw, 96px);
}

.section-kicker {
    padding-top: 12px;
    border-top: 1px solid var(--line-dark);
}

.section-kicker span {
    color: var(--rust);
    font-family: var(--serif);
    font-size: 36px;
}

.section-kicker p,
.section-label {
    margin: 8px 0 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.display-copy {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 6.4vw, 93px);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.display-copy em,
.section-heading h2 em,
.project h2 em {
    color: var(--rust);
    font-weight: 400;
}

.intro__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(30px, 5vw, 72px);
    max-width: 880px;
    margin: 64px 0 0 auto;
}

.intro__body p {
    margin: 0;
    color: #51493f;
    font-size: 16px;
}

.intro__body p:first-child::first-letter {
    float: left;
    margin: 3px 10px 0 0;
    color: var(--rust);
    font-family: var(--serif);
    font-size: 66px;
    line-height: 0.7;
}

.archive {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    align-items: end;
    gap: clamp(36px, 7vw, 100px);
    margin-top: clamp(80px, 10vw, 140px);
}

.archive__figure {
    position: relative;
    margin: 0;
    padding: clamp(24px, 3.5vw, 52px);
    background: var(--ink-soft);
    box-shadow: 0 30px 80px rgba(33, 27, 23, 0.18);
}

.archive__figure::before,
.archive__figure::after {
    position: absolute;
    content: "";
}

.archive__figure::before {
    inset: 12px;
    border: 1px solid rgba(201, 164, 93, 0.32);
    pointer-events: none;
}

.archive__figure::after {
    top: -22px;
    left: 36px;
    width: 74px;
    height: 44px;
    background: rgba(190, 164, 112, 0.44);
    box-shadow: 0 3px 10px rgba(20, 17, 14, 0.12);
    transform: rotate(-2deg);
}

.archive__figure img {
    width: 100%;
    max-height: 610px;
    object-fit: contain;
    filter: sepia(0.12) contrast(1.04);
}

.archive__figure figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    color: var(--paper);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.archive__figure figcaption span {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.archive__figure figcaption strong {
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.archive__note {
    max-width: 360px;
    padding: 0 0 34px 34px;
    border-left: 1px solid var(--gold);
}

.archive__note img {
    width: 70px;
    margin-bottom: 32px;
}

.archive__note p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(23px, 2.4vw, 34px);
    line-height: 1.3;
}

.principles {
    color: var(--paper-light);
    background:
        linear-gradient(130deg, rgba(142, 63, 49, 0.14), transparent 40%),
        var(--ink);
    overflow: hidden;
}

.principles::after {
    position: absolute;
    right: -12vw;
    bottom: -32vw;
    width: 58vw;
    height: 58vw;
    border: 1px solid rgba(201, 164, 93, 0.16);
    border-radius: 50% 50% 0 0;
    content: "";
}

.section-heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.5fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 104px);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: -0.045em;
}

.section-heading h2 em {
    color: var(--gold-light);
}

.principles__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(72px, 9vw, 130px);
    border-top: 1px solid var(--line-light);
    border-bottom: 1px solid var(--line-light);
}

.principle {
    min-height: 340px;
    padding: 32px clamp(26px, 3vw, 48px) 42px;
    border-right: 1px solid var(--line-light);
    transition: background 220ms ease;
}

.principle:first-child {
    border-left: 1px solid var(--line-light);
}

.principle:hover {
    background: rgba(201, 164, 93, 0.08);
}

.principle__number {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 18px;
}

.principle h3 {
    margin: 80px 0 22px;
    font-family: var(--serif);
    font-size: clamp(27px, 2.4vw, 36px);
    font-weight: 400;
    line-height: 1.1;
}

.principle p {
    margin: 0;
    color: rgba(248, 243, 233, 0.63);
    font-size: 14px;
}

.voices {
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(142, 63, 49, 0.09), transparent 32%),
        var(--paper);
    overflow: hidden;
}

.voices__wash {
    position: absolute;
    top: 14px;
    left: -1vw;
    color: transparent;
    font-family: var(--serif);
    font-size: min(20vw, 310px);
    line-height: 1;
    letter-spacing: -0.08em;
    -webkit-text-stroke: 1px rgba(87, 70, 55, 0.09);
    pointer-events: none;
}

.voices__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(60px, 10vw, 150px);
}

.voices__intro {
    padding-top: 24px;
}

.section-label {
    display: inline-block;
    padding: 7px 10px;
    color: var(--paper-light);
    background: var(--rust);
}

.voices h2 {
    margin: 46px 0 38px;
    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 86px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.voices__intro > p:last-child {
    max-width: 480px;
    margin: 0;
    color: #5c5146;
}

.names {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line-dark);
}

.names li {
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    min-height: 88px;
    padding: 15px 0;
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.1;
    border-bottom: 1px solid var(--line-dark);
}

.names li span {
    color: var(--rust);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.names li:not(.names__more) {
    transition: color 180ms ease, padding-left 180ms ease;
}

.names li:not(.names__more):hover {
    padding-left: 12px;
    color: var(--rust);
}

.names .names__more {
    color: #6b6054;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project {
    min-height: 900px;
    color: var(--paper-light);
    background:
        radial-gradient(circle at 50% 25%, rgba(142, 63, 49, 0.18), transparent 30%),
        radial-gradient(circle at 50% 70%, rgba(201, 164, 93, 0.08), transparent 26%),
        var(--ink-soft);
    text-align: center;
    overflow: hidden;
}

.project::before,
.project::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
}

.project::before {
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(201, 164, 93, 0.11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 164, 93, 0.11) 1px, transparent 1px);
    background-position: center;
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 84%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 16%, black 84%, transparent 100%);
}

.project::after {
    background: linear-gradient(180deg, var(--ink) 0, transparent 90px);
}

.project__arch {
    position: absolute;
    top: 90px;
    left: 50%;
    width: min(70vw, 860px);
    height: calc(100% - 90px);
    border: 1px solid rgba(201, 164, 93, 0.2);
    border-bottom: 0;
    border-radius: 50% 50% 0 0 / 18% 18% 0 0;
    transform: translateX(-50%);
}

.project__inner {
    position: relative;
    z-index: 1;
}

.project__mark {
    width: clamp(94px, 10vw, 138px);
    margin: 0 auto 30px;
}

.project h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(58px, 8vw, 118px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.05em;
}

.project h2 em {
    color: var(--gold-light);
}

.project__lead {
    max-width: 720px;
    margin: 52px auto 0;
    color: rgba(248, 243, 233, 0.68);
    font-family: var(--serif);
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.48;
}

.project__pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
}

.project__pillars li {
    padding: 10px 16px;
    color: rgba(248, 243, 233, 0.75);
    border: 1px solid rgba(201, 164, 93, 0.35);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project__status {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    max-width: 720px;
    margin: 74px auto 0;
    padding-top: 28px;
    border-top: 1px solid rgba(201, 164, 93, 0.36);
}

.project__status span {
    color: var(--rust);
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.project__status i {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
}

.project__status p {
    margin: 0;
    color: rgba(248, 243, 233, 0.55);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer {
    padding: 38px 0;
    color: rgba(248, 243, 233, 0.7);
    background: #0f0d0b;
    border-top: 1px solid rgba(201, 164, 93, 0.18);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand--footer .brand__name {
    font-size: 17px;
}

.brand--footer .brand__mark {
    width: 30px;
    height: 35px;
}

.site-footer p {
    margin: 0;
    font-size: 10px;
    line-height: 1.65;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.site-footer__note {
    color: var(--gold-light);
}

.site-footer__legal {
    text-align: right;
}

.journal {
    min-height: 100vh;
    padding-block: 50px 100px;
}

.journal__header {
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-dark);
}

.journal__header .brand__name {
    color: var(--ink);
}

.journal__list {
    max-width: 860px;
    margin: 90px auto 0;
}

.journal__entry {
    padding-block: 38px;
    border-bottom: 1px solid var(--line-dark);
}

.journal__entry h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 400;
    line-height: 1;
}

.journal__excerpt {
    color: #5c5146;
}

.has-js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.has-js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes hero-settle {
    from { opacity: 0.65; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes status-pulse {
    0%, 100% { opacity: 0.65; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
    :root {
        --wrap: min(88vw, 800px);
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 2;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 6px;
        padding: 110px 8vw 60px;
        visibility: hidden;
        opacity: 0;
        background:
            radial-gradient(circle at 90% 15%, rgba(142, 63, 49, 0.35), transparent 28%),
            rgba(19, 16, 14, 0.99);
        transform: translateY(-12px);
        transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav a {
        width: 100%;
        padding: 13px 0;
        font-family: var(--serif);
        font-size: clamp(34px, 7vw, 62px);
        font-weight: 400;
        line-height: 1;
        letter-spacing: -0.02em;
        text-transform: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-nav__cta {
        margin-top: 20px;
        padding: 13px 0 !important;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero__caption {
        display: none;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .principles__grid {
        grid-template-columns: 1fr;
    }

    .principle {
        display: grid;
        grid-template-columns: 64px minmax(180px, 0.75fr) 1fr;
        align-items: start;
        gap: 24px;
        min-height: 0;
        border-left: 1px solid var(--line-light);
        border-bottom: 1px solid var(--line-light);
    }

    .principle:last-child {
        border-bottom: 0;
    }

    .principle h3 {
        margin: 0;
    }

    .voices__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer__legal {
        text-align: left;
    }
}

@media (max-width: 720px) {
    :root {
        --header-height: 72px;
        --wrap: 88vw;
    }

    body {
        font-size: 16px;
    }

    .site-header {
        padding-inline: 6vw;
    }

    .brand__mark {
        width: 30px;
        height: 36px;
    }

    .brand__name {
        font-size: 17px;
    }

    .brand__name small {
        font-size: 7px;
    }

    .menu-toggle__label {
        display: none;
    }

    .hero {
        min-height: max(680px, 100svh);
        align-items: end;
    }

    .hero__media img {
        object-position: 58% center;
    }

    .hero__veil {
        background:
            linear-gradient(180deg, rgba(8, 7, 6, 0.54) 0%, rgba(11, 9, 8, 0.16) 30%, rgba(10, 8, 7, 0.91) 82%, rgba(9, 7, 6, 0.98) 100%),
            linear-gradient(90deg, rgba(8, 7, 6, 0.55), transparent 85%);
    }

    .hero__content {
        padding-top: 170px;
        padding-bottom: 72px;
    }

    .hero h1 {
        font-size: clamp(62px, 20vw, 91px);
        line-height: 0.78;
    }

    .hero h1 em {
        max-width: 340px;
        margin-top: 0.42em;
        font-size: 0.45em;
        line-height: 0.95;
    }

    .hero__lead {
        margin-top: 30px;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
        margin-top: 32px;
    }

    .button {
        width: 100%;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        padding-block: 86px;
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .section-kicker {
        display: flex;
        align-items: baseline;
        gap: 16px;
    }

    .section-kicker p {
        margin: 0;
    }

    .display-copy {
        font-size: clamp(43px, 13vw, 62px);
    }

    .intro__body {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-top: 44px;
    }

    .archive {
        grid-template-columns: 1fr;
        margin-top: 78px;
    }

    .archive__figure {
        padding: 22px;
    }

    .archive__figure figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .archive__note {
        max-width: none;
        padding: 0 0 0 26px;
    }

    .principles::after {
        display: none;
    }

    .principle {
        grid-template-columns: 38px 1fr;
        gap: 16px;
        padding: 28px 22px;
    }

    .principle p {
        grid-column: 2;
    }

    .names li {
        grid-template-columns: 40px 1fr;
        min-height: 78px;
        font-size: 26px;
    }

    .project {
        min-height: 0;
    }

    .project__arch {
        width: 90vw;
        border-radius: 50% 50% 0 0 / 11% 11% 0 0;
    }

    .project__lead {
        margin-top: 38px;
    }

    .project__pillars {
        gap: 8px;
    }

    .project__pillars li {
        flex: 1 1 46%;
    }

    .project__status {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 54px;
    }

    .project__status i {
        margin-inline: auto;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

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

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

/* Portada de bienvenida compacta */
.welcome {
    position: relative;
    isolation: isolate;
    display: grid;
    place-items: center;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: clamp(18px, 3.2vw, 44px);
    color: #f4ecdc;
    background: #15110d;
}

.welcome__media,
.welcome__media img,
.welcome__veil,
.welcome__grain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.welcome__media {
    z-index: -4;
    overflow: hidden;
}

.welcome__media img {
    max-width: none;
    object-fit: cover;
    object-position: center 52%;
    filter: saturate(0.84) sepia(0.1) contrast(1.04) brightness(0.88);
    animation: welcome-settle 10s ease-out both;
}

.welcome__veil {
    z-index: -3;
    background:
        radial-gradient(circle at 50% 45%, rgba(12, 10, 8, 0.16) 0%, rgba(12, 10, 8, 0.42) 48%, rgba(10, 8, 7, 0.7) 100%),
        linear-gradient(180deg, rgba(8, 7, 6, 0.32) 0%, rgba(8, 7, 6, 0.08) 45%, rgba(8, 7, 6, 0.48) 100%);
}

.welcome__grain {
    z-index: -2;
    opacity: 0.18;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 19% 24%, rgba(255, 255, 255, 0.18) 0 0.5px, transparent 0.8px),
        radial-gradient(circle at 76% 68%, rgba(255, 255, 255, 0.12) 0 0.6px, transparent 0.9px);
    background-size: 5px 5px, 7px 7px;
    mix-blend-mode: soft-light;
}

.welcome__panel {
    position: relative;
    width: min(92vw, 1000px);
    padding: clamp(26px, 4.1vh, 46px) clamp(20px, 5vw, 68px) clamp(24px, 3.8vh, 42px);
    overflow: hidden;
    text-align: center;
    background: linear-gradient(145deg, rgba(20, 16, 12, 0.66), rgba(17, 14, 11, 0.4));
    border: 1px solid rgba(220, 184, 111, 0.36);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.44), inset 0 0 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.welcome__panel::before {
    position: absolute;
    inset: 8px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(244, 236, 220, 0.1);
}

.welcome__panel::after {
    position: absolute;
    top: 0;
    left: 50%;
    width: clamp(110px, 18vw, 210px);
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
    transform: translateX(-50%);
}

.welcome__mark {
    width: clamp(62px, 6.8vw, 88px);
    height: auto;
    margin: 0 auto clamp(12px, 2vh, 20px);
    filter: drop-shadow(0 5px 16px rgba(0, 0, 0, 0.28));
}

.welcome h1 {
    margin: 0;
    color: #f1eadc;
    font-family: var(--serif);
    font-size: clamp(64px, 8.6vw, 128px);
    font-weight: 400;
    line-height: 0.76;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.46);
}

.welcome h1 span,
.welcome h1 small {
    display: block;
}

.welcome h1 small {
    margin-top: 0.48em;
    font-size: 0.36em;
    line-height: 1;
    letter-spacing: 0.08em;
}

.welcome__rule {
    display: block;
    width: 74px;
    height: 1px;
    margin: clamp(19px, 3vh, 30px) auto clamp(12px, 1.8vh, 18px);
    background: var(--gold-light);
}

.welcome__status,
.welcome__lead,
.welcome__closing p,
.welcome__closing small {
    margin: 0;
}

.welcome__status {
    color: var(--gold-light);
    font-size: clamp(12px, 1.25vw, 17px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.welcome__lead {
    margin-top: 7px;
    color: #f5efe5;
    font-family: var(--serif);
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.3;
}

.welcome__pillars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 0;
    margin: clamp(18px, 2.8vh, 27px) 0 0;
    padding: clamp(12px, 1.8vh, 17px) 0;
    list-style: none;
    border-top: 1px solid rgba(225, 191, 120, 0.42);
    border-bottom: 1px solid rgba(225, 191, 120, 0.42);
}

.welcome__pillars li {
    color: rgba(246, 239, 225, 0.92);
    font-size: clamp(9px, 0.86vw, 12px);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.welcome__pillars li + li::before {
    margin: 0 clamp(8px, 1.3vw, 16px);
    color: var(--gold-light);
    content: "·";
}

.welcome__closing {
    margin-top: clamp(18px, 2.6vh, 26px);
}

.welcome__line {
    display: block;
    width: 32px;
    height: 1px;
    margin: 0 auto 10px;
    background: var(--gold-light);
}

.welcome__closing p {
    color: #c55d4f;
    font-size: clamp(19px, 2vw, 27px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
    text-transform: uppercase;
}

.welcome__closing small {
    display: block;
    margin-top: 6px;
    color: rgba(246, 239, 225, 0.78);
    font-size: clamp(11px, 1vw, 14px);
    line-height: 1.35;
    letter-spacing: 0.04em;
}

@keyframes welcome-settle {
    from {
        transform: scale(1.045);
    }

    to {
        transform: scale(1);
    }
}

@media (max-width: 720px) {
    .welcome {
        padding: 15px;
    }

    .welcome__media img {
        object-position: 56% center;
    }

    .welcome__panel {
        width: 100%;
        padding: 24px 17px 22px;
        background: linear-gradient(145deg, rgba(18, 15, 12, 0.7), rgba(15, 12, 10, 0.48));
    }

    .welcome__panel::before {
        inset: 6px;
    }

    .welcome__mark {
        width: clamp(55px, 16vw, 70px);
        margin-bottom: 13px;
    }

    .welcome h1 {
        font-size: clamp(53px, 17.2vw, 82px);
        line-height: 0.79;
    }

    .welcome h1 small {
        margin-top: 0.55em;
        font-size: 0.34em;
        letter-spacing: 0.055em;
    }

    .welcome__rule {
        margin-top: 21px;
    }

    .welcome__status {
        font-size: 11px;
        letter-spacing: 0.16em;
    }

    .welcome__lead {
        font-size: 18px;
    }

    .welcome__pillars {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
        padding: 12px 0;
    }

    .welcome__pillars li {
        font-size: 8.5px;
        letter-spacing: 0.1em;
    }

    .welcome__pillars li + li::before {
        content: none;
    }

    .welcome__closing p {
        font-size: 19px;
        letter-spacing: 0.22em;
        text-indent: 0.22em;
    }

    .welcome__closing small {
        max-width: 260px;
        margin-inline: auto;
        font-size: 11px;
    }
}

@media (min-width: 721px) and (max-height: 680px) {
    .welcome {
        padding-block: 14px;
    }

    .welcome__panel {
        padding-top: 20px;
        padding-bottom: 18px;
    }

    .welcome__mark {
        width: 58px;
        margin-bottom: 10px;
    }

    .welcome h1 {
        font-size: clamp(60px, 8.6vw, 94px);
    }

    .welcome__rule {
        margin-top: 17px;
        margin-bottom: 10px;
    }

    .welcome__pillars,
    .welcome__closing {
        margin-top: 14px;
    }
}
