:root {
    --paper: #f3f1ec;
    --paper-strong: #ebe8e1;
    --ink: #111111;
    --muted: #4f4c47;
    --dark: #090909;
    --dark-soft: #151515;
    --line: rgba(17, 17, 17, 0.18);
    /* Globales Layout-/Spacing-System */
    --shell: min(1440px, calc(100vw - 64px));
    --shell-wide: min(1720px, calc(100vw - 64px));
    --header-h: 88px;
    --section-space: clamp(112px, 10vw, 180px);
    --section-space-compact: clamp(84px, 7vw, 132px);
    --section-heading-gap: clamp(58px, 7vw, 110px);
    --grid-gap: clamp(34px, 5vw, 84px);
    --label-title-gap: clamp(18px, 1.8vw, 28px);
    --copy-gap: clamp(28px, 3vw, 44px);
    --row-space: clamp(34px, 4vw, 64px);
    --project-gap: clamp(110px, 12vw, 190px);
    --rule-gap: 18px;
    /* Projektseiten: dieselben vertikalen Rhythmusstufen fuer alle Projekt-Details */
    --project-hero-top: clamp(24px, 2.2vw, 38px);
    --project-title-media-gap: clamp(46px, 4vw, 68px);
    --project-content-gap: clamp(38px, 3.5vw, 58px);
    --project-video-max: 1080px;
    --editorial-grid: minmax(140px, 1fr) minmax(0, 4fr);

    /* Wiederkehrende Typografie-Stufen */
    --display-xl: clamp(82px, 12vw, 205px);
    --display-lg: clamp(68px, 9vw, 155px);
    --display-md: clamp(62px, 7.3vw, 126px);
    --copy-lg: clamp(20px, 1.7vw, 28px);
    /* Einheitliche Laufweite für grosse Editorial-Headlines */
    --display-tracking: -.045em;
    --display-tracking-tight: -.05em;
    --title-tracking: -.04em;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --hero-progress: 0;
    --font-sans: "Manrope", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }

/*
 * Display-Typografie: Bei sehr grossen Versal-Headlines deaktivieren wir
 * das paarweise Font-Kerning. So bleiben problematische Kombinationen wie
 * KA, LA oder VA optisch etwas offener, ohne die gesamte Laufweite unnötig
 * stark zu vergrössern. Die globale Laufweite bleibt über die Variablen oben
 * zentral steuerbar.
 */
.hero__title,
.work-item__title,
.statement h2,
.about__copy h2,
.photo-strip__header h2,
.showreel__heading h2,
.contact h2,
.content-page h1,
.archive-work__header h1,
.project-hero h1,
.error-page h1,
.standard-entry h1,
.about-page__hero h1,
.about-page__bio h2,
.awards__heading h2,
.about-page__contact h2 {
    font-kerning: none;
    font-feature-settings: "kern" 0;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
::selection { background: var(--ink); color: var(--paper); }

.shell { width: var(--shell); margin-inline: auto; }
.shell-wide { width: var(--shell-wide); margin-inline: auto; }
.section-pad { padding-block: var(--section-space); }
section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

.skip-link {
    position: fixed; left: 20px; top: -80px; z-index: 9999;
    background: var(--ink); color: var(--paper); padding: 12px 18px;
}
.skip-link:focus { top: 20px; }

.eyebrow {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 650;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    position: relative;
    gap: .35em;
    align-items: center;
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.text-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); transform-origin: left; }

/* Navigation */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    transition: height .45s var(--ease), background-color .45s ease, backdrop-filter .45s ease, border-color .45s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    --header-h: 64px;
    background: rgba(243, 241, 236, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(17, 17, 17, .08);
}
.site-header__inner {
    width: var(--shell-wide);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.site-brand {
    font-size: 12px;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 750;
    white-space: nowrap;
}
.desktop-nav { margin-left: auto; }
.site-menu {
    display: flex;
    align-items: center;
    gap: clamp(22px, 3vw, 52px);
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-menu a {
    position: relative;
    display: inline-block;
    font-size: 11px;
    font-weight: 650;
    letter-spacing: .09em;
    text-transform: uppercase;
    padding-block: 9px;
}
.site-menu a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 3px;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s var(--ease);
}
.site-menu a:hover::after, .site-menu a:focus-visible::after, .site-menu .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}
.site-menu li:last-child a { font-weight: 780; }
.menu-toggle {
    display: none;
    appearance: none;
    border: 0;
    background: transparent;
    padding: 8px 0;
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    cursor: pointer;
    gap: 8px;
}
.menu-toggle__icon { display: inline-block; font-size: 17px; line-height: .5; transition: transform .35s var(--ease); }
.menu-open .menu-toggle__icon { transform: rotate(45deg); }

