@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Inter:wght@400;500;600&display=swap');

:root {
    --navy-950: #03111e;
    --navy-900: #061727;
    --navy-850: #092038;
    --navy-800: #0d2946;
    --gold: #c99b4a;
    --gold-light: #ead5a5;
    --gold-dark: #8d6428;
    --paper: #f3ecdf;
    --paper-light: #fbf7ef;
    --ink: #142131;
    --ink-soft: #4a4f54;
    --white: #fffdf7;
    --line: rgba(201, 155, 74, .42);
    --shell: 1480px;
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --sans: "Inter", Arial, Helvetica, sans-serif;
    --shadow: 0 30px 80px rgba(0, 8, 17, .28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-light);
    font-family: var(--sans);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

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

.shell {
    width: min(var(--shell), calc(100% - 64px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 1000;
    padding: 12px 18px;
    color: var(--navy-950);
    background: var(--gold-light);
    text-decoration: none;
}

.skip-link:focus {
    top: 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/* Header */
.site-header {
    position: absolute;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(234, 213, 165, .12);
    background: linear-gradient(180deg, rgba(3, 17, 30, .93), rgba(3, 17, 30, .55), transparent);
}

.header-inner {
    min-height: 116px;
    display: grid;
    grid-template-columns: 268px 1fr auto;
    align-items: center;
    gap: 26px;
}

.identity {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--white);
}

.identity img {
    flex: 0 0 auto;
}

.identity-copy strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: .88;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.identity-copy small {
    display: block;
    margin-top: 8px;
    color: var(--gold-light);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.primary-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 1.65vw, 28px);
}

.primary-navigation a {
    position: relative;
    color: rgba(255, 253, 247, .9);
    font-family: var(--serif);
    font-size: 1.02rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.primary-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -10px;
    height: 1px;
    background: var(--gold);
    transition: right .25s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
    right: 0;
}

.header-cta {
    padding: 13px 20px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}

.header-cta:hover {
    color: var(--navy-950);
    background: var(--gold);
}

.menu-toggle {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 790px;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 45%, rgba(25, 66, 102, .48), transparent 34%),
        linear-gradient(115deg, #03111e 0%, #061a2d 51%, #02101c 100%);
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: auto 0 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(2, 13, 23, .72));
}

.hero-stars {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: .65;
    background-image:
        radial-gradient(circle, rgba(235, 211, 158, .85) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(130, 182, 222, .65) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(235, 211, 158, .4) 0 1px, transparent 1.5px);
    background-position: 0 0, 43px 58px, 81px 24px;
    background-size: 96px 96px, 130px 130px, 67px 67px;
    mask-image: linear-gradient(to right, rgba(0,0,0,.7), rgba(0,0,0,1), rgba(0,0,0,.55));
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(201, 155, 74, .32);
    border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border: inherit;
    border-radius: inherit;
}

.orbit-one {
    width: 660px;
    height: 660px;
    right: 8%;
    top: 75px;
}

.orbit-one::before {
    inset: 56px;
}

.orbit-one::after {
    inset: 120px;
}

.orbit-two {
    width: 360px;
    height: 360px;
    right: -95px;
    top: 170px;
}

.orbit-two::before {
    inset: 42px;
}

.orbit-two::after {
    inset: 93px;
}

.hero-grid {
    min-height: 790px;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
    align-items: end;
    gap: 30px;
    padding-top: 138px;
}

.hero-copy {
    z-index: 5;
    align-self: center;
    max-width: 680px;
    padding: 62px 0 78px;
}

.kicker,
.section-label {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(4.5rem, 6.25vw, 7.6rem);
    font-weight: 500;
    line-height: .78;
    letter-spacing: -.035em;
}

.hero h1 em {
    color: #d8a552;
    font-weight: 500;
}

.hero-introduction {
    max-width: 555px;
    margin: 32px 0 0;
    color: rgba(255, 253, 247, .88);
    font-size: 1.03rem;
    line-height: 1.72;
}

.hero-introduction-secondary {
    margin-top: 4px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 30px;
    padding: 0 24px;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-gold {
    border: 1px solid var(--gold);
    color: var(--gold-light);
    background: rgba(3, 17, 30, .36);
}

.button-gold:hover {
    color: var(--navy-950);
    background: var(--gold);
}

.button-filled {
    color: var(--white);
    background: var(--gold-dark);
    box-shadow: 0 12px 30px rgba(102, 67, 23, .22);
}

.hero-portrait {
    position: relative;
    z-index: 3;
    height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-portrait > img {
    position: relative;
    z-index: 3;
    width: min(610px, 86%);
    max-height: 650px;
    object-fit: contain;
    object-position: center bottom;
    filter:
        drop-shadow(0 28px 22px rgba(0, 0, 0, .42))
        contrast(1.08)
        saturate(.98);
}

.portrait-halo {
    position: absolute;
    z-index: 1;
    width: 590px;
    aspect-ratio: 1;
    bottom: 68px;
    border: 2px solid rgba(201, 155, 74, .45);
    border-radius: 50%;
    background:
        repeating-conic-gradient(from 0deg, transparent 0 13deg, rgba(201,155,74,.52) 13.2deg 13.7deg),
        radial-gradient(circle, transparent 0 33%, rgba(201,155,74,.2) 33.2% 33.7%, transparent 34% 47%, rgba(201,155,74,.2) 47.2% 47.7%, transparent 48%);
}

.portrait-halo::before,
.portrait-halo::after {
    content: "";
    position: absolute;
    inset: 15%;
    border: 1px solid rgba(201, 155, 74, .35);
    border-radius: 50%;
}

.portrait-halo::after {
    inset: 29%;
}

.hero-manuscript {
    position: absolute;
    z-index: 2;
    right: -40px;
    bottom: 40px;
    width: 230px;
    height: 360px;
    padding: 48px 30px;
    border: 1px solid rgba(95, 65, 29, .5);
    color: #4e3c27;
    background:
        linear-gradient(rgba(255,255,255,.12), rgba(255,255,255,.04)),
        repeating-linear-gradient(7deg, rgba(83,52,23,.025) 0 2px, transparent 2px 7px),
        #cdb993;
    box-shadow: 0 24px 42px rgba(0, 0, 0, .48);
    font-family: var(--serif);
    font-size: 1.25rem;
    line-height: 1.2;
    letter-spacing: .16em;
    text-align: center;
    transform: rotate(-7deg);
}

.mini-orbit {
    width: 120px;
    height: 120px;
    margin: 36px auto 0;
    border: 2px solid #62503a;
    border-radius: 50%;
    background:
        repeating-conic-gradient(transparent 0 20deg, #62503a 20.5deg 21.5deg),
        radial-gradient(circle, transparent 0 31%, #62503a 32% 33%, transparent 34% 54%, #62503a 55% 56%, transparent 57%);
    opacity: .75;
}

/* Paper introduction panels */
.opening-panels {
    position: relative;
    z-index: 10;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 50%, rgba(154, 112, 50, .08), transparent 23%),
        repeating-linear-gradient(0deg, rgba(68, 45, 25, .018) 0 1px, transparent 1px 4px),
        var(--paper-light);
    border-bottom: 1px solid rgba(125, 85, 34, .18);
}

.two-panel-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    gap: 42px;
    padding: 58px 60px 60px;
}

.opening-panel {
    position: relative;
    padding: 0 42px;
}

.opening-panel h2,
.calendar-story h2,
.experience-copy h2,
.research-intro h2,
.ciro-copy h2,
.project-note h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 500;
    line-height: .98;
}

.opening-panel h2 {
    font-size: 2.35rem;
}

.opening-panel h2::after {
    content: "";
    display: block;
    width: 82px;
    height: 1px;
    margin: 14px 0 18px;
    background: var(--gold);
}

.opening-panel p:not(.section-label) {
    max-width: 590px;
    margin: 0;
    color: #31383e;
    font-size: .93rem;
}

.text-link,
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
    color: var(--ink);
    font-size: .69rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span,
.card-link span {
    color: var(--gold-dark);
    font-size: 1rem;
    transition: transform .2s ease;
}

.text-link:hover span,
.card-link:hover span {
    transform: translateX(5px);
}

.compass-divider {
    display: grid;
    place-items: center;
    border-left: 1px solid rgba(120, 82, 35, .2);
    border-right: 1px solid rgba(120, 82, 35, .2);
}

.compass-divider img {
    width: 68px;
    opacity: .65;
}

/* Highlights */
.museum-section {
    padding: 48px 0 68px;
    color: var(--white);
    background:
        linear-gradient(rgba(3,17,30,.97), rgba(3,17,30,.98)),
        var(--navy-950);
}

.ornament-heading {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.ornament-heading > span {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--line));
}

.ornament-heading > span:last-child {
    background: linear-gradient(to left, transparent, var(--line));
}

.ornament-heading .section-label {
    margin-bottom: 3px;
}

.ornament-heading h2 {
    margin: 0;
    color: var(--paper-light);
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: .02em;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.highlight-card {
    min-width: 0;
    border: 1px solid rgba(201, 155, 74, .68);
    background: linear-gradient(155deg, #09233b, #031421);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 45px rgba(0, 0, 0, .28);
}

.highlight-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
    border-bottom: 1px solid rgba(201, 155, 74, .68);
}

.highlight-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(2, 14, 24, .45));
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.highlight-card:hover .highlight-image img {
    transform: scale(1.045);
}

.highlight-card:nth-child(3) .highlight-image img {
    object-position: 50% 32%;
}

.highlight-card:nth-child(4) .highlight-image img {
    object-position: 50% 48%;
}

.highlight-body {
    min-height: 230px;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 20px;
}

.highlight-body h3 {
    margin: 0 0 9px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.05;
}

.highlight-body p {
    margin: 0;
    color: rgba(255,255,255,.73);
    font-size: .83rem;
    line-height: 1.55;
}

.card-link {
    margin-top: auto;
    padding-top: 24px;
    color: var(--paper-light);
    font-size: .61rem;
}

/* Calendar section */
.calendar-world {
    position: relative;
    color: var(--ink);
    background:
        repeating-linear-gradient(0deg, rgba(80,50,18,.018) 0 1px, transparent 1px 5px),
        var(--paper-light);
}

.calendar-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    min-height: 520px;
}

