/* =========================================================================
   Verí — shared theme stylesheet
   Los Verí (cream / warm ink) + Atelier Verí (navy-band-heavy) multisite.
   "Joyful and rigorous with a dash of whimsy" — editorial, warm, artful.
   ========================================================================= */

:root {
    /* Palette */
    --cream:      #FFFDF5;
    --navy:       #1D3A4E;
    --slate:      #4F6B7D;
    --ink:        #2B2418;   /* warm ink — text on cream */
    --cream-text: #F4EDD8;   /* text on navy */

    /* Accent tints (used sparingly, Iris-style) */
    --gold:  #C9A227;
    --coral: #C96B4A;
    --sage:  #7C9A5C;
    --blue:  #4A7BA6;

    /* Roles (main-site defaults; overridden on .site-atelier) */
    --bg:        var(--cream);
    --fg:        var(--ink);
    --muted:     #6c6250;
    --line:      rgba(43, 36, 24, 0.14);
    --panel:     #F6F0E0;

    /* Type */
    --serif: "Fraunces", Georgia, "Times New Roman", serif;
    --sans:  "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;

    /* Fluid type scale */
    --fs-hero:  clamp(3rem, 10vw, 9rem);
    --fs-h1:    clamp(2.4rem, 6vw, 5rem);
    --fs-h2:    clamp(1.9rem, 4vw, 3.4rem);
    --fs-h3:    clamp(1.3rem, 2.2vw, 1.9rem);
    --fs-lead:  clamp(1.15rem, 1.6vw, 1.6rem);
    --fs-body:  clamp(1rem, 1.05vw, 1.15rem);
    --fs-small: 0.8rem;

    /* Layout */
    --maxw:   1600px;
    --readw:  70ch;
    --gutter: clamp(1.2em, 4vw, 2em);
    --band-y: clamp(3.5rem, 9vw, 8rem);
    --radius: 4px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Atelier variant: navy-forward */
.site-atelier {
    --bg:    var(--cream);
    --fg:    var(--ink);
    --muted: #6c6250;
    --line:  rgba(43, 36, 24, 0.14);
    --panel: #F6F0E0;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    font-size: var(--fs-body);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }

h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 0 0.5em;
}

p { margin: 0 0 1.1em; }

::selection { background: var(--navy); color: var(--cream-text); }

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.skip-link {
    position: absolute; left: -999px; top: 0; z-index: 999;
    background: var(--navy); color: var(--cream-text);
    padding: 0.6em 1em; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */
.wrap  { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.read  { max-width: var(--readw); margin-inline: auto; }
.band  { padding-block: var(--band-y); }
.band--cream { background: var(--cream); color: var(--ink); }
.band--navy  { background: var(--navy);  color: var(--cream-text); }
.band--slate { background: var(--slate); color: var(--cream-text); }
.band--panel { background: var(--panel); color: var(--ink); }

.band--navy a, .band--slate a { color: var(--cream-text); }

.center { text-align: center; }
.stack > * + * { margin-top: clamp(1.2rem, 3vw, 2.2rem); }

.eyebrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: var(--fs-lead);
    color: var(--coral);
    display: inline-block;
    margin-bottom: 0.4em;
}
.band--navy .eyebrow, .band--slate .eyebrow { color: var(--gold); }

.lead { font-size: var(--fs-lead); line-height: 1.5; }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.5em;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.95em 1.7em;
    border-radius: 999px;
    border: 1.5px solid transparent;
    transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
    cursor: pointer;
    line-height: 1;
}
.btn:hover { transform: translateY(-2px); }

.btn--contact   { background: var(--navy); color: var(--cream-text); }
.btn--contact:hover { background: var(--ink); color: var(--cream-text); }

.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--ghost-light { background: transparent; border-color: var(--cream-text); color: var(--cream-text); }
.btn--ghost-light:hover { background: var(--cream-text); color: var(--navy); }

.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: #fff; }

.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { filter: brightness(1.06); }

.contact-links { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.contact-links--center { justify-content: center; }

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(1.2) blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-atelier .site-header { background: color-mix(in srgb, var(--navy) 90%, transparent); border-bottom-color: rgba(244,237,216,0.14); }

.site-header__inner {
    max-width: var(--maxw); margin-inline: auto;
    padding: 0.6rem var(--gutter);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.site-brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; }
.site-brand__logo { height: 42px; width: auto; }
.site-atelier .site-header .site-brand__logo { filter: brightness(0) invert(1); } /* white on navy */
.site-brand__word {
    font-family: var(--serif); font-style: italic; font-weight: 400;
    font-size: 1.4rem; color: var(--cream-text); line-height: 1;
}

/* Nav */
.site-nav { display: flex; align-items: center; }
.primary-menu {
    list-style: none; margin: 0; padding: 0;
    display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem);
}
.primary-menu a {
    font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.04em; text-decoration: none;
    text-transform: lowercase;
    padding: 0.4em 0; position: relative;
    color: var(--fg);
}
.site-atelier .site-header .primary-menu a { color: var(--cream-text); }
.primary-menu a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
    background: currentColor; transition: width 0.3s var(--ease);
}
.primary-menu a:hover::after, .primary-menu .current-menu-item > a::after { width: 100%; }
.primary-menu .sub-menu { display: none; }

