:root {
  --ink: #0a0a0a;
  --paper: #f0eee8;
  --white: #fafafa;
  --muted: #a09f9a;
  --line: rgba(255,255,255,.16);
  --acid: #dfff00;
  --wine: #7b1230;
  --header-h: 5.5rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }
::selection { color: var(--ink); background: var(--acid); }

.noise {
  position: fixed; inset: 0; z-index: 1000; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.cursor {
  position: fixed; width: 2rem; height: 2rem; border: 1px solid rgba(223,255,0,.75); border-radius: 50%;
  pointer-events: none; z-index: 1200; transform: translate(-50%,-50%); transition: width .2s, height .2s, background .2s; mix-blend-mode: difference;
}
.cursor.hovered { width: 4rem; height: 4rem; background: rgba(223,255,0,.18); }

.site-header {
  height: var(--header-h); width: 100%; position: fixed; inset: 0 0 auto; z-index: 100;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 3.5vw;
  border-bottom: 1px solid rgba(255,255,255,.1); background: rgba(10,10,10,.65); backdrop-filter: blur(16px);
  transition: transform .35s ease, background .35s ease;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; width: max-content; }
.brand-mark { width: 2.45rem; height: 2.45rem; display: grid; place-items: center; background: var(--acid); color: var(--ink); font: 700 .82rem/1 Manrope; letter-spacing: -.05em; border-radius: 50%; }
.brand-name { font: 600 .72rem/1.05 Manrope; letter-spacing: .12em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(.9rem,1.45vw,1.6rem); }
.desktop-nav a { color: #ccc; font-size: .84rem; transition: color .2s; }
.desktop-nav a:hover { color: var(--acid); }
.availability { justify-self: end; font-size: .78rem; color: #d4d4d0; display: flex; gap: .55rem; align-items: center; }
.availability span { width: .48rem; height: .48rem; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 .25rem rgba(223,255,0,.09); }
.menu-toggle { display: none; justify-self: end; width: 2.7rem; height: 2.7rem; padding: .7rem; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 1px; background: #fff; margin: .35rem 0; transition: transform .25s; }
.menu-open .menu-toggle span:first-child { transform: translateY(.35rem) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-.35rem) rotate(-45deg); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--wine); padding: 8rem 6vw 3rem; transform: translateY(-105%); transition: transform .6s cubic-bezier(.77,0,.18,1); display: none; align-items: center; overflow-y: auto; }
.menu-open .mobile-menu { transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu a { font: 500 clamp(2.6rem, 9vw, 5rem)/1 Manrope; padding: .4em 0; border-bottom: 1px solid rgba(255,255,255,.25); display: flex; justify-content: space-between; }
.mobile-menu a span { font: 500 .75rem/1 DM Sans; }

.hero { min-height: 100svh; position: relative; overflow: hidden; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(20rem,.65fr); align-items: center; gap: 2rem; padding: calc(var(--header-h) + 5rem) 5vw 4rem; }
.hero-glow { position: absolute; width: 55rem; height: 55rem; border-radius: 50%; background: radial-gradient(circle, rgba(123,18,48,.28), transparent 65%); top: 8%; right: 7%; filter: blur(10px); }
.hero-copy { position: relative; z-index: 2; padding-top: 2rem; }
.eyebrow { text-transform: uppercase; font: 600 .75rem/1.2 Manrope; letter-spacing: .22em; color: var(--acid); }
.hero h1 { font: 500 clamp(3.8rem, 7.5vw, 8.4rem)/.86 Manrope; letter-spacing: -.075em; margin: 2rem 0 2.5rem; position: relative; z-index: 3; }
.hero h1 span { display: block; white-space: nowrap; }
.hero h1 .outline { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.64); transform: translateX(5vw); }
.hero-intro { color: #b9b8b4; font-size: clamp(1rem, 1.25vw, 1.18rem); max-width: 36rem; margin: 0 0 2.5rem; }
.hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.button { min-height: 3.65rem; padding: 0 1.35rem; display: inline-flex; justify-content: space-between; align-items: center; gap: 2.5rem; border: 1px solid transparent; font-weight: 600; font-size: .9rem; transition: color .25s, background .25s, transform .25s; }
.button-primary { color: var(--ink); background: var(--acid); }
.button-primary:hover { color: var(--white); background: var(--wine); }
.button span, .text-link span { font-size: 1.2em; }
.text-link { display: inline-flex; gap: 1rem; align-items: center; padding: .6rem 0; border-bottom: 1px solid currentColor; font-size: .9rem; }
.hero-portrait { position: relative; z-index: 1; align-self: end; justify-self: end; width: min(33vw, 32rem); transform-style: preserve-3d; }
.portrait-frame { aspect-ratio: .72; overflow: hidden; display: flex; align-items: flex-end; background: radial-gradient(circle at 52% 30%, rgba(123,18,48,.68), #171717 68%); clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%); }
.portrait-frame img { height: 100%; object-fit: contain; object-position: 50% 100%; filter: drop-shadow(0 1.5rem 2.5rem rgba(0,0,0,.25)); transform: scale(1.025); transform-origin: center bottom; }
.hero-portrait > p { margin: .8rem 0 0; font-size: .78rem; color: #aaa; }
.image-index { position: absolute; right: -1.4rem; top: 45%; font: 500 .7rem/1 Manrope; letter-spacing: .12em; writing-mode: vertical-rl; color: #999; }
.hero-role { position: absolute; z-index: 3; min-width: 12.5rem; padding: .85rem 1rem; background: rgba(10,10,10,.88); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); transform: translateZ(2rem); }
.hero-role strong, .hero-role span { display: block; }
.hero-role strong { color: var(--acid); text-transform: uppercase; font: 600 .63rem/1 Manrope; letter-spacing: .15em; margin-bottom: .4rem; }
.hero-role span { color: #eee; font-size: .78rem; }
.hero-role-one { left: -4rem; bottom: 19%; }
.hero-role-two { right: -1rem; bottom: 7%; }
.hero-meta { position: absolute; z-index: 2; left: 5vw; right: 5vw; bottom: 2rem; display: flex; gap: 1rem; align-items: center; font-size: .67rem; text-transform: uppercase; letter-spacing: .16em; color: #777; }
.scroll-line { width: 4rem; height: 1px; background: #555; }

.ticker { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--wine); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 1.25rem 0; animation: ticker 28s linear infinite; }
.ticker-track span { text-transform: uppercase; font: 600 .76rem/1 Manrope; letter-spacing: .17em; }
.ticker-track i { width: .48rem; height: .48rem; border-radius: 50%; background: var(--acid); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 8rem 5vw; }
.section-label { display: flex; align-items: center; gap: .75rem; text-transform: uppercase; letter-spacing: .18em; font: 600 .72rem/1 Manrope; color: #777; margin-bottom: 5rem; }
.section-label span { color: var(--acid); }
.about { background: var(--paper); color: var(--ink); }
.about .section-label { color: #777; }
.about .section-label span { color: var(--wine); }
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10vw; }
.about-lead p { font: 500 clamp(2.7rem,5.4vw,6.4rem)/.98 Manrope; letter-spacing: -.06em; margin: 0; }
.about-lead em { font-family: Georgia, serif; font-weight: 400; }
.about-copy { padding-top: .65rem; max-width: 35rem; }
.about-copy p { color: #373733; font-size: clamp(1rem,1.35vw,1.2rem); line-height: 1.7; margin: 0 0 1.35rem; }
.about-copy .text-link { margin-top: 1rem; }
.about-visuals { display: grid; grid-template-columns: .8fr .55fr .8fr; gap: 2vw; align-items: end; margin-top: 8rem; }
.photo { margin: 0; position: relative; overflow: hidden; }
.photo img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.photo:hover img { transform: scale(1.04); }
.photo-tall { aspect-ratio: .74; }
.photo-wide { aspect-ratio: .9; }
.photo-wide img { object-position: 50% 35%; }
.photo figcaption { position: absolute; inset: auto 1rem 1rem; color: #fff; font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.manifesto { align-self: center; padding: 2rem 1rem; }
.manifesto-number { font: 600 clamp(4rem,7vw,8rem)/1 Manrope; letter-spacing: -.08em; color: var(--wine); }
.manifesto p { max-width: 15rem; color: #454540; }

.expertise { padding-bottom: 10rem; }
.expertise-heading h2 { font: 500 clamp(3rem,6vw,7rem)/.95 Manrope; letter-spacing: -.06em; margin: 0 0 6rem; }
.expertise-heading h2 span { color: #666; }
.service-list { border-top: 1px solid var(--line); }
.service { position: relative; display: grid; grid-template-columns: 4rem 1fr 1.1fr 3rem; gap: 2rem; align-items: center; min-height: 8rem; border-bottom: 1px solid var(--line); transition: background .3s, color .3s, padding .3s; outline: 0; }
.service::before { content: ""; position: absolute; inset: 0; background: var(--acid); transform: scaleY(0); transform-origin: bottom; transition: transform .35s cubic-bezier(.22,1,.36,1); z-index: 0; }
.service:hover::before, .service:focus::before { transform: scaleY(1); }
.service > * { position: relative; z-index: 1; }
.service:hover, .service:focus { color: var(--ink); padding: 0 1rem; }
.service-no { font: 500 .72rem/1 Manrope; color: #777; }
.service h3 { font: 500 clamp(1.75rem,3vw,3.1rem)/1 Manrope; letter-spacing: -.04em; margin: 0; }
.service p { color: #999; margin: 0; max-width: 32rem; }
.service:hover p, .service:focus p { color: #373733; }
.service-arrow { justify-self: end; font-size: 1.6rem; }

.convening { background: #d8ff1f; color: var(--ink); }
.convening .section-label { color: rgba(10,10,10,.55); }
.convening .section-label span { color: var(--wine); }
.convening-intro { display: grid; grid-template-columns: .35fr 1fr; gap: 5vw; align-items: start; margin-bottom: 6rem; }
.convening-intro .eyebrow { color: var(--wine); padding-top: .85rem; }
.convening-intro h2 { font: 500 clamp(3rem,6vw,7rem)/.95 Manrope; letter-spacing: -.065em; margin: 0; }
.convening-intro h2 em { font-family: Georgia,serif; font-weight: 400; color: var(--wine); }
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.platform-card { min-height: 33rem; position: relative; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.platform-card:hover { transform: translateY(-.7rem); box-shadow: 0 1.5rem 4rem rgba(0,0,0,.16); }
.platform-primary { background: var(--wine); color: #fff; }
.platform-dark { background: var(--ink); color: #fff; }
.platform-training { background: var(--paper); color: var(--ink); }
.platform-index { align-self: flex-end; font: 600 .7rem/1 Manrope; letter-spacing: .15em; opacity: .55; }
.platform-role { text-transform: uppercase; color: var(--acid); font: 600 .69rem/1.2 Manrope; letter-spacing: .17em; margin: 0 0 1.25rem; }
.platform-training .platform-role { color: var(--wine); }
.platform-card h3 { font: 500 clamp(2.2rem,3.5vw,4.1rem)/.92 Manrope; letter-spacing: -.06em; margin: 0 0 1.5rem; }
.platform-card p:not(.platform-role) { max-width: 27rem; color: rgba(255,255,255,.72); margin: 0; }
.platform-training p:not(.platform-role) { color: #55544f; }
.platform-link { position: relative; z-index: 2; width: max-content; display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid currentColor; text-transform: uppercase; font: 600 .68rem/1 Manrope; letter-spacing: .15em; opacity: .78; }
.platform-link b { font-size: 1rem; transition: transform .25s; }
.platform-card:hover .platform-link b { transform: translate(.25rem,-.25rem); }
.platform-mark { position: absolute; right: -1.2rem; bottom: -1.25rem; font: 700 clamp(5rem,9vw,9rem)/1 Manrope; letter-spacing: -.1em; opacity: .055; }
.cmm-feature { margin-top: 8rem; padding: clamp(2rem,4vw,4rem); color: #fff; background: var(--wine); }
.cmm-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 7vw; align-items: end; margin-bottom: 3rem; }
.cmm-heading .eyebrow { color: var(--acid); margin: 0 0 1.5rem; }
.cmm-heading h3 { font: 500 clamp(3.5rem,6.7vw,7.6rem)/.87 Manrope; letter-spacing: -.075em; margin: 0; }
.cmm-heading h3 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.cmm-summary { padding-bottom: .6rem; }
.cmm-summary p { max-width: 34rem; margin: 0 0 2rem; color: rgba(255,255,255,.78); font-size: clamp(1rem,1.3vw,1.2rem); }
.cmm-summary span { display: block; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.25); color: var(--acid); text-transform: uppercase; font: 600 .7rem/1 Manrope; letter-spacing: .16em; }
.cmm-lead-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: .75rem; }
.cmm-lead-grid figure { position: relative; height: clamp(22rem,37vw,39rem); margin: 0; overflow: hidden; background: #111; }
.cmm-lead-grid img, .cmm-mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.cmm-lead-grid figure:first-child img { object-position: 56% 50%; }
.cmm-lead-grid figure:hover img, .cmm-mosaic img:hover { transform: scale(1.035); }
.cmm-lead-grid figcaption { position: absolute; left: 1.5rem; bottom: 1.5rem; padding: .7rem .9rem; color: #fff; background: rgba(10,10,10,.78); backdrop-filter: blur(10px); text-transform: uppercase; font: 600 .65rem/1 Manrope; letter-spacing: .13em; }
.cmm-mosaic { display: grid; grid-template-columns: repeat(5,1fr); gap: .75rem; margin-top: .75rem; }
.cmm-mosaic img { aspect-ratio: 1; object-fit: cover; }
.expo-feature { margin-top: 8rem; padding-top: 2rem; border-top: 1px solid rgba(10,10,10,.28); }
.expo-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: end; margin-bottom: 2.5rem; }
.expo-heading .eyebrow { color: var(--wine); margin: 0 0 1.5rem; }
.expo-heading h3 { font: 500 clamp(3.5rem,7vw,8rem)/.86 Manrope; letter-spacing: -.075em; margin: 0; }
.expo-heading h3 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.expo-summary { padding-bottom: .65rem; }
.expo-summary p { max-width: 34rem; margin: 0 0 2rem; color: #35352f; font-size: clamp(1rem,1.3vw,1.2rem); }
.expo-summary span { display: block; padding-top: 1rem; border-top: 1px solid rgba(10,10,10,.25); text-transform: uppercase; font: 600 .7rem/1 Manrope; letter-spacing: .16em; color: var(--wine); }
.expo-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2,minmax(14rem,25vw)); gap: .75rem; }
.expo-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #111; }
.expo-photo-lead { grid-row: 1 / 3; }
.expo-photo img, .expo-filmstrip img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.expo-photo:hover img, .expo-filmstrip img:hover { transform: scale(1.035); }
.expo-photo figcaption { position: absolute; left: 1.5rem; bottom: 1.5rem; padding: .7rem .9rem; color: #fff; background: rgba(10,10,10,.78); backdrop-filter: blur(10px); text-transform: uppercase; font: 600 .65rem/1 Manrope; letter-spacing: .13em; }
.expo-filmstrip { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: .75rem; }
.expo-filmstrip img { aspect-ratio: 1.45; overflow: hidden; }

.portrait-story { height: 120vh; min-height: 52rem; background: var(--paper); color: var(--ink); }
.portrait-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; grid-template-columns: minmax(19rem,.78fr) minmax(0,1.22fr); gap: clamp(1rem,2vw,2rem); padding: 7rem 5vw 3rem; }
.portrait-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(2rem,4vw,4rem); background: var(--acid); clip-path: polygon(0 0, calc(100% - 3rem) 0, 100% 3rem, 100% 100%, 0 100%); }
.portrait-kicker { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding-bottom: 1rem; border-bottom: 1px solid rgba(10,10,10,.25); text-transform: uppercase; font: 600 .68rem/1 Manrope; letter-spacing: .16em; }
.portrait-quote { font: 500 clamp(3rem,4.5vw,5.7rem)/.93 Manrope; letter-spacing: -.065em; margin: 2rem 0; text-wrap: balance; }
.portrait-quote em { display: block; color: var(--wine); font-family: Georgia, serif; font-weight: 400; }
.portrait-note { max-width: 28rem; margin: 0; padding-top: 1.4rem; border-top: 1px solid rgba(10,10,10,.25); color: #32322d; font-size: clamp(.9rem,1.1vw,1.05rem); }
.portrait-gallery { position: relative; overflow: hidden; background: #111; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3rem), calc(100% - 3rem) 100%, 0 100%); }
.portrait-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; opacity: 0; transform: scale(1.04); transition: opacity .9s, transform 1.5s cubic-bezier(.22,1,.36,1); }
.portrait-slide.active { opacity: 1; transform: scale(1); }
.portrait-gallery::after { content: ""; position: absolute; inset: auto 0 0; height: 24%; background: linear-gradient(transparent,rgba(0,0,0,.72)); pointer-events: none; }
.portrait-caption { position: absolute; z-index: 2; left: 2rem; bottom: 1.8rem; margin: 0; color: rgba(255,255,255,.78); text-transform: uppercase; font: 600 .65rem/1 Manrope; letter-spacing: .16em; }
.portrait-controls { position: absolute; z-index: 3; bottom: 1.8rem; right: 2rem; display: flex; gap: .65rem; }
.portrait-dot { width: 3rem; height: .22rem; border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0; }
.portrait-dot.active { background: var(--acid); }

.journey { background: var(--paper); color: var(--ink); }
.journey .section-label span { color: var(--wine); }
.journey-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.journey-heading { position: sticky; top: 9rem; align-self: start; }
.journey-heading h2 { font: 500 clamp(3rem,5.2vw,6rem)/.95 Manrope; letter-spacing: -.06em; margin: 0 0 2rem; }
.journey-heading em { font-family: Georgia,serif; color: var(--wine); font-weight: 400; }
.journey-heading p { max-width: 28rem; color: #575750; font-size: 1.08rem; }
.timeline { border-top: 1px solid #b5b4af; }
.timeline-item { display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; padding: 2.5rem 0 4rem; border-bottom: 1px solid #b5b4af; }
.timeline-item > span { font: 600 .72rem/1 Manrope; letter-spacing: .16em; color: var(--wine); text-transform: uppercase; padding-top: .55rem; }
.timeline-item h3 { font: 500 clamp(1.7rem,2.5vw,2.8rem)/1.1 Manrope; letter-spacing: -.04em; margin: 0 0 .7rem; }
.timeline-item p { color: #5d5c57; max-width: 35rem; margin: 0; }
.ventures { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: #b5b4af; border: 1px solid #b5b4af; margin-top: 7rem; }
.ventures span { background: var(--paper); padding: 2rem 1rem; text-align: center; font: 600 clamp(.9rem,1.5vw,1.15rem)/1 Manrope; }

.news { background: #111; color: #fff; }
.news-top { display: grid; grid-template-columns: .35fr 1fr; gap: 5vw; margin-bottom: 5rem; }
.news-top .section-label { margin: .9rem 0 0; }
.news-heading { display: grid; grid-template-columns: 1fr .45fr; gap: 3rem; align-items: end; }
.news-heading h2 { font: 500 clamp(3.2rem,6vw,7rem)/.9 Manrope; letter-spacing: -.065em; margin: 0; }
.news-heading h2 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.news-heading p { color: #999; margin: 0 0 .5rem; }
.news-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.news-card { position: relative; min-height: 25rem; padding: 2.2rem; background: #111; display: flex; flex-direction: column; transition: background .3s, color .3s; }
.news-card:hover { background: var(--paper); color: var(--ink); }
.news-featured { background: var(--wine); }
.news-date { display: flex; align-items: flex-start; gap: .65rem; margin-bottom: auto; }
.news-date strong { font: 500 clamp(2.1rem,3vw,3.4rem)/.85 Manrope; letter-spacing: -.06em; }
.news-date span { font: 600 .63rem/1.25 Manrope; letter-spacing: .12em; text-transform: uppercase; color: var(--acid); }
.news-card:hover .news-date span { color: var(--wine); }
.news-tag { position: absolute; top: 2.2rem; right: 2.2rem; border: 1px solid rgba(255,255,255,.28); border-radius: 2rem; padding: .5rem .8rem; text-transform: uppercase; font: 600 .62rem/1 Manrope; letter-spacing: .12em; }
.news-card:hover .news-tag { border-color: rgba(0,0,0,.25); }
.news-card h3 { font: 500 clamp(2rem,3.2vw,3.5rem)/.98 Manrope; letter-spacing: -.05em; margin: 2rem 0 1rem; }
.news-card p { color: #aaa; max-width: 35rem; margin: 0 0 2rem; }
.news-featured p { color: rgba(255,255,255,.72); }
.news-card:hover p { color: #55544f; }
.news-meta { color: #777; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; }
.news-featured .news-meta { color: rgba(255,255,255,.62); }
.news-card:hover .news-meta { color: var(--wine); }

.videos { background: var(--paper); color: var(--ink); }
.videos .section-label { margin-bottom: 3rem; color: #777; }
.videos .section-label span { color: var(--wine); }
.videos-heading { display: grid; grid-template-columns: 1fr .42fr; gap: 6vw; align-items: end; margin-bottom: 5rem; }
.videos-heading h2 { margin: 0; font: 500 clamp(3.3rem,6.5vw,7.6rem)/.9 Manrope; letter-spacing: -.07em; }
.videos-heading h2 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.videos-intro p { margin: 0 0 2rem; color: #55544f; font-size: 1.08rem; line-height: 1.7; }
.video-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; }
.video-card { grid-column: span 5; background: #111; color: #fff; overflow: hidden; }
.video-card:nth-child(1), .video-card:nth-child(4) { grid-column: span 7; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #080808; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption { min-height: 9rem; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); }
.video-caption span { color: var(--acid); text-transform: uppercase; font: 600 .67rem/1 Manrope; letter-spacing: .14em; }
.video-caption h3 { max-width: 23ch; margin: 1.6rem 0 0; font: 500 clamp(1.35rem,2.2vw,2.4rem)/1.05 Manrope; letter-spacing: -.04em; }

.clients { background: #121212; padding-top: 5rem; padding-bottom: 5rem; }
.clients-label { color: #777; text-transform: uppercase; letter-spacing: .17em; font-size: .7rem; margin: 0 0 3rem; }
.client-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.client-grid span { min-height: 7rem; display: grid; place-items: center; text-align: center; padding: 1rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #a9a9a5; font: 500 clamp(1rem,1.5vw,1.25rem)/1.2 Manrope; transition: color .25s, background .25s; }
.client-grid span:hover { color: var(--ink); background: var(--acid); }

.contact { min-height: 100svh; padding: 8rem 5vw 2rem; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--wine); }
.contact .eyebrow { color: var(--acid); }
.contact h2 { position: relative; z-index: 2; font: 500 clamp(4.5rem,10vw,12rem)/.82 Manrope; letter-spacing: -.08em; margin: 2rem 0 3.5rem; }
.contact h2 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.72); }
.contact-actions { position: relative; z-index: 2; display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--acid); }
.button-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.button-outline-light:hover { background: #fff; color: var(--wine); }
.text-link.light { color: var(--white); }
.contact-orbit { position: absolute; width: min(40vw,32rem); aspect-ratio: 1; right: 5vw; top: 8%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; animation: orbit 14s linear infinite; }
.contact-orbit::before { content: ""; position: absolute; width: .8rem; height: .8rem; top: -.4rem; border-radius: 50%; background: var(--acid); }
.contact-orbit span { font: 700 clamp(4rem,9vw,8rem)/1 Manrope; letter-spacing: -.1em; opacity: .09; }
@keyframes orbit { to { transform: rotate(360deg); } }
.contact footer { position: absolute; left: 5vw; right: 5vw; bottom: 2rem; display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; border-top: 1px solid rgba(255,255,255,.25); padding-top: 1.25rem; color: rgba(255,255,255,.65); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.contact footer p { margin: 0; }
.contact footer p:nth-child(2) { text-align: center; }
.contact footer a { justify-self: end; }

/* Program pages */
.program-page { background: var(--paper); color: var(--ink); }
.program-page .site-header { color: #fff; }
.program-hero { min-height: 100svh; position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: end; gap: 4vw; padding: calc(var(--header-h) + 5rem) 5vw 5rem; overflow: hidden; background: #111; color: #fff; }
.program-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 40%, rgba(123,18,48,.42), transparent 42%); pointer-events: none; }
.program-hero-copy { position: relative; z-index: 2; align-self: center; }
.program-back { display: inline-flex; gap: .65rem; align-items: center; margin-bottom: 3rem; color: #aaa; text-transform: uppercase; font: 600 .68rem/1 Manrope; letter-spacing: .15em; }
.program-back:hover { color: var(--acid); }
.program-hero h1 { max-width: 10ch; margin: 0 0 2rem; font: 500 clamp(4rem,8vw,9.4rem)/.84 Manrope; letter-spacing: -.08em; }
.program-hero h1 em { display: block; color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.program-lede { max-width: 40rem; margin: 0 0 2.5rem; color: #b8b8b3; font-size: clamp(1rem,1.4vw,1.24rem); line-height: 1.7; }
.program-hero-visual { position: relative; z-index: 1; align-self: stretch; min-height: 39rem; overflow: hidden; clip-path: polygon(8% 0,100% 0,100% 92%,92% 100%,0 100%,0 8%); }
.program-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.program-hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(0,0,0,.58)); }
.program-hero-caption { position: absolute; z-index: 2; left: 2rem; bottom: 2rem; color: #fff; text-transform: uppercase; font: 600 .65rem/1 Manrope; letter-spacing: .16em; }
.program-statbar { display: grid; grid-template-columns: repeat(3,1fr); background: var(--acid); color: var(--ink); }
.program-stat { min-height: 10rem; padding: 2rem 5vw; border-right: 1px solid rgba(10,10,10,.2); display: flex; flex-direction: column; justify-content: space-between; }
.program-stat:last-child { border-right: 0; }
.program-stat strong { font: 600 clamp(1.7rem,3vw,3.2rem)/1 Manrope; letter-spacing: -.05em; }
.program-stat span { text-transform: uppercase; font: 600 .66rem/1 Manrope; letter-spacing: .15em; color: #4b4b42; }
.program-section { padding: 8rem 5vw; }
.program-section-head { display: grid; grid-template-columns: .45fr 1fr; gap: 6vw; margin-bottom: 4rem; }
.program-section-head .eyebrow { color: var(--wine); padding-top: 1rem; }
.program-section-head h2 { max-width: 13ch; margin: 0; font: 500 clamp(3rem,6vw,7rem)/.92 Manrope; letter-spacing: -.065em; }
.program-section-head h2 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.program-overview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: start; }
.program-overview > p { margin: 0; font: 500 clamp(2rem,3.8vw,4.6rem)/1.05 Manrope; letter-spacing: -.045em; }
.program-overview-copy p { margin: 0 0 1.25rem; color: #55544f; font-size: 1.08rem; line-height: 1.75; }
.focus-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #aaa9a3; border-left: 1px solid #aaa9a3; }
.focus-card { min-height: 19rem; padding: 2rem; border-right: 1px solid #aaa9a3; border-bottom: 1px solid #aaa9a3; display: flex; flex-direction: column; justify-content: space-between; transition: background .25s,color .25s; }
.focus-card:hover { background: var(--wine); color: #fff; }
.focus-card > span { color: var(--wine); text-transform: uppercase; font: 600 .66rem/1 Manrope; letter-spacing: .15em; }
.focus-card:hover > span { color: var(--acid); }
.focus-card h3 { margin: 2rem 0 .8rem; font: 500 clamp(1.65rem,2.5vw,2.7rem)/1 Manrope; letter-spacing: -.045em; }
.focus-card p { margin: 0; color: #686761; }
.focus-card:hover p { color: rgba(255,255,255,.72); }
.program-gallery { padding: 2rem 5vw 8rem; }
.program-gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: repeat(2,minmax(14rem,27vw)); gap: .75rem; }
.program-gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: #111; }
.program-gallery-grid figure:first-child { grid-row: 1 / 3; }
.program-gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1); }
.program-gallery-grid figure:hover img { transform: scale(1.035); }
.program-gallery-grid figcaption { position: absolute; left: 1rem; bottom: 1rem; padding: .65rem .8rem; color: #fff; background: rgba(10,10,10,.78); text-transform: uppercase; font: 600 .62rem/1 Manrope; letter-spacing: .13em; }
.program-offers { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.offer-card { min-height: 22rem; padding: 2rem; background: #111; color: #fff; display: flex; flex-direction: column; }
.offer-card:nth-child(2) { background: var(--wine); }
.offer-card .eyebrow { margin: 0 0 2rem; }
.offer-card h3 { margin: auto 0 1rem; font: 500 clamp(2rem,3vw,3.4rem)/.96 Manrope; letter-spacing: -.05em; }
.offer-card p { color: rgba(255,255,255,.7); }
.offer-price { display: block; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.25); color: var(--acid); font-weight: 600; }
.program-cta { padding: 8rem 5vw; background: var(--wine); color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 4rem; align-items: end; }
.program-cta h2 { max-width: 11ch; margin: 0; font: 500 clamp(3.5rem,7vw,8rem)/.87 Manrope; letter-spacing: -.07em; }
.program-cta h2 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.program-cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 1rem; min-width: min(100%,19rem); }
.program-footer { padding: 2rem 5vw; display: flex; justify-content: space-between; gap: 1rem; background: #0a0a0a; color: #888; text-transform: uppercase; font-size: .68rem; letter-spacing: .12em; }

/* About page */
.about-page { background: var(--paper); color: var(--ink); }
.about-page .site-header { color: #fff; }
.desktop-nav .is-current { color: var(--acid); }
.about-hero { position: relative; min-height: 100svh; padding: calc(var(--header-h) + 4rem) 5vw 0; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 3vw; background: #0d0d0e; color: #fff; }
.about-hero::before { content: ""; position: absolute; width: 52rem; aspect-ratio: 1; right: -7rem; bottom: -17rem; border-radius: 50%; background: radial-gradient(circle,rgba(123,18,48,.62),rgba(123,18,48,.08) 54%,transparent 70%); }
.about-hero-copy { position: relative; z-index: 2; align-self: center; padding-bottom: 4rem; }
.about-hero h1 { margin: 1.8rem 0 2rem; max-width: 8.5ch; font: 500 clamp(4rem,7.3vw,9rem)/.86 Manrope; letter-spacing: -.075em; }
.about-hero h1 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.about-hero-copy > p:not(.eyebrow) { max-width: 39rem; margin: 0 0 2.4rem; color: #b9b8b4; font-size: clamp(1rem,1.3vw,1.2rem); line-height: 1.7; }
.about-hero-actions { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.about-hero-portrait { position: relative; z-index: 1; min-height: 48rem; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; }
.about-hero-portrait::before { content: ""; position: absolute; left: 7%; right: 7%; bottom: 0; height: 76%; border: 1px solid rgba(223,255,0,.22); border-bottom: 0; border-radius: 50% 50% 0 0; }
.about-hero-portrait img { position: relative; z-index: 2; max-height: calc(100svh - var(--header-h)); width: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 1.8rem 2.2rem rgba(0,0,0,.35)); }
.about-hero-portrait > p { position: absolute; z-index: 3; right: 0; bottom: 2rem; margin: 0; padding: .75rem 1rem; background: var(--acid); color: var(--ink); text-transform: uppercase; font: 600 .65rem/1 Manrope; letter-spacing: .14em; }
.about-portrait-word { position: absolute; z-index: 0; right: -1rem; top: 20%; color: rgba(255,255,255,.045); font: 700 clamp(6rem,12vw,13rem)/1 Manrope; letter-spacing: -.08em; writing-mode: vertical-rl; }
.about-story { padding: 9rem 5vw; }
.about-story .section-label, .about-leadership .section-label, .about-journey .section-label { color: #777; }
.about-story .section-label span, .about-leadership .section-label span, .about-journey .section-label span { color: var(--wine); }
.about-story-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; }
.about-story-grid h2 { margin: 0; font: 500 clamp(3rem,5.7vw,7rem)/.94 Manrope; letter-spacing: -.065em; }
.about-story-grid h2 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.about-story-copy { padding-top: .6rem; }
.about-story-copy p { margin: 0 0 1.4rem; color: #464640; font-size: 1.08rem; line-height: 1.78; }
.about-stats { margin-top: 7rem; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #aaa9a3; border-bottom: 1px solid #aaa9a3; }
.about-stats div { min-height: 12rem; padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid #aaa9a3; }
.about-stats div:last-child { border-right: 0; }
.about-stats strong { color: var(--wine); font: 600 clamp(2.5rem,5vw,5.8rem)/1 Manrope; letter-spacing: -.07em; }
.about-stats span { color: #62615c; text-transform: uppercase; font: 600 .68rem/1.3 Manrope; letter-spacing: .14em; }
.about-craft { min-height: 52rem; display: grid; grid-template-columns: .9fr 1.1fr; background: var(--wine); color: #fff; }
.about-craft-lead { position: relative; min-height: 52rem; margin: 0; overflow: hidden; }
.about-craft-lead img { height: 100%; object-fit: cover; object-position: 50% 25%; }
.about-craft-lead figcaption { position: absolute; left: 2rem; bottom: 2rem; padding: .7rem .85rem; background: rgba(10,10,10,.8); text-transform: uppercase; font: 600 .63rem/1 Manrope; letter-spacing: .14em; }
.about-craft-copy { padding: 8rem 6vw; align-self: center; }
.about-craft-copy blockquote { margin: 3rem 0; font: 500 clamp(3rem,5vw,6.2rem)/.95 Manrope; letter-spacing: -.065em; }
.about-craft-copy blockquote em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.about-craft-copy > p:last-child { max-width: 34rem; color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.7; }
.about-leadership { padding: 9rem 5vw; }
.about-leadership-head { margin-bottom: 5rem; display: grid; grid-template-columns: 1fr .55fr; gap: 6vw; align-items: end; }
.about-leadership-head h2 { margin: 0; font: 500 clamp(3.5rem,6.5vw,7.8rem)/.9 Manrope; letter-spacing: -.07em; }
.about-leadership-head h2 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.about-leadership-head p { max-width: 30rem; margin: 0 0 .7rem; color: #55544f; font-size: 1.08rem; line-height: 1.7; }
.about-leadership-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #aaa9a3; border-left: 1px solid #aaa9a3; }
.about-lead-card { min-height: 23rem; padding: 2rem; border-right: 1px solid #aaa9a3; border-bottom: 1px solid #aaa9a3; display: flex; flex-direction: column; transition: background .3s,color .3s; }
.about-lead-card:hover { background: #111; color: #fff; }
.about-lead-card > span { color: var(--wine); text-transform: uppercase; font: 600 .66rem/1 Manrope; letter-spacing: .15em; }
.about-lead-card:hover > span { color: var(--acid); }
.about-lead-card h3 { margin: auto 0 1rem; max-width: 13ch; font: 500 clamp(2rem,4vw,4.6rem)/.95 Manrope; letter-spacing: -.055em; }
.about-lead-card p { max-width: 34rem; margin: 0; color: #67665f; line-height: 1.65; }
.about-lead-card:hover p { color: rgba(255,255,255,.7); }
.about-lead-card b { margin-top: 1.5rem; color: var(--wine); font-size: .82rem; }
.about-lead-card:hover b { color: var(--acid); }
.about-journey { padding: 9rem 5vw; background: #111; color: #fff; }
.about-journey-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 9vw; }
.about-journey-intro { position: sticky; top: calc(var(--header-h) + 3rem); align-self: start; }
.about-journey-intro h2 { margin: 2rem 0 0; font: 500 clamp(4rem,7vw,8rem)/.86 Manrope; letter-spacing: -.07em; }
.about-journey-intro h2 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.about-timeline { border-top: 1px solid rgba(255,255,255,.22); }
.about-timeline article { padding: 2.3rem 0; display: grid; grid-template-columns: 9rem 1fr; gap: 2rem; border-bottom: 1px solid rgba(255,255,255,.22); }
.about-timeline article > span { color: var(--acid); text-transform: uppercase; font: 600 .67rem/1.2 Manrope; letter-spacing: .14em; }
.about-timeline h3 { margin: -.35rem 0 .8rem; font: 500 clamp(1.8rem,3vw,3rem)/1 Manrope; letter-spacing: -.04em; }
.about-timeline p { margin: 0; max-width: 34rem; color: #9d9c98; line-height: 1.7; }
.about-closing { min-height: 48rem; display: grid; grid-template-columns: .65fr 1.35fr; background: var(--wine); color: #fff; }
.about-closing-image { min-height: 48rem; overflow: hidden; }
.about-closing-image img { height: 100%; object-fit: cover; object-position: center 20%; }
.about-closing-copy { padding: 7rem 6vw; align-self: center; }
.about-closing-copy h2 { max-width: 10ch; margin: 2rem 0; font: 500 clamp(3.7rem,7vw,8rem)/.88 Manrope; letter-spacing: -.07em; }
.about-closing-copy > p:not(.eyebrow) { max-width: 35rem; color: rgba(255,255,255,.72); font-size: 1.08rem; line-height: 1.7; }
.about-closing-copy > div { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }

/* Portfolio page */
.portfolio-page { background: var(--paper); color: var(--ink); }
.portfolio-page .site-header { color: #fff; }
.portfolio-hero { min-height: 100svh; padding: calc(var(--header-h) + 4rem) 5vw 4rem; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 5vw; overflow: hidden; background: #0d0d0e; color: #fff; }
.portfolio-hero-copy { position: relative; z-index: 2; }
.portfolio-hero h1 { max-width: 10ch; margin: 2rem 0 2.3rem; font: 500 clamp(4rem,7.5vw,9rem)/.86 Manrope; letter-spacing: -.075em; }
.portfolio-hero h1 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.portfolio-hero-copy > p:not(.eyebrow) { max-width: 38rem; margin: 0 0 2.5rem; color: #b7b6b2; font-size: clamp(1rem,1.3vw,1.2rem); line-height: 1.7; }
.portfolio-hero-gallery { position: relative; min-height: 41rem; display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: 1fr 1fr; gap: .7rem; transform: rotate(1.5deg); }
.portfolio-hero-gallery figure { position: relative; margin: 0; overflow: hidden; background: #1a1a1a; }
.portfolio-hero-gallery .portfolio-hero-main { grid-row: 1 / 3; clip-path: polygon(7% 0,100% 0,100% 93%,93% 100%,0 100%,0 7%); }
.portfolio-hero-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.portfolio-hero-gallery figure:hover img { transform: scale(1.045); }
.portfolio-hero-gallery figure:nth-child(2) img { object-position: center 18%; }
.portfolio-hero-gallery > span { position: absolute; z-index: 3; right: -.8rem; bottom: 1.2rem; padding: .75rem 1rem; background: var(--acid); color: var(--ink); text-transform: uppercase; font: 600 .66rem/1 Manrope; letter-spacing: .14em; }
.portfolio-disciplines { display: grid; grid-template-columns: repeat(3,1fr); background: var(--acid); }
.portfolio-disciplines div { min-height: 10rem; padding: 2rem 5vw; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(10,10,10,.22); }
.portfolio-disciplines div:last-child { border-right: 0; }
.portfolio-disciplines strong { font: 500 clamp(1.7rem,3vw,3.2rem)/1 Manrope; letter-spacing: -.045em; }
.portfolio-disciplines span { color: #4e4d45; text-transform: uppercase; font: 600 .66rem/1.3 Manrope; letter-spacing: .13em; }
.portfolio-work { padding: 9rem 5vw; }
.portfolio-work-head { display: grid; grid-template-columns: 1fr .45fr; gap: 6vw; align-items: end; margin-bottom: 4rem; }
.portfolio-work-head .section-label { margin-bottom: 3rem; color: #777; }
.portfolio-work-head .section-label span { color: var(--wine); }
.portfolio-work-head h2 { margin: 0; font: 500 clamp(3.5rem,6.4vw,7.5rem)/.9 Manrope; letter-spacing: -.07em; }
.portfolio-work-head h2 em { color: var(--wine); font-family: Georgia,serif; font-weight: 400; }
.portfolio-work-head > p { margin: 0 0 .6rem; color: #55544f; font-size: 1.08rem; line-height: 1.7; }
.work-filters { display: flex; gap: .65rem; flex-wrap: wrap; padding: 1.2rem 0 2.5rem; border-top: 1px solid #aaa9a3; }
.work-filter { min-height: 2.75rem; padding: 0 1rem; border: 1px solid #aaa9a3; border-radius: 2rem; background: transparent; color: #575650; cursor: pointer; font-size: .82rem; transition: background .25s,color .25s,border-color .25s; }
.work-filter:hover, .work-filter.is-active { border-color: var(--wine); background: var(--wine); color: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 1rem; }
.work-card { grid-column: span 5; position: relative; background: #111; color: #fff; overflow: hidden; transition: opacity .3s, transform .3s; }
.work-card-wide { grid-column: span 7; }
.work-card[hidden] { display: none; }
.work-image { aspect-ratio: 1.35; overflow: hidden; background: #191919; }
.work-card-wide .work-image { aspect-ratio: 1.72; }
.work-card-tall .work-image { aspect-ratio: .93; }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.work-card-tall .work-image img { object-position: center 18%; }
.work-card:hover .work-image img { transform: scale(1.045); }
.work-info { min-height: 16rem; padding: 1.7rem; display: flex; flex-direction: column; }
.work-info > span { color: var(--acid); text-transform: uppercase; font: 600 .66rem/1 Manrope; letter-spacing: .14em; }
.work-info h3 { margin: auto 0 .8rem; font: 500 clamp(1.9rem,3.3vw,3.8rem)/.95 Manrope; letter-spacing: -.05em; }
.work-info p { max-width: 38rem; margin: 0; color: #a3a29e; line-height: 1.65; }
.work-info b { margin-top: 1.5rem; color: var(--acid); font-size: .8rem; }
.portfolio-clients { padding: 6rem 5vw; background: #111; color: #fff; }
.portfolio-client-line { margin-top: 3rem; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.portfolio-client-line span { min-height: 7rem; padding: 1rem; display: grid; place-items: center; text-align: center; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); color: #aaa; font: 500 clamp(1rem,1.5vw,1.25rem)/1.2 Manrope; transition: background .25s,color .25s; }
.portfolio-client-line span:hover { background: var(--acid); color: var(--ink); }
.portfolio-cta { padding: 9rem 5vw; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 5vw; background: var(--wine); color: #fff; }
.portfolio-cta h2 { max-width: 11ch; margin: 2rem 0 0; font: 500 clamp(3.7rem,7vw,8rem)/.88 Manrope; letter-spacing: -.07em; }
.portfolio-cta h2 em { color: var(--acid); font-family: Georgia,serif; font-weight: 400; }
.portfolio-cta-actions { min-width: min(100%,19rem); display: flex; flex-direction: column; gap: 1rem; }

.reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .cursor { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 5vw; }
  .desktop-nav, .availability { display: none; }
  .menu-toggle { display: block; }
  .mobile-menu { display: grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 9rem; }
  .hero-copy { padding: 0; }
  .hero h1 { font-size: clamp(3.4rem,11.5vw,6rem); }
  .hero h1 .outline { transform: none; }
  .hero-portrait { width: min(72vw,32rem); margin-top: 2rem; justify-self: end; }
  .hero-role-one { left: -3rem; }
  .hero-role-two { right: 0; }
  .hero-meta { position: static; grid-column: 1; margin-top: 3rem; }
  .about-grid, .journey-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-visuals { grid-template-columns: 1fr 1fr; }
  .manifesto { order: 3; grid-column: 1 / -1; display: flex; align-items: end; gap: 2rem; }
  .journey-heading { position: static; }
  .service { grid-template-columns: 3rem 1fr 2rem; padding: 1.5rem 0; }
  .service p { grid-column: 2; }
  .service-arrow { grid-column: 3; grid-row: 1; }
  .portrait-sticky { grid-template-columns: minmax(17rem,.85fr) minmax(0,1.15fr); padding-inline: 3vw; }
  .portrait-copy { padding: 2.25rem; }
  .portrait-quote { font-size: clamp(2.8rem,5.6vw,4.5rem); }
  .cmm-heading { grid-template-columns: 1fr; gap: 2rem; }
  .cmm-lead-grid { grid-template-columns: 1fr; }
  .cmm-lead-grid figure { height: 62vw; min-height: 24rem; }
  .cmm-mosaic { grid-template-columns: repeat(3,1fr); }
  .expo-heading { grid-template-columns: 1fr; gap: 2rem; }
  .expo-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(25rem,65vw) minmax(13rem,32vw); }
  .expo-photo-lead { grid-column: 1 / -1; grid-row: 1; }
  .convening-intro, .news-top { grid-template-columns: 1fr; gap: 2rem; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 26rem; }
  .news-heading { grid-template-columns: 1fr; }
  .videos-heading { grid-template-columns: 1fr; gap: 2rem; }
  .video-card, .video-card:nth-child(1), .video-card:nth-child(4) { grid-column: span 6; }
  .program-hero { grid-template-columns: 1fr; padding-top: 9rem; }
  .program-hero-visual { min-height: 65vw; }
  .program-section-head, .program-overview { grid-template-columns: 1fr; gap: 2.5rem; }
  .focus-grid, .program-offers { grid-template-columns: 1fr; }
  .focus-card { min-height: 15rem; }
  .program-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(28rem,70vw) repeat(2,minmax(14rem,34vw)); }
  .program-gallery-grid figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .program-cta { grid-template-columns: 1fr; align-items: start; }
  .about-hero { grid-template-columns: 1fr; padding-top: 9rem; }
  .about-hero-copy { padding-bottom: 0; }
  .about-hero-portrait { min-height: 42rem; width: min(100%,38rem); justify-self: center; }
  .about-story-grid, .about-leadership-head, .about-journey-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-journey-intro { position: static; }
  .about-craft { grid-template-columns: 1fr; }
  .about-craft-lead { min-height: 70vw; max-height: 50rem; }
  .about-closing { grid-template-columns: .8fr 1.2fr; }
  .portfolio-hero { grid-template-columns: 1fr; padding-top: 9rem; }
  .portfolio-hero-gallery { min-height: 65vw; }
  .portfolio-work-head { grid-template-columns: 1fr; gap: 2.5rem; }
  .work-card, .work-card-wide { grid-column: span 6; }
  .portfolio-cta { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --header-h: 4.7rem; }
  .section { padding: 6rem 5vw; }
  .hero { padding: 8rem 5vw 3rem; }
  .hero h1 { font-size: clamp(3rem,15vw,4.8rem); margin-top: 1.3rem; }
  .hero h1 span { white-space: normal; }
  .hero-intro { margin-bottom: 2rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .hero-portrait { width: 86vw; }
  .image-index { display: none; }
  .hero-role { min-width: 11rem; padding: .7rem .8rem; }
  .hero-role-one { left: -1rem; bottom: 18%; }
  .hero-role-two { right: -.5rem; bottom: 5%; }
  .about .section-label, .expertise .section-label, .journey .section-label { margin-bottom: 3rem; }
  .about-visuals { display: block; margin-top: 5rem; }
  .photo { margin-bottom: 1rem; }
  .manifesto { display: block; padding: 2rem 0 3rem; }
  .expertise-heading h2 { margin-bottom: 4rem; }
  .service { grid-template-columns: 2rem 1fr 1.5rem; gap: .75rem; }
  .service h3 { font-size: 1.7rem; }
  .service p { font-size: .92rem; }
  .portrait-story { height: auto; min-height: 0; padding: 5.5rem 5vw; }
  .portrait-sticky { position: relative; height: auto; min-height: 0; overflow: visible; grid-template-columns: 1fr; padding: 0; gap: 1rem; }
  .portrait-copy { min-height: 34rem; padding: 2rem; clip-path: polygon(0 0, calc(100% - 2rem) 0, 100% 2rem, 100% 100%, 0 100%); }
  .portrait-quote { font-size: clamp(2.65rem,13vw,4rem); margin: 2.5rem 0; }
  .portrait-gallery { min-height: 72svh; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), calc(100% - 2rem) 100%, 0 100%); }
  .portrait-slide { object-position: 50% 20%; }
  .portrait-caption { left: 1.25rem; bottom: 1.35rem; max-width: 10rem; line-height: 1.45; }
  .portrait-controls { right: 1.25rem; bottom: 1.45rem; }
  .portrait-dot { width: 2rem; }
  .cmm-feature { margin-top: 5rem; padding: 2rem 1rem 1rem; }
  .cmm-heading h3 { font-size: clamp(3.2rem,16vw,5rem); }
  .cmm-lead-grid figure { height: 70vw; min-height: 19rem; }
  .cmm-mosaic { grid-template-columns: 1fr 1fr; }
  .cmm-mosaic img:last-child { grid-column: 1 / -1; aspect-ratio: 1.6; }
  .expo-feature { margin-top: 5rem; }
  .expo-heading h3 { font-size: clamp(3.5rem,17vw,5.5rem); }
  .expo-gallery { grid-template-columns: 1fr; grid-template-rows: 72vw 58vw 58vw; }
  .expo-photo-lead { grid-column: auto; grid-row: auto; }
  .expo-filmstrip { grid-template-columns: 1fr; }
  .expo-filmstrip img { aspect-ratio: 1.45; }
  .timeline-item { grid-template-columns: 1fr; gap: .8rem; }
  .ventures { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .client-grid span { min-height: 6rem; font-size: .86rem; }
  .news-grid { grid-template-columns: 1fr; }
  .video-card, .video-card:nth-child(1), .video-card:nth-child(4) { grid-column: 1 / -1; }
  .news-card { min-height: 23rem; padding: 1.5rem; }
  .news-tag { top: 1.5rem; right: 1.5rem; }
  .contact { padding-bottom: 8rem; }
  .contact h2 { font-size: clamp(4rem,18vw,6rem); }
  .contact-orbit { width: 80vw; right: -35vw; top: 12%; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .contact footer { grid-template-columns: 1fr auto; row-gap: .8rem; }
  .contact footer p:nth-child(2) { display: none; }
  .program-hero { padding: 7rem 5vw 3rem; }
  .program-hero h1 { font-size: clamp(3.6rem,17vw,5.8rem); }
  .program-hero-visual { min-height: 105vw; }
  .program-statbar { grid-template-columns: 1fr; }
  .program-stat { min-height: 7rem; border-right: 0; border-bottom: 1px solid rgba(10,10,10,.2); }
  .program-section { padding: 6rem 5vw; }
  .program-gallery { padding: 1rem 5vw 6rem; }
  .program-gallery-grid { grid-template-columns: 1fr; grid-template-rows: 95vw repeat(4,65vw); }
  .program-gallery-grid figure:first-child { grid-column: auto; }
  .program-cta { padding: 6rem 5vw; }
  .program-footer { flex-direction: column; }
  .about-hero { padding: 8rem 5vw 0; }
  .about-hero h1 { font-size: clamp(3.6rem,17vw,5.8rem); }
  .about-hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .about-hero-portrait { min-height: 34rem; }
  .about-hero-portrait > p { right: 0; bottom: 1rem; }
  .about-story, .about-leadership, .about-journey { padding: 6rem 5vw; }
  .about-stats { grid-template-columns: 1fr; margin-top: 4rem; }
  .about-stats div { min-height: 8.5rem; border-right: 0; border-bottom: 1px solid #aaa9a3; }
  .about-stats div:last-child { border-bottom: 0; }
  .about-craft-lead { min-height: 115vw; }
  .about-craft-copy { padding: 5rem 5vw; }
  .about-leadership-head { margin-bottom: 3rem; }
  .about-leadership-grid { grid-template-columns: 1fr; }
  .about-lead-card { min-height: 20rem; }
  .about-timeline article { grid-template-columns: 1fr; gap: .8rem; }
  .about-closing { grid-template-columns: 1fr; }
  .about-closing-image { min-height: 115vw; max-height: 44rem; }
  .about-closing-copy { padding: 5rem 5vw; }
  .about-closing-copy h2 { font-size: clamp(3.7rem,16vw,5.8rem); }
  .portfolio-hero { padding: 8rem 5vw 3rem; }
  .portfolio-hero h1 { font-size: clamp(3.8rem,16vw,5.8rem); }
  .portfolio-hero-gallery { min-height: 115vw; grid-template-columns: 1fr 1fr; grid-template-rows: 1.35fr .65fr; }
  .portfolio-hero-gallery .portfolio-hero-main { grid-column: 1 / -1; grid-row: 1; }
  .portfolio-disciplines { grid-template-columns: 1fr; }
  .portfolio-disciplines div { min-height: 7rem; border-right: 0; border-bottom: 1px solid rgba(10,10,10,.22); }
  .portfolio-work { padding: 6rem 5vw; }
  .work-filter { flex: 1 1 calc(50% - .65rem); }
  .work-card, .work-card-wide { grid-column: 1 / -1; }
  .work-image, .work-card-wide .work-image { aspect-ratio: 1.2; }
  .work-card-tall .work-image { aspect-ratio: 1; }
  .portfolio-client-line { grid-template-columns: 1fr 1fr; }
  .portfolio-cta { padding: 6rem 5vw; }
  .portfolio-cta h2 { font-size: clamp(3.6rem,15vw,5.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .cursor { display: none; }
}