.calendar-story {
    align-self: center;
    padding: 74px 70px 74px 45px;
}

.calendar-story h2 {
    max-width: 550px;
    font-size: clamp(3rem, 4.3vw, 5.3rem);
}

.calendar-story > p:not(.section-label) {
    max-width: 680px;
    margin: 25px 0 0;
    color: var(--ink-soft);
}

.facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 670px;
    margin-top: 38px;
    border: 1px solid rgba(132, 92, 38, .22);
}

.facts > div {
    min-height: 126px;
    padding: 23px;
    border-right: 1px solid rgba(132, 92, 38, .22);
}

.facts > div:last-child {
    border-right: 0;
}

.facts strong {
    display: block;
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 2.05rem;
    font-weight: 500;
}

.facts span {
    display: block;
    margin-top: 8px;
    color: #4d5357;
    font-size: .67rem;
    line-height: 1.4;
}

.calendar-art {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: var(--navy-900);
}

.calendar-art::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background: linear-gradient(to right, var(--paper-light), transparent 18%);
}

.calendar-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Experience */
.experience-section {
    background: var(--paper);
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 680px;
}

.experience-photo {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.experience-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(2, 13, 23, .78));
}

.experience-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.photo-caption {
    position: absolute;
    z-index: 2;
    left: 42px;
    bottom: 38px;
    color: var(--white);
}