/* Hamburger */
.nav-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: 0; padding: 8px; cursor: pointer;
}
.nav-toggle__bar { width: 26px; height: 2px; background: var(--fg); transition: transform 0.3s var(--ease), opacity 0.2s; }
.site-atelier .site-header .nav-toggle__bar { background: var(--cream-text); }

@media (max-width: 860px) {
    .nav-toggle { display: flex; }
    .primary-menu {
        position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
        flex-direction: column; align-items: flex-start; justify-content: center;
        gap: 1.6rem; padding: 2rem var(--gutter);
        background: var(--navy); color: var(--cream-text);
        transform: translateX(100%); transition: transform 0.4s var(--ease);
        box-shadow: -20px 0 60px rgba(0,0,0,0.25);
    }
    .primary-menu a, .site-atelier .site-header .primary-menu a { color: var(--cream-text); font-size: 1.4rem; font-family: var(--serif); }
    body.nav-open .primary-menu { transform: translateX(0); }
    body.nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    body.nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero { position: relative; }

.hero--main {
    display: grid; align-items: end;
    min-height: min(88vh, 900px);
    padding-block: clamp(3rem, 8vw, 7rem);
    position: relative; overflow: hidden;
}
.hero--main .hero__bg {
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
}
.hero--main .hero__bg::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(255,253,245,0.25) 0%, rgba(255,253,245,0.55) 55%, rgba(255,253,245,0.92) 100%);
}
.hero--main .hero__inner { position: relative; z-index: 1; }
.hero__display {
    font-size: var(--fs-hero);
    font-weight: 300;
    line-height: 0.92;
    letter-spacing: -0.03em;
    margin: 0 0 0.3em;
    max-width: 16ch;
}
.hero__display em { font-style: italic; }
.hero__copy { font-size: var(--fs-lead); max-width: 46ch; color: var(--ink); }
.hero__copy a { color: var(--coral); font-style: italic; font-family: var(--serif); }

/* Atelier hero — navy full-bleed, giant overlapping serif */
.hero--atelier {
    background: var(--navy); color: var(--cream-text);
    min-height: min(92vh, 940px);
    display: grid; align-items: center;
    position: relative; overflow: hidden;
    padding-block: clamp(4rem, 10vw, 9rem);
}
.hero--atelier .hero__wash {
    position: absolute; inset: 0; z-index: 0; opacity: 0.5;
    background:
        radial-gradient(60% 50% at 80% 15%, rgba(74,123,166,0.55), transparent 70%),
        radial-gradient(50% 45% at 10% 90%, rgba(201,107,74,0.35), transparent 70%);
}
.hero--atelier .hero__inner { position: relative; z-index: 1; }
.hero--atelier .hero__mail {
    font-family: var(--serif); font-style: italic; font-size: var(--fs-lead);
    color: var(--gold); text-decoration: none; display: inline-block; margin-bottom: 1.2rem;
}
.hero--atelier .hero__display {
    font-size: clamp(3.2rem, 13vw, 11rem);
    font-weight: 300; letter-spacing: -0.04em; line-height: 0.86;
    color: var(--cream-text);
}
.hero--atelier .hero__display em { font-style: italic; color: var(--gold); }
.hero--atelier .hero__sub { font-size: var(--fs-lead); max-width: 52ch; margin-top: 1.4rem; }