.mobile-menu {
    position: fixed;
    z-index: 900;
    inset: 0;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__inner {
    width: var(--shell-wide);
    height: 100%;
    margin-inline: auto;
    padding-top: 125px;
    padding-bottom: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
    font-size: clamp(42px, 11vw, 78px);
    line-height: .98;
    font-weight: 620;
    letter-spacing: var(--title-tracking);
    border-bottom: 1px solid var(--line);
    padding: 18px 0 22px;
}
.mobile-menu__meta { display: flex; gap: 24px; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

/* Hero */
.hero {
    min-height: 150vh;
    position: relative;
    overflow: clip;
}
.hero__copy {
    height: 100vh;
    min-height: 680px;
    padding-top: calc(var(--header-h) + 76px);
    padding-bottom: 128px;
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
}
.hero__title {
    position: relative;
    z-index: 2;
    margin: auto 0 38px;
    font-size: clamp(64px, 11.2vw, 188px);
    line-height: .78;
    font-weight: 570;
    letter-spacing: var(--display-tracking);
    text-transform: uppercase;
    transform: translateY(calc(var(--hero-progress) * -55px));
    opacity: calc(1 - (var(--hero-progress) * .9));
    transition: opacity .08s linear;
}
.hero__title span { display: block; }
.hero__title span:nth-child(2) { padding-left: 8.5vw; }
.hero__scroll {
    align-self: flex-start;
    position: relative;
    z-index: 3;
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 11px;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: .09em;
    opacity: calc(1 - (var(--hero-progress) * 1.8));
}
.hero__visual-wrap {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__visual {
    position: sticky;
    top: 0;
    margin-left: auto;
    width: calc(52vw + (48vw * var(--hero-progress)));
    height: calc(43vh + (57vh * var(--hero-progress)));
    transform: translateY(calc(57vh - (57vh * var(--hero-progress))));
    overflow: hidden;
    background: var(--dark);
}
.hero__media { width: 100%; height: 100%; object-fit: cover; }

/* Placeholder visuals */
.media-placeholder {
    width: 100%; height: 100%; min-height: 380px;
    display: grid; place-items: center;
    position: relative; overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(255,255,255,.11), transparent 29%),
        linear-gradient(135deg, #242424, #0c0c0c 58%, #202020);
    color: rgba(255,255,255,.62);
}
.media-placeholder::before {
    content: "";
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 36px 36px;
}
.media-placeholder span { position: relative; z-index: 1; font-size: 10px; letter-spacing: .15em; font-weight: 700; }
.media-placeholder--hero { min-height: 100%; }
.media-placeholder--portrait { min-height: 760px; }
.media-placeholder--dark { min-height: min(70vh, 820px); }

/* Selected work */
.selected-work { position: relative; z-index: 3; background: var(--paper); }
.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 30px;
    margin-bottom: var(--section-heading-gap);
    padding-bottom: var(--rule-gap);
    border-bottom: 1px solid var(--line);
}
.work-list { display: flex; flex-direction: column; gap: var(--project-gap); }
.work-item { width: min(78%, 1280px); }
.work-item--offset { align-self: flex-end; width: min(61%, 980px); }
.work-item__link { display: block; }
.work-item__meta {
    display: flex; justify-content: space-between; gap: 20px;
    margin-bottom: 12px;
    font-size: 10px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase;
}
.work-item__title {
    margin: 0 0 var(--label-title-gap);
    font-size: clamp(48px, 7vw, 118px);
    line-height: .86;
    letter-spacing: var(--display-tracking-tight);
    font-weight: 560;
    text-transform: uppercase;
}
.work-item__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--dark); cursor: none; }
.work-item--offset .work-item__media { aspect-ratio: 4 / 5; }
.work-item__media img, .work-item__preview { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), opacity .45s ease; }
.work-item__preview { position: absolute; inset: 0; opacity: 0; }
.work-item__link:hover .work-item__media img { transform: scale(1.025); }
.work-item__link:hover .work-item__preview { opacity: 1; transform: scale(1.01); }
.work-item__cursor {
    position: absolute; z-index: 4; left: 0; top: 0;
    transform: translate(calc(var(--pointer-x, 50%) - 50%), calc(var(--pointer-y, 50%) - 50%));
    width: 92px; height: 92px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(243,241,236,.92); color: var(--ink);
    font-size: 9px; font-weight: 750; letter-spacing: .09em;
    opacity: 0; pointer-events: none;
    transition: opacity .2s ease;
}
.work-item__media:hover .work-item__cursor { opacity: 1; }