.photo-caption span {
    display: block;
    color: var(--gold-light);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.photo-caption strong {
    display: block;
    margin-top: 4px;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 500;
}

.experience-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 70px;
    background:
        linear-gradient(rgba(255,255,255,.2), rgba(255,255,255,.1)),
        var(--paper-light);
}

.experience-copy h2 {
    max-width: 620px;
    font-size: clamp(3rem, 4vw, 4.7rem);
}

.experience-copy > p:not(.section-label) {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--ink-soft);
}

.visit-list {
    display: grid;
    gap: 0;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(132, 92, 38, .22);
}

.visit-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(132, 92, 38, .22);
}

.visit-list li > span {
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 1.3rem;
}

.visit-list strong {
    display: block;
    color: var(--ink);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.visit-list p {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: .82rem;
}

/* Research */
.research-section {
    padding: 84px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 16% 8%, rgba(44, 92, 130, .28), transparent 29%),
        var(--navy-900);
}

.research-layout {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 90px;
    align-items: start;
}

.research-intro h2 {
    max-width: 620px;
    color: var(--white);
    font-size: clamp(3.2rem, 4.4vw, 5.2rem);
}

.research-intro > p:not(.section-label) {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255,255,255,.73);
}

.text-link-light {
    color: var(--white);
}