/* -------------------------------------------------------------------------
   Section headings / labels
   ------------------------------------------------------------------------- */
.section-head { margin-bottom: clamp(1.6rem, 4vw, 3rem); }
.section-head .eyebrow { display: block; }
.section-title { font-size: var(--fs-h2); }
.section-title--big { font-size: var(--fs-h1); }

/* Overlapping big serif (atelier) */
.overlap-title {
    font-size: clamp(2.6rem, 8vw, 6.5rem);
    font-weight: 300; line-height: 0.9; letter-spacing: -0.03em;
    position: relative; z-index: 2;
}
.overlap-title em { font-style: italic; }

/* -------------------------------------------------------------------------
   Doorway cards (main front page: Work / Music / Atelier)
   ------------------------------------------------------------------------- */
.doorways {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.6rem);
}
@media (max-width: 820px) { .doorways { grid-template-columns: 1fr; } }

.doorway {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    min-height: clamp(300px, 40vw, 460px);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    border-radius: var(--radius); overflow: hidden;
    text-decoration: none; color: var(--cream-text);
    background: var(--navy);
    isolation: isolate;
    transition: transform 0.4s var(--ease);
}
.doorway::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    transition: transform 0.6s var(--ease);
}
.doorway:hover { transform: translateY(-6px); }
.doorway:hover::before { transform: scale(1.05); }
.doorway--work  { background: linear-gradient(160deg, var(--slate), var(--navy)); }
.doorway--music { background: linear-gradient(160deg, var(--coral), #7c3a2c); }
.doorway--atelier { background: linear-gradient(160deg, var(--navy), #0f2130); }
.doorway__num { font-family: var(--serif); font-style: italic; opacity: 0.55; font-size: 1rem; }
.doorway__title { font-size: var(--fs-h3); margin: 0.2em 0 0.3em; }
.doorway__desc { font-size: 0.95rem; opacity: 0.85; margin: 0; max-width: 30ch; }
.doorway__arrow { margin-top: 1rem; font-family: var(--serif); font-style: italic; }

/* -------------------------------------------------------------------------
   Work grid + filters (Iris-style poster grid)
   ------------------------------------------------------------------------- */
.work-filters {
    display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
    margin-bottom: clamp(1.6rem, 4vw, 2.6rem);
    padding-bottom: 1.2rem; border-bottom: 1px solid var(--line);
}
.work-filters__group { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; }
.work-filters__label {
    font-family: var(--serif); font-style: italic; font-size: 1.05rem;
    color: var(--muted); margin-right: 0.4rem;
}
.filter-btn {
    font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent; border: 1px solid var(--line); color: var(--fg);
    padding: 0.5em 1em; border-radius: 999px; cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--fg); }
.filter-btn.is-active { background: var(--navy); color: var(--cream-text); border-color: var(--navy); }

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: clamp(1.1rem, 2.4vw, 2rem);
}
.work-card {
    display: flex; flex-direction: column; text-decoration: none; color: inherit;
    transition: transform 0.4s var(--ease);
}
.work-card[hidden] { display: none; }
.work-card__media {
    position: relative; aspect-ratio: 4 / 5; overflow: hidden;
    border-radius: var(--radius); background: var(--panel);
}
.work-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.work-card:hover { transform: translateY(-6px); }
.work-card:hover .work-card__img { transform: scale(1.05); }
.work-card__placeholder { position: absolute; inset: 0; border-radius: var(--radius); }
.work-card__meta { padding: 0.9rem 0.2rem 0; }
.work-card__title { font-size: var(--fs-h3); margin: 0 0 0.15em; }
.work-card__sub {
    font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--muted); margin: 0;
}
.work-empty { font-family: var(--serif); font-style: italic; font-size: var(--fs-lead); color: var(--muted); }

/* accent edge-wash on placeholder cards */
.accent-gold  .work-card__placeholder { background: linear-gradient(150deg, color-mix(in srgb, var(--gold) 30%, var(--panel)), var(--panel)); }
.accent-coral .work-card__placeholder { background: linear-gradient(150deg, color-mix(in srgb, var(--coral) 30%, var(--panel)), var(--panel)); }
.accent-sage  .work-card__placeholder { background: linear-gradient(150deg, color-mix(in srgb, var(--sage) 30%, var(--panel)), var(--panel)); }
.accent-blue  .work-card__placeholder { background: linear-gradient(150deg, color-mix(in srgb, var(--blue) 30%, var(--panel)), var(--panel)); }

/* -------------------------------------------------------------------------
   [MEDIA] placeholders
   ------------------------------------------------------------------------- */
.media-placeholder {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.6rem; text-align: center;
    min-height: 220px; padding: 2rem;
    background: var(--navy); color: var(--cream-text);
    border-radius: var(--radius);
    background-image: linear-gradient(150deg, rgba(74,123,166,0.35), transparent 60%);
}
.media-placeholder__tag {
    font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.28em; text-transform: uppercase;
    padding: 0.4em 0.9em; border: 1px solid rgba(244,237,216,0.4); border-radius: 999px;
    opacity: 0.85;
}
.media-placeholder__note {
    font-family: var(--serif); font-style: italic; font-size: 1.15rem; max-width: 28ch;
    color: var(--cream-text); opacity: 0.9;
}

/* -------------------------------------------------------------------------
   Responsive embeds
   ------------------------------------------------------------------------- */
.veri-embed { margin-block: clamp(1.4rem, 3vw, 2.4rem); }
.veri-embed iframe, .veri-embed video {
    width: 100%; aspect-ratio: 16 / 9; height: auto; border-radius: var(--radius); border: 0;
}
.veri-embed.is-portrait { max-width: 420px; margin-inline: auto; }
.veri-embed.is-portrait iframe { aspect-ratio: 9 / 16; }
/* Instagram's own blockquote embed sizes itself; just cap + center. */
.veri-embed .instagram-media { margin-inline: auto !important; }

/* WordPress default embed wrappers */
.wp-block-embed__wrapper { position: relative; }

/* -------------------------------------------------------------------------
   Content (the_content) — editorial prose
   ------------------------------------------------------------------------- */
.entry-content { font-size: var(--fs-body); }
.entry-content > * { max-width: var(--readw); margin-inline: auto; }
.entry-content > .alignwide,
.entry-content > .alignfull,
.entry-content > figure,
.entry-content > .wp-block-image,
.entry-content > .wp-block-embed,
.entry-content > .veri-embed,
.entry-content > .media-placeholder,
.entry-content > .wp-block-gallery,
.entry-content > .work-grid,
.entry-content > .work-filters { max-width: min(100%, 1100px); }
.entry-content > .alignfull { max-width: none; }

.entry-content h2 { font-size: var(--fs-h2); margin-top: 1.8em; }
.entry-content h3 { font-size: var(--fs-h3); margin-top: 1.4em; }
.entry-content a { color: var(--coral); }
.entry-content blockquote {
    border-left: 3px solid var(--gold); margin-inline: auto; padding-left: 1.2rem;
    font-family: var(--serif); font-style: italic; font-size: var(--fs-lead); color: var(--muted);
}
.entry-content img { border-radius: var(--radius); }
.entry-content figure { margin: 1.6rem auto; }
.entry-content figcaption {
    font-size: var(--fs-small); color: var(--muted); text-align: center; margin-top: 0.5rem;
    font-style: italic; font-family: var(--serif);
}
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: 0.4em; }

