:root {
  --wine: #94163b;
  --wine-dark: #70102d;
  --ink: #171411;
  --paper: #f5f0e7;
  --paper-2: #ece3d6;
  --paper-3: #e6ddd1;
  --white: #fff;
  --gold: #b59254;
  --line: rgba(23, 20, 17, .15);
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --header-h: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.55; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }
.section { padding: 128px 0; }
.section-tight { padding: 0 0 120px; }
.eyebrow { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; }
.eyebrow.light, .light { color: var(--white); }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--display); font-weight: 400; line-height: .98; }
h1 { font-size: clamp(4rem, 8.5vw, 8.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(3.2rem, 6vw, 6.3rem); letter-spacing: -.045em; margin-bottom: 24px; }
h3 { font-size: clamp(2rem, 3vw, 3rem); }
.lead-serif { font-family: var(--display); font-size: clamp(1.6rem, 2.5vw, 2.5rem); line-height: 1.13; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border-radius: 999px; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--wine); }
.btn-wine { background: var(--wine); color: #fff; }
.btn-outline-light { color: var(--white); border: 1px solid rgba(255,255,255,.55); }
.btn-outline-light:hover { background: var(--white); color: var(--wine); }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; height: var(--header-h); display: flex; align-items: center; justify-content: space-between; padding: 0 34px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(0,0,0,.07); backdrop-filter: blur(14px); }
.brand { width: 252px; height: 58px; overflow: hidden; display: flex; align-items: center; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: .9rem; font-weight: 600; }
.main-nav > a:not(.nav-cta) { position: relative; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { background: var(--wine); color: #fff; padding: 11px 18px; border-radius: 999px; }
.menu-toggle { display: none; background: none; border: 0; padding: 12px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--ink); margin: 6px 0; transition: transform .25s ease; }

.hero { position: relative; min-height: 100svh; overflow: hidden; display: flex; align-items: flex-end; padding: calc(var(--header-h) + 70px) 0 82px; background: #191311; color: #fff; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 43%; filter: saturate(.72) contrast(1.03); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,8,10,.82) 0%, rgba(20,8,10,.55) 48%, rgba(20,8,10,.2) 75%), linear-gradient(0deg, rgba(0,0,0,.4), transparent 55%); }
.hero-content { position: relative; z-index: 1; }
.hero-mark { width: min(420px, 70vw); margin-bottom: 44px; }
.hero h1 { max-width: 920px; margin-bottom: 24px; }
.hero-lead { max-width: 710px; font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: rgba(255,255,255,.84); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; margin-top: 32px; }
.scroll-cue { position: absolute; z-index: 2; right: 42px; bottom: 34px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; display: grid; place-items: center; }
.scroll-cue span { width: 1px; height: 16px; background: #fff; position: relative; }
.scroll-cue span::after { content:""; position: absolute; left: -3px; bottom: 0; width: 7px; height: 7px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; transform: rotate(45deg); }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.intro-copy { max-width: 650px; }
.intro-copy > p:not(.lead-serif) { color: rgba(23,20,17,.72); font-size: 1.05rem; }
.intro-copy .text-link { margin-top: 14px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.pillar { padding: 34px 42px 0 0; min-height: 230px; }
.pillar + .pillar { border-left: 1px solid var(--line); padding-left: 42px; }
.pillar-num { font-size: .72rem; letter-spacing: .12em; color: var(--wine); font-weight: 700; }
.pillar h3 { margin: 28px 0 12px; }
.pillar p { color: rgba(23,20,17,.68); max-width: 340px; }

.feature-project { background: var(--wine); color: #fff; padding: 110px 0; overflow: hidden; }
.feature-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: 8vw; }
.feature-visual { width: 100%; max-width: 460px; justify-self: center; transform: rotate(-2.4deg); box-shadow: 0 32px 80px rgba(50,0,16,.35); }
.feature-visual img { width: 100%; }
.feature-copy { max-width: 650px; }
.feature-copy > p:not(.lead-serif) { color: rgba(255,255,255,.76); font-size: 1.04rem; }
.feature-copy .btn { margin-top: 18px; }

.pacini-project { background: #f0e8dc; border-bottom: 1px solid var(--line); }
.project-detail-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; align-items: start; }
.project-sticky { position: sticky; top: calc(var(--header-h) + 42px); }
.project-sticky h2 { font-size: clamp(3rem,5.4vw,5.8rem); }
.project-body > p { max-width: 760px; font-size: 1.08rem; color: rgba(23,20,17,.72); }
.project-body > p:first-child { color: var(--ink); }
.project-steps { margin-top: 54px; border-top: 1px solid var(--line); }
.project-step { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "meta link" "title link" "desc link"; padding: 30px 0; border-bottom: 1px solid var(--line); transition: padding-left .25s ease; }
.project-step:hover { padding-left: 12px; }
.project-step span { grid-area: meta; text-transform: uppercase; letter-spacing: .09em; font-size: .68rem; color: var(--wine); font-weight: 700; }
.project-step strong { grid-area: title; font-family: var(--display); font-weight: 400; font-size: clamp(2rem,3vw,3rem); line-height: 1.05; margin-top: 8px; }
.project-step em { grid-area: desc; color: rgba(23,20,17,.58); font-size: .88rem; font-style: normal; margin-top: 7px; }
.project-step b { grid-area: link; align-self: center; font-size: .82rem; color: var(--wine); }

.section-heading { display: grid; grid-template-columns: 1fr minmax(260px, 420px); gap: 60px; align-items: end; margin-bottom: 66px; }
.section-heading > p { color: rgba(23,20,17,.65); }
.event-list { border-top: 1px solid var(--line); }
.event-row { display: grid; grid-template-columns: 180px 220px 1fr 70px; gap: 28px; align-items: center; min-height: 220px; border-bottom: 1px solid var(--line); padding: 24px 0; }
.event-image { width: 180px; height: 160px; padding: 0; border: 0; background: #ddd; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.event-image:hover img { transform: scale(1.04); }
.event-meta { display: flex; flex-direction: column; gap: 5px; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.event-meta span:last-child { color: rgba(23,20,17,.55); }
.event-kicker { margin-bottom: 8px; color: var(--wine); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.event-title h3 { margin: 0; }
.event-title a { transition: color .2s ease; }
.event-title a:hover { color: var(--wine); }
.round-link { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); background: transparent; font-size: 1.35rem; display: grid; place-items: center; transition: background .2s ease, color .2s ease; }
.round-link:hover { background: var(--wine); color: #fff; }

.quote-band { padding: 0 0 128px; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; background: var(--ink); color: #fff; }
.quote-image img { width: 100%; height: 100%; object-fit: cover; }
.quote-grid blockquote { margin: 0; padding: 70px; display: flex; flex-direction: column; justify-content: center; }
.quote-grid blockquote p { font-family: var(--display); font-size: clamp(2.3rem, 4vw, 4.4rem); line-height: 1.02; }
.quote-grid blockquote footer { color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; }

.board { background: var(--paper-3); }
.board-heading { margin-bottom: 54px; }
.board-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.person-card { background: #f7f2ea; border: 1px solid rgba(23,20,17,.08); min-width: 0; }
.person-photo { aspect-ratio: 4 / 5; width: 100%; overflow: hidden; background: #d8cec2; }
.person-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88) contrast(1.02); }
.person-copy { padding: 18px 16px 20px; min-height: 106px; }
.person-card h3 { font-family: var(--sans); font-weight: 600; line-height: 1.1; font-size: 1.02rem; margin: 0 0 6px; }
.person-card p { color: rgba(23,20,17,.6); font-size: .84rem; margin: 0; }

.gallery { background: var(--paper); }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: -16px 0 44px; }
.gallery-tab { border: 1px solid var(--line); background: transparent; border-radius: 999px; padding: 11px 16px; cursor: pointer; font-weight: 600; font-size: .82rem; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.gallery-tab span { opacity: .55; margin-left: 7px; }
.gallery-tab.active, .gallery-tab:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.gallery-album { display: none; }
.gallery-album.active { display: block; }
.album-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; padding: 0 0 28px; }
.album-heading h2 { margin-bottom: 0; font-size: clamp(2.8rem,5vw,5.1rem); }
.album-heading h3 { margin-bottom: 0; font-size: clamp(2.3rem,4vw,4rem); }
.photo-grid { columns: 4; column-gap: 12px; }
.gallery-item { width: 100%; padding: 0; margin: 0 0 12px; border: 0; background: #ddd; overflow: hidden; cursor: zoom-in; break-inside: avoid; }
.gallery-item img { width: 100%; height: auto; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.video-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 44px; }
.video-card { background: var(--ink); color: #fff; padding: 12px 12px 14px; }
.video-card video { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #000; }
.video-card p { margin: 12px 4px 0; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.65); }

.contact-section { background: var(--wine); color: #fff; padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.contact-grid h2 { margin-bottom: 0; }
.contact-copy > p { color: rgba(255,255,255,.73); }
.contact-email { display: inline-block; font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.6rem); border-bottom: 1px solid rgba(255,255,255,.55); word-break: break-word; }
.contact-actions { margin-top: 32px; }
.site-footer { background: #151111; color: #fff; padding: 64px 0 28px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.14); }
.footer-top > img { width: 300px; }
.footer-nav { display: grid; grid-template-columns: repeat(2,auto); gap: 14px 46px; font-size: .88rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; color: rgba(255,255,255,.5); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }

/* Internal pages */
.inner-page main { padding-top: var(--header-h); }
.inner-hero { position: relative; min-height: 68svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; padding: 90px 0 70px; background: var(--ink); }
.inner-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.65); }
.inner-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,6,8,.88), rgba(18,6,8,.42) 65%, rgba(18,6,8,.24)); }
.inner-hero-content { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 1000px; font-size: clamp(4rem,8vw,8rem); margin-bottom: 20px; }
.inner-hero-content > p:last-child { max-width: 720px; font-size: 1.18rem; color: rgba(255,255,255,.82); }
.story-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.story-aside { position: sticky; top: calc(var(--header-h) + 44px); }
.story-copy p:not(.lead-serif) { font-size: 1.07rem; color: rgba(23,20,17,.72); max-width: 730px; }
.story-moment { background: var(--wine); color: #fff; padding: 100px 0; }
.story-moment-grid { display: grid; grid-template-columns: .45fr 1.55fr; gap: 7vw; align-items: center; }
.story-moment h2 { margin-bottom: 20px; }
.story-moment-grid > div:last-child p:last-child { max-width: 760px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.story-date { display: flex; align-items: flex-end; gap: 14px; border-right: 1px solid rgba(255,255,255,.28); padding-right: 40px; }
.story-date span { font-family: var(--display); font-size: clamp(6rem,12vw,10rem); line-height: .72; }
.story-date strong { text-transform: uppercase; letter-spacing: .12em; font-size: .7rem; padding-bottom: 6px; }
.story-values { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.story-values article { padding: 32px 34px 0 0; }
.story-values article + article { border-left: 1px solid var(--line); padding-left: 34px; }
.story-values span { color: var(--wine); font-weight: 700; font-size: .7rem; letter-spacing: .1em; }
.story-values h3 { font-size: clamp(1.9rem,2.6vw,2.8rem); margin: 28px 0 12px; }
.story-values p { color: rgba(23,20,17,.66); }
.page-cta { background: var(--wine); color: #fff; padding: 100px 0; }
.page-cta h2 { max-width: 900px; }

.event-page-hero { background: #eee5d8; padding: 94px 0 100px; }
.event-page-grid { display: grid; grid-template-columns: minmax(300px,.72fr) 1.28fr; gap: 8vw; align-items: center; }
.event-poster { max-width: 520px; box-shadow: 0 24px 70px rgba(40,20,20,.16); }
.event-poster img { width: 100%; }
.event-page-copy h1 { font-size: clamp(4rem,7.5vw,8rem); margin: 16px 0 24px; }
.back-link { display: inline-block; margin-bottom: 42px; font-size: .82rem; font-weight: 600; color: rgba(23,20,17,.62); }
.event-page-lead { font-family: var(--display); font-size: clamp(1.5rem,2.3vw,2.3rem); line-height: 1.15; max-width: 720px; }
.event-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.event-facts span { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.event-story-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; }
.event-long-copy > p:not(.lead-serif) { color: rgba(23,20,17,.7); font-size: 1.05rem; }
.event-credits { list-style: none; margin: 36px 0 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px 28px; }
.event-credits li { font-size: .9rem; }
.event-long-copy .btn { margin-top: 28px; }
.program-section { background: var(--ink); color: #fff; padding: 110px 0; }
.program-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 9vw; }
.program-copy { color: rgba(255,255,255,.8); }
.program-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); }
.program-list li { display: grid; gap: 5px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.program-list strong { font-family: var(--display); font-size: 1.45rem; font-weight: 400; color: #fff; }
.program-list span { font-size: .9rem; }
.program-note { max-width: 760px; font-size: 1.08rem; }
.program-intro { font-family: var(--display); font-size: 1.8rem; color: #fff; }
.work-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.work-cloud span { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 9px 13px; color: #fff; }
.event-gallery .photo-grid { margin-top: 18px; }

.lightbox { border: 0; padding: 0; width: min(1400px, calc(100% - 32px)); max-height: calc(100svh - 32px); background: transparent; box-shadow: none; }
.lightbox::backdrop { background: rgba(20,12,14,.88); backdrop-filter: blur(5px); }
.lightbox img { max-width: 100%; max-height: calc(100svh - 50px); margin: auto; object-fit: contain; }
.dialog-close { position: fixed; z-index: 5; right: 24px; top: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); font-size: 1.8rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px) rotate(-2.4deg); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0) rotate(-2.4deg); }
.event-poster.reveal { transform: translateY(24px) rotate(-1.2deg); }
.event-poster.reveal.visible { transform: translateY(0) rotate(-1.2deg); }

@media (max-width: 1120px) {
  .board-grid { grid-template-columns: repeat(3,1fr); }
  .photo-grid { columns: 3; }
}

@media (max-width: 1020px) {
  :root { --header-h: 74px; }
  .shell { width: min(100% - 36px, 900px); }
  .site-header { padding: 0 18px; }
  .brand { width: 210px; }
  .menu-toggle { display: block; z-index: 52; }
  .main-nav { position: fixed; inset: var(--header-h) 0 auto 0; height: calc(100svh - var(--header-h)); background: #fff; flex-direction: column; align-items: flex-start; padding: 36px 24px; gap: 22px; font-size: 1.4rem; transform: translateX(100%); transition: transform .28s ease; }
  .main-nav.open { transform: translateX(0); }
  .nav-cta { margin-top: 8px; font-size: 1rem; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 88svh; padding-bottom: 54px; }
  .hero-mark { width: 340px; margin-bottom: 34px; }
  .scroll-cue { display: none; }
  .split, .feature-grid, .quote-grid, .contact-grid, .project-detail-grid, .story-layout, .event-page-grid, .event-story-grid, .program-grid { grid-template-columns: 1fr; }
  .split, .feature-grid, .project-detail-grid, .story-layout, .event-story-grid, .program-grid { gap: 42px; }
  .feature-grid { gap: 70px; }
  .feature-visual { max-width: 380px; }
  .project-sticky, .story-aside { position: static; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .event-row { grid-template-columns: 130px 170px 1fr 56px; gap: 18px; min-height: 180px; }
  .event-image { width: 130px; height: 130px; }
  .quote-image { height: 380px; }
  .board-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { gap: 44px; }
  .story-moment-grid { grid-template-columns: 1fr; gap: 46px; }
  .story-date { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); padding: 0 0 32px; max-width: 480px; }
  .story-values { grid-template-columns: 1fr; }
  .story-values article { padding: 28px 0; }
  .story-values article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .event-page-hero { padding-top: 64px; }
  .event-poster { width: min(68vw,460px); }
  .back-link { margin-bottom: 20px; }
}

@media (max-width: 720px) {
  .shell { width: calc(100% - 30px); }
  .section { padding: 84px 0; }
  .section-tight { padding-bottom: 80px; }
  h1 { font-size: clamp(3.4rem, 16vw, 5.6rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero { min-height: 92svh; padding-top: calc(var(--header-h) + 48px); }
  .hero-bg { object-position: 52% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(18,6,8,.86), rgba(18,6,8,.35) 75%); }
  .hero-mark { width: 280px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { padding: 28px 0; min-height: auto; }
  .pillar + .pillar { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .feature-project { padding: 82px 0; }
  .feature-grid { gap: 48px; }
  .feature-visual { width: 75%; }
  .project-step { grid-template-columns: 1fr; grid-template-areas: "meta" "title" "desc" "link"; gap: 6px; }
  .project-step b { margin-top: 8px; }
  .event-row { grid-template-columns: 96px 1fr 48px; grid-template-areas: "image meta button" "image title button"; align-items: center; padding: 18px 0; min-height: 140px; }
  .event-image { grid-area: image; width: 96px; height: 120px; }
  .event-meta { grid-area: meta; align-self: end; }
  .event-title { grid-area: title; align-self: start; }
  .event-title h3 { font-size: 1.8rem; }
  .round-link { grid-area: button; width: 44px; height: 44px; }
  .quote-band { padding-bottom: 84px; }
  .quote-image { height: 290px; }
  .quote-grid blockquote { padding: 42px 28px; }
  .board-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; gap: 12px; }
  .person-card { flex: 0 0 72vw; scroll-snap-align: start; }
  .gallery-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 7px; }
  .gallery-tab { flex: 0 0 auto; }
  .album-heading { align-items: flex-start; flex-direction: column; gap: 16px; }
  .photo-grid { columns: 2; column-gap: 8px; }
  .gallery-item { margin-bottom: 8px; }
  .video-row { grid-template-columns: 1fr; }
  .video-card video { aspect-ratio: 4/3; }
  .contact-section { padding: 82px 0; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-top > img { width: 260px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .inner-hero { min-height: 70svh; padding: 64px 0 48px; }
  .story-moment { padding: 76px 0; }
  .story-date span { font-size: 7rem; }
  .page-cta { padding: 76px 0; }
  .event-page-hero { padding: 44px 0 72px; }
  .event-poster { width: min(82vw,420px); }
  .event-page-copy h1 { font-size: clamp(3.6rem,14vw,5.6rem); }
  .event-credits { grid-template-columns: 1fr; }
  .program-section { padding: 80px 0; }
  .lightbox { width: calc(100% - 14px); max-height: calc(100svh - 14px); }
  .dialog-close { right: 10px; top: 10px; }
}

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

/* 2.2.0 — accessibility, mobile usability and layout stability.
   Desktop visual design remains unchanged. */
body { overflow-x: hidden; overflow-x: clip; }
[id] { scroll-margin-top: calc(var(--header-h) + 18px); }
a, button { touch-action: manipulation; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--wine); outline-offset: 4px; }
.hero a:focus-visible, .feature-project a:focus-visible, .contact-section a:focus-visible, .page-cta a:focus-visible, .site-footer a:focus-visible { outline-color: #fff; }
.gallery-item:focus-visible { outline-offset: 2px; }
.menu-toggle { min-width: 48px; min-height: 48px; align-items: center; justify-content: center; }

@media (max-width: 1020px) {
  .menu-toggle { display: flex; flex-direction: column; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav {
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(36px, env(safe-area-inset-bottom));
  }
  .main-nav a { min-height: 44px; display: flex; align-items: center; }
  .nav-cta { min-height: 48px; }
}

@media (max-width: 720px) {
  .board-grid, .gallery-tabs { -webkit-overflow-scrolling: touch; overscroll-behavior-inline: contain; scrollbar-width: none; }
  .board-grid::-webkit-scrollbar, .gallery-tabs::-webkit-scrollbar { display: none; }
  .board-grid { scroll-padding-inline: 15px; }
  .gallery-tabs { scroll-padding-inline: 15px; }
  .gallery-tab { min-height: 44px; }
  .round-link { min-width: 44px; min-height: 44px; }
  .btn { min-height: 48px; }
  .text-link { min-height: 44px; }
  .contact-email { overflow-wrap: anywhere; }
  .event-meta { line-height: 1.35; }
}

@media (max-width: 480px) {
  .shell { width: calc(100% - 24px); }
  h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
  h2 { font-size: clamp(2.65rem, 12.5vw, 4rem); }
  .brand { width: 190px; }
  .site-header { padding-inline: 12px; }
  .hero { padding-bottom: 42px; }
  .hero-mark { width: min(260px, 78vw); margin-bottom: 28px; }
  .event-row {
    grid-template-columns: 88px 1fr 44px;
    grid-template-areas: "image meta button" "title title title";
    gap: 12px 14px;
  }
  .event-image { width: 88px; height: 104px; }
  .event-title { padding-top: 4px; }
  .event-title h3 { font-size: 1.75rem; }
  .photo-grid { columns: 1; }
  .person-card { flex-basis: 82vw; }
  .quote-grid blockquote { padding-inline: 22px; }
  .event-poster { width: min(88vw, 400px); }
  .event-page-copy h1 { font-size: clamp(3.1rem, 13vw, 4.6rem); }
  .work-cloud span, .event-facts span { line-height: 1.25; }
}

@media (hover: none) {
  .btn:hover { transform: none; }
  .event-image:hover img, .gallery-item:hover img { transform: none; }
  .project-step:hover { padding-left: 0; }
}
