:root {
    --paper: #fbfaf7;
    --paper-warm: #f6f1e9;
    --paper-rose: #fbf2f2;
    --paper-blue: #f1f6f8;
    --paper-mint: #f0f7f5;
    --white: #ffffff;
    --ink: #15283a;
    --ink-soft: #607080;
    --navy: #0f457c;
    --navy-deep: #0a335d;
    --gold: #c79b45;
    --blush: #f2ccd5;
    --coral: #efb1a7;
    --apricot: #f2d1aa;
    --aqua: #c9e6e2;
    --sky: #d8e9f2;
    --lavender: #dcdcef;
    --line: rgba(15, 69, 124, .14);
    --line-strong: rgba(15, 69, 124, .24);
    --serif: "Iowan Old Style", Baskerville, "Baskerville Old Face", "Palatino Linotype", Georgia, serif;
    --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shell: min(1420px, calc(100vw - 88px));
    --header-height: 126px;
    --radius: 24px;
    --radius-small: 16px;
    --shadow: 0 30px 80px rgba(28, 52, 78, .10);
    --shadow-soft: 0 16px 48px rgba(28, 52, 78, .08);
    --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { min-width: 320px; scroll-behavior: smooth; background: var(--paper); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: #fff; background: var(--navy); }

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: fixed;
    z-index: 10000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: #fff;
    background: var(--navy-deep);
    border-radius: 8px;
    transform: translateY(-160%);
    transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.site-texture {
    position: fixed;
    z-index: 999;
    inset: 0;
    pointer-events: none;
    opacity: .027;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
    mix-blend-mode: multiply;
}

/* Shared typography and controls */
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.042em;
    line-height: 1.02;
}
h1 em, h2 em { color: var(--navy); font-weight: 400; }
.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    color: var(--navy);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    line-height: 1.25;
    text-transform: uppercase;
}
.eyebrow > span { width: 34px; height: 1px; flex: 0 0 auto; background: var(--gold); }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 56px;
    padding: 0 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .045em;
    cursor: pointer;
    transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.button span { font-size: 17px; font-weight: 400; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button:hover span { transform: translate(3px, -1px); }
.button--primary { color: #fff; background: var(--navy-deep); box-shadow: 0 14px 34px rgba(10, 51, 93, .17); }
.button--primary:hover { background: var(--navy); box-shadow: 0 19px 42px rgba(10, 51, 93, .23); }
.button--outline { color: var(--navy-deep); border-color: var(--line-strong); background: rgba(255, 255, 255, .45); }
.button--outline:hover { color: #fff; border-color: var(--navy-deep); background: var(--navy-deep); }
.button--wide { width: 100%; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
    color: var(--navy-deep);
    border-bottom: 1px solid rgba(15, 69, 124, .30);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .035em;
}
.text-link span { transition: transform .3s var(--ease); }
.text-link:hover span { transform: translateX(5px); }
.circle-link {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    width: 174px;
    aspect-ratio: 1;
    flex: 0 0 auto;
    color: #fff;
    background: var(--navy-deep);
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(10, 51, 93, .17);
    transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.circle-link span { max-width: 105px; text-align: center; font-size: 12px; font-weight: 700; line-height: 1.35; }
.circle-link b { color: var(--gold); font-size: 22px; font-weight: 400; }
.circle-link:hover { transform: translateY(-6px) rotate(-2deg); background: var(--navy); box-shadow: 0 24px 55px rgba(10, 51, 93, .23); }
.circle-link--small { width: 138px; }
.section { padding: 132px 0; }
.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(290px, .68fr);
    gap: 9vw;
    align-items: end;
    margin-bottom: 70px;
}
.section-heading h2 { margin-bottom: 0; font-size: clamp(50px, 5.8vw, 88px); }
.section-heading__aside { max-width: 450px; padding-bottom: 6px; }
.section-heading__aside p { margin: 0 0 25px; color: var(--ink-soft); font-size: 16px; line-height: 1.78; }
.section-heading__aside--end { display: flex; align-items: flex-end; justify-content: flex-end; }
.section-heading--compact { max-width: 860px; margin-bottom: 62px; }
.section-heading--compact h2 { font-size: clamp(49px, 5.2vw, 82px); }
.section-action { display: flex; justify-content: center; margin-top: 58px; }
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 35px;
    color: var(--ink-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.back-link span { transition: transform .3s var(--ease); }
.back-link:hover span { transform: translateX(-4px); }
.empty-state { padding: 100px 20px; text-align: center; }
.empty-state h2 { margin-bottom: 24px; font-size: 42px; }
.image-placeholder { display: block; width: 100%; min-height: 260px; background: linear-gradient(135deg, var(--paper-warm), var(--paper-blue)); }

/* Header and navigation */
.site-header {
    position: fixed;
    z-index: 800;
    inset: 0 0 auto;
    height: var(--header-height);
    background: linear-gradient(180deg, rgba(251, 250, 247, .98), rgba(251, 250, 247, .88) 72%, rgba(251, 250, 247, 0));
    transition: height .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.site-header.is-scrolled {
    height: 96px;
    background: rgba(251, 250, 247, .94);
    box-shadow: 0 1px 0 var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}
.site-header.is-hidden { transform: translateY(-105%); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-brand { display: flex; align-items: center; width: 252px; height: 112px; padding-block: 8px; transition: width .35s var(--ease), transform .35s var(--ease); }
.site-brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-brand:hover { transform: translateY(-2px); }
.site-header.is-scrolled .site-brand { width: 218px; height: 88px; }
.desktop-nav { display: flex; align-items: center; gap: 31px; }
.desktop-nav a {
    position: relative;
    padding: 10px 0;
    color: #263849;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 3px;
    height: 1px;
    background: var(--gold);
    transition: right .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.desktop-nav .nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    color: var(--navy-deep);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
}
.desktop-nav .nav-contact::after { display: none; }
.desktop-nav .nav-contact span { color: var(--gold); font-size: 15px; }
.desktop-nav .nav-contact:hover { color: #fff; background: var(--navy-deep); border-color: var(--navy-deep); }
.menu-toggle {
    position: relative;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .58);
    cursor: pointer;
}
.menu-toggle > span:not(.sr-only) {
    position: absolute;
    left: 12px;
    width: 24px;
    height: 1px;
    background: var(--navy-deep);
    transition: top .3s var(--ease), transform .3s var(--ease), opacity .2s;
}
.menu-toggle > span:nth-child(1) { top: 17px; }
.menu-toggle > span:nth-child(2) { top: 24px; }
.menu-toggle > span:nth-child(3) { top: 31px; }
.menu-toggle[aria-expanded="true"] > span:nth-child(1) { top: 24px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { top: 24px; transform: rotate(-45deg); }
.mobile-menu {
    position: fixed;
    z-index: 700;
    inset: 0;
    display: none;
    padding: calc(var(--header-height) + 34px) 30px 34px;
    overflow: hidden;
    color: #fff;
    background: var(--navy-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__pastel {
    position: absolute;
    right: -28vw;
    bottom: -4vh;
    width: 95vw;
    height: 45vw;
    min-height: 260px;
    border-radius: 50%;
    background: linear-gradient(100deg, rgba(201, 230, 226, .72), rgba(242, 204, 213, .72), rgba(242, 209, 170, .68));
    filter: blur(34px);
    transform: rotate(-10deg);
    opacity: .74;
}
.mobile-menu nav,
.mobile-menu__foot { position: relative; z-index: 1; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
    display: flex;
    gap: 18px;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
    font-family: var(--serif);
    font-size: clamp(42px, 12vw, 70px);
    line-height: 1;
}
.mobile-menu nav a span { width: 24px; color: rgba(255, 255, 255, .48); font-family: var(--sans); font-size: 10px; letter-spacing: .1em; }
.mobile-menu__foot { position: absolute; right: 30px; bottom: 28px; left: 30px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, .72); font-size: 11px; }

/* Home hero */
.home-hero {
    position: relative;
    min-height: 900px;
    padding: calc(var(--header-height) + 48px) 0 84px;
    overflow: hidden;
}
.home-hero__wash,
.page-hero__wash,
.about-hero__wash,
.contact-page__wash,
.about-cta__wash,
.not-found__wash {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 8% 40%, rgba(242, 204, 213, .36), transparent 26%),
        radial-gradient(circle at 92% 22%, rgba(216, 233, 242, .62), transparent 27%),
        radial-gradient(circle at 84% 82%, rgba(242, 209, 170, .46), transparent 24%),
        radial-gradient(circle at 48% 12%, rgba(201, 230, 226, .28), transparent 21%);
}
.home-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(390px, .82fr) minmax(560px, 1.18fr);
    gap: clamp(50px, 6vw, 100px);
    align-items: center;
}
.home-hero__copy { padding-top: 24px; }
.home-hero h1 { max-width: 660px; margin: 0 0 30px; font-size: clamp(67px, 7vw, 105px); }
.home-hero__lead { max-width: 565px; margin: 0 0 35px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.home-hero__actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.home-hero__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 610px;
    margin: 58px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}
.home-hero__facts div { padding-right: 20px; }
.home-hero__facts div + div { padding-left: 22px; border-left: 1px solid var(--line); }
.home-hero__facts dt { margin-bottom: 6px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.home-hero__facts dd { margin: 0; color: var(--navy-deep); font-family: var(--serif); font-size: 22px; line-height: 1.2; }
.home-hero__visual { position: relative; padding: 34px 0 0 34px; }
.home-hero__brush { position: absolute; z-index: -1; top: -20px; right: -52px; width: 310px; opacity: .29; filter: saturate(.88); transform: rotate(-7deg); }
.hero-art-card {
    position: relative;
    padding: 20px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 30px;
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}
.hero-art-card__top,
.hero-art-card__caption { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hero-art-card__top { padding: 2px 4px 15px; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.hero-art-card__stage {
    display: block;
    min-height: 560px;
    padding: clamp(25px, 3.1vw, 45px);
    overflow: hidden;
    background: linear-gradient(145deg, #edf6f6, #f7edef 49%, #f7e9dc);
    border-radius: 20px;
}
.hero-art-card__matte { display: grid; place-items: center; width: 100%; height: 100%; min-height: 480px; padding: clamp(18px, 2.2vw, 32px); background: rgba(255, 255, 255, .86); box-shadow: inset 0 0 0 1px rgba(15, 69, 124, .07); }
.hero-art-card__matte picture { display: grid; place-items: center; width: 100%; height: 100%; }
.hero-art-card__image { width: 100%; height: 100%; max-height: 470px; object-fit: contain; filter: saturate(.96); box-shadow: 0 18px 42px rgba(27, 46, 67, .14); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.hero-art-card__stage:hover .hero-art-card__image { transform: scale(1.014); box-shadow: 0 24px 50px rgba(27, 46, 67, .17); }
.hero-art-card__caption { padding: 17px 4px 3px; }
.hero-art-card__caption div { display: grid; gap: 3px; }
.hero-art-card__caption strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.hero-art-card__caption div span { color: var(--ink-soft); font-size: 11px; }
.hero-art-card__caption > span { color: var(--navy); font-size: 11px; font-weight: 700; }

/* Collection ribbon */
.collection-ribbon { position: relative; z-index: 2; padding: 0 0 28px; background: var(--paper); }
.collection-ribbon__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.collection-ribbon__item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 102px;
    padding: 22px 24px;
    border: 1px solid rgba(15, 69, 124, .09);
    border-radius: 18px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.collection-ribbon__item--1 { background: #f2f7f7; }
.collection-ribbon__item--2 { background: #fbf1f3; }
.collection-ribbon__item--3 { background: #faf2e8; }
.collection-ribbon__item--4 { background: #f2f2f8; }
.collection-ribbon__item > span { color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.collection-ribbon__item div { display: grid; gap: 3px; }
.collection-ribbon__item strong { color: var(--navy-deep); font-family: var(--serif); font-size: 21px; font-weight: 400; }
.collection-ribbon__item small { color: var(--ink-soft); font-size: 10px; }
.collection-ribbon__item b { color: var(--navy); font-size: 17px; font-weight: 400; transition: transform .3s var(--ease); }
.collection-ribbon__item:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.collection-ribbon__item:hover b { transform: translateX(4px); }

/* Artwork cards — complete images, never cropped */
.selected-section { background: linear-gradient(180deg, var(--paper) 0%, #faf7f2 100%); }
.selected-grid,
.art-archive,
.related-grid,
.about-gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 58px 34px; }
.art-card,
.archive-card,
.related-card,
.about-gallery-card { min-width: 0; }
.art-card__stage,
.archive-card__stage,
.related-card__stage,
.about-gallery-card > div {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 5;
    padding: clamp(18px, 2.1vw, 30px);
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(15, 69, 124, .08);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.art-card__stage--1,
.archive-card__stage--1,
.related-card__stage--1,
.about-gallery-card--1 > div { background: #eef6f5; }
.art-card__stage--2,
.archive-card__stage--2,
.related-card__stage--2,
.about-gallery-card--2 > div { background: #faf0f2; }
.art-card__stage--3,
.archive-card__stage--3,
.related-card__stage--3,
.about-gallery-card--3 > div { background: #f8f1e7; }
.art-card__stage--4,
.archive-card__stage--4,
.about-gallery-card--4 > div { background: #f1f2f8; }
.art-card__matte,
.archive-card__matte,
.related-card__stage > span,
.about-gallery-card > div > span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: clamp(14px, 1.6vw, 24px);
    background: rgba(255, 255, 255, .84);
    box-shadow: inset 0 0 0 1px rgba(15, 69, 124, .055);
}
.art-card__matte picture,
.archive-card__matte picture,
.related-card__stage > span picture,
.about-gallery-card > div > span picture { display: grid; place-items: center; width: 100%; height: 100%; }
.art-card__image,
.archive-card__image,
.related-card__stage img,
.about-gallery-card img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 13px 30px rgba(27, 46, 67, .12);
    transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.art-card__view,
.archive-card__view {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 13px;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(15, 69, 124, .09);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(22, 46, 72, .09);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .06em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.art-card__view b,
.archive-card__view b { color: var(--gold); font-size: 13px; font-weight: 400; }
.art-card__caption,
.archive-card__caption { display: flex; justify-content: space-between; gap: 20px; padding: 18px 3px 0; }
.art-card__caption h3,
.archive-card__caption h2 { margin: 0 0 4px; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.15; }
.art-card__caption p,
.archive-card__caption p { margin: 0; color: var(--ink-soft); font-size: 10px; line-height: 1.5; }
.art-card__caption > span,
.archive-card__caption > span { flex: 0 0 auto; color: var(--ink-soft); font-size: 10px; }
.art-card:hover .art-card__stage,
.archive-card:hover .archive-card__stage,
.related-card:hover .related-card__stage,
.about-gallery-card:hover > div { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow-soft); }
.art-card:hover .art-card__image,
.archive-card:hover .archive-card__image,
.related-card:hover img,
.about-gallery-card:hover img { transform: scale(1.016); box-shadow: 0 19px 39px rgba(27, 46, 67, .16); }
.art-card:hover .art-card__view,
.archive-card:hover .archive-card__view { opacity: 1; transform: translateY(0); }

/* Collection showcase */
.collection-showcase { background: var(--paper-blue); }
.collection-showcase__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.collection-panel {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(260px, 1.05fr);
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(15, 69, 124, .09);
    border-radius: 24px;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.collection-panel--1 { background: #eef6f5; }
.collection-panel--2 { background: #fbf0f2; }
.collection-panel--3 { background: #f8f0e5; }
.collection-panel--4 { background: #f0f1f8; }
.collection-panel__image { display: grid; place-items: center; padding: 26px; }
.collection-panel__matte { display: grid; place-items: center; width: 100%; height: 100%; min-height: 330px; padding: 18px; background: rgba(255, 255, 255, .82); box-shadow: inset 0 0 0 1px rgba(15, 69, 124, .05); }
.collection-panel__matte picture { display: grid; place-items: center; width: 100%; height: 100%; }
.collection-panel__matte img { width: 100%; height: 100%; max-height: 300px; object-fit: contain; box-shadow: 0 14px 32px rgba(27, 46, 67, .13); transition: transform .45s var(--ease); }
.collection-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: 36px 38px 36px 10px; }
.collection-panel__copy > span { margin-bottom: 15px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.collection-panel__copy h3 { margin: 0 0 15px; color: var(--navy-deep); font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.04; }
.collection-panel__copy p { margin: 0 0 24px; color: var(--ink-soft); font-size: 14px; line-height: 1.7; }
.collection-panel__copy b { margin-top: auto; color: var(--navy-deep); font-size: 11px; }
.collection-panel__copy b i { margin-left: 8px; color: var(--gold); font-style: normal; }
.collection-panel:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.collection-panel:hover img { transform: scale(1.018); }

/* Artist section */
.artist-section { background: var(--paper); }
.artist-section__grid { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(470px, 1.1fr); gap: clamp(60px, 8vw, 130px); align-items: center; }
.artist-section__visual { position: relative; padding: 0 42px 50px 0; }
.artist-section__portrait { padding: 28px; background: linear-gradient(145deg, var(--paper-mint), var(--paper-rose)); border-radius: 24px; }
.artist-section__portrait picture { display: block; }
.artist-section__portrait img { width: 100%; height: auto; aspect-ratio: 1; object-fit: contain; box-shadow: 0 18px 45px rgba(28, 52, 78, .13); }
.artist-section__label {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(310px, 72%);
    padding: 22px 24px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 69, 124, .09);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}
.artist-section__label span { margin-bottom: 4px; color: var(--gold); font-size: 9px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.artist-section__label strong { font-family: var(--serif); font-size: 23px; font-weight: 400; }
.artist-section__label small { color: var(--ink-soft); font-size: 10px; }
.artist-section__copy h2 { margin: 0 0 28px; font-size: clamp(50px, 5.3vw, 82px); }
.artist-section__copy > p:not(.eyebrow) { max-width: 620px; margin: 0 0 32px; color: var(--ink-soft); font-size: 16px; line-height: 1.82; }
.artist-section__milestones { display: grid; margin: 0 0 35px; border-top: 1px solid var(--line); }
.artist-section__milestones div { display: grid; grid-template-columns: 75px 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.artist-section__milestones span { color: var(--gold); font-family: var(--serif); font-size: 20px; }
.artist-section__milestones p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.6; }

/* Journal cards */
.journal-preview-section { background: #faf7f2; }
.journal-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.journal-card { border: 1px solid rgba(15, 69, 124, .08); border-radius: 22px; background: rgba(255, 255, 255, .67); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.journal-card__image { padding: 22px 22px 0; }
.journal-card__image > div { display: grid; place-items: center; aspect-ratio: 4 / 3; padding: 18px; background: linear-gradient(145deg, var(--paper-blue), var(--paper-rose)); }
.journal-card__image picture { display: grid; place-items: center; width: 100%; height: 100%; }
.journal-card__image img { width: 100%; height: 100%; max-height: 280px; object-fit: contain; box-shadow: 0 11px 27px rgba(27, 46, 67, .12); transition: transform .45s var(--ease); }
.journal-card__meta { padding: 24px 26px 28px; }
.journal-card__meta > span { display: block; margin-bottom: 10px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.journal-card__meta h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 26px; font-weight: 400; line-height: 1.12; }
.journal-card__meta p { margin: 0 0 18px; color: var(--ink-soft); font-size: 13px; line-height: 1.7; }
.journal-card__meta b { color: var(--navy-deep); font-size: 10px; }
.journal-card__meta b i { margin-left: 7px; color: var(--gold); font-style: normal; }
.journal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.journal-card:hover img { transform: scale(1.018); }

/* Edition */
.edition-section { padding: 120px 0; background: linear-gradient(135deg, #eef6f5, #fbf1f2 52%, #f8f0e5); }
.edition-section__grid { display: grid; grid-template-columns: minmax(470px, 1fr) minmax(430px, .9fr); gap: 8vw; align-items: center; }
.edition-section__visual { padding: 34px; background: rgba(255, 255, 255, .54); border: 1px solid rgba(255, 255, 255, .9); border-radius: 26px; }
.edition-section__matte { display: grid; place-items: center; min-height: 490px; padding: 24px; background: rgba(255, 255, 255, .84); }
.edition-section__matte picture { display: grid; place-items: center; width: 100%; height: 100%; }
.edition-section__matte img { width: 100%; height: 100%; max-height: 455px; object-fit: contain; box-shadow: 0 17px 40px rgba(27, 46, 67, .13); }
.edition-section__copy h2 { margin: 0 0 28px; font-size: clamp(48px, 5vw, 78px); }
.edition-section__copy h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 28px; font-weight: 400; }
.edition-section__copy > p:not(.eyebrow) { max-width: 520px; margin: 0 0 24px; color: var(--ink-soft); }
.edition-section__price { display: flex; align-items: baseline; gap: 7px; margin: 0 0 28px; color: var(--navy-deep); font-family: var(--serif); font-size: 48px; }
.edition-section__price span { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .12em; }

/* Page heroes */
.page-hero {
    position: relative;
    min-height: 510px;
    padding: calc(var(--header-height) + 90px) 0 95px;
    overflow: hidden;
}
.page-hero__wash { background:
    radial-gradient(circle at 86% 28%, rgba(242, 204, 213, .55), transparent 25%),
    radial-gradient(circle at 65% 70%, rgba(216, 233, 242, .58), transparent 27%),
    radial-gradient(circle at 98% 86%, rgba(242, 209, 170, .42), transparent 20%);
}
.page-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(330px, .7fr); gap: 8vw; align-items: end; }
.page-hero h1 { max-width: 900px; margin: 0; font-size: clamp(72px, 8vw, 124px); }
.page-hero__aside { max-width: 470px; padding-bottom: 10px; }
.page-hero__aside p { margin: 0 0 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.8; }
.page-hero__aside span { color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

/* Works archive */
.archive-section { padding: 52px 0 130px; background: var(--paper); }
.archive-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 62px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .58);
}
.collection-filter { display: flex; flex-wrap: wrap; gap: 7px; }
.collection-filter a { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 15px; border-radius: 999px; color: #435160; font-size: 10px; font-weight: 700; letter-spacing: .04em; transition: color .25s, background .25s; }
.collection-filter a small { display: grid; place-items: center; min-width: 22px; height: 22px; padding-inline: 5px; color: var(--navy); background: rgba(15, 69, 124, .07); border-radius: 999px; font-size: 8px; }
.collection-filter a:hover,
.collection-filter a[aria-current="page"] { color: #fff; background: var(--navy-deep); }
.collection-filter a[aria-current="page"] small,
.collection-filter a:hover small { color: var(--navy-deep); background: rgba(255, 255, 255, .86); }
.archive-toolbar__note { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.archive-toolbar__note span { width: 8px; height: 8px; background: var(--aqua); border: 1px solid rgba(15, 69, 124, .12); border-radius: 50%; }
.art-archive { gap: 64px 34px; }
.archive-card[hidden] { display: none !important; }
.archive-card--deferred:not([hidden]) { animation: archiveReveal .55s var(--ease) both; }
@keyframes archiveReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.archive-more { display: flex; justify-content: center; margin-top: 70px; }
.archive-cta { padding: 105px 0; background: linear-gradient(120deg, var(--paper-mint), var(--paper-rose), var(--paper-warm)); }
.archive-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.archive-cta h2 { margin: 0; font-size: clamp(50px, 5.6vw, 84px); }

/* Work detail */
.work-detail { padding: calc(var(--header-height) + 65px) 0 85px; }
.work-detail__grid { display: grid; grid-template-columns: minmax(520px, 1.35fr) minmax(340px, .65fr); gap: clamp(48px, 7vw, 110px); align-items: start; }
.work-detail__stage { display: grid; place-items: center; min-height: 710px; padding: clamp(30px, 4vw, 60px); background: linear-gradient(145deg, var(--paper-blue), var(--paper-rose) 55%, var(--paper-warm)); border: 1px solid rgba(15, 69, 124, .08); border-radius: 26px; }
.work-detail__zoom { position: relative; display: grid; place-items: center; width: 100%; min-height: 600px; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.work-detail__matte { display: grid; place-items: center; width: 100%; min-height: 590px; padding: clamp(20px, 2.6vw, 38px); background: rgba(255, 255, 255, .86); box-shadow: inset 0 0 0 1px rgba(15, 69, 124, .055); }
.work-detail__matte picture { display: grid; place-items: center; width: 100%; height: 100%; }
.work-detail__image { width: 100%; height: 100%; max-height: 555px; object-fit: contain; box-shadow: 0 20px 50px rgba(27, 46, 67, .16); }
.work-detail__enlarge { position: absolute; right: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 10px; padding: 11px 14px; color: var(--navy-deep); background: rgba(255, 255, 255, .94); border: 1px solid rgba(15, 69, 124, .08); border-radius: 999px; box-shadow: 0 9px 25px rgba(27, 46, 67, .10); font-size: 9px; font-weight: 700; }
.work-detail__enlarge b { color: var(--gold); font-size: 15px; font-weight: 400; }
.work-detail__info { position: sticky; top: 126px; padding-top: 20px; }
.work-detail__info h1 { margin: 0 0 16px; font-size: clamp(52px, 5vw, 76px); }
.work-detail__subtitle { margin: 0 0 27px; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.work-facts { margin: 30px 0; border-top: 1px solid var(--line); }
.work-facts div { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.work-facts dt { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.work-facts dd { margin: 0; color: var(--ink); font-size: 13px; }
.work-detail__text { margin-bottom: 26px; }
.work-detail__note { margin: 16px 0 0; color: var(--ink-soft); font-size: 10px; line-height: 1.6; }
.work-pagination { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-top: 35px; padding-bottom: 70px; border-top: 1px solid var(--line); }
.work-pagination__item { display: grid; gap: 5px; }
.work-pagination__item span { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.work-pagination__item strong { font-family: var(--serif); font-size: 20px; font-weight: 400; }
.work-pagination__item--next { text-align: right; }
.work-pagination__all { display: grid; grid-template-columns: repeat(2, 6px); gap: 5px; place-content: center; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%; }
.work-pagination__all i { width: 6px; height: 6px; background: var(--navy); }
.related-works { background: #faf7f2; }
.related-grid { gap: 34px; }
.related-card h3,
.about-gallery-card h3 { margin: 17px 0 3px; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1.15; }
.related-card p,
.about-gallery-card p { margin: 0; color: var(--ink-soft); font-size: 10px; }

/* About */
.about-hero { position: relative; min-height: 850px; padding: calc(var(--header-height) + 55px) 0 95px; overflow: hidden; }
.about-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(400px, .85fr) minmax(500px, 1.15fr); gap: 8vw; align-items: center; }
.about-hero__copy h1 { margin: 0 0 28px; font-size: clamp(72px, 7.7vw, 112px); }
.about-hero__copy > p:not(.eyebrow) { max-width: 590px; margin: 0 0 38px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; }
.about-hero__facts { display: grid; gap: 0; margin: 0; border-top: 1px solid var(--line); }
.about-hero__facts div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.about-hero__facts dt { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.about-hero__facts dd { margin: 0; font-family: var(--serif); font-size: 19px; }
.about-hero__portrait { position: relative; padding: 34px 36px 54px 0; }
.about-hero__brush { position: absolute; z-index: -1; right: -52px; top: -26px; width: 300px; opacity: .29; transform: rotate(-8deg); }
.about-hero__portrait-frame { padding: 30px; background: linear-gradient(145deg, var(--paper-mint), var(--paper-rose), var(--paper-warm)); border-radius: 26px; }
.about-hero__portrait-frame img { width: 100%; aspect-ratio: 1; object-fit: contain; box-shadow: 0 20px 48px rgba(27, 46, 67, .14); }
.about-hero__caption { position: absolute; right: 0; bottom: 0; display: grid; min-width: 300px; padding: 20px 22px; background: rgba(255, 255, 255, .94); border: 1px solid rgba(15, 69, 124, .09); border-radius: 15px; box-shadow: var(--shadow-soft); }
.about-hero__caption strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.about-hero__caption span { color: var(--ink-soft); font-size: 10px; }
.biography-section { padding: 130px 0; background: #faf7f2; }
.biography-section__grid { display: grid; grid-template-columns: minmax(300px, .58fr) minmax(550px, 1.42fr); gap: 9vw; align-items: start; }
.biography-index { position: sticky; top: 132px; }
.biography-index h2 { margin: 0 0 35px; font-size: clamp(42px, 4.2vw, 62px); }
.biography-index__list { display: grid; border-top: 1px solid var(--line); }
.biography-index__list > div { display: grid; grid-template-columns: 35px 1fr; gap: 2px 14px; padding: 15px 0; border-bottom: 1px solid var(--line); pointer-events: none; }
.biography-index__list > div > span { grid-row: 1 / span 2; color: var(--gold); font-size: 9px; font-weight: 700; }
.biography-index__list strong { font-size: 12px; }
.biography-index__list small { color: var(--ink-soft); font-size: 10px; }
.rich-text--biography { max-width: 780px; }
.journey-section { padding: 128px 0; background: var(--paper-blue); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.journey-grid article { min-height: 310px; padding: 34px; border: 1px solid rgba(15, 69, 124, .09); border-radius: 20px; background: rgba(255, 255, 255, .62); }
.journey-grid article > span { display: block; margin-bottom: 74px; color: var(--gold); font-size: 10px; font-weight: 700; }
.journey-grid h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 30px; font-weight: 400; }
.journey-grid p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.about-gallery-section { padding: 130px 0; }
.about-gallery-grid { gap: 58px 34px; }
.about-cta { position: relative; padding: 115px 0; overflow: hidden; }
.about-cta__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.about-cta h2 { margin: 0; font-size: clamp(50px, 5.7vw, 84px); }

/* Rich text */
.rich-text { color: var(--ink-soft); font-size: 15px; line-height: 1.82; }
.rich-text p { margin: 0 0 1.35em; }
.rich-text p:last-child { margin-bottom: 0; }
.rich-text .lead,
.rich-text p.lead { color: var(--ink); font-family: var(--serif); font-size: 29px; line-height: 1.35; }
.rich-text h2 { margin: 1.7em 0 .6em; color: var(--ink); font-size: 38px; }
.rich-text h3 { margin: 1.6em 0 .55em; color: var(--ink); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.rich-text a { color: var(--navy); text-decoration: underline; text-decoration-color: rgba(15, 69, 124, .28); text-underline-offset: 3px; }
.rich-text ul,
.rich-text ol { padding-left: 1.25em; }
.rich-text blockquote { margin: 2em 0; padding: 0 0 0 24px; border-left: 2px solid var(--gold); color: var(--ink); font-family: var(--serif); font-size: 25px; }
.rich-text--biography p { margin-bottom: 1.55em; color: #465667; font-family: var(--serif); font-size: clamp(20px, 1.62vw, 26px); line-height: 1.58; }
.rich-text--biography .lead { margin-bottom: 1.25em; color: var(--navy-deep); font-size: clamp(30px, 2.8vw, 43px); line-height: 1.26; }
.rich-text--article { max-width: 760px; font-size: 17px; line-height: 1.9; }

/* Journal archive */
.journal-archive { padding: 52px 0 130px; }
.journal-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 62px; padding: 12px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255, 255, 255, .56); }
.journal-filter a { min-height: 42px; padding: 0 16px; display: inline-flex; align-items: center; border-radius: 999px; color: #435160; font-size: 10px; font-weight: 700; }
.journal-filter a:hover,
.journal-filter a[aria-current="page"] { color: #fff; background: var(--navy-deep); }
.journal-archive__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.journal-entry { border: 1px solid rgba(15, 69, 124, .08); border-radius: 22px; background: rgba(255, 255, 255, .65); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.journal-entry--lead { grid-column: 1 / -1; }
.journal-entry--lead > a { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); min-height: 520px; }
.journal-entry__image { position: relative; display: grid; place-items: center; min-height: 330px; padding: 28px; }
.journal-entry__image--1 { background: #eef6f5; }
.journal-entry__image--2 { background: #fbf0f2; }
.journal-entry__image--3 { background: #f8f1e7; }
.journal-entry__image--4 { background: #f1f2f8; }
.journal-entry__image > div { display: grid; place-items: center; width: 100%; height: 100%; padding: 20px; background: rgba(255, 255, 255, .82); }
.journal-entry__image picture { display: grid; place-items: center; width: 100%; height: 100%; }
.journal-entry__image img { width: 100%; height: 100%; max-height: 440px; object-fit: contain; box-shadow: 0 15px 35px rgba(27, 46, 67, .13); transition: transform .45s var(--ease); }
.journal-entry__image > span { position: absolute; top: 18px; left: 18px; padding: 8px 11px; color: var(--navy-deep); background: rgba(255, 255, 255, .92); border-radius: 999px; font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.journal-entry__copy { padding: 30px 32px 35px; }
.journal-entry--lead .journal-entry__copy { display: flex; flex-direction: column; justify-content: center; padding: 55px; }
.journal-entry__copy > p { margin: 0 0 12px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.journal-entry__copy h2 { margin: 0 0 17px; font-size: 38px; }
.journal-entry--lead h2 { font-size: clamp(48px, 4.8vw, 72px); }
.journal-entry__copy > div { margin-bottom: 21px; color: var(--ink-soft); font-size: 13px; line-height: 1.75; }
.journal-entry__copy > span { color: var(--navy-deep); font-size: 10px; font-weight: 700; }
.journal-entry__copy > span b { margin-left: 7px; color: var(--gold); font-weight: 400; }
.journal-entry:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.journal-entry:hover img { transform: scale(1.016); }

/* Journal detail */
.post-detail { padding: calc(var(--header-height) + 62px) 0 115px; }
.post-detail__header { max-width: 1080px; margin-bottom: 56px; }
.post-detail__header h1 { max-width: 1030px; margin: 0 0 28px; font-size: clamp(66px, 7vw, 106px); }
.post-detail__lead { max-width: 780px; margin: 0; color: var(--ink-soft); font-size: 19px; line-height: 1.75; }
.post-detail__cover { display: grid; place-items: center; margin-bottom: 90px; padding: 45px; background: linear-gradient(145deg, var(--paper-blue), var(--paper-rose), var(--paper-warm)); border-radius: 24px; }
.post-detail__cover > div { display: grid; place-items: center; width: 100%; min-height: 560px; padding: 28px; background: rgba(255, 255, 255, .84); }
.post-detail__cover picture { display: grid; place-items: center; width: 100%; height: 100%; }
.post-detail__cover img { width: 100%; height: 100%; max-height: 680px; object-fit: contain; box-shadow: 0 20px 50px rgba(27, 46, 67, .14); }
.post-detail__body { display: grid; grid-template-columns: 210px minmax(0, 760px); gap: 8vw; justify-content: center; align-items: start; }
.post-detail__meta { position: sticky; top: 126px; display: grid; gap: 10px; padding-top: 8px; color: var(--ink-soft); font-size: 10px; }
.post-detail__meta span:first-child { color: var(--navy); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.post-detail__meta a { margin-top: 12px; color: var(--navy-deep); font-weight: 700; }
.post-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 85px; }
.post-gallery button { display: grid; place-items: center; aspect-ratio: 4 / 5; padding: 24px; border: 1px solid rgba(15, 69, 124, .08); border-radius: 18px; background: var(--paper-blue); cursor: zoom-in; }
.post-gallery button > span { display: grid; place-items: center; width: 100%; height: 100%; padding: 16px; background: rgba(255, 255, 255, .84); }
.post-gallery picture { display: grid; place-items: center; width: 100%; height: 100%; }
.post-gallery img { width: 100%; height: 100%; object-fit: contain; box-shadow: 0 12px 28px rgba(27, 46, 67, .12); }
.related-stories { background: #faf7f2; }

/* Shop */
.shop-products { padding: 70px 0 130px; }
.product-feature { display: grid; grid-template-columns: minmax(510px, 1.12fr) minmax(380px, .88fr); gap: 8vw; align-items: center; padding: 60px 0; }
.product-feature + .product-feature { border-top: 1px solid var(--line); }
.product-feature__visual { display: grid; place-items: center; min-height: 600px; padding: 38px; border-radius: 26px; }
.product-feature__visual--1 { background: linear-gradient(145deg, var(--paper-blue), var(--paper-rose)); }
.product-feature__visual--2 { background: linear-gradient(145deg, var(--paper-mint), var(--paper-warm)); }
.product-feature__visual--3 { background: linear-gradient(145deg, var(--paper-rose), var(--paper-warm)); }
.product-feature__visual--4 { background: linear-gradient(145deg, var(--paper-blue), var(--paper-mint)); }
.product-feature__matte { display: grid; place-items: center; width: 100%; min-height: 520px; padding: 25px; background: rgba(255, 255, 255, .84); }
.product-feature__matte picture { display: grid; place-items: center; width: 100%; height: 100%; }
.product-feature__matte img { width: 100%; height: 100%; max-height: 490px; object-fit: contain; box-shadow: 0 18px 44px rgba(27, 46, 67, .14); }
.product-feature__copy h2 { margin: 0 0 18px; font-size: clamp(48px, 5vw, 76px); }
.product-feature__subtitle { margin: 0 0 24px; color: var(--navy); font-family: var(--serif); font-size: 24px; line-height: 1.4; }
.product-feature__price { display: flex; align-items: baseline; gap: 7px; margin: 26px 0; color: var(--navy-deep); font-family: var(--serif); font-size: 52px; }
.product-feature__price span { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.product-feature__facts { display: grid; gap: 8px; margin: 0 0 30px; padding: 0; list-style: none; }
.product-feature__facts li { position: relative; padding-left: 20px; color: var(--ink-soft); font-size: 12px; }
.product-feature__facts li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 1px; background: var(--gold); }
.product-feature__note { margin: 16px 0 0; color: var(--ink-soft); font-size: 10px; }
.product-feature__note a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.shop-note { padding: 95px 0; background: linear-gradient(120deg, var(--paper-mint), var(--paper-rose), var(--paper-warm)); }
.shop-note__grid { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.shop-note h2 { margin: 0; font-size: clamp(45px, 5vw, 72px); }

/* Contact */
.contact-page { position: relative; padding: calc(var(--header-height) + 70px) 0 120px; overflow: hidden; }
.contact-page__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(390px, .82fr) minmax(520px, 1.18fr); gap: 8vw; align-items: start; }
.contact-page__intro { padding-top: 28px; }
.contact-page__intro h1 { margin: 0 0 26px; font-size: clamp(65px, 6.7vw, 102px); }
.contact-page__lead { max-width: 540px; margin: 0 0 26px; color: var(--ink-soft); font-size: 17px; line-height: 1.78; }
.contact-page__intro > .rich-text { max-width: 540px; }
.contact-details { margin: 42px 0 0; border-top: 1px solid var(--line); }
.contact-details div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-details dt { color: var(--ink-soft); font-size: 9px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.contact-details dd { margin: 0; font-size: 13px; }
.contact-details a { color: var(--navy); }
.contact-form-card { padding: 35px; background: rgba(255, 255, 255, .86); border: 1px solid rgba(255, 255, 255, .95); border-radius: 24px; box-shadow: var(--shadow); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.contact-form-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-form-card__head span { color: var(--navy-deep); font-family: var(--serif); font-size: 24px; }
.contact-form-card__head p { margin: 0; color: var(--ink-soft); font-size: 9px; }
.contact-form { display: grid; gap: 17px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #475766; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea,
.contact-form select { width: 100%; border: 1px solid rgba(15, 69, 124, .16); border-radius: 12px; outline: none; color: var(--ink); background: rgba(251, 250, 247, .76); transition: border-color .2s, box-shadow .2s, background .2s; }
.contact-form input,
.contact-form select { height: 52px; padding: 0 15px; }
.contact-form textarea { min-height: 160px; padding: 14px 15px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: rgba(15, 69, 124, .48); background: #fff; box-shadow: 0 0 0 4px rgba(201, 230, 226, .45); }
.form-privacy { margin: 0; color: var(--ink-soft); font-size: 9px; text-align: center; }
.form-privacy a { color: var(--navy); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-alert { margin-bottom: 22px; padding: 14px 16px; color: #7d3438; background: #fbefef; border: 1px solid #ebc8ca; border-radius: 12px; font-size: 12px; }
.form-alert ul { margin: 8px 0 0; padding-left: 18px; }
.contact-gallery { padding: 0 0 125px; }
.contact-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact-gallery__item { display: grid; place-items: center; aspect-ratio: 4 / 5; padding: 18px; border-radius: 18px; }
.contact-gallery__item--1 { background: var(--paper-mint); }
.contact-gallery__item--2 { background: var(--paper-rose); }
.contact-gallery__item--3 { background: var(--paper-warm); }
.contact-gallery__item--4 { background: #f0f1f8; }
.contact-gallery__item > span { display: grid; place-items: center; width: 100%; height: 100%; padding: 14px; background: rgba(255, 255, 255, .84); }
.contact-gallery__item picture { display: grid; place-items: center; width: 100%; height: 100%; }
.contact-gallery__item img { width: 100%; height: 100%; object-fit: contain; box-shadow: 0 10px 24px rgba(27, 46, 67, .11); }

/* Legal and 404 */
.legal-page { padding: calc(var(--header-height) + 75px) 0 130px; }
.legal-page__grid { display: grid; grid-template-columns: minmax(280px, .55fr) minmax(530px, 1.45fr); gap: 9vw; align-items: start; }
.legal-page aside { position: sticky; top: 132px; }
.legal-page h1 { margin: 0 0 20px; font-size: clamp(62px, 6.5vw, 94px); }
.legal-page aside > p:last-child { color: var(--ink-soft); }
.legal-page__content { padding: 45px; background: rgba(255, 255, 255, .66); border: 1px solid var(--line); border-radius: 20px; }
.not-found { position: relative; min-height: 820px; padding: calc(var(--header-height) + 100px) 0 100px; overflow: hidden; }
.not-found__inner { position: relative; z-index: 1; max-width: 900px; }
.not-found__inner > img { width: 250px; margin: 0 0 20px auto; opacity: .35; transform: rotate(-8deg); }
.not-found h1 { margin: 0 0 28px; font-size: clamp(74px, 8vw, 120px); }
.not-found__inner > p:not(.eyebrow) { margin-bottom: 32px; color: var(--ink-soft); font-size: 18px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding-top: 108px; background: #f1f6f5; }
.site-footer__wash { position: absolute; inset: 0; background:
    radial-gradient(circle at 7% 13%, rgba(242, 204, 213, .48), transparent 28%),
    radial-gradient(circle at 86% 25%, rgba(216, 233, 242, .68), transparent 26%),
    radial-gradient(circle at 68% 90%, rgba(242, 209, 170, .45), transparent 22%); }
.site-footer__top,
.site-footer__main,
.site-footer__bottom { position: relative; z-index: 1; }
.site-footer__top { display: flex; align-items: center; justify-content: space-between; gap: 65px; padding-bottom: 92px; }
.site-footer__statement h2 { margin: 0; font-size: clamp(50px, 5.7vw, 88px); }
.site-footer__main { display: grid; grid-template-columns: minmax(390px, 1.1fr) minmax(420px, .9fr); gap: 8vw; padding: 55px 0; border-top: 1px solid var(--line); }
.site-footer__brand img { width: 360px; height: auto; }
.site-footer__brand p { max-width: 460px; margin: 14px 0 0; color: var(--ink-soft); font-size: 13px; }
.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 45px; }
.site-footer__columns > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.site-footer__columns > div > span:first-child { margin-bottom: 7px; color: var(--navy); font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.site-footer__columns a,
.site-footer__plain { color: #394b5a; font-size: 12px; }
.site-footer__columns a:hover { color: var(--navy); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 25px; padding: 22px 0 28px; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 9px; }
.site-footer__bottom span:last-child { display: flex; gap: 10px; }
.site-footer__bottom i { font-style: normal; }

/* Lightbox, toast, animation */
.lightbox { position: fixed; z-index: 2000; inset: 0; display: grid; grid-template-rows: 1fr auto; place-items: center; padding: 55px; color: #fff; background: rgba(7, 27, 49, .95); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__close { position: absolute; top: 25px; right: 28px; display: grid; place-items: center; width: 48px; height: 48px; padding: 0; color: #fff; border: 1px solid rgba(255, 255, 255, .3); border-radius: 50%; background: transparent; font-size: 29px; font-weight: 300; cursor: pointer; }
.lightbox__stage { display: grid; place-items: center; width: 100%; height: 100%; }
.lightbox__stage img { max-width: min(90vw, 1500px); max-height: 80vh; object-fit: contain; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.lightbox > p { margin: 18px 0 0; color: rgba(255, 255, 255, .72); font-size: 11px; }
.toast { position: fixed; z-index: 1800; right: 24px; bottom: 24px; max-width: 380px; padding: 16px 20px; color: #fff; background: var(--navy-deep); border-radius: 12px; box-shadow: 0 18px 45px rgba(7, 27, 49, .22); font-size: 12px; transition: opacity .4s, transform .4s; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); transition-delay: calc(var(--reveal-delay, 0) * 90ms); }
.js [data-reveal][data-reveal-delay="1"] { --reveal-delay: 1; }
.js [data-reveal][data-reveal-delay="2"] { --reveal-delay: 2; }
.js [data-reveal][data-reveal-delay="3"] { --reveal-delay: 3; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1240px) {
    :root { --shell: min(100% - 60px, 1280px); }
    .home-hero__grid { grid-template-columns: minmax(350px, .78fr) minmax(500px, 1.22fr); gap: 48px; }
    .hero-art-card__stage { min-height: 500px; }
    .hero-art-card__matte { min-height: 420px; }
    .collection-ribbon__grid { grid-template-columns: repeat(2, 1fr); }
    .collection-panel { grid-template-columns: 1fr; }
    .collection-panel__copy { padding: 10px 32px 32px; }
    .collection-panel__copy b { margin-top: 8px; }
    .work-detail__grid { grid-template-columns: minmax(480px, 1.2fr) minmax(330px, .8fr); gap: 48px; }
    .contact-page__grid { grid-template-columns: minmax(340px, .76fr) minmax(490px, 1.24fr); gap: 52px; }
}

@media (max-width: 1024px) {
    :root { --shell: min(100% - 44px, 940px); --header-height: 112px; }
    .desktop-nav { display: none; }
    .menu-toggle { display: block; }
    .mobile-menu { display: block; }
    .site-brand { width: 224px; height: 98px; }
    .site-header.is-scrolled .site-brand { width: 200px; }
    .home-hero { min-height: auto; padding-bottom: 75px; }
    .home-hero__grid,
    .about-hero__grid,
    .artist-section__grid,
    .edition-section__grid,
    .contact-page__grid,
    .product-feature,
    .work-detail__grid { grid-template-columns: 1fr; }
    .home-hero__copy { max-width: 760px; }
    .home-hero__visual { width: min(760px, 100%); margin-inline: auto; padding-left: 0; }
    .home-hero__brush { right: -20px; }
    .collection-ribbon__grid { grid-template-columns: repeat(2, 1fr); }
    .selected-grid,
    .art-archive,
    .related-grid,
    .about-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .collection-showcase__grid { grid-template-columns: 1fr; }
    .collection-panel { grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr); }
    .collection-panel__copy { padding: 35px 36px 35px 8px; }
    .artist-section__visual { width: min(680px, 100%); }
    .journal-preview-grid { grid-template-columns: repeat(2, 1fr); }
    .journal-card:last-child { display: none; }
    .edition-section__visual { width: min(730px, 100%); }
    .page-hero__grid { grid-template-columns: 1fr; gap: 30px; }
    .page-hero__aside { max-width: 680px; }
    .archive-toolbar { align-items: flex-start; flex-direction: column; }
    .archive-toolbar__note { align-self: flex-end; }
    .work-detail__visual { width: min(760px, 100%); margin-inline: auto; }
    .work-detail__info { position: static; max-width: 700px; padding-top: 0; }
    .about-hero__portrait { width: min(680px, 100%); margin-inline: auto; }
    .biography-section__grid { grid-template-columns: 1fr; gap: 60px; }
    .biography-index { position: static; }
    .biography-index__list { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
    .journey-grid { grid-template-columns: 1fr; }
    .journey-grid article { min-height: auto; }
    .journey-grid article > span { margin-bottom: 30px; }
    .journal-entry--lead > a { grid-template-columns: 1fr; }
    .journal-entry--lead .journal-entry__copy { padding: 36px; }
    .post-detail__body { grid-template-columns: 1fr; gap: 36px; }
    .post-detail__meta { position: static; display: flex; flex-wrap: wrap; gap: 18px; }
    .post-detail__meta a { margin-top: 0; }
    .product-feature__visual { width: min(760px, 100%); }
    .contact-page__intro { max-width: 680px; }
    .contact-form-card { width: min(760px, 100%); }
    .legal-page__grid { grid-template-columns: 1fr; gap: 50px; }
    .legal-page aside { position: static; }
    .site-footer__main { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 760px) {
    :root { --shell: calc(100vw - 32px); --header-height: 100px; --radius: 18px; }
    body { font-size: 15px; }
    .section { padding: 92px 0; }
    .site-header.is-scrolled { height: 84px; }
    .site-brand { width: 184px; height: 86px; }
    .site-header.is-scrolled .site-brand { width: 170px; height: 76px; }
    .menu-toggle { width: 44px; height: 44px; }
    .menu-toggle > span:not(.sr-only) { left: 11px; width: 22px; }
    .mobile-menu { padding-top: calc(var(--header-height) + 25px); }
    .mobile-menu__foot { flex-direction: column; gap: 4px; }
    .home-hero { padding-top: calc(var(--header-height) + 35px); }
    .home-hero h1 { font-size: clamp(56px, 17vw, 82px); }
    .home-hero__lead { font-size: 15px; }
    .home-hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
    .home-hero__facts { grid-template-columns: 1fr; }
    .home-hero__facts div { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 11px 0; }
    .home-hero__facts div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
    .home-hero__facts dt { margin: 0; }
    .hero-art-card { padding: 14px; border-radius: 21px; }
    .hero-art-card__stage { min-height: 390px; padding: 20px; }
    .hero-art-card__matte { min-height: 330px; padding: 16px; }
    .hero-art-card__image { max-height: 320px; }
    .hero-art-card__caption { align-items: flex-start; flex-direction: column; gap: 7px; }
    .home-hero__brush { width: 230px; }
    .collection-ribbon__grid { grid-template-columns: 1fr; }
    .section-heading--split { grid-template-columns: 1fr; gap: 28px; margin-bottom: 50px; }
    .section-heading h2,
    .section-heading--compact h2 { font-size: clamp(44px, 13vw, 64px); }
    .selected-grid,
    .art-archive,
    .related-grid,
    .about-gallery-grid { grid-template-columns: 1fr; gap: 48px; }
    .art-card__stage,
    .archive-card__stage,
    .related-card__stage,
    .about-gallery-card > div { aspect-ratio: 5 / 6; }
    .art-card__view,
    .archive-card__view { opacity: 1; transform: none; }
    .collection-panel { grid-template-columns: 1fr; }
    .collection-panel__copy { padding: 8px 28px 30px; }
    .artist-section__grid { gap: 56px; }
    .artist-section__visual { padding: 0 24px 45px 0; }
    .artist-section__portrait { padding: 20px; }
    .artist-section__label { width: min(280px, 84%); padding: 18px; }
    .artist-section__copy h2 { font-size: clamp(46px, 13vw, 67px); }
    .artist-section__milestones div { grid-template-columns: 62px 1fr; }
    .journal-preview-grid { grid-template-columns: 1fr; }
    .journal-card:last-child { display: block; }
    .edition-section { padding: 90px 0; }
    .edition-section__grid { gap: 55px; }
    .edition-section__visual { padding: 20px; }
    .edition-section__matte { min-height: 360px; padding: 16px; }
    .edition-section__matte img { max-height: 340px; }
    .page-hero { min-height: 430px; padding: calc(var(--header-height) + 65px) 0 70px; }
    .page-hero h1 { font-size: clamp(58px, 16vw, 86px); }
    .archive-section { padding-top: 35px; }
    .archive-toolbar { margin-bottom: 45px; }
    .collection-filter { width: 100%; }
    .collection-filter a { flex: 1 1 calc(50% - 8px); justify-content: center; }
    .archive-toolbar__note { align-self: flex-start; }
    .archive-cta__inner,
    .about-cta__inner,
    .shop-note__grid,
    .site-footer__top { align-items: flex-start; flex-direction: column; }
    .archive-cta h2,
    .about-cta h2,
    .site-footer__statement h2 { font-size: clamp(45px, 13vw, 64px); }
    .circle-link { width: 145px; }
    .work-detail { padding-top: calc(var(--header-height) + 40px); }
    .work-detail__stage { min-height: 470px; padding: 22px; }
    .work-detail__zoom { min-height: 410px; }
    .work-detail__matte { min-height: 400px; padding: 16px; }
    .work-detail__image { max-height: 380px; }
    .work-detail__info h1 { font-size: clamp(48px, 13vw, 68px); }
    .work-pagination { grid-template-columns: 1fr auto 1fr; gap: 14px; }
    .work-pagination__item strong { display: none; }
    .about-hero { min-height: auto; padding-top: calc(var(--header-height) + 40px); }
    .about-hero__copy h1 { font-size: clamp(60px, 17vw, 88px); }
    .about-hero__portrait { padding-right: 18px; }
    .about-hero__portrait-frame { padding: 20px; }
    .about-hero__caption { min-width: 260px; }
    .biography-section { padding: 92px 0; }
    .biography-index__list { grid-template-columns: 1fr; }
    .rich-text--biography p { font-size: 20px; }
    .journey-section { padding: 92px 0; }
    .journal-archive__grid { grid-template-columns: 1fr; }
    .journal-entry--lead { grid-column: auto; }
    .journal-entry--lead .journal-entry__copy { padding: 30px; }
    .journal-entry--lead h2,
    .journal-entry__copy h2 { font-size: 36px; }
    .post-detail { padding-top: calc(var(--header-height) + 40px); }
    .post-detail__header h1 { font-size: clamp(52px, 14vw, 78px); }
    .post-detail__cover { margin-bottom: 60px; padding: 22px; }
    .post-detail__cover > div { min-height: 380px; padding: 15px; }
    .post-detail__cover img { max-height: 470px; }
    .post-gallery { grid-template-columns: 1fr; }
    .product-feature { gap: 52px; padding: 35px 0 70px; }
    .product-feature__visual { min-height: 430px; padding: 22px; }
    .product-feature__matte { min-height: 380px; padding: 16px; }
    .product-feature__matte img { max-height: 360px; }
    .contact-page { padding-top: calc(var(--header-height) + 40px); }
    .contact-page__intro h1 { font-size: clamp(56px, 15vw, 82px); }
    .contact-form-card { padding: 24px 20px; }
    .contact-form-card__head { align-items: flex-start; flex-direction: column; gap: 3px; }
    .form-row { grid-template-columns: 1fr; }
    .contact-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .legal-page__content { padding: 27px 22px; }
    .site-footer { padding-top: 85px; }
    .site-footer__top { padding-bottom: 70px; }
    .site-footer__brand img { width: 285px; }
    .site-footer__columns { grid-template-columns: 1fr; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
    .lightbox { padding: 45px 18px 25px; }
}

@media (max-width: 480px) {
    :root { --shell: calc(100vw - 24px); }
    .site-brand { width: 166px; }
    .site-header.is-scrolled .site-brand { width: 155px; }
    .home-hero h1 { font-size: 55px; }
    .button { width: 100%; }
    .text-link { align-self: flex-start; }
    .hero-art-card__stage { min-height: 330px; padding: 14px; }
    .hero-art-card__matte { min-height: 282px; padding: 12px; }
    .hero-art-card__image { max-height: 270px; }
    .collection-ribbon__item { padding: 19px; }
    .art-card__stage,
    .archive-card__stage,
    .related-card__stage,
    .about-gallery-card > div { padding: 14px; }
    .art-card__matte,
    .archive-card__matte,
    .related-card__stage > span,
    .about-gallery-card > div > span { padding: 12px; }
    .collection-panel__image { padding: 18px; }
    .collection-panel__matte { min-height: 290px; padding: 13px; }
    .collection-panel__copy h3 { font-size: 34px; }
    .artist-section__label { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); margin: -24px auto 0; }
    .artist-section__visual { padding: 0; }
    .page-hero h1 { font-size: 56px; }
    .collection-filter a { flex-basis: 100%; }
    .work-detail__stage { min-height: 390px; padding: 15px; }
    .work-detail__zoom { min-height: 350px; }
    .work-detail__matte { min-height: 340px; padding: 12px; }
    .work-detail__image { max-height: 325px; }
    .work-facts div { grid-template-columns: 90px 1fr; }
    .about-hero__caption { position: relative; right: auto; bottom: auto; width: calc(100% - 20px); min-width: 0; margin: -18px auto 0; }
    .about-hero__portrait { padding: 0; }
    .contact-gallery__grid { grid-template-columns: 1fr; }
    .not-found h1 { font-size: 60px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
    .js [data-reveal] { opacity: 1; transform: none; }
}

/* Version 2.1 — CI and presentation refinements */
.site-header {
    background: rgba(255, 255, 255, .97);
    border-bottom: 1px solid rgba(15, 69, 124, .08);
    box-shadow: 0 9px 35px rgba(28, 52, 78, .035);
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .95);
    border-bottom-color: var(--line);
}
.site-brand {
    overflow: hidden;
    background: #fff;
    border-radius: 10px;
}
.site-brand img {
    mix-blend-mode: normal;
}
.site-footer__brand img {
    padding: 10px 12px;
    background: #fff;
    border: 1px solid rgba(15, 69, 124, .08);
    border-radius: 15px;
    box-shadow: 0 12px 34px rgba(28, 52, 78, .055);
}
.biography-index__list {
    display: grid;
    border-top: 1px solid var(--line);
}
.biography-index__list > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 2px 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}
.biography-index__list > div > span {
    grid-row: 1 / span 2;
    color: var(--gold);
    font-size: 9px;
    font-weight: 700;
}
.biography-index__list strong { font-size: 12px; }
.biography-index__list small { color: var(--ink-soft); font-size: 10px; }
.toast.is-leaving { opacity: 0; transform: translateY(15px); }
.archive-card.is-loaded { animation: archive-card-in .55s var(--ease) both; animation-delay: calc(var(--load-index, 0) * 40ms); }
@keyframes archive-card-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
    .biography-index__list { grid-template-columns: repeat(2, 1fr); column-gap: 30px; }
}
@media (max-width: 760px) {
    .biography-index__list { grid-template-columns: 1fr; }
}

/* Version 2.3 — current content, Editions highlights, Vimeo, sharing and artwork search */
.home-current {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(201, 230, 226, .38), transparent 27%),
        radial-gradient(circle at 92% 18%, rgba(242, 204, 213, .34), transparent 25%),
        linear-gradient(180deg, #f8f6f1 0%, #fbfaf7 100%);
}
.home-current::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(199, 155, 69, .12);
    border-radius: 50%;
    pointer-events: none;
}
.home-current > .shell { position: relative; z-index: 1; }
.home-current__heading { margin-bottom: 58px; }
.home-current__links { flex-wrap: wrap; gap: 15px 28px; }
.home-current__links .text-link { white-space: nowrap; }
.home-current__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 26px;
}
.current-card {
    min-width: 0;
    border: 1px solid rgba(15, 69, 124, .09);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 58px rgba(28, 52, 78, .06);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.current-card--lead { grid-row: 1 / span 2; }
.current-card > a { display: grid; height: 100%; }
.current-card--lead > a { grid-template-rows: minmax(390px, 1fr) auto; }
.current-card:not(.current-card--lead) > a { grid-template-columns: minmax(155px, .43fr) minmax(0, .57fr); }
.current-card__visual { position: relative; min-height: 230px; padding: 24px; overflow: hidden; }
.current-card--lead .current-card__visual { min-height: 430px; padding: 32px; }
.current-card__visual--1 { background: linear-gradient(145deg, var(--paper-mint), var(--paper-blue)); }
.current-card__visual--2 { background: linear-gradient(145deg, var(--paper-rose), var(--paper-warm)); }
.current-card__visual--3 { background: linear-gradient(145deg, var(--paper-blue), var(--lavender)); }
.current-card__visual--4 { background: linear-gradient(145deg, var(--paper-warm), var(--paper-mint)); }
.current-card__image {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 18px;
    background: rgba(255, 255, 255, .82);
}
.current-card__image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    box-shadow: 0 15px 38px rgba(27, 46, 67, .13);
    transition: transform .5s var(--ease);
}
.current-card__badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.current-card__badges > span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(15, 69, 124, .08);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(28, 52, 78, .08);
}
.current-status.current-status--now { color: #285c51; background: #e4f4ef; border-color: rgba(40, 92, 81, .13); }
.current-status.current-status--upcoming { color: #835e20; background: #fbf1dc; border-color: rgba(131, 94, 32, .13); }
.current-card__video,
.journal-video-badge {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    padding: 0 11px;
    color: #fff;
    background: rgba(10, 51, 93, .91);
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(10, 51, 93, .17);
}
.current-card__video i,
.journal-video-badge i { color: var(--apricot); font-size: 8px; font-style: normal; }
.current-card__copy { padding: 27px 30px 31px; }
.current-card--lead .current-card__copy { padding: 34px 38px 39px; }
.current-card__copy > p {
    margin: 0 0 11px;
    color: var(--navy);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    line-height: 1.55;
    text-transform: uppercase;
}
.current-card__copy h3 {
    margin: 0 0 12px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.08;
}
.current-card--lead .current-card__copy h3 { font-size: clamp(40px, 4vw, 62px); }
.current-card__copy > div { margin: 0 0 18px; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.current-card--lead .current-card__copy > div { max-width: 760px; font-size: 14px; }
.current-card__copy b { color: var(--navy-deep); font-size: 10px; }
.current-card__copy b i { margin-left: 7px; color: var(--gold); font-style: normal; }
.current-card:hover { transform: translateY(-6px); border-color: rgba(15, 69, 124, .16); box-shadow: 0 25px 70px rgba(28, 52, 78, .11); }
.current-card:hover .current-card__image img { transform: scale(1.016); }

.current-status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.post-event-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
    max-width: 820px;
    margin-top: 28px;
    padding-top: 21px;
    border-top: 1px solid var(--line);
}
.post-event-note strong { color: var(--navy-deep); font-family: var(--serif); font-size: 20px; font-weight: 400; }
.post-event-note > span:last-child { color: var(--ink-soft); font-size: 11px; }
.share-actions { display: grid; gap: 8px; margin-top: 12px; }
.share-actions a,
.share-actions button,
.edition-share a,
.edition-share button {
    width: fit-content;
    padding: 0 0 3px;
    color: var(--navy-deep);
    border: 0;
    border-bottom: 1px solid rgba(15, 69, 124, .25);
    background: transparent;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    cursor: pointer;
    transition: color .2s, border-color .2s;
}
.share-actions a:hover,
.share-actions button:hover,
.edition-share a:hover,
.edition-share button:hover { color: var(--gold); border-color: var(--gold); }
.share-actions button.is-copied,
.edition-share button.is-copied { color: #2c6c5c; border-color: rgba(44, 108, 92, .35); }

.video-embed {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--navy-deep);
    border: 1px solid rgba(15, 69, 124, .1);
    border-radius: 24px;
    box-shadow: 0 26px 70px rgba(20, 42, 65, .16);
}
.video-embed--landscape { aspect-ratio: 16 / 9; }
.video-embed--square { width: min(820px, 100%); aspect-ratio: 1; margin-inline: auto; }
.video-embed--portrait { width: min(520px, 100%); aspect-ratio: 9 / 16; margin-inline: auto; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.post-video { margin-top: 88px; }
.post-video .video-embed--landscape { width: min(1180px, 100%); margin-inline: auto; }
.video-caption { max-width: 850px; margin: 17px auto 0; color: var(--ink-soft); font-size: 10px; line-height: 1.65; text-align: center; }

.journal-card__image { position: relative; }
.journal-entry__image > .journal-video-badge { top: auto; left: auto; right: 18px; bottom: 18px; color: #fff; background: rgba(10, 51, 93, .91); }
.inline-current {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-right: 8px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
    vertical-align: middle;
}
.inline-current--now { color: #285c51; background: #e4f4ef; }
.inline-current--upcoming { color: #835e20; background: #fbf1dc; }

.product-feature { scroll-margin-top: calc(var(--header-height) + 25px); }
.edition-share { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 21px; }
.product-feature__video {
    grid-column: 1 / -1;
    margin-top: 24px;
    padding: clamp(26px, 4vw, 54px);
    border: 1px solid rgba(15, 69, 124, .08);
    border-radius: 26px;
    background:
        radial-gradient(circle at 8% 15%, rgba(201, 230, 226, .48), transparent 28%),
        radial-gradient(circle at 91% 12%, rgba(242, 204, 213, .46), transparent 26%),
        rgba(255, 255, 255, .68);
}
.product-feature__video-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 34px;
}
.product-feature__video-head h3 { margin: 0; font-family: var(--serif); font-size: clamp(38px, 4vw, 62px); font-weight: 400; line-height: 1.02; }
.product-feature__video-head h3 em { color: var(--navy); font-weight: 400; }
.product-feature__video-head > p { max-width: 450px; margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.7; }
.product-feature__gallery { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 4px; }
.product-feature__gallery button { display: grid; place-items: center; min-height: 320px; padding: 20px; border: 1px solid rgba(15, 69, 124, .08); border-radius: 18px; background: var(--paper-blue); cursor: zoom-in; }
.product-feature__gallery button:nth-child(4n+2) { background: var(--paper-rose); }
.product-feature__gallery button:nth-child(4n+3) { background: var(--paper-warm); }
.product-feature__gallery button:nth-child(4n+4) { background: var(--paper-mint); }
.product-feature__gallery button > span { display: grid; place-items: center; width: 100%; height: 100%; padding: 14px; background: rgba(255, 255, 255, .84); }
.product-feature__gallery img { width: 100%; height: 100%; max-height: 390px; object-fit: contain; box-shadow: 0 12px 28px rgba(27, 46, 67, .12); }

.archive-toolbar { flex-wrap: wrap; margin-bottom: 22px; }
.collection-filter { flex: 1 1 650px; }
.archive-toolbar__tools { display: flex; flex: 0 1 370px; align-items: center; justify-content: flex-end; gap: 18px; }
.works-search {
    position: relative;
    display: flex;
    align-items: center;
    width: min(320px, 100%);
    height: 46px;
    color: var(--ink-soft);
    border: 1px solid rgba(15, 69, 124, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    transition: border-color .2s, box-shadow .2s, background .2s;
}
.works-search:focus-within { border-color: rgba(15, 69, 124, .42); background: #fff; box-shadow: 0 0 0 4px rgba(201, 230, 226, .38); }
.works-search__icon { display: grid; place-items: center; width: 43px; flex: 0 0 43px; color: var(--navy); font-size: 20px; line-height: 1; }
.works-search input { min-width: 0; width: 100%; height: 100%; padding: 0 38px 0 0; color: var(--ink); border: 0; outline: 0; background: transparent; font-size: 11px; }
.works-search input::placeholder { color: #83909c; }
.works-search button { position: absolute; right: 7px; top: 50%; display: grid; place-items: center; width: 31px; height: 31px; padding: 0; color: var(--navy); border: 0; border-radius: 50%; background: var(--paper-blue); font-size: 18px; line-height: 1; cursor: pointer; }
.works-search button[hidden] { display: none; }
.works-search-status { margin: 0 0 42px; color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: .06em; }
.works-search-status:empty { display: none; }
.works-search-empty { padding: 90px 20px; text-align: center; }
.works-search-empty[hidden] { display: none; }
.works-search-empty > span { display: block; margin-bottom: 17px; color: var(--gold); font-family: var(--serif); font-size: 48px; line-height: 1; }
.works-search-empty h2 { margin: 0 0 10px; font-size: clamp(36px, 4vw, 56px); }
.works-search-empty p { margin: 0 0 24px; color: var(--ink-soft); }
.works-search-empty .text-link { border-top: 0; border-right: 0; border-left: 0; background: transparent; cursor: pointer; }
.archive-card.is-search-match { animation: search-card-in .42s var(--ease) both; }
@keyframes search-card-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
    .home-current__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .current-card--lead { grid-row: auto; }
    .current-card:not(.current-card--lead) > a { grid-template-columns: minmax(260px, .43fr) minmax(0, .57fr); }
    .current-card:not(.current-card--lead) .current-card__visual { min-height: 280px; }
    .archive-toolbar__tools { flex: 1 1 100%; justify-content: space-between; }
    .works-search { width: min(420px, 100%); }
}

@media (max-width: 760px) {
    .home-current__heading { margin-bottom: 42px; }
    .home-current__links { justify-content: flex-start; }
    .home-current__grid { gap: 22px; }
    .current-card--lead > a,
    .current-card:not(.current-card--lead) > a { grid-template-columns: 1fr; grid-template-rows: auto auto; }
    .current-card__visual,
    .current-card--lead .current-card__visual,
    .current-card:not(.current-card--lead) .current-card__visual { min-height: 340px; padding: 18px; }
    .current-card__image { min-height: 304px; padding: 13px; }
    .current-card__image img { max-height: 350px; }
    .current-card__copy,
    .current-card--lead .current-card__copy { padding: 25px 25px 29px; }
    .current-card__copy h3,
    .current-card--lead .current-card__copy h3 { font-size: 36px; }
    .current-card--lead .current-card__copy > div { font-size: 12px; }
    .post-event-note { align-items: flex-start; flex-direction: column; }
    .post-detail__meta { gap: 8px; }
    .post-video { margin-top: 60px; }
    .video-embed { border-radius: 17px; }
    .product-feature__video { padding: 24px 18px; border-radius: 20px; }
    .product-feature__video-head { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 23px; }
    .product-feature__video-head h3 { font-size: 42px; }
    .product-feature__gallery { grid-template-columns: 1fr; }
    .product-feature__gallery button { min-height: 360px; }
    .archive-toolbar__tools { align-items: stretch; flex-direction: column; gap: 13px; width: 100%; }
    .works-search { width: 100%; }
    .archive-toolbar__note { align-self: flex-start; }
    .works-search-status { margin-bottom: 32px; }
}

@media (max-width: 480px) {
    .current-card__visual,
    .current-card--lead .current-card__visual,
    .current-card:not(.current-card--lead) .current-card__visual { min-height: 300px; padding: 14px; }
    .current-card__image { min-height: 272px; padding: 11px; }
    .current-card__badges { top: 11px; left: 11px; }
    .current-card__video { right: 11px; bottom: 11px; }
    .edition-share { align-items: flex-start; flex-direction: column; gap: 10px; }
    .video-embed--portrait { width: 100%; }
}

/* Version 2.4 — homepage artwork carousel */
.hero-carousel {
    --hero-interval: 7000ms;
    overflow: hidden;
}
.hero-carousel__slides {
    display: grid;
    min-width: 0;
}
.hero-carousel__slide {
    grid-area: 1 / 1;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, 12px, 0) scale(.992);
    transition:
        opacity .85s var(--ease),
        transform .85s var(--ease),
        visibility 0s linear .85s;
}
.hero-carousel__slide.is-active {
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition-delay: 0s;
}
.hero-carousel__controls {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 46px;
    margin: 7px 4px -3px;
    padding-top: 10px;
    border-top: 1px solid rgba(15, 69, 124, .09);
}
.hero-carousel__counter {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    min-width: 48px;
    color: var(--ink-soft);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}
.hero-carousel__counter strong {
    color: var(--navy-deep);
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
}
.hero-carousel__counter b { font-weight: 700; }
.hero-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.hero-carousel__dot {
    position: relative;
    width: 30px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.hero-carousel__dot::before,
.hero-carousel__dot::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    left: 0;
    height: 2px;
    border-radius: 999px;
}
.hero-carousel__dot::before { background: rgba(15, 69, 124, .16); }
.hero-carousel__dot::after {
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left center;
}
.hero-carousel__dot.is-active::before { background: rgba(15, 69, 124, .28); }
.hero-carousel.is-playing .hero-carousel__dot.is-active::after {
    animation: hero-carousel-progress var(--hero-interval) linear forwards;
}
.hero-carousel__dot:focus-visible {
    outline: 2px solid var(--navy);
    outline-offset: 3px;
    border-radius: 999px;
}
.hero-carousel__arrows { display: flex; gap: 7px; }
.hero-carousel__arrows button {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    color: var(--navy-deep);
    border: 1px solid rgba(15, 69, 124, .14);
    border-radius: 50%;
    background: rgba(255, 255, 255, .66);
    font-size: 15px;
    cursor: pointer;
    transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.hero-carousel__arrows button:hover {
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-1px);
}
.hero-carousel__arrows button:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }
.hero-carousel--single .hero-carousel__controls { display: none; }
.no-js .hero-carousel__slide:not(:first-child) { display: none; }

@keyframes hero-carousel-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 760px) {
    .hero-carousel__controls {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
        margin-top: 5px;
    }
    .hero-carousel__dot { width: 22px; }
    .hero-carousel__arrows button { width: 32px; height: 32px; }
}

@media (max-width: 480px) {
    .hero-carousel__controls { gap: 9px; }
    .hero-carousel__dots { gap: 4px; }
    .hero-carousel__dot { width: 17px; }
    .hero-carousel__counter b,
    .hero-carousel__counter > span { display: none; }
    .hero-carousel__counter { min-width: 25px; }
    .hero-carousel__arrows { gap: 5px; }
    .hero-carousel__arrows button { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-carousel__slide { transform: none; }
    .hero-carousel.is-playing .hero-carousel__dot.is-active::after { animation: none; transform: scaleX(1); }
}
