:root {
  --ink: #0a1220;
  --ink-2: #111c2c;
  --paper: #f3f0e9;
  --paper-2: #e8e4db;
  --white: #ffffff;
  --muted: #637083;
  --line: rgba(10,18,32,.14);
  --accent: #27c3ad;
  --accent-dark: #0f8f7f;
  --blue: #315eff;
  --orange: #ff7a45;
  --max: 1240px;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(10,18,32,.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--accent); color: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 999; background: white; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243,240,233,.90);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(10,18,32,.09);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--ink); color: white;
  font-weight: 900; font-size: 13px; letter-spacing: -.02em;
  transform: rotate(-4deg);
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong { font-size: 14px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 3px; color: #798393; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: 13px; font-weight: 750; }
.main-nav a { transition: opacity .2s ease; }
.main-nav a:not(.nav-cta):hover { opacity: .56; }
.nav-cta { background: var(--ink); color: white; padding: 10px 16px; border-radius: 999px; }
.nav-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero { position: relative; overflow: hidden; padding: 82px 0 96px; background: var(--paper); }
.hero-backdrop { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 16% 30%, rgba(39,195,173,.13), transparent 24%), linear-gradient(90deg, transparent 49.8%, rgba(10,18,32,.06) 50%, transparent 50.2%); }
.hero-layout { position: relative; display: grid; grid-template-columns: 1.04fr .96fr; gap: 72px; align-items: center; }
.kicker, .section-index { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; color: #5a6676; }
.kicker span { width: 28px; height: 3px; background: var(--accent); border-radius: 10px; }
.hero h1 { margin: 22px 0 28px; font-size: clamp(62px, 7.2vw, 108px); line-height: .83; letter-spacing: -.075em; font-weight: 900; }
.hero h1 > span { display: block; }
.hero h1 .hero-verb { font-weight: 650; color: #243247; }
.hero h1 .accent { color: var(--accent-dark); }
.hero-lead { max-width: 690px; margin: 0; font-size: clamp(19px, 2vw, 24px); line-height: 1.45; letter-spacing: -.018em; color: #344156; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 48px; padding: 12px 20px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 850; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover { background: #17253a; }
.button-ghost { border: 1px solid var(--line); background: rgba(255,255,255,.42); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--line); color: #6c7888; font-size: 12px; }
.hero-meta span { display: flex; gap: 7px; }
.hero-meta b { color: var(--ink); }

.hero-visual { position: relative; min-height: 680px; }
.hero-photo { position: absolute; inset: 0 12% 12% 6%; margin: 0; overflow: hidden; border-radius: 38px 38px 120px 38px; background: var(--ink); box-shadow: var(--shadow); }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(10,18,32,.25)); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 56% 38%; }
.hero-note { position: absolute; z-index: 3; left: 0; bottom: 0; width: min(390px, 78%); background: var(--accent); color: var(--ink); border-radius: 24px; padding: 24px 26px; display: grid; grid-template-columns: auto 1fr; gap: 18px; box-shadow: 0 16px 44px rgba(10,18,32,.15); }
.note-index { font-size: 10px; letter-spacing: .16em; font-weight: 900; }
.hero-note p { margin: 0; font-size: 13px; line-height: 1.45; }
.hero-note strong { font-size: 15px; }
.hero-monogram { position: absolute; right: -1%; top: 2%; z-index: 2; font-size: 110px; line-height: 1; font-weight: 950; letter-spacing: -.09em; color: rgba(255,255,255,.16); transform: rotate(90deg); transform-origin: center; pointer-events: none; }

.manifesto { padding: 118px 0 128px; background: white; }
.manifesto-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 66px; }
.manifesto h2, .workshop-copy h2, .expertise-intro h2, .profile-copy h2, .media-head h2, .contact-copy h2 { margin: 14px 0 0; font-size: clamp(44px, 5.7vw, 74px); line-height: .98; letter-spacing: -.055em; }
.manifesto h2 em { font-style: normal; color: var(--accent-dark); }
.manifesto-head > p { margin: 0; max-width: 520px; color: var(--muted); font-size: 18px; }
.funnel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 30px; overflow: hidden; }
.funnel-card { min-height: 520px; padding: 34px; background: #fbfaf7; border-right: 1px solid var(--line); display: flex; flex-direction: column; position: relative; }
.funnel-card:last-child { border-right: 0; }
.funnel-card.is-accent { background: var(--ink); color: white; transform: translateY(-14px); border-radius: 28px; margin: -1px 0; box-shadow: 0 22px 55px rgba(10,18,32,.16); border: 0; }
.funnel-top { display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; font-weight: 900; color: #8993a0; }
.is-accent .funnel-top { color: #8ea0b6; }
.funnel-card h3 { margin: 84px 0 14px; font-size: clamp(44px, 4.6vw, 62px); line-height: .92; letter-spacing: -.055em; }
.is-accent h3 { color: var(--accent); }
.funnel-card p { margin: 0; color: #5f6b7b; font-size: 15px; min-height: 118px; }
.is-accent p { color: rgba(255,255,255,.68); }
.funnel-card ul { list-style: none; margin: auto 0 0; padding: 0; border-top: 1px solid rgba(10,18,32,.12); }
.is-accent ul { border-color: rgba(255,255,255,.16); }
.funnel-card li { padding: 10px 0; border-bottom: 1px solid rgba(10,18,32,.09); font-size: 12px; font-weight: 750; }
.is-accent li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.82); }

.workshop-section { padding: 124px 0; background: var(--ink); color: white; overflow: hidden; }
.workshop-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.section-index.light { color: #8fa0b4; }
.workshop-copy h2 { max-width: 610px; }
.workshop-lead { margin: 26px 0 34px; max-width: 620px; color: rgba(255,255,255,.68); font-size: 18px; }
.workshop-lead strong { color: white; }
.workshop-flow { margin: 38px 0; border-top: 1px solid rgba(255,255,255,.16); }
.workshop-flow > div { display: grid; grid-template-columns: 40px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.workshop-flow b { color: var(--accent); font-size: 11px; letter-spacing: .08em; }
.workshop-flow span { color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.45; }
.workshop-flow span strong { display: block; margin-bottom: 2px; color: white; font-size: 15px; }
.button-light { background: white; color: var(--ink); }
.workshop-gallery { position: relative; min-height: 720px; }
.workshop-gallery figure { margin: 0; overflow: hidden; position: absolute; box-shadow: 0 25px 65px rgba(0,0,0,.28); }
.workshop-gallery img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main { left: 4%; top: 4%; width: 76%; height: 54%; border-radius: 24px; }
.gallery-main figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px; font-size: 11px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.65)); }
.gallery-small.one { width: 49%; height: 34%; right: 0; bottom: 6%; border-radius: 22px; transform: rotate(2deg); }
.gallery-small.two { width: 43%; height: 31%; left: 0; bottom: 0; border-radius: 22px; transform: rotate(-2deg); }
.gallery-label { position: absolute; z-index: 5; right: 1%; top: 48%; width: 190px; background: var(--accent); color: var(--ink); padding: 20px; border-radius: 18px; transform: rotate(2deg); }
.gallery-label span { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; margin-bottom: 8px; }
.gallery-label strong { font-size: 17px; line-height: 1.15; }

.expertise-section { padding: 122px 0; background: var(--paper); }
.expertise-intro { display: grid; grid-template-columns: 170px 1fr .65fr; gap: 40px; align-items: end; padding-bottom: 52px; border-bottom: 1px solid var(--line); }
.expertise-intro h2 { margin: 0; max-width: 760px; }
.expertise-intro p { margin: 0 0 4px; color: var(--muted); }
.expertise-list { border-bottom: 1px solid var(--line); }
.expertise-row { display: grid; grid-template-columns: 80px .8fr 1.2fr; gap: 38px; align-items: start; padding: 36px 0; border-top: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.expertise-row:first-child { border-top: 0; }
.expertise-row:hover { padding-left: 14px; padding-right: 14px; background: rgba(255,255,255,.44); }
.expertise-no { color: var(--accent-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.expertise-row h3 { margin: 0; font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.expertise-row p { margin: 0; max-width: 680px; color: var(--muted); }

.profile-section { padding: 124px 0; background: #122033; color: white; overflow: hidden; }
.profile-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 84px; align-items: center; }
.profile-visual { position: relative; min-height: 660px; }
.stage-photo { position: absolute; inset: 0 10% 5% 0; margin: 0; border-radius: 34px 34px 100px 34px; overflow: hidden; }
.stage-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.profile-portrait { position: absolute; width: 180px; height: 180px; right: 0; bottom: 0; border-radius: 50%; overflow: hidden; border: 8px solid #122033; box-shadow: 0 18px 44px rgba(0,0,0,.25); }
.profile-portrait img { width: 100%; height: 100%; object-fit: cover; }
.profile-copy h2 { max-width: 680px; }
.profile-lead { margin: 25px 0 34px; color: rgba(255,255,255,.72); font-size: 18px; max-width: 650px; }
.timeline { border-top: 1px solid rgba(255,255,255,.16); }
.timeline-item { display: grid; grid-template-columns: 112px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.timeline-item > span { color: #91a2b7; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.timeline-item strong { display: block; font-size: 15px; }
.timeline-item p { margin: 4px 0 0; color: rgba(255,255,255,.60); font-size: 13px; }
.profile-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.profile-links a { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; font-size: 12px; font-weight: 800; }

.media-section { padding: 124px 0; background: white; }
.media-head { display: grid; grid-template-columns: 170px 1fr .65fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.media-head h2 { margin: 0; }
.media-head p { margin: 0 0 4px; color: var(--muted); }
.media-feature { display: grid; grid-template-columns: .76fr 1.24fr; border-radius: 30px; overflow: hidden; background: var(--paper); min-height: 560px; }
.media-image { position: relative; min-height: 560px; background: var(--ink); }
.media-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.media-image span { position: absolute; left: 18px; bottom: 18px; background: var(--ink); color: white; padding: 8px 11px; border-radius: 999px; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.media-copy { padding: 58px; align-self: center; }
.media-label { color: var(--accent-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; }
.media-copy h3 { margin: 14px 0 20px; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -.045em; }
.media-copy p { max-width: 700px; color: var(--muted); font-size: 16px; }
.media-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.media-links a { border-bottom: 1px solid var(--ink); padding-bottom: 2px; font-size: 12px; font-weight: 850; }
.publication-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.publication { min-height: 280px; border: 1px solid var(--line); border-radius: 22px; padding: 28px; display: flex; flex-direction: column; transition: transform .2s ease, background .2s ease; }
.publication:hover { transform: translateY(-3px); background: #faf9f6; }
.publication > span { color: #87919e; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.publication h3 { margin: 38px 0 12px; font-size: 24px; line-height: 1.12; letter-spacing: -.03em; }
.publication p { color: var(--muted); font-size: 13px; }
.publication b, .publication > a { margin-top: auto; color: var(--accent-dark); font-size: 12px; font-weight: 900; }
.publication-contact { background: var(--accent); border-color: transparent; }
.publication-contact > span, .publication-contact p { color: rgba(10,18,32,.66); }
.publication-contact > a { color: var(--ink); }

.personal-note { background: white; padding: 0 0 54px; }
.personal-note-inner { padding-top: 24px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 190px 1fr auto; gap: 32px; align-items: center; }
.personal-note-inner > span { color: #8993a0; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; }
.personal-note p { margin: 0; max-width: 750px; color: #7a8491; font-size: 12px; }
.personal-note p strong { color: #4f5a68; }
.personal-note-inner > div { display: flex; gap: 14px; white-space: nowrap; }
.personal-note a { color: #6d7785; font-size: 11px; font-weight: 800; }

.contact-section { padding: 122px 0; background: #08111e; color: white; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 78px; align-items: start; }
.contact-copy { position: sticky; top: 110px; }
.contact-copy h2 { max-width: 600px; }
.contact-copy > p { margin: 26px 0; max-width: 560px; color: rgba(255,255,255,.68); font-size: 17px; }
.contact-prompt { margin: 38px 0; padding: 22px 24px; border-left: 4px solid var(--accent); background: rgba(255,255,255,.05); max-width: 570px; }
.contact-prompt span { display: block; color: #8ea1b8; font-size: 9px; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; margin-bottom: 8px; }
.contact-prompt strong { font-size: 15px; line-height: 1.45; }
.contact-details { display: grid; gap: 10px; }
.contact-details p { display: grid; grid-template-columns: 90px 1fr; gap: 10px; margin: 0; font-size: 13px; }
.contact-details span { color: #8192a7; font-size: 9px; text-transform: uppercase; letter-spacing: .11em; font-weight: 900; padding-top: 2px; }
.contact-details a { color: white; font-weight: 750; }
.contact-form { background: white; color: var(--ink); border-radius: 30px; padding: 38px; box-shadow: 0 26px 70px rgba(0,0,0,.24); }
.form-kicker { margin-bottom: 26px; font-size: 10px; text-transform: uppercase; letter-spacing: .17em; font-weight: 900; color: #8a94a1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 17px; color: #354153; font-size: 11px; font-weight: 850; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid #ccd3dc; border-radius: 0; background: transparent; padding: 11px 0; color: var(--ink); outline: none; transition: border .2s ease; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--accent-dark); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.optional { color: #929ba7; font-weight: 500; }
.checkbox { grid-template-columns: 18px 1fr !important; gap: 10px !important; align-items: start; font-weight: 500 !important; line-height: 1.45; }
.checkbox input { width: 17px; height: 17px; margin-top: 2px; }
.checkbox a { text-decoration: underline; }
.button-form { width: 100%; border: 0; border-radius: 14px; background: var(--accent); color: var(--ink); min-height: 54px; justify-content: space-between; padding: 14px 18px; cursor: pointer; }
.button-form span { font-size: 18px; }
.form-note { margin: 12px 0 0; color: #929ba7; font-size: 10px; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { background: #050a12; color: rgba(255,255,255,.68); padding: 42px 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; }
.footer-branding { display: flex; align-items: center; gap: 12px; }
.footer-branding .brand-mark { background: white; color: var(--ink); }
.footer-branding > div { display: grid; line-height: 1.2; }
.footer-branding strong { color: white; font-size: 13px; }
.footer-branding small { margin-top: 3px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; font-size: 11px; }
.footer-links a:hover { color: white; }
.footer-copy { font-size: 10px; white-space: nowrap; }

/* Rechtstexte */
.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { padding: 22px 0; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.8); }
.legal-main { padding: 70px 0 100px; }
.legal-content { max-width: 860px; background: white; border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px,5vw,58px); }
.legal-content h1 { margin-top: 0; font-size: clamp(42px,6vw,70px); line-height: 1; letter-spacing: -.05em; }
.legal-content h2 { margin-top: 38px; font-size: 26px; letter-spacing: -.025em; }
.legal-content h3 { margin-top: 26px; font-size: 18px; }
.legal-content p, .legal-content li { color: #4f5d6f; }
.legal-back { color: var(--accent-dark); font-weight: 850; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .expertise-row, .publication { transition: none; }
}

@media (max-width: 1040px) {
  .hero-layout, .workshop-layout, .profile-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { min-height: 720px; width: min(760px, 100%); }
  .manifesto-head { grid-template-columns: 1fr; gap: 22px; }
  .expertise-intro, .media-head { grid-template-columns: 1fr; gap: 14px; }
  .expertise-intro h2, .media-head h2 { margin: 0; }
  .workshop-gallery { min-height: 700px; }
  .profile-visual { min-height: 720px; width: min(760px, 100%); }
  .contact-copy { position: static; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--max)); }
  .main-nav { position: absolute; display: none; top: 70px; left: 15px; right: 15px; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; color: var(--ink); }
  .main-nav .nav-cta { margin-top: 5px; color: white; text-align: center; }
  .nav-toggle { display: block; }
  .brand-copy small { display: none; }
  .hero { padding: 64px 0 78px; }
  .hero h1 { font-size: clamp(58px, 15vw, 84px); }
  .hero-visual { min-height: 610px; }
  .hero-photo { inset: 0 5% 14% 2%; border-radius: 26px 26px 76px 26px; }
  .hero-note { width: min(390px, 90%); }
  .hero-monogram { font-size: 80px; }
  .manifesto, .workshop-section, .expertise-section, .profile-section, .media-section, .contact-section { padding: 86px 0; }
  .funnel-grid { grid-template-columns: 1fr; overflow: visible; border: 0; gap: 12px; }
  .funnel-card { min-height: auto; border: 1px solid var(--line); border-radius: 22px; }
  .funnel-card.is-accent { transform: none; margin: 0; }
  .funnel-card h3 { margin-top: 44px; }
  .funnel-card p { min-height: auto; margin-bottom: 26px; }
  .workshop-gallery { min-height: 610px; }
  .expertise-row { grid-template-columns: 48px 1fr; gap: 18px; }
  .expertise-row p { grid-column: 2; }
  .profile-visual { min-height: 610px; }
  .media-feature { grid-template-columns: 1fr; }
  .media-image { min-height: 500px; max-height: 620px; }
  .publication-grid { grid-template-columns: 1fr; }
  .publication { min-height: 230px; }
  .personal-note-inner { grid-template-columns: 1fr; gap: 10px; }
  .personal-note-inner > div { flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  .nav-wrap { height: 68px; }
  .brand-mark { width: 38px; height: 38px; }
  .hero { padding-top: 52px; }
  .hero h1 { font-size: clamp(52px, 17vw, 70px); }
  .hero-lead { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-meta { gap: 12px; display: grid; }
  .hero-visual { min-height: 520px; }
  .hero-note { left: 0; bottom: 0; padding: 18px; border-radius: 18px; }
  .hero-monogram { display: none; }
  .manifesto h2, .workshop-copy h2, .expertise-intro h2, .profile-copy h2, .media-head h2, .contact-copy h2 { font-size: 45px; }
  .funnel-card { padding: 26px; }
  .workshop-gallery { min-height: 500px; }
  .gallery-main { width: 90%; height: 48%; }
  .gallery-small.one { width: 54%; height: 31%; }
  .gallery-small.two { width: 49%; height: 29%; }
  .gallery-label { width: 150px; top: 44%; padding: 14px; }
  .expertise-row { grid-template-columns: 1fr; }
  .expertise-row p { grid-column: 1; }
  .profile-visual { min-height: 500px; }
  .stage-photo { inset: 0 4% 8% 0; }
  .profile-portrait { width: 126px; height: 126px; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .media-copy { padding: 30px 24px; }
  .media-image { min-height: 420px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; border-radius: 22px; }
  .contact-details p { grid-template-columns: 1fr; gap: 1px; }
}
.brand-name { font-weight: 850; font-size: 14px; }