/* Page header block */
.page-hero {
    padding-block: clamp(2.6rem, 7vw, 5.5rem) clamp(1.6rem, 4vw, 3rem);
    text-align: center;
}
.page-hero__eyebrow { display: block; }
.page-hero__title { font-size: var(--fs-h1); font-weight: 300; }
.page-hero__title em { font-style: italic; }
.page-hero__intro { font-size: var(--fs-lead); color: var(--muted); max-width: 56ch; margin-inline: auto; }

/* -------------------------------------------------------------------------
   Single project
   ------------------------------------------------------------------------- */
.project-hero { padding-block: clamp(2.4rem, 6vw, 5rem) clamp(1.4rem, 3vw, 2.4rem); text-align: center; }
.project-hero__title { font-size: var(--fs-h1); font-weight: 300; }
.project-hero__title em { font-style: italic; }
.project-meta {
    font-family: var(--sans); font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--muted);
}
.project-meta a { text-decoration: none; }
.project-cover { margin-block: clamp(1.6rem, 4vw, 3rem); }
.project-cover img, .project-cover .media-placeholder { border-radius: var(--radius); width: 100%; }

.project-nav {
    display: flex; justify-content: space-between; gap: 1rem;
    margin-top: clamp(2.4rem, 6vw, 4rem); padding-top: 1.6rem; border-top: 1px solid var(--line);
}
.project-nav a { text-decoration: none; max-width: 45%; }
.project-nav__dir { display: block; font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 0.95rem; }
.project-nav__title { font-family: var(--serif); font-size: 1.2rem; }
.project-nav__next { text-align: right; margin-left: auto; }