/* Statement */
.statement { min-height: 94vh; display: flex; align-items: center; }
.statement__inner { display: grid; grid-template-columns: var(--editorial-grid); column-gap: var(--grid-gap); row-gap: var(--section-heading-gap); align-items: start; }
.statement h2 {
    margin: 0;
    font-size: clamp(64px, 9.4vw, 158px);
    line-height: .83;
    letter-spacing: var(--display-tracking);
    font-weight: 560;
}
.statement h2 span { display: block; }
.statement__small { grid-column: 2; width: min(460px, 100%); margin: 0; font-size: clamp(18px, 2vw, 27px); line-height: 1.25; letter-spacing: -.025em; }

/* About */
.about { background: var(--paper-strong); }
.about__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(340px, .7fr); gap: var(--section-heading-gap); align-items: end; }
.about__media { overflow: hidden; aspect-ratio: 4 / 5; }
.about__media img { width: 100%; height: 115%; object-fit: cover; transform: translateY(var(--parallax-y, -6%)); }
.about__copy { padding-bottom: clamp(0px, 4vw, 60px); }
.about__copy h2 { margin: var(--label-title-gap) 0 var(--copy-gap); max-width: 7ch; font-size: clamp(56px, 6.7vw, 110px); line-height: .82; letter-spacing: var(--display-tracking); font-weight: 560; }
.about__text { margin: 0 0 var(--copy-gap); max-width: 540px; font-size: clamp(18px, 1.7vw, 25px); line-height: 1.38; letter-spacing: -.025em; }
.about__role { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding-block: var(--rule-gap); margin-bottom: var(--copy-gap); font-size: 11px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }

/* Horizontal photography */
.photo-strip { position: relative; background: var(--paper); }
.photo-strip__sticky { position: sticky; top: 0; height: 100vh; min-height: 720px; overflow: hidden; padding-top: calc(var(--header-h) + var(--copy-gap)); }
.photo-strip__header { display: grid; grid-template-columns: var(--editorial-grid); gap: var(--grid-gap); align-items: end; margin-bottom: var(--section-heading-gap); }
.photo-strip__header h2 { margin: 0; font-size: clamp(70px, 10vw, 170px); line-height: .8; letter-spacing: var(--display-tracking); font-weight: 560; }
.photo-strip__viewport { overflow: hidden; }
.photo-strip__track { display: flex; width: max-content; gap: clamp(20px, 2.2vw, 42px); padding-inline: max(32px, calc((100vw - 1720px) / 2)); will-change: transform; }
.photo-card { width: clamp(300px, 34vw, 620px); flex: none; }
.photo-card:nth-child(even) { width: clamp(260px, 27vw, 500px); padding-top: 7vh; }
.photo-card__image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--dark); }
.photo-card:nth-child(even) .photo-card__image { aspect-ratio: 3 / 4; }
.photo-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.photo-card:hover img { transform: scale(1.025); }
.photo-card__meta { display: flex; justify-content: space-between; gap: 16px; margin-top: 12px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; font-weight: 650; }

/* Showreel */
.showreel { background: var(--dark); color: var(--paper); }
.showreel__heading { display: grid; grid-template-columns: var(--editorial-grid); gap: var(--grid-gap); align-items: start; margin-bottom: var(--section-heading-gap); }
.showreel__heading h2 { margin: 0; font-size: clamp(70px, 10vw, 168px); line-height: .79; letter-spacing: var(--display-tracking); font-weight: 540; }
.showreel__media { width: 100%; }
.showreel__button { width: 100%; border: 0; padding: 0; background: transparent; color: inherit; position: relative; cursor: pointer; overflow: hidden; }
.showreel__button img, .showreel__button .media-placeholder { width: 100%; height: auto; min-height: min(72vh, 820px); object-fit: cover; transition: transform .8s var(--ease); }
.showreel__button:hover img { transform: scale(1.015); }
.showreel__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; background: var(--paper); color: var(--ink); font-size: 10px; font-weight: 750; letter-spacing: .1em; }

