:root {
    --ink: #292a27;
    --ink-soft: #4b4c47;
    --paper: #f5f2ec;
    --surface: #fbfaf7;
    --surface-soft: #ebe7df;
    --muted: #77746e;
    --line: #d7d2c9;
    --line-dark: #aaa49a;
    --accent: #747f72;
    --accent-dark: #525d53;
    --deep: #323832;
    --danger: #8f4f47;
    --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
svg { display: block; }
main, section, article, header, footer, nav, div { min-width: 0; }
.shell { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.shell-narrow { width: min(740px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -70px; z-index: 1000; padding: 10px 16px; background: var(--deep); color: #fff; }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245, 242, 236, .96); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: border-color .2s ease, background .2s ease; }
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(245, 242, 236, .99); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { position: relative; z-index: 103; font-family: var(--display); font-size: clamp(1.42rem, 2vw, 1.72rem); font-weight: 500; letter-spacing: -.045em; white-space: nowrap; }
.brand span { margin-left: 2px; color: var(--accent); font-family: var(--sans); font-size: .52em; font-weight: 650; letter-spacing: .02em; vertical-align: .28em; }
.main-nav { display: flex; align-items: center; gap: clamp(12px, 1.45vw, 23px); font-size: .8rem; font-weight: 650; letter-spacing: .02em; }
.main-nav a { position: relative; padding: 26px 0 23px; color: var(--ink-soft); white-space: nowrap; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: 18px; width: 100%; height: 1px; background: var(--accent-dark); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; position: relative; z-index: 103; width: 42px; height: 42px; padding: 0; border: 1px solid var(--line-dark); border-radius: 50%; background: var(--paper); align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 17px; height: 1.5px; background: var(--ink); transition: transform .23s ease, opacity .18s ease; }
.menu-toggle[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.kicker, .eyebrow { margin: 0 0 16px; color: var(--accent-dark); font-size: .66rem; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .page-hero h1, .listing-hero h1, .article-hero h1, .error-page h1 { margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: -.05em; line-height: 1; text-wrap: balance; overflow-wrap: anywhere; }
.hero { min-height: 590px; padding: 72px 0 82px; display: grid; grid-template-columns: minmax(0, 1.38fr) minmax(270px, .62fr); gap: clamp(48px, 7vw, 92px); align-items: center; }
.hero h1 { max-width: 720px; font-size: clamp(3.75rem, 6.2vw, 6rem); }
.hero-intro { max-width: 650px; margin: 26px 0 0; color: var(--ink-soft); font-size: clamp(1.08rem, 1.45vw, 1.3rem); line-height: 1.55; }
.hero-actions { margin-top: 32px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.button { display: inline-flex; min-height: 46px; padding: 0 20px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 2px; font-size: .8rem; font-weight: 720; letter-spacing: .02em; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.button-dark { border-color: var(--deep); background: var(--deep); color: #fff; }
.button-dark:hover { border-color: var(--accent-dark); background: var(--accent-dark); }
.button-outline { border-color: var(--line-dark); background: transparent; }
.button-outline:hover { border-color: var(--ink); background: var(--surface); }
.text-link { display: inline-flex; align-items: center; gap: 9px; padding-bottom: 3px; border-bottom: 1px solid var(--line-dark); font-size: .8rem; font-weight: 720; }
.inline-arrow, .topic-arrow, .back-arrow { position: relative; display: inline-block; width: 17px; height: 12px; flex: 0 0 auto; }
.inline-arrow::before, .topic-arrow::before { content: ''; position: absolute; left: 0; top: 5px; width: 15px; height: 1px; background: currentColor; }
.inline-arrow::after, .topic-arrow::after { content: ''; position: absolute; right: 0; top: 2px; width: 6px; height: 6px; border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg); }
.inline-arrow.diagonal { transform: rotate(-45deg); }
.back-arrow::before { content: ''; position: absolute; right: 0; top: 5px; width: 15px; height: 1px; background: currentColor; }
.back-arrow::after { content: ''; position: absolute; left: 0; top: 2px; width: 6px; height: 6px; border-left: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg); }

.hero-panel { position: relative; min-height: 360px; padding: 22px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line-dark); background: var(--surface-soft); }
.hero-panel::before { content: ''; position: absolute; z-index: 2; left: 30%; top: 0; bottom: 0; width: 1px; background: var(--line); pointer-events: none; }
.hero-panel::after { content: ''; position: absolute; z-index: 2; left: 0; right: 0; bottom: 72px; height: 1px; background: var(--line); pointer-events: none; }
.hero-panel-meta { position: relative; z-index: 3; display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .58rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.hero-panel-visual { position: absolute; z-index: 1; left: calc(30% + 1px); right: 0; top: 54px; bottom: 73px; display: grid; place-items: center; overflow: hidden; }
.hero-panel-visual img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center; filter: saturate(.86) contrast(.96); }
.hero-monogram { margin: 0; color: var(--accent); font-family: var(--display); font-size: clamp(8.5rem, 14vw, 12.5rem); font-weight: 400; line-height: .75; letter-spacing: -.09em; opacity: .76; }
.hero-panel-bottom { position: relative; z-index: 3; min-height: 48px; margin-top: auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 16px; align-content: end; color: var(--ink-soft); font-family: var(--display); font-size: .82rem; }

.topic-strip { border-block: 1px solid var(--line); background: rgba(251, 250, 247, .55); }
.topic-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.topic-grid a { min-height: 76px; padding: 15px 17px; display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; border-right: 1px solid var(--line); transition: background .2s ease; }
.topic-grid a:first-child { border-left: 1px solid var(--line); }
.topic-grid a:hover { background: var(--surface); }
.topic-grid small { color: var(--muted); font-size: .62rem; letter-spacing: .1em; }
.topic-grid strong { font-family: var(--display); font-size: clamp(.96rem, 1.15vw, 1.1rem); font-weight: 400; overflow-wrap: anywhere; }
.topic-grid .topic-arrow { margin-left: auto; color: var(--accent-dark); transform: scale(.82); }

.section { padding-top: 88px; padding-bottom: 94px; }
.section-heading { margin-bottom: 34px; display: flex; align-items: end; justify-content: space-between; gap: 22px; }
.section-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 3.7vw, 3.9rem); font-weight: 400; letter-spacing: -.045em; line-height: 1; overflow-wrap: anywhere; }
.section-heading .kicker { margin-bottom: 10px; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.story-card { padding-top: 12px; border-top: 1px solid var(--line-dark); }
.card-image { display: block; aspect-ratio: 1.55; overflow: hidden; background: var(--surface-soft); }
.card-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.74) contrast(.97); transition: transform .35s ease, filter .25s ease; }
.story-card:hover .card-image img { transform: scale(1.012); filter: saturate(.92); }
.card-body { padding: 17px 0 0; }
time { color: var(--muted); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.card-body h3 { margin: 9px 0 9px; font-family: var(--display); font-size: clamp(1.38rem, 1.8vw, 1.78rem); font-weight: 400; letter-spacing: -.03em; line-height: 1.14; overflow-wrap: anywhere; }
.card-body p { margin: 0; color: var(--ink-soft); font-size: .91rem; }

.section-dark { background: var(--deep); color: #f3f0e9; }
.section-heading.light .kicker { color: #abb3a8; }
.section-heading.light .text-link { color: #f3f0e9; border-bottom-color: rgba(243, 240, 233, .38); }
.project-grid { border-top: 1px solid rgba(243, 240, 233, .22); }
.project-card { padding: 25px 2px; display: grid; grid-template-columns: 42px minmax(0, 1fr) 28px; gap: 18px; align-items: center; border-bottom: 1px solid rgba(243, 240, 233, .22); }
.project-card h3 { margin: 0 0 5px; font-family: var(--display); font-size: clamp(1.65rem, 2.6vw, 2.7rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; overflow-wrap: anywhere; }
.project-card p { margin: 0; color: rgba(243, 240, 233, .64); font-size: .92rem; }
.project-number { color: #adb5aa; font-size: .64rem; font-weight: 750; letter-spacing: .11em; }
.project-arrow { width: 24px; justify-self: end; color: #d5cabd; }
.project-arrow svg { width: 100%; height: auto; fill: none; stroke: currentColor; stroke-width: 1.3; stroke-linecap: round; stroke-linejoin: round; }

.album-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.album-card { position: relative; display: block; padding-top: 12px; border-top: 1px solid var(--line-dark); }
.album-card img { width: 100%; aspect-ratio: 1.46; object-fit: cover; filter: saturate(.76); transition: filter .25s ease, transform .35s ease; }
.album-card:hover img { filter: saturate(.95); transform: scale(1.008); }
.album-card::after { content: ''; position: absolute; right: 2px; bottom: 5px; width: 15px; height: 15px; border-top: 1px solid var(--accent-dark); border-right: 1px solid var(--accent-dark); }
.album-card div { padding: 15px 26px 0 0; display: grid; gap: 2px; }
.album-card strong { font-family: var(--display); font-size: 1.35rem; font-weight: 400; overflow-wrap: anywhere; }
.album-card span { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }

.page-hero, .listing-hero { padding-top: 84px; padding-bottom: 56px; }
.page-hero h1, .listing-hero h1 { max-width: 900px; font-size: clamp(3.5rem, 6.6vw, 6.2rem); }
.page-hero > p:last-child, .listing-hero > p:last-child, .article-hero > p:last-child { max-width: 720px; margin: 23px 0 0; color: var(--ink-soft); font-size: clamp(1.06rem, 1.55vw, 1.28rem); }
.wide-image { margin-top: 6px; margin-bottom: 58px; padding-top: 12px; overflow: hidden; border-top: 1px solid var(--line-dark); }
.wide-image img { width: 100%; max-height: 620px; object-fit: cover; filter: saturate(.82); }
.prose { padding-top: 18px; padding-bottom: 96px; font-size: clamp(1.02rem, 1.2vw, 1.13rem); overflow-wrap: anywhere; }
.prose p { margin: 0 0 1.4em; }
.prose h2, .prose h3, .prose h4 { margin: 2em 0 .68em; font-family: var(--display); font-weight: 400; letter-spacing: -.035em; line-height: 1.1; overflow-wrap: anywhere; }
.prose h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
.prose h3 { font-size: clamp(1.55rem, 2.25vw, 2.1rem); }
.prose blockquote { margin: 2.2em 0; padding-left: 21px; border-left: 2px solid var(--accent); color: var(--ink-soft); font-family: var(--display); font-size: 1.32em; line-height: 1.28; letter-spacing: -.02em; }
.prose a { color: var(--accent-dark); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.prose figure { margin: 2.3em 0; }
.prose figure.align-left, .prose figure.align-right { width: min(43%, 330px); margin-top: .4em; margin-bottom: 1.4em; }
.prose figure.align-left { float: left; margin-right: 25px; }
.prose figure.align-right { float: right; margin-left: 25px; }
.prose figure.align-wide { width: 100%; clear: both; }
.prose::after { content: ''; display: block; clear: both; }
.prose figure img, .prose > img { width: 100%; filter: saturate(.86); }
.prose img.content-lightbox-image { cursor: zoom-in; transition: opacity .2s ease, transform .2s ease; }
.prose img.content-lightbox-image:hover { opacity: .92; }
.prose img.content-lightbox-image:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.lightbox-nav[hidden], .lightbox p[hidden] { display: none; }
.prose figcaption { margin-top: 7px; color: var(--muted); font-size: .7rem; }
.prose ul, .prose ol { padding-left: 1.2em; }
.article-hero { padding-top: 76px; padding-bottom: 52px; }
.article-hero h1 { margin-top: 16px; font-size: clamp(3.1rem, 5.7vw, 5.45rem); }
.article-hero .button { margin-top: 27px; }
.back-link { display: inline-flex; margin-bottom: 23px; align-items: center; gap: 9px; color: var(--accent-dark); font-size: .76rem; font-weight: 720; }
.list-stack { border-top: 1px solid var(--line-dark); }
.list-story { padding: 32px 0; display: grid; grid-template-columns: minmax(220px, 350px) minmax(0, 1fr); gap: clamp(28px, 4vw, 52px); align-items: center; border-bottom: 1px solid var(--line); }
.list-thumb { aspect-ratio: 1.58; overflow: hidden; background: var(--surface-soft); }
.list-thumb img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78); }
.list-story h2 { margin: 9px 0 12px; font-family: var(--display); font-size: clamp(1.9rem, 3vw, 2.9rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.07; overflow-wrap: anywhere; }
.list-story p { max-width: 620px; color: var(--ink-soft); }
.project-list-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }
.project-tile { padding-top: 12px; overflow: hidden; border-top: 1px solid var(--line-dark); }
.project-tile img { width: 100%; aspect-ratio: 1.58; object-fit: cover; filter: saturate(.78); }
.project-tile > div { padding: 19px 0 0; }
.project-tile h2 { margin: 0; font-family: var(--display); font-size: clamp(1.85rem, 2.5vw, 2.5rem); font-weight: 400; letter-spacing: -.04em; overflow-wrap: anywhere; }
.project-tile p { color: var(--ink-soft); }
.project-tile .button { margin-top: 5px; }
.album-grid-large { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid { padding-bottom: 96px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.gallery-grid figure { margin: 0; }
.gallery-button { width: 100%; padding: 0; overflow: hidden; border: 0; background: none; cursor: zoom-in; }
.gallery-button img { width: 100%; aspect-ratio: 1.18; object-fit: cover; filter: saturate(.82); transition: transform .3s ease, filter .22s ease; }
.gallery-button:hover img { transform: scale(1.012); filter: saturate(1); }
.gallery-grid figcaption { padding: 8px 1px 0; color: var(--muted); font-size: .72rem; }
.empty-state { margin-bottom: 96px; padding: 24px; border: 1px solid var(--line); background: var(--surface); color: var(--muted); text-align: center; }
.error-page { min-height: 68vh; padding-top: 112px; padding-bottom: 112px; }
.error-page h1 { font-size: clamp(3.2rem, 6.2vw, 5.7rem); }
.error-page p:not(.kicker) { font-size: 1.08rem; }

.site-footer { padding: 36px 0; border-top: 1px solid var(--line); background: var(--surface); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) auto auto; align-items: center; gap: 32px; }
.brand-footer span { color: var(--accent); }
.footer-brand { display: grid; gap: 4px; justify-items: start; }
.footer-brand small { max-width: 390px; color: var(--muted); line-height: 1.4; }
.footer-center { display: flex; align-items: center; gap: 24px; }
.footer-grid p { margin: 0; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.footer-center nav { display: flex; flex-wrap: wrap; gap: 13px; color: var(--ink-soft); font-size: .74rem; }
.footer-center nav a:hover { color: var(--ink); }
.footer-grid > a:last-child { justify-self: end; color: var(--muted); font-size: .72rem; }

.lightbox { position: fixed; inset: 0; z-index: 500; padding: 70px 24px 40px; display: grid; place-items: center; background: rgba(28, 30, 28, .96); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 78vh; object-fit: contain; }
.lightbox p { margin: 14px 0 0; color: #f2efe8; text-align: center; }
.lightbox-close { position: absolute; right: 24px; top: 15px; border: 0; background: none; color: #f2efe8; font-family: var(--display); font-size: 3rem; font-weight: 300; cursor: pointer; }
.lightbox-nav { position: absolute; top: 50%; width: 48px; height: 48px; border: 1px solid rgba(242, 239, 232, .36); border-radius: 50%; background: transparent; color: #f2efe8; font-family: var(--display); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 1040px) {
    .main-nav { gap: 11px; font-size: .74rem; }
    .hero { grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 44px; }
}

@media (max-width: 880px) {
    .shell, .shell-narrow { width: min(100% - 40px, 760px); }
    .site-header { background: rgba(245, 242, 236, .99); backdrop-filter: none; }
    .header-inner { min-height: 66px; }
    .menu-toggle { display: flex; }
    .main-nav { position: fixed; inset: 0; z-index: 101; padding: 92px 22px 32px; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; overflow-y: auto; background: var(--surface); color: var(--ink); visibility: hidden; opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .2s ease, transform .25s ease, visibility .25s; }
    .main-nav::before { content: 'Navigation'; display: block; padding-bottom: 14px; border-bottom: 1px solid var(--line-dark); color: var(--muted); font-size: .62rem; font-weight: 750; letter-spacing: .17em; text-transform: uppercase; }
    .main-nav.open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
    .main-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-family: var(--display); font-size: clamp(1.42rem, 5.2vw, 1.85rem); font-weight: 400; letter-spacing: -.025em; line-height: 1.1; white-space: normal; }
    .main-nav a::after { display: none; }
    .main-nav a.active { color: var(--accent-dark); }
    body.menu-open { overflow: hidden; }
    .hero { min-height: auto; padding: 54px 0 60px; grid-template-columns: 1fr; }
    .hero-panel { display: none; }
    .hero h1 { max-width: 680px; font-size: clamp(3.2rem, 10vw, 4.9rem); }
    .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .topic-grid a { min-height: 66px; padding: 12px 14px; border-left: 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .topic-grid a:first-child { border-left: 0; }
    .topic-grid a:nth-child(odd) { border-right: 1px solid var(--line); }
    .topic-grid a:nth-last-child(-n+2) { border-bottom: 0; }
    .topic-grid a:last-child:nth-child(odd) { grid-column: 1 / -1; border-right: 0; }
    .card-grid, .album-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .project-list-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr auto; gap: 20px; }
    .footer-center { grid-column: 1 / -1; grid-row: 2; justify-content: space-between; }
}

@media (max-width: 620px) {
    .shell, .shell-narrow { width: calc(100% - 32px); }
    .header-inner { min-height: 62px; }
    .brand { font-size: 1.42rem; }
    .menu-toggle { width: 40px; height: 40px; }
    .main-nav { padding: 82px 16px 24px; }
    .main-nav a { padding: 12px 0; font-size: clamp(1.35rem, 7vw, 1.7rem); }
    .hero { padding: 42px 0 50px; }
    .hero h1 { font-size: clamp(2.8rem, 12.2vw, 4rem); line-height: 1.02; }
    .hero-intro { margin-top: 20px; font-size: 1.03rem; }
    .hero-actions { margin-top: 25px; align-items: flex-start; flex-direction: column; gap: 16px; }
    .button { min-height: 44px; }
    .topic-grid a { min-height: 60px; padding: 10px 11px; grid-template-columns: auto minmax(0, 1fr); gap: 8px; }
    .topic-grid .topic-arrow { display: none; }
    .topic-grid strong { font-size: .98rem; }
    .section { padding-top: 62px; padding-bottom: 66px; }
    .section-heading { margin-bottom: 26px; align-items: flex-start; flex-direction: column; gap: 15px; }
    .section-heading h2 { font-size: clamp(2.25rem, 10vw, 3rem); }
    .card-grid, .album-grid, .gallery-grid { grid-template-columns: 1fr; gap: 30px; }
    .story-card, .album-card { padding-top: 10px; }
    .card-image, .album-card img { aspect-ratio: 16 / 9; }
    .card-body { padding-top: 14px; }
    .card-body h3 { font-size: 1.55rem; }
    .project-card { padding: 21px 0; grid-template-columns: 30px minmax(0, 1fr) 22px; gap: 11px; }
    .project-card h3 { font-size: clamp(1.55rem, 8.2vw, 2.05rem); }
    .project-card p { font-size: .86rem; line-height: 1.45; }
    .page-hero, .listing-hero { padding-top: 54px; padding-bottom: 39px; }
    .page-hero h1, .listing-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); line-height: 1.02; }
    .page-hero > p:last-child, .listing-hero > p:last-child, .article-hero > p:last-child { margin-top: 18px; font-size: 1.03rem; }
    .article-hero { padding-top: 50px; padding-bottom: 38px; }
    .article-hero h1 { font-size: clamp(2.55rem, 11vw, 3.75rem); line-height: 1.03; }
    .wide-image { width: calc(100% - 32px); margin-bottom: 38px; padding-top: 9px; }
    .prose { padding-top: 4px; padding-bottom: 70px; font-size: 1.02rem; }
    .prose h2 { font-size: 2rem; }
    .prose h3 { font-size: 1.55rem; }
    .prose blockquote { padding-left: 17px; font-size: 1.2em; }
    .prose figure.align-left, .prose figure.align-right { float: none; width: 100%; margin-left: 0; margin-right: 0; }
    .list-story { padding: 25px 0; grid-template-columns: 1fr; gap: 18px; }
    .list-story h2 { font-size: 1.95rem; }
    .project-tile h2 { font-size: 1.9rem; }
    .album-grid-large { grid-template-columns: 1fr; }
    .gallery-grid { padding-bottom: 70px; }
    .site-footer { padding: 29px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 21px; align-items: start; }
    .footer-brand { justify-items: start; }
    .footer-center { grid-column: auto; grid-row: auto; display: grid; gap: 10px; justify-content: start; }
    .footer-grid p { white-space: normal; text-align: left; }
    .footer-center nav { gap: 10px 14px; }
    .footer-grid > a:last-child { justify-self: start; }
    .lightbox { padding-inline: 10px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 1.7rem; }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

@media (max-width: 380px) {
    .shell, .shell-narrow { width: calc(100% - 24px); }
    .hero h1 { font-size: 2.6rem; }
    .topic-grid { grid-template-columns: 1fr; }
    .topic-grid a, .topic-grid a:nth-child(odd), .topic-grid a:nth-last-child(-n+2) { min-height: 54px; border-right: 0; border-bottom: 1px solid var(--line); }
    .topic-grid a:last-child { border-bottom: 0; }
    .wide-image { width: calc(100% - 24px); }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}


/* Schlichter Cookie-Hinweis */
.cookie-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 450;
    width: min(430px, calc(100% - 44px));
    padding: 15px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line-dark);
    background: rgba(245, 242, 236, .98);
    box-shadow: 0 12px 34px rgba(30, 31, 29, .12);
    color: var(--ink-soft);
}
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: .76rem; line-height: 1.5; }
.cookie-notice a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.cookie-notice button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--surface);
    font: inherit;
    font-size: .72rem;
    font-weight: 720;
    cursor: pointer;
}
.cookie-notice button:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

@media (max-width: 620px) {
    .cookie-notice {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 14px;
        align-items: stretch;
        flex-direction: column;
        gap: 11px;
    }
    .cookie-notice button { width: 100%; }
}

/* Vergrößerbare Bilder in redaktionellen Texten – Version 2 */
.prose img {
    cursor: zoom-in;
}
.prose img:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 5px;
}
.lightbox {
    z-index: 10000;
}
.lightbox.is-open {
    display: grid;
}
.lightbox-nav[hidden],
.lightbox p[hidden] {
    display: none;
}