/* -------------------------------------------------------------------------
   Music grid (square covers)
   ------------------------------------------------------------------------- */
.music-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
    gap: clamp(1rem, 2vw, 1.6rem);
}
.music-card { display: flex; flex-direction: column; }
.music-card__cover {
    position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden;
    display: flex; align-items: center; justify-content: center; text-align: center; padding: 1.2rem;
    color: var(--cream-text);
}
.music-card__cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.music-card__covertitle {
    font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.1; position: relative; z-index: 1;
}
.music-card__play {
    position: absolute; z-index: 2; bottom: 0.9rem; right: 0.9rem;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid rgba(244,237,216,0.7); background: rgba(0,0,0,0.18);
    color: var(--cream-text); display: grid; place-items: center; cursor: not-allowed;
    backdrop-filter: blur(3px);
}
.music-card__play[disabled] { opacity: 0.75; }
.music-card__play::before { content: "▶"; font-size: 0.85rem; margin-left: 2px; }
.music-card__meta { padding: 0.7rem 0.1rem 0; }
.music-card__title { font-size: 1.05rem; font-family: var(--serif); margin: 0; }
.music-card__note { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0.2rem 0 0; }

.cover-gold  { background: linear-gradient(150deg, var(--gold),  #8a6f1a); }
.cover-coral { background: linear-gradient(150deg, var(--coral), #7c3a2c); }
.cover-sage  { background: linear-gradient(150deg, var(--sage),  #4c6338); }
.cover-blue  { background: linear-gradient(150deg, var(--blue),  #2d4f6d); }
.cover-navy  { background: linear-gradient(150deg, var(--slate), var(--navy)); }

/* -------------------------------------------------------------------------
   Feature rows (atelier long-scroll)
   ------------------------------------------------------------------------- */
.feature {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}
.feature--flip .feature__media { order: 2; }
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } .feature--flip .feature__media { order: 0; } }
.feature__title { font-size: var(--fs-h2); font-weight: 300; }
.feature__title em { font-style: italic; }
.feature__media img, .feature__media .media-placeholder { border-radius: var(--radius); }

/* Select-works list (atelier) */
.works-list { display: grid; gap: clamp(2rem, 5vw, 4rem); }
.work-entry { display: grid; gap: 1rem; }
.work-entry__num { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.1rem; }
.work-entry__title { font-size: var(--fs-h2); font-weight: 300; }
.work-entry__title em, .work-entry__year { font-style: italic; }
.work-entry__year { color: var(--muted); font-family: var(--serif); font-size: 0.6em; }
.band--navy .work-entry__year { color: var(--gold); }

/* Cross-link band */
.crosslink {
    text-align: center;
}
.crosslink__title { font-size: var(--fs-h2); font-weight: 300; }
.crosslink__title em { font-style: italic; color: var(--gold); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
    background: var(--navy); color: var(--cream-text);
    padding-top: clamp(3rem, 7vw, 6rem);
    background-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.15)),
                      radial-gradient(50% 60% at 85% 0%, rgba(74,123,166,0.3), transparent 70%);
}
.site-footer__inner {
    max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
    display: grid; grid-template-columns: 1.2fr 1fr auto; gap: clamp(1.6rem, 4vw, 3rem);
    align-items: start;
}
@media (max-width: 860px) { .site-footer__inner { grid-template-columns: 1fr; } }

.site-footer__brand { display: flex; align-items: center; gap: 1rem; }
.site-footer__logo { height: clamp(70px, 12vw, 120px); width: auto; filter: brightness(0) invert(1); }
.site-footer__word { font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 3vw, 2.6rem); }

.site-footer__mail {
    font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--gold);
    text-decoration: none; display: inline-block; margin-bottom: 1.2rem;
}
.site-footer__mail:hover { text-decoration: underline; }
.site-footer__actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-menu a { text-decoration: none; opacity: 0.85; font-size: 0.95rem; }
.footer-menu a:hover { opacity: 1; text-decoration: underline; }

.site-footer__base {
    max-width: var(--maxw); margin: clamp(2.4rem, 5vw, 4rem) auto 0; padding: 1.4rem var(--gutter);
    border-top: 1px solid rgba(244,237,216,0.15);
    display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
    font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.75;
}
.site-footer__base p { margin: 0; }

/* -------------------------------------------------------------------------
   404 / search / archive-default
   ------------------------------------------------------------------------- */
.notfound { text-align: center; padding-block: clamp(4rem, 12vw, 9rem); }
.notfound__code { font-family: var(--serif); font-style: italic; font-size: clamp(4rem, 18vw, 12rem); font-weight: 300; line-height: 0.9; color: var(--coral); }
.notfound__msg { font-size: var(--fs-lead); color: var(--muted); }

.post-list { display: grid; gap: clamp(1.6rem, 4vw, 3rem); }
.post-card { padding-bottom: 1.6rem; border-bottom: 1px solid var(--line); }
.post-card__title { font-size: var(--fs-h3); }
.post-card__title a { text-decoration: none; }
.post-card__meta { font-size: var(--fs-small); text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* Pagination */
.veri-pagination { margin-top: clamp(2rem, 5vw, 3.5rem); display: flex; justify-content: center; }
.veri-pagination .page-numbers {
    display: inline-flex; gap: 0.4rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap;
}
.veri-pagination a, .veri-pagination span {
    padding: 0.5em 0.9em; border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none;
}
.veri-pagination .current { background: var(--navy); color: var(--cream-text); border-color: var(--navy); }

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
    [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
    [data-reveal].is-visible { opacity: 1; transform: none; }
}

/* Utility spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.divider { width: 100%; height: 1px; background: var(--line); border: 0; margin-block: var(--band-y); }

/* ---- Alternating bio rows (Who We Are / About Us) ---- */
.stack-lg > * + * { margin-top: clamp(3rem, 7vw, 6rem); }
.bio-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}
.bio-row--flip .bio-row__text  { order: 2; }
.bio-row--flip .bio-row__media { order: 1; }
.bio-row__media { margin: 0; }
.bio-row__media img,
.bio-row__media .media-placeholder--portrait {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .bio-row, .bio-row--flip { grid-template-columns: 1fr; }
  .bio-row--flip .bio-row__text  { order: 1; }
  .bio-row--flip .bio-row__media { order: 2; }
  .bio-row__media { max-width: 480px; }
}