.research-list {
    border-top: 1px solid var(--line);
}

.research-list article {
    display: grid;
    grid-template-columns: 56px 220px 1fr;
    gap: 20px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.research-list article > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.45rem;
}

.research-list h3 {
    margin: 0;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.7rem;
    font-weight: 500;
}

.research-list p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: .84rem;
}

/* Ciro */
.ciro-section {
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    min-height: 620px;
    color: var(--white);
    background: var(--navy-950);
}

.ciro-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.ciro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, transparent 60%, var(--navy-950)),
        linear-gradient(to top, rgba(3,17,30,.6), transparent 50%);
}

.ciro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
}

.ciro-copy {
    align-self: center;
    max-width: 610px;
    padding: 64px 72px 64px 38px;
}

.ciro-copy h2 {
    color: var(--white);
    font-size: clamp(3.3rem, 4.1vw, 5rem);
}

.ciro-copy > p:not(.section-label) {
    margin: 24px 0 0;
    color: rgba(255,255,255,.72);
}

/* Note */
.project-note {
    padding: 70px 0;
    background: var(--paper-light);
}

.project-note-inner {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.project-note h2 {
    max-width: 620px;
    font-size: clamp(2.7rem, 3.8vw, 4.5rem);
}

.project-note-inner > p {
    max-width: 760px;
    margin: 0;
    padding-left: 50px;
    border-left: 1px solid rgba(132, 92, 38, .3);
    color: var(--ink-soft);
}

/* Footer */
.site-footer {
    color: rgba(255,255,255,.72);
    background: var(--navy-950);
    border-top: 1px solid var(--gold-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .85fr .7fr 1fr;
    gap: 52px;
    padding: 58px 0 46px;
}

.footer-grid > div:not(:first-child) {
    padding-left: 34px;
    border-left: 1px solid rgba(201,155,74,.34);
}

.footer-brand > p {
    max-width: 270px;
    margin: 24px 0 0;
    font-family: var(--serif);
    font-size: 1.1rem;
}

.footer-grid h2 {
    margin: 5px 0 18px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
    font-size: .78rem;
}

.footer-grid p {
    margin: 7px 0;
}

.footer-grid a {
    text-decoration: none;
}

.footer-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-button {
    display: inline-block;
    margin-top: 14px;
    padding: 11px 16px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(201,155,74,.3);
}

.footer-bottom p {
    margin: 0;
    font-size: .66rem;
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1260px) {
    .header-inner {
        grid-template-columns: 230px 1fr auto;
    }

    .primary-navigation {
        gap: 14px;
    }

    .primary-navigation a {
        font-size: .9rem;
    }

    .hero-manuscript {
        right: -90px;
    }

    .highlight-image {
        height: 190px;
    }
}

@media (max-width: 1080px) {
    .site-header {
        position: fixed;
        background: rgba(3, 17, 30, .97);
        box-shadow: 0 8px 35px rgba(0,0,0,.22);
    }

    .header-inner {
        min-height: 82px;
        grid-template-columns: 1fr auto;
    }

    .identity img {
        width: 48px;
        height: 48px;
    }

    .identity-copy strong {
        font-size: 1.15rem;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 1px solid rgba(201,155,74,.55);
        color: white;
        background: transparent;
        cursor: pointer;
    }

    .menu-toggle span:not(.sr-only) {
        width: 22px;
        height: 1px;
        display: block;
        background: var(--gold-light);
    }

    .primary-navigation {
        position: fixed;
        inset: 82px 0 auto;
        max-height: calc(100vh - 82px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 28px 30px;
        overflow-y: auto;
        background: var(--navy-950);
        border-top: 1px solid rgba(201,155,74,.3);
    }

    .primary-navigation.is-open {
        display: flex;
    }

    .primary-navigation a {
        padding: 14px 4px;
        border-bottom: 1px solid rgba(255,255,255,.09);
        font-family: var(--sans);
    }

    .primary-navigation a::after {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
        padding-top: 82px;
    }

    .hero-copy {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: clamp(4rem, 7vw, 5.8rem);
    }

    .hero-manuscript {
        display: none;
    }

    .portrait-halo {
        width: 500px;
    }

    .two-panel-grid {
        grid-template-columns: 1fr;
    }

    .compass-divider {
        width: 100%;
        height: 74px;
        border: 0;
        border-top: 1px solid rgba(120,82,35,.2);
        border-bottom: 1px solid rgba(120,82,35,.2);
    }

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

    .highlight-image {
        height: 260px;
    }

    .calendar-layout,
    .experience-grid,
    .ciro-section {
        grid-template-columns: 1fr;
    }

    .calendar-art {
        min-height: 420px;
    }

    .experience-photo {
        min-height: 700px;
    }

    .research-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ciro-image {
        min-height: 620px;
    }

    .ciro-image::after {
        background: linear-gradient(to top, var(--navy-950), transparent 45%);
    }

    .ciro-copy {
        max-width: none;
        padding: 62px 44px 76px;
    }

    .project-note-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-note-inner > p {
        padding: 30px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(132,92,38,.3);
    }

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

    .footer-grid > div:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }
}

@media (max-width: 760px) {
    .shell {
        width: min(100% - 32px, var(--shell));
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 82px;
    }

    .hero-copy {
        order: 1;
        padding: 64px 0 28px;
    }

    .hero-portrait {
        order: 2;
        height: 500px;
    }

    .hero h1 {
        font-size: clamp(3.7rem, 15vw, 5.5rem);
    }

    .hero-introduction {
        font-size: .93rem;
    }

    .portrait-halo {
        width: 410px;
        bottom: 50px;
    }

    .hero-portrait > img {
        max-height: 500px;
        width: 90%;
    }

    .two-panel-grid {
        padding: 48px 0;
    }

    .opening-panel {
        padding: 0;
    }

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

    .highlight-image {
        height: 280px;
    }

    .calendar-story,
    .experience-copy {
        padding: 60px 22px;
    }

    .calendar-story h2,
    .experience-copy h2,
    .research-intro h2,
    .ciro-copy h2 {
        font-size: clamp(2.8rem, 13vw, 4.25rem);
    }

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

    .facts > div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(132,92,38,.22);
    }

    .facts > div:last-child {
        border-bottom: 0;
    }

    .experience-photo {
        min-height: 520px;
    }

    .research-section {
        padding: 66px 0;
    }

    .research-list article {
        grid-template-columns: 46px 1fr;
    }

    .research-list article p {
        grid-column: 2;
    }

    .ciro-image {
        min-height: 510px;
    }

    .ciro-copy {
        padding: 52px 20px 68px;
    }

    .project-note {
        padding: 58px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-grid > div:not(:first-child) {
        padding: 30px 0 0;
        border-left: 0;
        border-top: 1px solid rgba(201,155,74,.34);
    }

    .footer-bottom {
        min-height: 78px;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        text-align: center;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