/* Contact */
.contact { min-height: 78vh; display: flex; align-items: center; }
.contact__inner { display: flex; flex-direction: column; }
.contact__heading-grid { display: grid; grid-template-columns: var(--editorial-grid); column-gap: var(--grid-gap); align-items: start; }
.contact__main { min-width: 0; }
.contact h2 { margin: 0 0 var(--section-heading-gap); font-size: clamp(64px, 10.5vw, 176px); line-height: .79; letter-spacing: var(--display-tracking); font-weight: 550; max-width: 11ch; }
.contact__cta { align-self: flex-start; font-size: clamp(19px, 2vw, 30px); border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.contact__cta--disabled { color: var(--muted); font-size: 14px; }
.site-footer { margin-top: var(--section-heading-gap); padding-top: var(--rule-gap); border-top: 1px solid var(--line); }
.site-footer__links { display: flex; gap: 26px; margin-bottom: var(--section-heading-gap); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; font-weight: 650; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

/* Content / archive / single */
.content-page, .archive-work, .error-page { padding-top: calc(var(--header-h) + var(--section-space-compact)); min-height: 100vh; }
.project-single { padding-top: var(--header-h); min-height: 100vh; }
.content-page__inner, .archive-work__header, .project-hero, .error-page > .shell-wide, .standard-entry {
    display: grid;
    grid-template-columns: var(--editorial-grid);
    column-gap: var(--grid-gap);
    align-items: start;
}
.content-page__inner > .eyebrow, .archive-work__header > .eyebrow, .project-hero > .eyebrow, .error-page > .shell-wide > .eyebrow, .standard-entry > .eyebrow { grid-column: 1; }
.content-page__inner > h1, .content-page__inner > .entry-content, .archive-work__header > h1, .project-hero > h1, .project-hero > .project-hero__meta, .error-page > .shell-wide > h1, .error-page > .shell-wide > .text-link, .standard-entry > h1, .standard-entry > .entry-content { grid-column: 2; }
.content-page h1, .archive-work__header h1, .project-hero h1, .error-page h1, .standard-entry h1 { margin: 0 0 var(--section-heading-gap); font-size: clamp(64px, 10vw, 170px); line-height: .8; letter-spacing: var(--display-tracking); font-weight: 560; text-transform: uppercase; }
.entry-content { width: min(840px, 100%); font-size: clamp(18px, 1.5vw, 23px); line-height: 1.62; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content img { width: auto; max-width: 100%; height: auto; }
.archive-work__header { margin-bottom: var(--section-heading-gap); }
.project-hero { padding-top: var(--project-hero-top); padding-bottom: var(--project-title-media-gap); }
.project-hero h1 { margin-bottom: var(--copy-gap); }
.project-hero__meta { display: flex; gap: 20px 50px; flex-wrap: wrap; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; border-top: 1px solid var(--line); padding-top: var(--rule-gap); }
/* Projektmedien folgen der gleichen Editorial-Achse wie Titel und Fliesstext.
 * Das Beitragsbild wird auf Detailseiten bewusst nicht ausgegeben; es bleibt
 * als Vorschau fuer Startseite und Arbeiten-Archiv erhalten. */
.project-video {
    width: var(--shell-wide);
    margin-inline: auto;
    padding-block: 0;
    margin-bottom: var(--project-content-gap);
    display: grid;
    grid-template-columns: var(--editorial-grid);
    column-gap: var(--grid-gap);
}
.project-video iframe, .project-video video {
    grid-column: 2;
    justify-self: start;
    width: min(100%, var(--project-video-max));
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    background: var(--dark);
}
.project-content { display: grid; grid-template-columns: var(--editorial-grid); column-gap: var(--grid-gap); padding-top: 0; }
.project-content > .entry-content { grid-column: 2; }
.project-next { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.project-next a { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 650; }



/* Dedicated About page */
.about-page__hero { padding-top: calc(var(--header-h) + var(--section-space-compact)); padding-bottom: var(--section-space-compact); }
.about-page__hero-grid { display: grid; grid-template-columns: var(--editorial-grid); gap: var(--grid-gap); align-items: start; }
.about-page__hero h1 { margin: -8px 0 var(--copy-gap); font-size: var(--display-xl); line-height: .76; letter-spacing: var(--display-tracking-tight); font-weight: 560; text-transform: uppercase; }
.about-page__hero h1 span { display: block; }
.about-page__role { margin: 0; padding-top: var(--rule-gap); border-top: 1px solid var(--line); font-size: 12px; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }

.about-page__profile { background: var(--paper-strong); }
.about-page__profile-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: var(--section-heading-gap); align-items: center; }
.about-page__portrait { min-height: 65vh; overflow: hidden; background: var(--dark); }
.about-page__portrait img, .about-page__portrait .media-placeholder { width: 100%; height: 100%; min-height: 65vh; object-fit: cover; }
.about-page__bio-label { margin-bottom: var(--label-title-gap); }
.about-page__bio h2 { margin: 0 0 var(--copy-gap); font-size: var(--display-md); line-height: .8; letter-spacing: var(--display-tracking); font-weight: 560; }
.about-page__intro { max-width: 680px; margin: 0 0 var(--copy-gap); font-size: var(--copy-lg); line-height: 1.46; letter-spacing: -.025em; }
.about-page__intro--placeholder { max-width: 640px; color: var(--muted); opacity: 1; }
.about-page__editor-content { border-top: 1px solid var(--line); padding-top: var(--copy-gap); font-size: clamp(16px, 1.25vw, 20px); }

.awards { background: var(--paper); }
.awards__heading { display: grid; grid-template-columns: var(--editorial-grid); gap: var(--grid-gap); align-items: end; margin-bottom: var(--section-heading-gap); }
.awards__heading h2 { margin: 0; font-size: var(--display-lg); line-height: .8; letter-spacing: var(--display-tracking); font-weight: 560; }
.awards__list { border-top: 1px solid var(--line); }
.award-row { border-bottom: 1px solid var(--line); }
.award-row__summary { display: grid; grid-template-columns: 1fr 2.55fr 1.45fr; column-gap: var(--grid-gap); align-items: center; padding-block: var(--row-space); cursor: pointer; list-style: none; }
.award-row__summary::-webkit-details-marker { display: none; }
.award-row__number { font-size: 11px; font-weight: 650; letter-spacing: .12em; }
.award-row__title { margin: 0; max-width: 720px; font-size: clamp(30px, 3.15vw, 54px); line-height: 1.02; letter-spacing: var(--title-tracking); font-weight: 540; text-transform: none; }
.award-row__meta { display: flex; align-items: center; justify-content: space-between; gap: 30px; font-size: 10px; font-weight: 650; letter-spacing: .09em; text-transform: uppercase; }
.award-row__context { display: flex; flex-direction: column; gap: 5px; }
.award-row__toggle { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.award-row__plus { display: inline-grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%; font-size: 18px; line-height: 1; transition: transform .28s ease; }
.award-row[open] .award-row__plus { transform: rotate(45deg); }
.award-row__details { display: grid; grid-template-columns: 1fr 2.55fr 1.45fr; column-gap: var(--grid-gap); padding: 0 0 clamp(38px, 5vw, 76px); }
.award-row__details p { grid-column: 2 / 3; max-width: 760px; margin: 0; font-size: clamp(17px, 1.45vw, 23px); line-height: 1.5; letter-spacing: -.02em; }
.award-row__placeholder { color: var(--muted); opacity: 1; }
.award-row__summary:hover .award-row__title { opacity: .62; }

.about-page__contact { background: var(--dark); color: var(--paper); }
.about-page__contact-grid { display: grid; grid-template-columns: var(--editorial-grid); column-gap: var(--grid-gap); align-items: start; }
.about-page__contact-main { min-width: 0; }
.about-page__contact h2 { margin: 0 0 var(--section-heading-gap); font-size: clamp(68px, 10vw, 170px); line-height: .78; letter-spacing: var(--display-tracking); font-weight: 540; }
.about-page__contact-link { font-size: clamp(17px, 1.7vw, 26px); }

/* Video modal */
.video-modal { position: fixed; z-index: 2000; inset: 0; background: rgba(0,0,0,.97); color: #fff; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; }
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal__close { position: absolute; right: 26px; top: 24px; border: 0; background: transparent; color: #fff; cursor: pointer; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.video-modal__stage { width: min(1600px, calc(100vw - 64px)); }
.video-modal__stage iframe, .video-modal__stage video { width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; background: #000; }

/* Reveals */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
    :root { --shell: calc(100vw - 36px); --shell-wide: calc(100vw - 36px); --header-h: 68px; --section-space: 96px; --section-space-compact: 76px; --section-heading-gap: 56px; --grid-gap: 34px; --label-title-gap: 18px; --copy-gap: 32px; --project-gap: 105px; --project-hero-top: 26px; --project-title-media-gap: 46px; --project-content-gap: 40px; --project-video-max: 100%; --editorial-grid: minmax(0, 1fr); }
    .desktop-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .site-header.is-scrolled { --header-h: 58px; }

    .hero { min-height: 125vh; }
    .hero__copy { min-height: 620px; padding-top: calc(var(--header-h) + 62px); padding-bottom: 54px; }
    .hero__title { font-size: clamp(58px, 18vw, 110px); line-height: .81; letter-spacing: var(--display-tracking); }
    .hero__title span:nth-child(2) { padding-left: 0; }
    .hero__visual { width: calc(86vw + (14vw * var(--hero-progress))); height: calc(38vh + (62vh * var(--hero-progress))); transform: translateY(calc(62vh - (62vh * var(--hero-progress)))); }

    .work-item, .work-item--offset { width: 100%; align-self: auto; }
    .work-item--offset .work-item__media, .work-item__media { aspect-ratio: 4 / 5; }
    .work-item__cursor { display: none; }

    .statement { min-height: 80vh; }
    .statement h2 { margin-top: 0; }
    .statement__small { margin-top: 44px; }

    .about__grid { grid-template-columns: 1fr; gap: var(--section-heading-gap); }
    .about__media { width: 92%; }
    .media-placeholder--portrait { min-height: 620px; }
    .about__copy { width: min(620px, 100%); margin-left: auto; }

    .about-page__hero-grid, .awards__heading, .statement__inner, .photo-strip__header, .showreel__heading, .contact__heading-grid, .about-page__contact-grid, .content-page__inner, .archive-work__header, .project-hero, .project-video, .project-content, .error-page > .shell-wide, .standard-entry { grid-template-columns: 1fr; gap: var(--grid-gap); }
    .content-page__inner > *, .archive-work__header > *, .project-hero > *, .project-content > .entry-content, .error-page > .shell-wide > *, .standard-entry > * { grid-column: 1; }

    .project-video iframe, .project-video video { grid-column: 1; width: 100%; }
    .about-page__profile-grid { grid-template-columns: 1fr; gap: var(--section-heading-gap); }
    .about-page__portrait { width: 92%; min-height: 60vh; }
    .about-page__portrait img, .about-page__portrait .media-placeholder { min-height: 60vh; }
    .about-page__bio { width: min(680px, 100%); margin-left: auto; }
    .award-row__summary { grid-template-columns: 54px 1fr; gap: 20px; }
    .award-row__meta { grid-column: 2; justify-content: space-between; }
    .award-row__details { grid-template-columns: 54px 1fr; gap: 20px; }
    .award-row__details p { grid-column: 2; }

    .photo-strip { height: auto !important; }
    .photo-strip__sticky { position: static; height: auto; min-height: 0; overflow: visible; padding-block: var(--section-space); }
    .photo-strip__header h2 { margin-top: 0; }
    .photo-strip__viewport { overflow: visible; }
    .photo-strip__track { transform: none !important; display: grid; width: var(--shell-wide); margin-inline: auto; padding: 0; gap: var(--section-heading-gap); }
    .photo-card, .photo-card:nth-child(even) { width: 100%; padding-top: 0; }
    .photo-card:nth-child(even) { width: 82%; margin-left: auto; }

    .showreel__heading h2 { margin-top: 0; }
    .showreel__button img, .showreel__button .media-placeholder { min-height: 54vh; }
    .contact h2 { font-size: clamp(58px, 17vw, 100px); }
}

@media (max-width: 560px) {
    .section-heading-row { align-items: flex-end; }
    .section-heading-row .text-link { font-size: 10px; }
    .work-item__meta { flex-direction: column; gap: 4px; }
    .work-item__title { font-size: clamp(46px, 15vw, 78px); }
    .about__media { width: 100%; }
    .about-page__portrait { width: 100%; min-height: 52vh; }
    .about-page__portrait img, .about-page__portrait .media-placeholder { min-height: 52vh; }
    .about-page__hero h1 { font-size: clamp(66px, 20vw, 108px); }
    .about-page__role { line-height: 1.55; }
    .award-row__summary { grid-template-columns: 38px 1fr; }
    .award-row__title { font-size: clamp(28px, 8vw, 46px); }
    .award-row__meta { flex-direction: column; align-items: flex-start; gap: 14px; }
    .award-row__toggle { width: 100%; justify-content: space-between; }
    .award-row__details { grid-template-columns: 38px 1fr; }
    .award-row__details p { grid-column: 2; }
    .about-page__contact h2 { font-size: clamp(58px, 17vw, 100px); }
    .site-footer__bottom { flex-direction: column; }
    .project-next { align-items: flex-start; gap: 30px; flex-direction: column; }
    .video-modal__stage { width: calc(100vw - 24px); }
}

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