:root {
    --black: #050505;
    --black-soft: #0a0a0a;
    --white: #f5f4ef;
    --muted: #a4a49e;
    --yellow: #d88830;
    --line: rgba(245, 244, 239, 0.55);
    --max-width: 1800px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--white);
    background: var(--black);
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    display: none;
}

a {
    color: inherit;
}

:where(a, button, input, textarea):focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 1rem;
    left: 1rem;
    padding: 0.75rem 1rem;
    color: var(--black);
    background: var(--yellow);
    transform: translateY(-200%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 50%;
    display: grid;
    grid-template-columns: 8rem minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(2rem, 3vw, 4.5rem);
    width: min(100%, var(--max-width));
    padding: 2rem clamp(2rem, 4vw, 5rem);
    transform: translateX(-50%);
}

.brand {
    display: grid;
    color: #172a3d;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(0.4rem);
}

.brand span:last-child {
    color: #d88830;
}

.site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    width: 100%;
}

.site-nav a {
    position: relative;
    justify-self: center;
    color: #344451;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 1px;
    content: '';
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-nav .nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    justify-self: end;
}

.nav-contact span {
    width: 0.55rem;
    aspect-ratio: 1;
    background: #d88830;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(216, 136, 48, 0.7);
    animation: contact-pulse-amber 1.8s ease-in-out infinite;
}

@keyframes contact-pulse {
    50% {
        opacity: 0.35;
        box-shadow: 0 0 4px rgba(255, 213, 31, 0.35);
        transform: scale(0.72);
    }
}

.nav-toggle {
    display: none;
    color: #172a3d;
}

.hero {
    --line: rgba(23, 42, 61, 0.42);
    position: relative;
    display: flex;
    height: 100svh;
    min-height: 100svh;
    max-width: var(--max-width);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: clamp(7.5rem, 11vh, 9rem) 0 4.5rem;
    color: #172a3d;
    background:
        radial-gradient(circle at 50% 43%, rgba(255, 213, 31, 0.15), transparent 25rem),
        linear-gradient(180deg, #faf7f0 0%, #f0eadf 58%, #f7f3ea 100%);
    border-bottom: 1px solid rgba(23, 42, 61, 0.16);
    overflow: hidden;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: 2;
    top: 0;
    width: clamp(9rem, 13vw, 16rem);
    height: 100%;
    content: '';
    pointer-events: none;
    filter: blur(3px);
}

.hero::before {
    left: -2rem;
    background: linear-gradient(90deg, rgba(212, 158, 29, 0.22), rgba(212, 158, 29, 0.11) 22%, rgba(212, 158, 29, 0.035) 52%, transparent 100%);
}

.hero::after {
    right: -2rem;
    background: linear-gradient(270deg, rgba(212, 158, 29, 0.22), rgba(212, 158, 29, 0.11) 22%, rgba(212, 158, 29, 0.035) 52%, transparent 100%);
}

.hero-stage {
    flex: 0 1 auto;
    position: relative;
    z-index: 1;
    isolation: isolate;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    text-align: center;
}

.hero h1 {
    position: relative;
    z-index: 5;
    margin: 0;
    color: #050505;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.065em;
    line-height: 0.88;
    text-transform: uppercase;
    transform: translateY(-2.5rem);
    white-space: nowrap;
    -webkit-text-fill-color: currentColor;
}

.hero h1 em {
    font-style: normal;
}

.hero-logo {
    position: relative;
    z-index: 5;
    margin: clamp(0.75rem, 1.6vh, 1.25rem) auto 0;
}

.hero-logo img {
    display: block;
    width: clamp(15rem, 20vw, 19rem);
    height: auto;
    margin: 0 auto;
}

.film-reel {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    width: 100%;
    height: clamp(14rem, 28svh, 23rem);
    margin: clamp(0.5rem, 1.2vh, 0.9rem) 0 0;
    background: transparent;
    clip-path: polygon(
        0 4%, 12% 7%, 25% 11%, 38% 14%, 50% 15%, 62% 14%, 75% 11%, 88% 7%, 100% 4%,
        100% 96%, 88% 93%, 75% 89%, 62% 86%, 50% 85%, 38% 86%, 25% 89%, 12% 93%, 0 96%
    );
    overflow: hidden;
}

.film-reel-track {
    display: flex;
    height: 100%;
    width: max-content;
    max-width: none;
    will-change: transform;
    animation: film-reel-scroll 34s linear infinite;
}

.film-reel-set {
    flex: none;
    height: 100%;
    padding-right: 0.85rem;
}

.film-reel img {
    display: block;
    width: clamp(68rem, 86vw, 96rem);
    height: 100%;
    object-fit: cover;
    filter: contrast(1.06) saturate(0.82);
}

@keyframes film-reel-scroll {
    to {
        transform: translateX(-50%);
    }
}

.hero-intro {
    max-width: 42rem;
    margin: clamp(0.75rem, 1.5vh, 1.25rem) auto 0;
    color: #4e5961;
    font-size: clamp(0.78rem, 1.1vw, 1rem);
    letter-spacing: 0.05em;
    line-height: 1.55;
    text-transform: uppercase;
}

.frame-corner {
    position: absolute;
    z-index: 3;
    width: clamp(5rem, 12vw, 13rem);
    height: clamp(4rem, 9vw, 8rem);
    pointer-events: none;
}

.frame-corner--top-left {
    top: 1.75rem;
    left: 1.75rem;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.frame-corner--top-right {
    top: 1.75rem;
    right: 1.75rem;
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.frame-corner--bottom-left {
    bottom: 1.75rem;
    left: 1.75rem;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.frame-corner--bottom-right {
    right: 1.75rem;
    bottom: 1.75rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero-data {
    position: absolute;
    z-index: 3;
    right: clamp(3rem, 6vw, 7rem);
    bottom: 2.7rem;
    left: clamp(3rem, 6vw, 7rem);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    color: #6f746f;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
}

.hero-data p {
    margin: 0;
}

.hero-data p:last-child {
    text-align: right;
}

.data-active {
    margin-right: 0.6rem;
    color: #172a3d;
}

.home-page-body .brand {
    color: #172a3d;
}

.home-page-body .brand span:last-child {
    color: #d88830;
}

.home-page-body .site-nav a {
    color: #344451;
}

.home-page-body .nav-contact span {
    background: #d88830;
    box-shadow: 0 0 18px rgba(216, 136, 48, 0.7);
    animation-name: contact-pulse-amber;
}

@keyframes contact-pulse-amber {
    50% {
        opacity: 0.35;
        box-shadow: 0 0 4px rgba(216, 136, 48, 0.35);
        transform: scale(0.72);
    }
}

.home-page-body .nav-toggle {
    color: #172a3d;
}

.frame-count {
    position: relative;
}

.frame-count span {
    position: absolute;
    top: 1rem;
    left: 50%;
    width: 1px;
    height: 0.65rem;
    background: var(--yellow);
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(6rem, 12vw, 12rem) clamp(2rem, 6vw, 7rem);
    border-top: 1px solid rgba(245, 244, 239, 0.14);
}

.section-index {
    margin-bottom: clamp(3rem, 7vw, 7rem);
    color: var(--yellow);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    font-size: clamp(3.3rem, 7.5vw, 8rem);
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 0.86;
    text-transform: uppercase;
}

.studio-copy > p {
    max-width: 31rem;
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    line-height: 1.55;
}

.film-feature {
    --film-accent: #9a6b00;
    --film-ink: #18150f;
    --film-muted: #686155;
    position: relative;
    max-width: none;
    padding-top: clamp(2rem, 4vw, 4rem);
    padding-right: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    padding-left: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    color: var(--film-ink);
    border-top-color: rgba(63, 52, 28, 0.22);
    border-bottom: 1px solid rgba(63, 52, 28, 0.2);
    background:
        radial-gradient(circle at 14% 28%, rgba(255, 205, 39, 0.2), transparent 28rem),
        radial-gradient(circle at 84% 72%, rgba(142, 97, 10, 0.09), transparent 32rem),
        linear-gradient(180deg, #f7f2e5 0%, #e8dfcf 48%, #f3eddf 100%);
    isolation: isolate;
    overflow: hidden;
}

.film-feature::before {
    position: absolute;
    z-index: -1;
    inset: 9rem 0 auto;
    height: 48rem;
    content: '';
    background: linear-gradient(90deg, rgba(168, 119, 9, 0.1), transparent 22%, transparent 78%, rgba(168, 119, 9, 0.1));
    pointer-events: none;
}

.film-feature-light {
    position: absolute;
    z-index: -1;
    top: 16rem;
    left: 50%;
    width: min(70rem, 92vw);
    aspect-ratio: 2 / 1;
    border-radius: 50%;
    background: rgba(207, 151, 20, 0.17);
    filter: blur(100px);
    pointer-events: none;
    transform: translateX(-50%);
    animation: film-light-breathe 7s ease-in-out infinite;
}

.film-feature-index {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1rem;
    color: var(--film-accent);
    border-bottom: 1px solid rgba(48, 40, 24, 0.22);
}

.film-feature-index span:last-child {
    color: var(--film-muted);
}

.film-feature-heading {
    display: grid;
    grid-template-columns: minmax(10rem, 0.75fr) 3fr;
    align-items: end;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.film-feature-heading > p,
.film-eyebrow {
    margin: 0;
    color: var(--film-accent);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    line-height: 1.5;
    text-transform: uppercase;
}

.film-feature-heading h2 {
    grid-column: 2;
    margin: 0;
    font-size: clamp(5rem, 13vw, 13.5rem);
    letter-spacing: -0.08em;
    line-height: 0.7;
    white-space: nowrap;
}

.film-feature-heading h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(24, 21, 15, 0.68);
    transition: color 450ms ease, -webkit-text-stroke-color 450ms ease;
}

.film-feature:hover .film-feature-heading h2 span {
    color: #d2a000;
    -webkit-text-stroke-color: #d2a000;
}

.film-meta {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 1.75rem;
    margin-top: 0.75rem;
    color: #4f4a42;
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.film-meta span {
    display: inline-flex;
    align-items: center;
    gap: 1.75rem;
}

.film-meta span:not(:last-child)::after {
    width: 0.25rem;
    aspect-ratio: 1;
    content: '';
    background: var(--film-accent);
    border-radius: 50%;
}

.film-key-art {
    position: relative;
    aspect-ratio: 16 / 9;
    margin: 0;
    border: 1px solid rgba(45, 37, 21, 0.18);
    background: #151009;
    box-shadow: 0 2.5rem 6rem rgba(53, 42, 20, 0.2);
    overflow: hidden;
}

.film-key-art::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 40%, rgba(0, 0, 0, 0.82));
    pointer-events: none;
}

.film-key-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.08);
    transform: scale(1.015);
    transition: filter 900ms ease, transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.film-key-art:hover img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.055);
}

.film-key-art-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 1rem;
    background: rgba(3, 3, 2, 0.72);
    opacity: 0;
    transition: opacity 400ms ease;
}

.film-key-art-overlay p {
    margin: 0;
    color: rgba(245, 244, 239, 0.74);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transform: translateY(0.75rem);
    transition: transform 400ms ease;
}

.film-play-button {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.35rem;
    color: var(--black);
    border: 0;
    background: var(--yellow);
    font: inherit;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transform: translateY(0.75rem);
    transition: background 200ms ease, transform 400ms ease;
}

.film-play-button span {
    width: 0;
    height: 0;
    border-top: 0.32rem solid transparent;
    border-bottom: 0.32rem solid transparent;
    border-left: 0.5rem solid currentColor;
}

.film-play-button:hover,
.film-play-button:focus-visible {
    background: var(--white);
}

.film-key-art:hover .film-key-art-overlay,
.film-key-art:focus-within .film-key-art-overlay {
    opacity: 1;
}

.film-key-art:hover .film-key-art-overlay p,
.film-key-art:hover .film-play-button,
.film-key-art:focus-within .film-key-art-overlay p,
.film-key-art:focus-within .film-play-button {
    transform: translateY(0);
}

.film-key-art.is-playing::after,
.film-key-art.is-playing .film-key-art-overlay,
.film-key-art.is-playing figcaption {
    opacity: 0;
    pointer-events: none;
}

.film-key-art > iframe {
    position: absolute;
    z-index: 3;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.film-key-art figcaption {
    position: absolute;
    z-index: 1;
    right: clamp(1.25rem, 3vw, 3rem);
    bottom: clamp(1.25rem, 3vw, 3rem);
    left: clamp(1.25rem, 3vw, 3rem);
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.film-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.72fr) minmax(14rem, 0.85fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 6rem);
    padding: clamp(4.5rem, 7vw, 7rem) 0 0;
}

.film-story h3 {
    max-width: 11em;
    margin: 1.25rem 0 2rem;
    font-size: clamp(2.2rem, 4vw, 4.5rem);
    letter-spacing: -0.055em;
    line-height: 0.97;
}

.film-story > p:not(.film-eyebrow) {
    max-width: 35rem;
    margin: 0;
    color: #5f594f;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.65;
}

.film-link {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2.5rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid var(--film-accent);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-decoration: none;
    text-transform: uppercase;
}

.film-link-group {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.film-link-group .film-link {
    margin-top: 0;
}

.film-link span {
    color: var(--film-accent);
    font-size: 1.2rem;
    transition: transform 200ms ease;
}

.film-link:hover span,
.film-link:focus-visible span {
    transform: translate(0.25rem, -0.25rem);
}

.film-poster-card {
    margin: 0;
    perspective: 1000px;
}

.film-poster-frame {
    position: relative;
    padding: 0.45rem;
    border: 1px solid rgba(117, 83, 12, 0.34);
    background: rgba(255, 251, 239, 0.62);
    box-shadow: 0 2rem 5rem rgba(54, 43, 21, 0.22);
    animation: film-poster-float 6s ease-in-out infinite;
    overflow: hidden;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.film-poster-frame::after {
    position: absolute;
    top: -30%;
    bottom: -30%;
    left: -80%;
    width: 42%;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: rotate(12deg);
    transition: left 700ms ease;
}

.film-poster-card:hover .film-poster-frame {
    border-color: rgba(154, 107, 0, 0.78);
    box-shadow: 0 2.5rem 6rem rgba(121, 85, 11, 0.2);
}

.film-poster-card:hover .film-poster-frame::after {
    left: 145%;
}

.film-poster-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.film-poster-card figcaption {
    margin-top: 1rem;
    color: #70695d;
    font-size: 0.58rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.film-facts {
    margin: 0;
    border-top: 1px solid rgba(48, 40, 24, 0.24);
}

.film-facts div {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(48, 40, 24, 0.18);
    transition: padding-left 250ms ease, border-color 250ms ease;
}

.film-facts div:hover {
    padding-left: 0.75rem;
    border-color: rgba(154, 107, 0, 0.62);
}

.film-facts dt {
    margin-bottom: 0.45rem;
    color: #70695d;
    font-size: 0.56rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.film-facts dd {
    margin: 0;
    color: #242019;
    font-size: 0.88rem;
    line-height: 1.5;
}

@keyframes film-light-breathe {
    50% {
        opacity: 0.56;
        transform: translateX(-50%) scale(1.08);
    }
}

@keyframes film-poster-float {
    50% {
        transform: translateY(-0.65rem) rotate(0.35deg);
    }
}

.upcoming-section {
    position: relative;
    max-width: none;
    padding-right: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    padding-left: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    color: #090909;
    border-top-color: rgba(9, 9, 9, 0.22);
    background: #f4eee1;
    isolation: isolate;
    overflow: hidden;
}

.upcoming-section::before {
    position: absolute;
    z-index: -2;
    inset: 0;
    content: '';
    background:
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.32), transparent 30rem),
        linear-gradient(90deg, rgba(63, 52, 28, 0.035), transparent 20%, transparent 80%, rgba(63, 52, 28, 0.035));
    pointer-events: none;
}

.upcoming-orbit {
    position: absolute;
    z-index: -1;
    width: clamp(18rem, 35vw, 42rem);
    aspect-ratio: 1;
    border: 1px solid rgba(9, 9, 9, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 8rem rgba(255, 255, 255, 0.16), inset 0 0 7rem rgba(63, 52, 28, 0.035);
    pointer-events: none;
    animation: upcoming-orbit-drift 18s ease-in-out infinite alternate;
}

.upcoming-orbit--one {
    top: 10%;
    left: -12rem;
}

.upcoming-orbit--two {
    right: -15rem;
    bottom: 5%;
    animation-delay: -7s;
    animation-direction: alternate-reverse;
}

.upcoming-index {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
    padding-bottom: 1rem;
    color: #090909;
    border-bottom: 1px solid rgba(9, 9, 9, 0.24);
}

.upcoming-index span:last-child {
    color: rgba(9, 9, 9, 0.62);
}

.upcoming-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(16rem, 0.65fr);
    align-items: end;
    gap: clamp(2rem, 7vw, 8rem);
    margin-bottom: clamp(5rem, 10vw, 10rem);
}

.upcoming-heading h2 {
    font-size: clamp(4.5rem, 10vw, 11rem);
}

.upcoming-heading h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(9, 9, 9, 0.72);
}

.upcoming-heading p {
    max-width: 30rem;
    margin: 0;
    color: rgba(9, 9, 9, 0.7);
    font-size: clamp(0.95rem, 1.35vw, 1.2rem);
    line-height: 1.65;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1.25rem, 2.4vw, 3rem);
}

.upcoming-card {
    min-width: 0;
    outline: 0;
}

.upcoming-card:nth-child(1),
.upcoming-card:nth-child(3) {
    margin-top: clamp(2.5rem, 6vw, 6.5rem);
}

.upcoming-card:nth-child(2),
.upcoming-card:nth-child(4) {
    margin-top: 0;
}

.upcoming-visual {
    position: relative;
    aspect-ratio: 2 / 3;
    margin: 0;
    border: 1px solid rgba(245, 244, 239, 0.16);
    background: #100e0a;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.34);
    overflow: hidden;
    transform: translateY(0);
    transition: border-color 350ms ease, box-shadow 350ms ease, transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.upcoming-visual::before {
    position: absolute;
    z-index: 3;
    top: -15%;
    bottom: -15%;
    left: -36%;
    width: 18%;
    content: '';
    background: linear-gradient(90deg, transparent, rgba(255, 225, 140, 0.14), transparent);
    pointer-events: none;
    transform: rotate(9deg);
    animation: upcoming-light-pass 11s ease-in-out infinite;
}

.upcoming-card:nth-child(2) .upcoming-visual::before {
    animation-delay: -4s;
}

.upcoming-card:nth-child(3) .upcoming-visual::before {
    animation-delay: -8s;
}

.upcoming-card:nth-child(4) .upcoming-visual::before {
    animation-delay: -10s;
}

.upcoming-visual::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 45%, rgba(2, 2, 1, 0.88));
    pointer-events: none;
}

.upcoming-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.05);
    transform: scale(1.015);
    transition: filter 700ms ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.upcoming-number {
    position: absolute;
    z-index: 4;
    top: 1.25rem;
    font-size: 0.58rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.upcoming-number {
    left: 1.25rem;
    color: rgba(245, 244, 239, 0.72);
}

.upcoming-spotlight {
    position: absolute;
    z-index: 2;
    inset: 0;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 45%), rgba(255, 213, 31, 0.2), transparent 34%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease;
}

.upcoming-copy {
    padding-top: 1.6rem;
}

.upcoming-genre {
    margin: 0 0 1rem;
    color: rgba(9, 9, 9, 0.68);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.upcoming-copy h3 {
    margin: 0;
    font-size: clamp(2.2rem, 4.2vw, 4.6rem);
    letter-spacing: -0.06em;
    line-height: 0.88;
    text-transform: uppercase;
}

.upcoming-copy h3 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(9, 9, 9, 0.72);
    transition: color 350ms ease, -webkit-text-stroke-color 350ms ease;
}

.upcoming-copy > p:not(.upcoming-genre) {
    min-height: 5.4em;
    margin: 1.25rem 0 1.8rem;
    color: rgba(9, 9, 9, 0.68);
    font-size: 0.9rem;
    line-height: 1.65;
}

.upcoming-credit {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(9, 9, 9, 0.2);
    border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}

.upcoming-credit span {
    color: rgba(9, 9, 9, 0.58);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.upcoming-credit strong {
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-align: right;
    text-transform: uppercase;
    transition: color 250ms ease, transform 250ms ease;
}

.upcoming-card:is(:hover, :focus-visible) .upcoming-visual {
    border-color: rgba(9, 9, 9, 0.72);
    box-shadow: 0 2.5rem 7rem rgba(9, 9, 9, 0.24);
    transform: translateY(-0.75rem);
}

.upcoming-card:is(:hover, :focus-visible) .upcoming-visual img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.07);
}

.upcoming-card:is(:hover, :focus-visible) .upcoming-spotlight {
    opacity: 1;
}

.upcoming-card:is(:hover, :focus-visible) .upcoming-copy h3 span {
    color: #090909;
    -webkit-text-stroke-color: #090909;
}

.upcoming-card:is(:hover, :focus-visible) .upcoming-credit strong {
    color: #090909;
    transform: translateX(-0.35rem);
}

@keyframes upcoming-orbit-drift {
    to {
        transform: translate3d(5rem, 3rem, 0) scale(1.08);
    }
}

@keyframes upcoming-light-pass {
    0%,
    58% {
        transform: translateX(0) rotate(9deg);
    }

    78%,
    100% {
        transform: translateX(760%) rotate(9deg);
    }
}

.studio-section {
    position: relative;
    max-width: none;
    padding-top: clamp(5rem, 8vw, 8rem);
    padding-right: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    padding-bottom: clamp(6rem, 10vw, 10rem);
    padding-left: max(clamp(2rem, 6vw, 7rem), calc((100vw - var(--max-width)) / 2 + 5rem));
    color: #17140e;
    border-top-color: rgba(45, 36, 18, 0.2);
    border-bottom: 1px solid rgba(45, 36, 18, 0.2);
    background:
        radial-gradient(circle at 8% 90%, rgba(223, 168, 35, 0.18), transparent 25rem),
        linear-gradient(135deg, #f8f3e7 0%, #ece4d4 62%, #f5efe2 100%);
    isolation: isolate;
    overflow: hidden;
}

.studio-section::before {
    position: absolute;
    z-index: -1;
    top: -0.28em;
    left: -0.05em;
    content: '03';
    color: transparent;
    font-size: clamp(16rem, 34vw, 40rem);
    font-weight: 800;
    letter-spacing: -0.12em;
    line-height: 1;
    -webkit-text-stroke: 1px rgba(54, 43, 20, 0.06);
    pointer-events: none;
}

.studio-index {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(3.5rem, 6vw, 6rem);
    padding-bottom: 1rem;
    color: #8b6309;
    border-bottom: 1px solid rgba(48, 40, 24, 0.22);
}

.studio-index span:last-child {
    color: #696257;
}

.studio-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(28rem, 1.2fr);
    align-items: stretch;
    gap: clamp(3rem, 8vw, 9rem);
}

.studio-copy {
    position: relative;
    z-index: 1;
}

.studio-copy > .studio-overline {
    margin: 0 0 1.75rem;
    color: #8b6309;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.studio-copy h2 {
    margin: 0;
    font-size: clamp(3.4rem, 6.5vw, 7rem);
    letter-spacing: -0.075em;
    line-height: 0.86;
}

.studio-copy h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(23, 20, 14, 0.72);
}

.studio-copy > p:not(.studio-overline) {
    max-width: 34rem;
    margin: clamp(2rem, 3vw, 3rem) 0 0;
    color: #5e584e;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.75;
}

.studio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: clamp(2rem, 3.5vw, 3.5rem);
    padding-bottom: 0.5rem;
    color: #17140e;
    border-bottom: 1px solid #8b6309;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.studio-link span {
    color: #8b6309;
    font-size: 1.1rem;
    transition: transform 220ms ease;
}

.studio-link:is(:hover, :focus-visible) span {
    transform: translate(0.25rem, -0.25rem);
}

.studio-visual {
    position: relative;
    aspect-ratio: auto;
    margin: 0;
    border: 1px solid rgba(49, 39, 20, 0.2);
    background: #18140d;
    box-shadow: 0 2.5rem 6rem rgba(59, 45, 20, 0.2);
    overflow: hidden;
}

.studio-visual::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 48%, rgba(8, 7, 5, 0.72));
    pointer-events: none;
}

.studio-visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: saturate(0.78) contrast(1.05);
    transform: scale(1.015);
    transition: filter 700ms ease, transform 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.studio-visual-logo {
    position: absolute;
    z-index: 2;
    bottom: clamp(1rem, 2vw, 2rem);
    left: clamp(1rem, 2vw, 2rem);
    width: clamp(7.5rem, 11vw, 11rem);
    height: auto;
    filter: drop-shadow(0 0.6rem 1.3rem rgba(0, 0, 0, 0.5));
}

.studio-visual figcaption {
    position: absolute;
    z-index: 1;
    right: clamp(1rem, 2vw, 2rem);
    bottom: clamp(1rem, 2vw, 2rem);
    left: auto;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.studio-visual:hover .studio-visual-image {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.06);
}

.home-media-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(24rem, 0.82fr);
    max-width: none;
    min-height: clamp(30rem, 42vw, 38rem);
    color: #090909;
    border-top: 1px solid rgba(9, 9, 9, 0.2);
    border-bottom: 1px solid rgba(9, 9, 9, 0.2);
    background: #f4eee1;
    isolation: isolate;
    overflow: hidden;
}

.home-media-visual {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    min-height: 100%;
    margin: 0;
    background: #f4eee1;
    overflow: hidden;
}

.home-media-visual::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, #f4eee1 0%, rgba(244, 238, 225, 0.7) 22%, rgba(244, 238, 225, 0.08) 64%),
        linear-gradient(180deg, rgba(244, 238, 225, 0.2), transparent 50%, rgba(244, 238, 225, 0.74));
    pointer-events: none;
}

.home-media-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.16);
    mix-blend-mode: multiply;
    opacity: 0.34;
    transform: scale(1.025);
    transition: filter 700ms ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-media-section:hover .home-media-visual img {
    filter: grayscale(0.75) contrast(1.08);
    transform: scale(1.075);
}

.home-media-visual > span {
    position: absolute;
    z-index: 1;
    right: clamp(1.5rem, 3vw, 3rem);
    bottom: clamp(1.5rem, 3vw, 3rem);
    color: rgba(9, 9, 9, 0.62);
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-media-content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    width: min(100%, 56rem);
    margin-left: auto;
    padding: clamp(3.75rem, 5vw, 5rem) clamp(2rem, 5vw, 5rem);
}

.home-media-index {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 3.5vw, 3.5rem);
    padding-bottom: 1rem;
    color: #090909;
    border-bottom: 1px solid rgba(9, 9, 9, 0.22);
}

.home-media-index span:last-child {
    color: rgba(9, 9, 9, 0.6);
}

.home-media-kicker {
    margin: 0 0 1.35rem;
    color: rgba(9, 9, 9, 0.68);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-media-section h2 {
    margin: 0;
    font-size: clamp(3.4rem, 5vw, 5.8rem);
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-transform: uppercase;
}

.home-media-section h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(9, 9, 9, 0.72);
}

.home-media-copy > p:not(.home-media-kicker) {
    max-width: 34rem;
    margin: clamp(2rem, 3vw, 2.75rem) 0 0;
    color: rgba(9, 9, 9, 0.7);
    font-size: clamp(0.92rem, 1.15vw, 1.06rem);
    line-height: 1.7;
}

.home-media-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: clamp(2rem, 3vw, 3rem);
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #090909;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-media-copy > a span {
    color: #090909;
    font-size: 1.1rem;
    transition: transform 220ms ease;
}

.home-media-copy > a:is(:hover, :focus-visible) span {
    transform: translate(0.25rem, -0.25rem);
}

.home-media-featured {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: center;
    gap: 0.85rem;
    padding: clamp(2rem, 3.5vw, 3.5rem) max(clamp(2rem, 4vw, 4rem), calc((100vw - var(--max-width)) / 2 + 2rem)) clamp(2rem, 3.5vw, 3.5rem) clamp(1rem, 2vw, 2rem);
}

.home-media-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 13.5rem;
    flex-direction: column;
    color: var(--white);
    border: 1px solid rgba(245, 244, 239, 0.16);
    background: rgba(5, 5, 5, 0.9);
    text-decoration: none;
    overflow: hidden;
    transition: border-color 260ms ease, transform 350ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-media-card:is(:hover, :focus-visible) {
    border-color: rgba(255, 213, 31, 0.68);
    transform: translateY(-0.35rem);
}

.home-media-card figure {
    position: relative;
    aspect-ratio: 16 / 7.5;
    margin: 0;
    background: #111;
    overflow: hidden;
}

.home-media-card figure::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
}

.home-media-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.05);
    transition: filter 450ms ease, transform 700ms ease;
}

.home-media-card:is(:hover, :focus-visible) figure img {
    filter: saturate(1) contrast(1.02);
    transform: scale(1.055);
}

.home-media-play {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 2.35rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.38);
    transform: translate(-50%, -50%);
}

.home-media-play::after {
    position: absolute;
    top: 50%;
    left: 53%;
    width: 0;
    height: 0;
    content: '';
    border-top: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    border-left: 0.48rem solid var(--white);
    transform: translate(-50%, -50%);
}

.home-media-card--video > div,
.home-media-card--article {
    padding: 1rem;
}

.home-media-card p {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    color: #85847e;
    font-size: 0.5rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.home-media-card p span {
    color: var(--yellow);
}

.home-media-card h3 {
    margin: 0.65rem 0 0;
    font-size: clamp(0.92rem, 1.15vw, 1.12rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
    text-transform: uppercase;
}

.home-media-card small {
    display: block;
    margin-top: auto;
    padding-top: 0.85rem;
    color: #77766f;
    font-size: 0.48rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-media-card--article {
    justify-content: flex-start;
    background:
        linear-gradient(145deg, rgba(255, 213, 31, 0.05), transparent 48%),
        rgba(5, 5, 5, 0.93);
}

.home-media-card--article small {
    margin-top: auto;
}

.home-media-publication {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.35rem;
    color: #9a9993;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-media-publication strong {
    display: grid;
    width: 2.15rem;
    aspect-ratio: 1;
    color: #080808;
    background: var(--yellow);
    font-size: 0.58rem;
    place-items: center;
}

#main-content {
    position: relative;
    z-index: 1;
    background: var(--black);
    box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.46);
}

.site-footer {
    position: sticky;
    z-index: 0;
    bottom: 0;
    color: var(--white);
    border-top: 1px solid rgba(255, 213, 31, 0.38);
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 213, 31, 0.12), transparent 26rem),
        radial-gradient(circle at 16% 100%, rgba(255, 213, 31, 0.06), transparent 24rem),
        #070706;
    isolation: isolate;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    z-index: -1;
    top: -22rem;
    right: -8rem;
    width: 42rem;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 213, 31, 0.11);
    border-radius: 50%;
    box-shadow:
        0 0 0 6rem rgba(255, 255, 255, 0.012),
        0 0 0 12rem rgba(255, 255, 255, 0.008);
    animation: footer-orbit 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.site-footer-inner {
    display: flex;
    width: min(100%, var(--max-width));
    flex-direction: column;
    margin: 0 auto;
    padding: clamp(3rem, 4vw, 4.5rem) clamp(2rem, 6vw, 7rem) 1.5rem;
}

.footer-topline,
.footer-legal {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: #85847e;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-topline {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(245, 244, 239, 0.16);
}

.footer-topline p,
.footer-directory p,
.footer-legal p {
    margin: 0;
}

.footer-topline p:first-child {
    color: var(--yellow);
}

.footer-directory p {
    color: #77766f;
    font-size: 0.54rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-directory {
    display: grid;
    grid-template-columns: minmax(14rem, 1.35fr) minmax(9rem, 0.55fr) minmax(16rem, 0.85fr);
    gap: clamp(2rem, 5vw, 6rem);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(245, 244, 239, 0.14);
    border-bottom: 1px solid rgba(245, 244, 239, 0.14);
}

.footer-intro > p {
    max-width: 24rem;
    color: #a8a7a1;
    font-size: clamp(0.82rem, 1vw, 0.96rem);
    letter-spacing: 0;
    line-height: 1.65;
    text-transform: none;
}

.footer-directory nav,
.footer-contact {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-directory nav p,
.footer-contact p {
    margin-bottom: 0.45rem;
    color: var(--yellow);
}

.footer-intro {
    display: grid;
    grid-template-columns: clamp(10rem, 15vw, 14rem) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1rem, 2vw, 1.75rem);
}

.footer-intro img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0.8rem 1.8rem rgba(0, 0, 0, 0.42));
}

.footer-directory a,
.footer-directory span {
    color: #b0afa8;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-directory a {
    transition: color 180ms ease, transform 180ms ease;
}

.footer-directory a:is(:hover, :focus-visible) {
    color: var(--white);
    transform: translateX(0.25rem);
}

.footer-directory .footer-email {
    max-width: 100%;
    margin-top: 0.35rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 213, 31, 0.62);
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
    letter-spacing: 0.01em;
    text-transform: none;
    white-space: nowrap;
}

.footer-directory .footer-email span {
    color: var(--yellow);
}

.footer-contact address {
    margin-top: 0.35rem;
    color: #b0afa8;
    font-size: clamp(0.78rem, 0.9vw, 0.9rem);
    font-style: normal;
    letter-spacing: 0.04em;
    line-height: 1.65;
    text-transform: uppercase;
}

.footer-wordmark {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0;
    padding-top: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 800;
    line-height: 0.72;
    text-transform: uppercase;
}

.footer-wordmark span:first-child {
    font-size: clamp(5rem, 11.5vw, 12.5rem);
    letter-spacing: -0.09em;
}

.footer-wordmark span:last-child {
    color: var(--yellow);
    font-size: clamp(0.8rem, 1.5vw, 1.35rem);
    letter-spacing: 0.18em;
}

.footer-legal {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(245, 244, 239, 0.12);
}

@keyframes footer-orbit {
    to {
        opacity: 0.55;
        transform: translate3d(-4rem, 3rem, 0) scale(0.94);
    }
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        z-index: 50;
        align-items: center;
        padding: 1.5rem 1.75rem;
    }

    .brand,
    .nav-toggle {
        position: relative;
        z-index: 2;
    }

    .brand {
        transform: none;
    }

    .nav-toggle {
        display: grid;
        margin-left: auto;
        width: 3rem;
        height: 3rem;
        padding: 0.5rem;
        color: #172a3d;
        border: 0;
        background: transparent;
        place-content: center;
        gap: 0.35rem;
    }

    .nav-toggle span:not(.sr-only) {
        display: block;
        width: 1.7rem;
        height: 1px;
        background: currentColor;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(0.7rem) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-0.7rem) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 1;
        inset: 0;
        display: none;
        width: 100vw;
        min-height: 100svh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        padding: 7rem 2rem 2rem;
        background: rgba(5, 5, 5, 0.98);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 0.85rem 1rem;
        color: var(--white);
        font-size: clamp(1.15rem, 5vw, 1.65rem);
        text-align: center;
    }

    .site-nav .nav-contact {
        justify-self: auto;
        margin-top: 1rem;
        color: var(--yellow);
    }

    .home-page-body .site-nav a {
        color: var(--white);
    }

    .home-page-body .site-nav .nav-contact {
        color: var(--yellow);
    }

    body.menu-open .brand,
    body.menu-open .nav-toggle {
        color: var(--white);
    }

    body.menu-open .brand span:last-child {
        color: #d88830;
    }

    body.menu-open .site-header {
        border-bottom-color: transparent;
        background: transparent;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .hero {
        padding-right: 0;
        padding-left: 0;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    }


    .home-media-section {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-media-visual {
        grid-column: 1;
        grid-row: 2;
        min-height: 34rem;
    }

    .home-media-content {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .home-media-featured {
        grid-column: 1;
        grid-row: 2;
        padding: 2rem;
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

    .studio-copy {
        max-width: 42rem;
    }

    .film-feature-heading {
        grid-template-columns: 1fr;
    }

    .film-feature-heading > p,
    .film-feature-heading h2,
    .film-meta {
        grid-column: 1;
    }

    .film-feature-heading h2 {
        font-size: clamp(4.5rem, 16vw, 9rem);
    }

    .film-story-grid {
        grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.6fr);
    }

    .film-facts {
        grid-column: 1 / -1;
    }

    .upcoming-heading {
        grid-template-columns: 1fr;
    }

    .upcoming-heading p {
        margin-left: auto;
    }

    .upcoming-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .upcoming-card:nth-child(1),
    .upcoming-card:nth-child(3) {
        margin-top: 3.5rem;
    }

    .upcoming-card:nth-child(2),
    .upcoming-card:nth-child(4) {
        margin-top: 0;
    }
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 620px) {
    .frame-corner {
        width: 3.5rem;
        height: 3.5rem;
    }

    .frame-corner--top-left,
    .frame-corner--top-right {
        top: 1rem;
    }

    .frame-corner--bottom-left,
    .frame-corner--bottom-right {
        bottom: 1rem;
    }

    .frame-corner--top-left,
    .frame-corner--bottom-left {
        left: 1rem;
    }

    .frame-corner--top-right,
    .frame-corner--bottom-right {
        right: 1rem;
    }

    .hero {
        height: 100svh;
        min-height: 100svh;
        padding-top: 5.5rem;
        padding-bottom: 3.25rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 9.5vw, 3.2rem);
        margin-bottom: 0;
        transform: translateY(-2.0rem);
        white-space: normal;
    }


    .hero-logo img {
        width: clamp(10rem, 38vw, 14rem);
    }

    .film-reel {
        height: clamp(12rem, 56vw, 16rem);
        margin-bottom: -3.5rem;
    }

    .film-reel img {
        width: 52rem;
    }

    .hero-intro {
        max-width: 27rem;
        margin-top: clamp(3.5rem, 14svh, 7rem);
        font-size: 0.62rem;
    }

    .hero-data {
        right: 2rem;
        bottom: 1.5rem;
        left: 2rem;
    }

    .frame-count {
        display: none;
    }

    .hero-data {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .film-feature {
        padding-top: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 6rem;
        padding-left: 1.25rem;
    }

    .film-feature::before {
        top: 5rem;
        height: 32rem;
    }

    .film-feature-index {
        margin-bottom: 3.5rem;
        font-size: 0.56rem;
        line-height: 1.5;
    }

    .film-feature-index span:last-child {
        display: none;
    }

    .film-feature-heading {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .film-feature-heading > p {
        max-width: 18rem;
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .film-feature-heading h2 {
        font-size: clamp(3.65rem, 16.5vw, 6.4rem);
        line-height: 0.75;
    }

    .film-feature-heading h2 span {
        color: var(--yellow);
        -webkit-text-stroke-color: var(--yellow);
    }

    .film-meta {
        gap: 0.5rem 0.9rem;
    }

    .film-meta span {
        gap: 0.9rem;
    }

    .film-key-art {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .film-key-art img {
        object-position: 52% center;
    }

    .film-key-art figcaption {
        flex-direction: column;
        gap: 0.45rem;
    }

    .film-story-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
        padding: 4.5rem 0 0;
    }

    .film-story h3 {
        font-size: clamp(2.5rem, 12vw, 4.2rem);
    }

    .film-poster-card {
        width: min(100%, 22rem);
        margin: 0 auto;
    }

    .film-facts {
        grid-column: 1;
    }

    .upcoming-section {
        padding-top: 5rem;
        padding-right: 1.25rem;
        padding-bottom: 6rem;
        padding-left: 1.25rem;
    }

    .upcoming-index {
        margin-bottom: 2rem;
        font-size: 0.56rem;
        line-height: 1.5;
    }

    .upcoming-index span:last-child {
        display: none;
    }

    .upcoming-heading {
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .upcoming-heading h2 {
        font-size: clamp(3.75rem, 18vw, 6rem);
    }

    .upcoming-heading h2 span {
        color: #090909;
        -webkit-text-stroke-color: #090909;
    }

    .upcoming-heading p {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .upcoming-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .upcoming-card:nth-child(1),
    .upcoming-card:nth-child(2),
    .upcoming-card:nth-child(3),
    .upcoming-card:nth-child(4) {
        grid-column: 1;
        width: auto;
        margin: 0;
    }

    .upcoming-copy h3 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    .upcoming-copy > p:not(.upcoming-genre) {
        min-height: 0;
    }

    .studio-section {
        padding: 5rem 1.25rem 6rem;
    }

    .studio-index {
        margin-bottom: 3.5rem;
        font-size: 0.56rem;
        line-height: 1.5;
    }

    .studio-index span:last-child {
        display: none;
    }

    .studio-grid {
        gap: 3.5rem;
    }

    .studio-copy h2 {
        font-size: clamp(3.25rem, 15vw, 5rem);
    }

    .studio-copy h2 span {
        color: #d2a000;
        -webkit-text-stroke-color: #d2a000;
    }

    .studio-copy > p:not(.studio-overline) {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .studio-visual {
        aspect-ratio: 4 / 3;
    }

    .studio-visual figcaption {
        flex-direction: column;
        gap: 0.45rem;
        left: auto;
        text-align: right;
    }

    .studio-visual-logo {
        width: 7.25rem;
    }

    .home-media-content {
        padding: 4.5rem 1.25rem;
    }

    .home-media-index {
        margin-bottom: 3.5rem;
        font-size: 0.56rem;
        line-height: 1.5;
    }

    .home-media-index span:last-child {
        display: none;
    }

    .home-media-section h2 {
        font-size: clamp(3.1rem, 13.5vw, 4.75rem);
    }

    .home-media-visual {
        min-height: 17rem;
    }

    .home-media-visual::after {
        background: linear-gradient(180deg, #f4eee1 0%, rgba(244, 238, 225, 0.1) 36%, rgba(244, 238, 225, 0.78));
    }

    .home-media-featured {
        display: flex;
        gap: 0.75rem;
        padding: 1.25rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-media-featured::-webkit-scrollbar {
        display: none;
    }

    .home-media-card {
        flex: 0 0 min(78vw, 18rem);
        min-height: 14.5rem;
        scroll-snap-align: start;
    }

    .site-footer-inner {
        padding: 1.75rem 1.25rem 1.25rem;
    }

    .footer-topline p:last-child {
        display: none;
    }

    .footer-directory {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem 1.25rem;
        padding: 1rem 0;
    }

    .footer-intro {
        grid-column: 1 / -1;
        grid-template-columns: 9rem minmax(0, 1fr);
    }

    .footer-wordmark {
        align-items: baseline;
        justify-content: space-between;
        flex-direction: row;
        gap: 0.4rem;
        width: 100%;
        padding-top: 2rem;
    }

    .footer-wordmark span:first-child {
        font-size: clamp(2.5rem, 11.5vw, 3.4rem);
    }

    .footer-wordmark span:last-child {
        flex: 0 0 auto;
        margin-left: auto;
        font-size: 0.46rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.55rem;
    }

    .footer-legal p:nth-child(2) {
        display: none;
    }
}

@media (hover: none) {
    .film-key-art-overlay {
        align-content: end;
        padding-bottom: 2rem;
        background: linear-gradient(180deg, transparent 42%, rgba(3, 3, 2, 0.78));
        opacity: 1;
    }

    .film-key-art-overlay p,
    .film-play-button {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .film-reel-track {
        animation-play-state: paused;
    }

    .nav-contact span,
    .film-feature-light,
    .film-poster-frame,
    .upcoming-orbit,
    .upcoming-visual::before,
    .footer-glow {
        animation: none;
    }
}

/* Contact page */

.contact-page {
    min-height: 100svh;
    background:
        radial-gradient(circle at 78% 18%, rgba(216, 136, 48, 0.08), transparent 27rem),
        #f4eee1;
    overflow: hidden;
}

.contact-hero {
    --contact-gutter: clamp(2rem, 6vw, 7rem);
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--contact-gutter);
    isolation: isolate;
}

.contact-orbit {
    position: absolute;
    z-index: -1;
    top: 5rem;
    right: -11rem;
    width: min(52rem, 68vw);
    aspect-ratio: 1;
    border: 1px solid rgba(154, 107, 0, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 7rem rgba(63, 52, 28, 0.018),
        0 0 0 14rem rgba(63, 52, 28, 0.01);
    animation: footer-orbit 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.contact-intro-grid {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 100svh;
    margin-right: calc(var(--contact-gutter) * -1);
    margin-left: calc(var(--contact-gutter) * -1);
    padding: clamp(10rem, 13vw, 13rem) var(--contact-gutter) clamp(5rem, 8vw, 8rem);
    background:
        linear-gradient(90deg, rgba(244, 238, 225, 0.97) 0%, rgba(244, 238, 225, 0.9) 39%, rgba(244, 238, 225, 0.2) 72%, rgba(244, 238, 225, 0.08) 100%),
        linear-gradient(180deg, rgba(244, 238, 225, 0.22) 45%, rgba(244, 238, 225, 0.7) 100%),
        url('/assets/images/about-rooftop-production.webp') 70% center / cover no-repeat;
    overflow: hidden;
}

.contact-intro-grid::after {
    position: absolute;
    right: clamp(1.25rem, 2.5vw, 2.5rem);
    bottom: clamp(1.25rem, 2.5vw, 2.5rem);
    color: rgba(42, 36, 27, 0.66);
    content: 'FROM FIRST IDEA TO FINAL FRAME';
    font-size: 0.56rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.contact-heading {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(100%, 42rem);
    min-width: 0;
    color: #18150f;
}

.contact-heading > p:first-child,
.contact-details p,
.contact-form-heading p {
    margin: 0;
    color: var(--yellow);
    font-size: 0.64rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.contact-heading > p:first-child {
    color: #9a6b00;
}

.contact-heading h1 {
    margin: clamp(3.5rem, 7vh, 6rem) 0 0;
    font-size: clamp(4.6rem, 7.1vw, 7.8rem);
    letter-spacing: -0.075em;
    line-height: 0.84;
    text-transform: uppercase;
}

.contact-heading h1 span {
    display: block;
    color: #9a6b00;
    font-size: 0.78em;
    letter-spacing: -0.06em;
}

.contact-heading > p:last-of-type {
    max-width: 34rem;
    margin: clamp(2rem, 3.5vw, 3.25rem) 0 0;
    color: #625c52;
    font-size: clamp(0.96rem, 1.25vw, 1.12rem);
    line-height: 1.75;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 0.7fr) minmax(30rem, 1.3fr);
    gap: clamp(4rem, 9vw, 10rem);
    margin-right: calc(var(--contact-gutter) * -1);
    margin-left: calc(var(--contact-gutter) * -1);
    padding: clamp(4rem, 7vw, 7rem) var(--contact-gutter) clamp(5rem, 9vw, 9rem);
    color: #090909;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 213, 31, 0.1), transparent 25rem),
        radial-gradient(circle at 90% 80%, rgba(9, 9, 9, 0.035), transparent 32rem),
        #f7f5ef;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-details > div {
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}

.contact-details > div:last-child {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    padding-bottom: 0;
    border-bottom: 0;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-layout .contact-details p {
    color: rgba(9, 9, 9, 0.65);
}

.contact-details a,
.contact-details address,
.contact-details > div > span {
    color: #090909;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-style: normal;
    line-height: 1.75;
    text-decoration: none;
}

.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(9, 9, 9, 0.72);
}

.contact-details a span {
    color: #090909;
}

.contact-details > div:last-child address {
    display: block;
    padding-bottom: 2.25rem;
    border-bottom: 1px solid rgba(9, 9, 9, 0.2);
}

.contact-map {
    position: relative;
    min-height: 22rem;
    flex: 1;
    margin-top: 2.25rem;
    border: 1px solid rgba(9, 9, 9, 0.28);
    background: #111;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-panel {
    min-width: 0;
    padding: 0;
    color: #090909;
    background: transparent;
}

.contact-form-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(9, 9, 9, 0.24);
}

.contact-form-panel .contact-form-heading p {
    color: rgba(9, 9, 9, 0.68);
}

.contact-form-heading h2 {
    max-width: 11ch;
    margin: 1rem 0 0;
    font-size: clamp(2.5rem, 4.2vw, 4.5rem);
    letter-spacing: -0.06em;
    line-height: 0.95;
    text-transform: uppercase;
}

.contact-form {
    display: grid;
}

.contact-field {
    position: relative;
    display: grid;
    grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(9, 9, 9, 0.22);
}

.contact-field label {
    padding-top: 0.7rem;
    color: rgba(9, 9, 9, 0.58);
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 0.45rem 0;
    color: #090909;
    border: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    line-height: 1.45;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    box-shadow: 0 1px 0 #090909;
}

.contact-field [aria-invalid="true"] {
    box-shadow: 0 1px 0 #ff7d67;
}

.contact-error {
    grid-column: 2;
    color: #8f1c0c;
    font-size: 0.72rem;
    line-height: 1.5;
}

.contact-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 2rem;
}

.contact-submit-row button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    min-width: 15rem;
    padding: 1.15rem 1.25rem;
    color: var(--yellow);
    border: 1px solid #090909;
    background: #090909;
    font: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.contact-submit-row button:hover,
.contact-submit-row button:focus-visible {
    color: #090909;
    background: transparent;
}

.contact-submit-row button span {
    font-size: 1.1rem;
}

.contact-submit-row p {
    max-width: 19rem;
    margin: 0;
    color: rgba(9, 9, 9, 0.62);
    font-size: 0.68rem;
    line-height: 1.6;
    text-align: right;
}

.contact-submit-row a,
.contact-alert a {
    color: inherit;
    text-underline-offset: 0.2em;
}

.contact-alert {
    margin-top: 1.5rem;
    padding: 1.25rem;
    color: #090909;
    border: 1px solid rgba(9, 9, 9, 0.25);
    font-size: 0.85rem;
    line-height: 1.6;
}

.contact-alert strong,
.contact-alert p {
    margin: 0;
}

.contact-alert p {
    margin-top: 0.3rem;
}

.contact-alert--success {
    border-color: rgba(9, 9, 9, 0.42);
    background: rgba(255, 255, 255, 0.2);
}

.contact-alert--error {
    border-color: rgba(143, 28, 12, 0.58);
    background: rgba(143, 28, 12, 0.08);
}

.contact-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .contact-intro-grid {
        min-height: 100svh;
    }

    .contact-heading {
        padding-top: 0;
    }

    .contact-heading h1 {
        margin-top: 3.5rem;
        font-size: clamp(4rem, 15vw, 7rem);
    }

    .contact-heading > p:last-of-type {
        max-width: 34rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .contact-details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .contact-details > div:last-child {
        display: block;
    }

    .contact-map {
        aspect-ratio: 4 / 3;
        min-height: 0;
    }
}

@media (max-width: 620px) {
    .contact-hero {
        --contact-gutter: 1.25rem;
        padding: 0 var(--contact-gutter);
    }

    .contact-heading h1 {
        margin-top: 2.75rem;
        font-size: clamp(3.45rem, 16vw, 5rem);
        line-height: 0.88;
    }

    .contact-intro-grid {
        min-height: 100svh;
        padding: 7.5rem var(--contact-gutter) 4rem;
        background:
            linear-gradient(90deg, rgba(244, 238, 225, 0.96) 0%, rgba(244, 238, 225, 0.82) 62%, rgba(244, 238, 225, 0.3) 100%),
            linear-gradient(180deg, rgba(244, 238, 225, 0.28), rgba(244, 238, 225, 0.76)),
            url('/assets/images/about-rooftop-production.webp') 72% center / cover no-repeat;
    }

    .contact-intro-grid::after {
        right: 1.5rem;
        bottom: 1.5rem;
    }

    .contact-details {
        grid-template-columns: 1fr;
    }

    .contact-field {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0;
    }

    .contact-field label {
        padding-top: 0;
    }

    .contact-error {
        grid-column: 1;
    }

    .contact-form-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contact-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-submit-row button {
        width: 100%;
    }

    .contact-submit-row p {
        max-width: none;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-orbit {
        animation: none;
    }
}

/* Privacy policy */

.privacy-page-body {
    color: #111;
    background: #fff;
}

#main-content.privacy-page {
    min-height: 100svh;
    color: #111;
    background: #fff;
    box-shadow: none;
}

.privacy-policy {
    width: min(100%, 76rem);
    margin: 0 auto;
    padding: clamp(10rem, 16vw, 13rem) clamp(1.5rem, 6vw, 6rem) clamp(5rem, 9vw, 9rem);
}

.privacy-heading {
    padding-bottom: clamp(3rem, 6vw, 5rem);
    border-bottom: 1px solid #b8b8b8;
}

.privacy-heading > p:first-child,
.privacy-updated {
    margin: 0;
    font-size: 0.7rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.privacy-heading h1 {
    margin: 1.4rem 0 1.75rem;
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    letter-spacing: -0.075em;
    line-height: 0.88;
    white-space: nowrap;
    text-transform: uppercase;
}

.privacy-heading .privacy-updated {
    margin-bottom: 2.25rem;
    color: #626262;
}

.privacy-heading > p:last-child {
    max-width: 43rem;
    margin: 0;
    font-size: clamp(1.1rem, 1.7vw, 1.45rem);
    line-height: 1.6;
}

.privacy-content {
    width: min(100%, 50rem);
    margin: 0;
}

.privacy-content section {
    padding: clamp(2.5rem, 5vw, 4.25rem) 0;
    border-bottom: 1px solid #d7d7d7;
}

.privacy-content h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.45rem, 2.4vw, 2.2rem);
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.privacy-content p,
.privacy-content address {
    margin: 0;
    color: #303030;
    font-size: clamp(1rem, 1.35vw, 1.15rem);
    font-style: normal;
    line-height: 1.75;
}

.privacy-content p + p {
    margin-top: 1rem;
}

.privacy-contact address {
    margin-top: 1.4rem;
}

.privacy-contact a {
    color: #111;
    text-underline-offset: 0.25em;
}

@media (max-width: 900px) {
    .privacy-policy {
        padding-top: 8.5rem;
    }

    .privacy-content {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .privacy-heading h1 {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }

    .privacy-content section {
        padding: 2.5rem 0;
    }
}

/* News & Media page */

.media-page {
    --media-line: rgba(63, 52, 28, 0.2);
    overflow: hidden;
    background: #050505;
}

.media-shell {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-left: clamp(2rem, 6vw, 7rem);
}

.media-hero {
    position: relative;
    display: flex;
    min-height: 100svh;
    align-items: center;
    color: #18150f;
    border-bottom: 1px solid var(--media-line);
    background:
        radial-gradient(circle at 78% 46%, rgba(216, 136, 48, 0.1), transparent 29%),
        #f4eee1;
    isolation: isolate;
    overflow: hidden;
}

.media-hero::after {
    position: absolute;
    z-index: 1;
    top: clamp(7rem, 15vh, 11rem);
    right: clamp(2rem, 6vw, 7rem);
    bottom: 5rem;
    width: 1px;
    content: '';
    background: linear-gradient(transparent, rgba(154, 107, 0, 0.62), transparent);
}

.media-hero-image {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: url('/assets/images/media-hero-press.webp') 62% center / cover no-repeat;
    filter: saturate(0.68) contrast(0.94) brightness(1.08);
    opacity: 0.58;
}

.media-hero-image::after {
    position: absolute;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, #f4eee1 0%, rgba(244, 238, 225, 0.92) 28%, rgba(244, 238, 225, 0.12) 68%, rgba(244, 238, 225, 0.5) 100%),
        linear-gradient(180deg, rgba(244, 238, 225, 0.46), transparent 48%, rgba(244, 238, 225, 0.66));
}

.media-hero-grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 52, 28, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 52, 28, 0.025) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.media-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: clamp(9rem, 16vh, 13rem);
    padding-bottom: clamp(9rem, 16vh, 13rem);
}

.media-index {
    margin: 0;
    color: #9a6b00;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.media-hero h1 {
    max-width: 8ch;
    margin: clamp(2.5rem, 5vh, 4.5rem) 0 0;
    font-size: clamp(5rem, 12vw, 13.5rem);
    letter-spacing: -0.085em;
    line-height: 0.73;
    text-transform: uppercase;
}

.media-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(24, 21, 15, 0.72);
}

.media-hero-intro {
    display: grid;
    grid-template-columns: minmax(10rem, 0.55fr) minmax(17rem, 1fr);
    gap: clamp(2rem, 6vw, 7rem);
    width: min(51rem, 63%);
    margin-top: clamp(4rem, 8vh, 7rem);
    padding-top: 1.5rem;
    border-top: 1px solid var(--media-line);
}

.media-hero-intro p {
    margin: 0;
    color: #625c52;
    font-size: clamp(0.92rem, 1.25vw, 1.12rem);
    line-height: 1.65;
}

.media-hero-intro p:first-child {
    color: #29251e;
    text-transform: uppercase;
}

.media-hero-ticker {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.35rem 0;
    border-top: 1px solid var(--media-line);
    background: rgba(244, 238, 225, 0.9);
    overflow: hidden;
}

.media-hero-ticker-track {
    display: flex;
    width: max-content;
    animation: media-ticker 28s linear infinite;
}

.media-hero-ticker-group {
    display: flex;
    flex: 0 0 auto;
    min-width: 100vw;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding: 0 1rem;
    color: #373229;
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.media-hero-ticker i {
    width: 0.38rem;
    aspect-ratio: 1;
    background: #d88830;
    border-radius: 50%;
}

.media-archive {
    padding-top: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(8rem, 14vw, 15rem);
    color: #090909;
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 213, 31, 0.09), transparent 28rem),
        radial-gradient(circle at 88% 62%, rgba(9, 9, 9, 0.035), transparent 34rem),
        #f7f5ef;
}

.media-embed {
    position: relative;
    width: 100%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 213, 31, 0.08), transparent 42%),
        #0a0a09;
    overflow: hidden;
}

.media-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.media-embed--youtube,
.media-embed--facebook-video {
    aspect-ratio: 16 / 9;
}

.media-embed--facebook-post {
    aspect-ratio: var(--post-ratio);
    max-height: 42rem;
}

.media-timeline {
    border-top: 1px solid var(--media-line);
}

.media-timeline-item {
    display: grid;
    grid-template-columns: clamp(7.5rem, 13vw, 12rem) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 5rem);
    padding: clamp(3rem, 7vw, 7rem) 0;
    border-bottom: 1px solid var(--media-line);
}

.media-timeline-item > aside {
    display: flex;
    align-self: start;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.35rem;
    color: #74736e;
    font-size: 0.56rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.media-timeline-item > aside > span {
    margin-bottom: 0.8rem;
    color: var(--yellow);
    font-size: clamp(1.5rem, 2.2vw, 2.5rem);
    letter-spacing: -0.04em;
}

.media-timeline-item > aside time {
    color: #c3c1b9;
}

.media-timeline-item > aside small {
    color: inherit;
    font-size: inherit;
}

.media-timeline-content {
    width: 100%;
    min-width: 0;
}

.media-timeline-item--portrait .media-timeline-content {
    width: min(100%, 31rem);
}

.media-timeline-item--square .media-timeline-content,
.media-timeline-item--post .media-timeline-content {
    width: min(100%, 42rem);
}

.media-timeline-item--landscape .media-timeline-content {
    width: min(100%, 72rem);
}

.media-timeline-item:nth-child(even):not(.media-timeline-item--article) .media-timeline-content {
    margin-left: auto;
}

.media-timeline .media-embed--youtube,
.media-timeline-item--landscape .media-embed--facebook-video {
    aspect-ratio: 16 / 9;
}

.media-timeline-item--portrait .media-embed--facebook-video {
    aspect-ratio: 480 / 848;
}

.media-timeline-item--square .media-embed--facebook-video {
    aspect-ratio: 1;
}

.media-timeline .media-embed--facebook-post {
    aspect-ratio: var(--post-ratio);
    max-height: none;
}

.media-timeline-article {
    position: relative;
    display: block;
    padding: clamp(1.7rem, 4vw, 4rem);
    border: 1px solid var(--media-line);
    color: inherit;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 213, 31, 0.09), transparent 25%),
        #090908;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 250ms ease, background 350ms ease;
}

.media-timeline-article header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    color: #a09f98;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.media-publication-mark {
    display: grid;
    width: 3rem;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: #f3f2ed;
}

.media-publication-mark img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.media-timeline-article header > span:last-child {
    color: var(--yellow);
    font-size: 1.1rem;
}

.media-timeline-article h3 {
    max-width: 19ch;
    margin: clamp(3.5rem, 8vw, 8rem) 0 0;
    font-size: clamp(2.7rem, 6.2vw, 7.4rem);
    letter-spacing: -0.067em;
    line-height: 0.9;
    text-transform: uppercase;
}

.media-timeline-article > p {
    max-width: 42rem;
    margin: 2rem 0 0;
    color: #96958f;
    font-size: clamp(0.9rem, 1.25vw, 1.08rem);
    line-height: 1.7;
}

.media-timeline-article > footer {
    display: flex;
    justify-content: space-between;
    margin-top: clamp(3.5rem, 7vw, 6rem);
    padding-top: 1.2rem;
    border-top: 1px solid var(--media-line);
    color: #84837d;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.media-timeline-article > footer span {
    color: var(--yellow);
}

.media-timeline-article:hover {
    border-color: rgba(255, 213, 31, 0.52);
    background:
        radial-gradient(circle at 88% 4%, rgba(255, 213, 31, 0.16), transparent 31%),
        #0b0b09;
}

.media-timeline-caption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.35rem;
}

.media-timeline-caption p {
    margin: 0;
    color: var(--yellow);
    font-size: 0.56rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.media-timeline-caption h3 {
    margin: 0.7rem 0 0;
    font-size: clamp(1.65rem, 3vw, 3.6rem);
    letter-spacing: -0.05em;
    line-height: 0.96;
    text-transform: uppercase;
}

.media-timeline-caption a {
    flex: 0 0 auto;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 213, 31, 0.42);
    color: #8d8c86;
    font-size: 0.56rem;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, border-color 180ms ease;
}

.media-timeline-caption a:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

@keyframes media-ticker {
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {


    .media-hero-intro {
        width: min(42rem, 82%);
    }


}

@media (max-width: 620px) {
    .media-shell {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .media-hero {
        min-height: 100svh;
        align-items: flex-start;
    }

    .media-hero::after {
        right: 1.25rem;
        bottom: 4.25rem;
    }

    .media-hero-image {
        background-position: 66% center;
        opacity: 0.72;
    }

    .media-hero-image::after {
        background:
            linear-gradient(180deg, rgba(244, 238, 225, 0.62), rgba(244, 238, 225, 0.12) 52%, rgba(244, 238, 225, 0.72)),
            linear-gradient(90deg, rgba(244, 238, 225, 0.84), rgba(244, 238, 225, 0.08));
    }

    .media-hero-inner {
        padding-top: 9.5rem;
        padding-bottom: 8rem;
    }

    .media-hero h1 {
        margin-top: 3.5rem;
        font-size: clamp(4.4rem, 25vw, 6.4rem);
        line-height: 0.76;
    }

    .media-hero-intro {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        margin-top: 4rem;
    }

    .media-hero-intro p:last-child {
        max-width: 19rem;
    }

    .media-hero-ticker {
        padding: 1.15rem 0;
    }

    .media-archive {
        padding-top: 4rem;
        padding-bottom: 8rem;
    }


    .media-timeline-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 3.75rem 0;
    }

    .media-timeline-item > aside {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 1rem;
        padding-top: 0;
    }

    .media-timeline-item > aside > span {
        margin: 0;
        font-size: 1.45rem;
    }

    .media-timeline-item > aside small {
        text-align: right;
    }

    .media-timeline-item--portrait .media-timeline-content,
    .media-timeline-item--square .media-timeline-content,
    .media-timeline-item--post .media-timeline-content,
    .media-timeline-item--landscape .media-timeline-content {
        width: 100%;
    }

    .media-timeline-item:nth-child(even):not(.media-timeline-item--article) .media-timeline-content {
        margin-left: 0;
    }

    .media-timeline-item--portrait .media-embed--facebook-video,
    .media-timeline-item--post .media-embed--facebook-post {
        width: min(100%, 23rem);
        margin-right: auto;
        margin-left: auto;
    }

    .media-timeline-article {
        padding: 1.4rem;
    }

    .media-timeline-article h3 {
        margin-top: 4.5rem;
        font-size: clamp(2.35rem, 12vw, 3.5rem);
    }

    .media-timeline-caption {
        flex-direction: column;
        gap: 1.25rem;
    }


}

@media (prefers-reduced-motion: reduce) {
    .media-hero-ticker-track {
        animation: none;
    }
}

/* Compact chronological media grid */

.media-archive {
    padding-top: clamp(3rem, 6vw, 6rem);
}

.media-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1.5rem, 2.5vw, 2.8rem);
    border-top: 0;
}

.media-timeline-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    border-bottom: 0;
}

.media-timeline-item > aside {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0 0 0.85rem;
    border-bottom: 1px solid var(--media-line);
}

.media-timeline-item > aside > span {
    margin: 0;
    font-size: 1.35rem;
}

.media-timeline-item > aside small {
    text-align: right;
}

.media-timeline-item--portrait .media-timeline-content,
.media-timeline-item--square .media-timeline-content,
.media-timeline-item--post .media-timeline-content,
.media-timeline-item--landscape .media-timeline-content {
    width: 100%;
}

.media-timeline-item:nth-child(even):not(.media-timeline-item--article) .media-timeline-content {
    margin-left: 0;
}

.media-timeline-content {
    border: 1px solid var(--media-line);
    color: var(--white);
    background: #080807;
}

.media-archive .media-timeline-item > aside {
    color: rgba(9, 9, 9, 0.62);
    border-bottom-color: rgba(9, 9, 9, 0.25);
}

.media-archive .media-timeline-item > aside > span {
    color: #090909;
}

.media-archive .media-timeline-item > aside time {
    color: rgba(9, 9, 9, 0.78);
}

.media-timeline .media-embed {
    width: 100%;
}

.media-facebook-player > button {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    color: #fff;
    background: #090908;
    cursor: pointer;
    overflow: hidden;
}

.media-facebook-player > button::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.48));
    transition: background 250ms ease;
}

.media-facebook-player > button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 300ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.media-facebook-player > button > span {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: clamp(3.4rem, 6vw, 4.8rem);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(7px);
    transform: translate(-50%, -50%);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.media-facebook-player > button > span::after {
    width: 0;
    height: 0;
    margin-left: 0.22rem;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.78rem solid currentColor;
    content: '';
}

.media-facebook-player > button:hover img {
    filter: brightness(0.78) saturate(1.08);
    transform: scale(1.025);
}

.media-facebook-player > button:hover > span,
.media-facebook-player > button:focus-visible > span {
    border-color: var(--yellow);
    color: #111;
    background: var(--yellow);
    transform: translate(-50%, -50%) scale(1.07);
}

.media-facebook-player.is-playing iframe {
    position: absolute;
    inset: 0;
}

.media-timeline-article {
    min-height: 0;
    padding: clamp(1.25rem, 2vw, 1.8rem);
    border: 0;
}

.media-timeline-article header {
    gap: 0.7rem;
    font-size: 0.52rem;
}

.media-publication-mark {
    width: 2.35rem;
}

.media-publication-mark img {
    width: 1.55rem;
    height: 1.55rem;
}

.media-timeline-article h3 {
    margin-top: clamp(2.8rem, 4vw, 4.5rem);
    font-size: clamp(1.9rem, 2.8vw, 3.25rem);
    line-height: 0.95;
}

.media-timeline-article > p {
    margin-top: 1.2rem;
    font-size: 0.8rem;
    line-height: 1.55;
}

.media-timeline-article > footer {
    margin-top: 2.4rem;
    padding-top: 0.85rem;
    font-size: 0.5rem;
}

.media-timeline-caption {
    min-height: 0;
    padding: 1rem;
}

.media-timeline-caption p {
    font-size: 0.48rem;
}

.media-timeline-caption h3 {
    margin-top: 0.55rem;
    font-size: clamp(1.2rem, 1.75vw, 1.8rem);
}

.media-timeline-caption a {
    font-size: 0.48rem;
}

@media (max-width: 1000px) {
    .media-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 621px) {
    .media-timeline.is-masonry-ready {
        grid-auto-flow: row dense;
        grid-auto-rows: 8px;
        row-gap: 8px;
    }

    .media-timeline.is-masonry-ready .media-timeline-item {
        align-self: start;
    }
}

@media (max-width: 620px) {
    .media-archive {
        padding-top: 2.5rem;
    }

    .media-timeline {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .media-timeline-item {
        gap: 0.8rem;
        padding: 0;
    }

    .media-timeline-item--portrait .media-timeline-content,
    .media-timeline-item--post .media-timeline-content {
        width: min(100%, 20rem);
        margin-right: auto;
        margin-left: auto;
    }

    .media-timeline-article {
        padding: 1.25rem;
    }

    .media-timeline-article h3 {
        margin-top: 3rem;
        font-size: clamp(2rem, 10.5vw, 2.8rem);
    }

    .media-timeline-caption {
        min-height: 0;
        padding: 0.9rem;
    }
}

/* Not found page */

.not-found-page {
    min-height: 100svh;
    padding: clamp(8rem, 18vh, 13rem) clamp(2rem, 7vw, 8rem) clamp(5rem, 10vh, 8rem);
    background:
        radial-gradient(circle at 75% 35%, rgba(255, 213, 31, 0.12), transparent 28rem),
        #050505;
}

.not-found-panel {
    width: min(100%, 75rem);
    margin: 0 auto;
}

.not-found-panel > p:first-child {
    margin: 0;
    color: var(--yellow);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.not-found-panel h1 {
    margin: clamp(2.5rem, 6vw, 5rem) 0 0;
    font-size: clamp(4.5rem, 12vw, 12rem);
    letter-spacing: -0.08em;
    line-height: 0.78;
    text-transform: uppercase;
}

.not-found-panel h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(245, 244, 239, 0.7);
}

.not-found-panel > p:not(:first-child) {
    max-width: 32rem;
    margin: 3rem 0 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.not-found-panel a {
    display: inline-flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--yellow);
    text-decoration: none;
    text-transform: uppercase;
}

.not-found-panel a span {
    color: var(--yellow);
}

/* About page */

.site-nav a[aria-current="page"] {
    color: #344451;
}

.site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

@media (max-width: 900px) {
    .site-nav a[aria-current="page"] {
        color: var(--white);
    }
}

.about-page {
    --about-line: rgba(245, 244, 239, 0.14);
    --about-gold: #d9a722;
    overflow: hidden;
    background: #050505;
}

.about-shell {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding-right: clamp(2rem, 6vw, 7rem);
    padding-left: clamp(2rem, 6vw, 7rem);
}

.about-hero {
    position: relative;
    display: grid;
    width: min(100%, var(--max-width));
    min-height: 100svh;
    margin: 0 auto;
    padding: clamp(6.5rem, 12vh, 9rem) clamp(2rem, 6vw, 7rem) clamp(2rem, 4vh, 4rem);
    background:
        radial-gradient(circle at 50% 46%, rgba(216, 136, 48, 0.12), transparent 23%),
        radial-gradient(ellipse at 50% 112%, rgba(154, 107, 0, 0.09), transparent 42%),
        #f4eee1;
    isolation: isolate;
    overflow: hidden;
}

.about-hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(154, 107, 0, 0.1), transparent 15%, transparent 85%, rgba(154, 107, 0, 0.1)),
        repeating-radial-gradient(circle at 50% 50%, transparent 0 4.9rem, rgba(255, 255, 255, 0.16) 5rem 5.05rem);
}

.about-hero::after {
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    bottom: 0;
    left: clamp(2rem, 6vw, 7rem);
    height: 1px;
    content: '';
    background: linear-gradient(90deg, #d88830, rgba(63, 52, 28, 0.16) 28%, transparent 78%);
}

.about-hero-glow {
    position: absolute;
    z-index: -1;
    top: 50%;
    right: auto;
    left: 50%;
    width: clamp(28rem, 54vw, 60rem);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow:
        0 0 0 5rem rgba(255, 255, 255, 0.018),
        0 0 0 10rem rgba(255, 255, 255, 0.01),
        inset 0 0 7rem rgba(216, 136, 48, 0.04);
    transform: translate(-50%, -50%);
    animation: about-orbit 14s ease-in-out infinite alternate;
}

.about-hero-grid {
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 52, 28, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 52, 28, 0.025) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: radial-gradient(circle at center, #000 15%, transparent 72%);
}

.about-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    width: 100%;
    max-width: 85rem;
    margin: 0 auto;
    text-align: center;
}

.about-kicker,
.about-overline {
    margin: 0;
    color: var(--yellow);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.about-kicker {
    color: #9a6b00;
}

.about-hero h1 {
    max-width: none;
    margin: clamp(1.5rem, 3vh, 2.5rem) auto 1.5rem;
    color: #4f4a42;
    font-size: clamp(0.68rem, 0.9vw, 0.88rem);
    font-weight: 500;
    letter-spacing: 0.32em;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: none;
}

.about-hero-logo {
    display: block;
    width: clamp(24rem, 52vw, 60rem);
    max-height: 59svh;
    margin: clamp(1.1rem, 2vh, 2rem) auto 0;
    object-fit: contain;
    filter: drop-shadow(0 2.5rem 5rem rgba(121, 85, 11, 0.16));
    transform-origin: center;
    animation: about-logo-breathe 6s ease-in-out infinite;
}

.about-hero h1 span,
.about-purpose h2 em,
.about-region h2 em,
.about-leadership h2 em,
.about-ecosystem h2 em,
.about-future h2 em {
    color: transparent;
    font-style: normal;
    -webkit-text-stroke: 1px rgba(245, 244, 239, 0.72);
}

.about-hero-copy > p:last-child {
    max-width: 36rem;
    margin: 0 auto;
    color: #625c52;
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.7;
}

.about-hero-locations {
    position: absolute;
    right: clamp(2rem, 6vw, 7rem);
    bottom: clamp(2rem, 5vh, 4rem);
    display: flex;
    gap: 1.25rem;
    color: #6f695f;
    font-size: 0.53rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero-locations span + span::before {
    margin-right: 1.25rem;
    color: #d88830;
    content: '•';
}

.about-scroll {
    position: absolute;
    z-index: 3;
    bottom: clamp(2rem, 5vh, 4rem);
    left: clamp(2rem, 6vw, 7rem);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #5f594f;
    font-size: 0.58rem;
    letter-spacing: 0.17em;
    text-decoration: none;
    text-transform: uppercase;
}

.about-scroll span {
    color: #d88830;
    font-size: 1rem;
    animation: about-arrow 1.8s ease-in-out infinite;
}

.about-section-label {
    display: grid;
    grid-template-columns: 4rem 1fr;
    align-items: center;
    gap: 1.2rem;
    color: #817f77;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-section-label::after {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 1px;
    content: '';
    background: var(--about-line);
}

.about-section-label span {
    color: var(--yellow);
}

.about-section-label p {
    grid-column: 2;
    grid-row: 1;
    z-index: 1;
    justify-self: start;
    margin: 0;
    padding-right: 1.3rem;
    background: #050505;
}

.about-purpose {
    position: relative;
    padding-top: clamp(4.5rem, 7vw, 7.5rem);
    padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.18);
    background: #f4eee1 url('/assets/images/about-rooftop-production.webp') 64% center / cover no-repeat;
    isolation: isolate;
    overflow: hidden;
}

.about-purpose::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background:
        linear-gradient(90deg, rgba(248, 243, 232, 0.98) 0%, rgba(248, 243, 232, 0.9) 48%, rgba(248, 243, 232, 0.32) 100%),
        linear-gradient(180deg, rgba(248, 243, 232, 0.82) 0%, rgba(248, 243, 232, 0.2) 48%, rgba(248, 243, 232, 0.9) 100%);
}

.about-purpose::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: '';
    background: radial-gradient(circle at 82% 48%, rgba(214, 154, 20, 0.16), transparent 34%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.about-purpose-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    max-width: min(52vw, 52rem);
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

.about-purpose-copy .about-overline {
    margin-bottom: clamp(1.25rem, 2vw, 2rem);
    color: #8b6309;
}

.about-purpose .about-section-label {
    color: #6c665b;
}

.about-purpose .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-purpose .about-section-label span {
    color: #8b6309;
}

.about-purpose .about-section-label p {
    background: #f4eee1;
}

.about-purpose h2,
.about-region h2,
.about-leadership h2,
.about-ecosystem h2,
.about-future h2 {
    margin: 0;
    font-size: clamp(3.2rem, 6.8vw, 8rem);
    letter-spacing: -0.075em;
    line-height: 0.86;
    text-transform: uppercase;
}

.about-purpose h2 {
    font-size: clamp(3.2rem, 5.3vw, 6.5rem);
}

.about-purpose h2 em {
    -webkit-text-stroke-color: rgba(23, 20, 14, 0.68);
}

.about-columns {
    grid-column: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(2rem, 3vw, 3rem);
}

.about-columns p,
.about-region-copy > p,
.about-ecosystem-heading > p:last-child,
.about-future-copy > p {
    margin: 0;
    color: #999891;
    font-size: clamp(0.98rem, 1.2vw, 1.14rem);
    line-height: 1.75;
}

.about-purpose .about-columns p {
    color: #5e584e;
}

.about-delhi-frame figcaption {
    position: absolute;
    z-index: 2;
    right: clamp(1rem, 3vw, 3rem);
    bottom: clamp(1rem, 2.5vw, 2.5rem);
    left: clamp(1rem, 3vw, 3rem);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: #d5d3cc;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-delhi-frame figcaption span:first-child {
    color: var(--yellow);
}

.about-statement {
    margin: clamp(4rem, 7vw, 7rem) 0 0;
    font-size: clamp(3.25rem, 7.2vw, 7.75rem);
    font-weight: 800;
    letter-spacing: -0.075em;
    line-height: 0.84;
    text-transform: uppercase;
}

.about-statement span {
    color: #ad7907;
}

.about-region {
    position: relative;
    min-height: 0;
    padding: clamp(4.5rem, 7vw, 7.5rem) 0;
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.16);
    border-bottom: 1px solid rgba(45, 36, 18, 0.16);
    background: #f4eee1 url('/assets/images/about-north-india.webp') center / cover no-repeat;
    isolation: isolate;
    overflow: hidden;
}

.about-region-shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248, 243, 232, 0.98) 0%, rgba(248, 243, 232, 0.92) 46%, rgba(248, 243, 232, 0.7) 100%),
        linear-gradient(180deg, rgba(248, 243, 232, 0.82), rgba(248, 243, 232, 0.4) 42%, rgba(248, 243, 232, 0.88));
}

.about-region .about-section-label {
    color: #6c665b;
}

.about-region .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-region .about-section-label span,
.about-region-copy .about-overline {
    color: #8b6309;
}

.about-region .about-section-label p {
    background: rgba(244, 238, 225, 0.92);
}

.about-region h2 em {
    -webkit-text-stroke-color: rgba(23, 20, 14, 0.56);
}

.about-region-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.85fr) minmax(24rem, 1.15fr);
    align-items: center;
    gap: clamp(3rem, 6vw, 7rem);
    margin-top: clamp(2.75rem, 4.5vw, 4.5rem);
}

.about-region-copy {
    position: relative;
    z-index: 2;
}

.about-region-copy .about-overline {
    margin-bottom: 1.25rem;
}

.about-region-copy > p:not(.about-overline) {
    max-width: 38rem;
    margin: 2rem 0 0;
    color: #5e584e;
}

.about-region-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.2rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(45, 36, 18, 0.18);
    color: #6f695f;
    font-size: 0.54rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.about-region-rail span:not(:last-child)::after {
    margin-left: 1.2rem;
    color: var(--yellow);
    content: '•';
}

.about-delhi-frame {
    position: relative;
    aspect-ratio: 4 / 4.6;
    margin: 0;
    border: 1px solid rgba(45, 36, 18, 0.2);
    box-shadow: 0 3rem 8rem rgba(76, 54, 15, 0.2);
    overflow: hidden;
    transform: rotate(1.5deg);
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-delhi-frame::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.78));
    pointer-events: none;
}

.about-delhi-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 47% center;
    filter: saturate(0.76) contrast(1.06);
    transform: scale(1.08);
    transition: filter 650ms ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-delhi-frame:hover {
    transform: rotate(0deg) translateY(-0.5rem);
}

.about-delhi-frame:hover img {
    filter: saturate(0.95) contrast(1.03);
    transform: scale(1.12);
}

.about-beliefs {
    padding: clamp(4rem, 6.5vw, 7rem) 0;
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.16);
    border-bottom: 1px solid rgba(45, 36, 18, 0.16);
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.52), transparent 26rem),
        radial-gradient(circle at 12% 88%, rgba(216, 136, 48, 0.08), transparent 30rem),
        #f4eee1;
}

.about-ecosystem .about-section-label p {
    background: #080806;
}

.about-beliefs .about-section-label {
    color: #6c665b;
}

.about-beliefs .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-beliefs .about-section-label span {
    color: #8b6309;
}

.about-beliefs .about-section-label p {
    background: #f4eee1;
}

.belief-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(2.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(45, 36, 18, 0.2);
    border-left: 1px solid rgba(45, 36, 18, 0.2);
}

.belief-card {
    position: relative;
    min-height: clamp(22rem, 31vw, 32rem);
    padding: clamp(2rem, 3.25vw, 3.75rem);
    color: #f5f4ef;
    border-right: 1px solid rgba(245, 244, 239, 0.14);
    border-bottom: 1px solid rgba(245, 244, 239, 0.14);
    background:
        radial-gradient(circle at 88% 14%, rgba(216, 136, 48, 0.08), transparent 18rem),
        #090806;
    overflow: hidden;
    transition: background 400ms ease;
}

.belief-card > span {
    display: block;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    color: #d88830;
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.belief-card p {
    position: relative;
    z-index: 2;
    max-width: 15ch;
    margin: 0;
    font-size: clamp(1.8rem, 3.2vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.belief-card strong {
    position: absolute;
    right: -0.05em;
    bottom: -0.22em;
    color: rgba(216, 136, 48, 0.07);
    font-size: clamp(18rem, 35vw, 40rem);
    line-height: 0.8;
    pointer-events: none;
    transition: color 400ms ease, transform 600ms ease;
}

.belief-card:hover {
    background:
        radial-gradient(circle at 88% 14%, rgba(216, 136, 48, 0.14), transparent 20rem),
        #110e09;
}

.belief-card:hover strong {
    color: rgba(216, 136, 48, 0.13);
    transform: translateY(-0.04em);
}

.about-leadership {
    position: relative;
    padding-top: clamp(4.5rem, 7vw, 7.5rem);
    padding-bottom: clamp(5rem, 8vw, 8.5rem);
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.16);
    border-bottom: 1px solid rgba(45, 36, 18, 0.16);
    background:
        radial-gradient(circle at 86% 18%, rgba(216, 136, 48, 0.07), transparent 28rem),
        #f4eee1;
    box-shadow: 0 0 0 100vmax #f4eee1;
    clip-path: inset(0 -100vmax);
}

.about-leadership .about-section-label {
    color: #6c665b;
}

.about-leadership .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-leadership .about-section-label span,
.about-leadership-heading .about-overline {
    color: #8b6309;
}

.about-leadership .about-section-label p {
    background: #f4eee1;
}

.about-leadership h2 em {
    -webkit-text-stroke-color: rgba(23, 20, 14, 0.56);
}

.about-leadership-heading {
    display: grid;
    grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1.65fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    margin: clamp(2.75rem, 4.5vw, 4.5rem) 0 clamp(3.5rem, 6vw, 6rem);
}

.about-leadership-heading h2 {
    font-size: clamp(3.2rem, 6.2vw, 7.3rem);
    white-space: nowrap;
}

.about-leadership-heading .about-overline {
    padding-top: 0.8rem;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(4rem, 7vw, 7rem) clamp(2rem, 5vw, 5.5rem);
}

.leader-card:nth-child(1) {
    grid-column: 1 / 3;
}

.leader-card:nth-child(2) {
    grid-column: 3 / 5;
}

.leader-card:nth-child(3) {
    grid-column: 2 / 4;
}

.leader-card:nth-child(even) {
    margin-top: clamp(2rem, 4.5vw, 4.5rem);
}

.leader-card figure {
    position: relative;
    aspect-ratio: 4 / 4.7;
    margin: 0 0 2rem;
    border: 1px solid rgba(45, 36, 18, 0.16);
    background: #0d0c09;
    box-shadow: 0 2rem 5rem rgba(76, 54, 15, 0.13);
    overflow: hidden;
}

.leader-card figure::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.72));
    pointer-events: none;
}

.leader-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.015);
    transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.leader-card:nth-child(1) img,
.leader-card:nth-child(2) img {
    object-position: center;
}

.leader-card:nth-child(4) img {
    object-position: 58% center;
}

.leader-card figure > span {
    position: absolute;
    z-index: 2;
    right: 1.5rem;
    bottom: 1.2rem;
    color: #d88830;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
}

.leader-card > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(45, 36, 18, 0.2);
}

.leader-card > div > p:first-child {
    margin: 0;
    color: #8b6309;
    font-size: 0.56rem;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.leader-card h3 {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    margin: 0.8rem 0 0;
    font-size: clamp(1.7rem, 3vw, 3.3rem);
    letter-spacing: -0.055em;
    line-height: 0.92;
    text-transform: uppercase;
}

.leader-card > div > p:last-child {
    grid-column: 1;
    width: 100%;
    max-width: none;
    margin: 1.35rem 0 0;
    color: #5e584e;
    font-size: 0.88rem;
    line-height: 1.7;
}

.leader-card:hover img {
    transform: scale(1.065);
}

.about-ecosystem {
    position: relative;
    padding: clamp(4.5rem, 7vw, 7.5rem) 0 0;
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.18);
    border-bottom: 1px solid rgba(45, 36, 18, 0.18);
    background: #f4eee1;
    overflow: hidden;
}

.about-ecosystem::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    content: '';
    background:
        linear-gradient(180deg, rgba(248, 243, 232, 0.97) 0%, rgba(248, 243, 232, 0.76) 20%, rgba(248, 243, 232, 0.82) 69%, #f4eee1 100%),
        linear-gradient(90deg, rgba(248, 243, 232, 0.92), rgba(248, 243, 232, 0.46) 48%, rgba(248, 243, 232, 0.82)),
        url('/assets/images/about-soundstage.webp') center 16% / cover no-repeat;
}

.about-ecosystem .about-shell {
    position: relative;
    z-index: 2;
}

.about-ecosystem-light {
    position: absolute;
    top: -15rem;
    left: 45%;
    width: 55rem;
    height: 55rem;
    border-radius: 50%;
    background: rgba(190, 129, 9, 0.1);
    filter: blur(9rem);
    animation: ecosystem-glow 9s ease-in-out infinite alternate;
}

.about-craft-image {
    position: relative;
    aspect-ratio: 16 / 7;
    width: 100vw;
    max-width: none;
    margin: 0 0 0 calc(50% - 50vw);
    border: 1px solid rgba(45, 36, 18, 0.22);
    background: #050505;
    box-shadow: 0 3rem 8rem rgba(59, 45, 20, 0.25);
    overflow: hidden;
}

.about-craft-image::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.82));
    pointer-events: none;
}

.about-craft-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.08);
    transform: scale(1.015);
    transition: filter 600ms ease, transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.about-craft-image figcaption {
    position: absolute;
    z-index: 2;
    right: clamp(1rem, 3vw, 3rem);
    bottom: clamp(1rem, 2.5vw, 2.5rem);
    left: clamp(1rem, 3vw, 3rem);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    color: #c8c7c1;
    font-size: 0.56rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-craft-image figcaption span:first-child {
    color: var(--yellow);
}

.about-craft-image:hover img {
    filter: saturate(0.95) contrast(1.04);
    transform: scale(1.055);
}

.about-ecosystem-heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(14rem, 0.7fr) minmax(24rem, 1.3fr);
    gap: 1.5rem clamp(2.5rem, 5vw, 6rem);
    margin: clamp(2.75rem, 4.5vw, 4.5rem) 0 clamp(3.25rem, 5vw, 5rem);
}

.about-ecosystem-heading .about-overline {
    padding-top: 0.8rem;
    color: #8b6309;
}

.about-ecosystem-heading > p:last-child {
    grid-column: 2;
    max-width: 38rem;
    margin-top: 1.25rem;
    color: #5e584e;
}

.about-ecosystem .about-section-label {
    color: #6c665b;
}

.about-ecosystem .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-ecosystem .about-section-label span {
    color: #8b6309;
}

.about-ecosystem .about-section-label p {
    background: #f4eee1;
}

.about-ecosystem h2 em {
    -webkit-text-stroke-color: rgba(23, 20, 14, 0.68);
}

.about-future {
    position: relative;
    padding-top: clamp(4.5rem, 7vw, 7.5rem);
    padding-bottom: clamp(5rem, 8vw, 8.5rem);
    color: #17140e;
    border-top: 1px solid rgba(45, 36, 18, 0.16);
    border-bottom: 1px solid rgba(45, 36, 18, 0.16);
    background:
        radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.52), transparent 28rem),
        radial-gradient(circle at 10% 90%, rgba(216, 136, 48, 0.07), transparent 30rem),
        #f4eee1;
    box-shadow: 0 0 0 100vmax #f4eee1;
    clip-path: inset(0 -100vmax);
}

.about-future .about-section-label {
    color: #6c665b;
}

.about-future .about-section-label::after {
    background: rgba(45, 36, 18, 0.2);
}

.about-future .about-section-label span {
    color: #8b6309;
}

.about-future .about-section-label p {
    background: #f4eee1;
}

.about-future-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 1.3fr) minmax(18rem, 0.7fr);
    gap: clamp(3rem, 6vw, 7rem);
    margin-top: clamp(2.75rem, 4.5vw, 4.5rem);
}

.about-future .about-overline {
    margin-bottom: 2rem;
    color: #8b6309;
}

.about-future h2 em {
    -webkit-text-stroke-color: rgba(23, 20, 14, 0.56);
}

.about-future-copy {
    align-self: end;
}

.about-future-copy > p + p {
    margin-top: 1.5rem;
}

.about-future-copy > p {
    color: #5e584e;
}

.about-future-copy small {
    display: block;
    margin-top: 2.25rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(45, 36, 18, 0.2);
    color: #6c665b;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
    text-transform: uppercase;
}

.about-future blockquote {
    position: relative;
    max-width: 75rem;
    margin: clamp(4.5rem, 7vw, 7.5rem) auto 0;
    padding: clamp(2.75rem, 4.5vw, 5rem);
    color: #f5f4ef;
    border: 1px solid rgba(216, 136, 48, 0.24);
    background:
        radial-gradient(circle at 50% 0%, rgba(216, 136, 48, 0.11), transparent 24rem),
        #090806;
    box-shadow: 0 2.5rem 6rem rgba(76, 54, 15, 0.16);
    text-align: center;
}

.about-future blockquote::before {
    position: absolute;
    top: -0.6em;
    left: 50%;
    color: #d88830;
    content: '“';
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    transform: translateX(-50%);
}

.about-future blockquote p {
    margin: 0;
    font-size: clamp(1.7rem, 3.6vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.1;
}

.about-future blockquote cite {
    display: block;
    margin-top: 2rem;
    color: #aaa69d;
    font-size: 0.56rem;
    font-style: normal;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(2.5rem);
    transition: opacity 750ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes about-orbit {
    to {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes about-logo-breathe {
    50% {
        filter: drop-shadow(0 3rem 6rem rgba(238, 165, 21, 0.28));
        transform: translateY(-0.35rem) scale(1.012);
    }
}

@keyframes about-arrow {
    50% {
        transform: translateY(0.45rem);
    }
}

@keyframes ecosystem-glow {
    to {
        opacity: 0.55;
        transform: translate3d(-8rem, 5rem, 0) scale(0.88);
    }
}

@media (max-width: 900px) {
    .about-hero {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .about-hero h1 {
        font-size: 0.7rem;
    }

    .about-hero-logo {
        width: clamp(23rem, 68vw, 42rem);
    }

    .about-hero-copy > p:last-child {
        margin-left: 0;
    }


    .about-hero-locations {
        display: none;
    }

    .about-scroll {
        left: 2rem;
    }

    .about-purpose-copy,
    .about-region-grid,
    .about-leadership-heading,
    .about-ecosystem-heading,
    .about-future-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-purpose-copy {
        max-width: 100%;
    }

    .about-purpose-copy h2,
    .about-leadership-heading h2,
    .about-ecosystem-heading h2 {
        grid-column: 1;
    }

    .about-columns,
    .about-ecosystem-heading > p:last-child {
        grid-column: 1;
    }

    .about-delhi-frame {
        width: min(76%, 34rem);
        margin-left: auto;
    }

    .leader-card > div {
        grid-template-columns: 1fr;
    }

    .leader-card h3,
    .leader-card > div > p:last-child {
        grid-column: 1;
    }

    .leader-card h3 {
        grid-row: auto;
    }
}

@media (max-width: 620px) {
    .about-shell {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .about-hero {
        min-height: 100svh;
        padding: 6.5rem 1.25rem 3rem;
    }

    .about-hero::before {
        background:
            linear-gradient(90deg, rgba(154, 107, 0, 0.08), transparent 18%, transparent 82%, rgba(154, 107, 0, 0.08)),
            repeating-radial-gradient(circle at 50% 50%, transparent 0 3.5rem, rgba(255, 255, 255, 0.14) 3.55rem 3.6rem);
    }

    .about-hero::after {
        right: 1.25rem;
        left: 1.25rem;
    }

    .about-hero-copy {
        align-self: center;
    }

    .about-hero h1 {
        max-width: none;
        margin-top: 1.5rem;
        font-size: 0.64rem;
        line-height: 1.5;
    }

    .about-hero-logo {
        width: min(100%, 28rem);
        max-height: 50svh;
        margin: 1.1rem auto 0;
    }

    .about-hero-copy > p:last-child {
        max-width: 30rem;
        font-size: 0.9rem;
        line-height: 1.65;
    }


    .about-scroll {
        bottom: 2rem;
        left: 1.25rem;
    }

    .about-section-label {
        grid-template-columns: 2.5rem 1fr;
    }

    .about-purpose-copy,
    .about-leadership-heading,
    .about-ecosystem-heading,
    .about-future-grid {
        margin-top: 3.5rem;
    }

    .about-purpose-copy {
        margin-top: 2.5rem;
    }

    .about-purpose h2,
    .about-region h2,
    .about-leadership h2,
    .about-ecosystem h2,
    .about-future h2 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .about-purpose h2 {
        font-size: clamp(2.85rem, 13vw, 4.6rem);
    }

    .about-leadership-heading h2 {
        font-size: clamp(1.75rem, 9.2vw, 3.2rem);
    }

    .about-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-delhi-frame figcaption {
        flex-direction: column;
        gap: 0.55rem;
    }

    .about-purpose {
        background-position: 72% center;
    }

    .about-purpose::before {
        background:
            linear-gradient(180deg, rgba(248, 243, 232, 0.94) 0%, rgba(248, 243, 232, 0.7) 50%, rgba(248, 243, 232, 0.94) 100%),
            linear-gradient(90deg, rgba(248, 243, 232, 0.92), rgba(248, 243, 232, 0.42));
    }

    .about-region {
        min-height: 0;
        background-position: 62% center;
    }

    .about-region-shade {
        background:
            linear-gradient(180deg, rgba(248, 243, 232, 0.96) 0%, rgba(248, 243, 232, 0.84) 50%, rgba(248, 243, 232, 0.94) 100%),
            linear-gradient(90deg, rgba(248, 243, 232, 0.94), rgba(248, 243, 232, 0.58));
    }

    .about-region-grid {
        gap: 3rem;
        margin-top: 2.5rem;
    }

    .about-region-copy > p:not(.about-overline) {
        margin-top: 2rem;
    }

    .about-delhi-frame {
        width: 100%;
        margin: 0;
        transform: none;
    }

    .about-statement {
        margin-top: 4rem;
        font-size: clamp(2.7rem, 13.5vw, 4.5rem);
    }

    .belief-grid,
    .leader-grid {
        grid-template-columns: 1fr;
    }

    .belief-grid {
        margin-top: 2.5rem;
    }

    .belief-card {
        min-height: 0;
        padding: 1.5rem;
    }

    .belief-card > span {
        margin-bottom: 3.5rem;
    }

    .belief-card p {
        font-size: clamp(1.7rem, 8vw, 2.7rem);
    }

    .about-leadership-heading {
        margin-top: 2.5rem;
        margin-bottom: 3rem;
    }

    .leader-grid {
        gap: 3.5rem;
    }

    .leader-card:nth-child(1),
    .leader-card:nth-child(2),
    .leader-card:nth-child(3) {
        grid-column: auto;
    }

    .leader-card:nth-child(even) {
        margin-top: 0;
    }

    .leader-card figure {
        aspect-ratio: 4 / 4.8;
    }

    .leader-card h3 {
        font-size: 2.2rem;
    }

    .about-ecosystem-heading {
        gap: 1.5rem;
        margin-top: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-craft-image {
        aspect-ratio: 4 / 5;
        margin-bottom: 0;
    }

    .about-craft-image img {
        object-position: 54% center;
    }

    .about-craft-image figcaption {
        flex-direction: column;
        gap: 0.55rem;
    }

    .about-future blockquote {
        margin-top: 4.5rem;
        padding: 3.5rem 1.5rem 2.25rem;
    }

    .about-future-grid {
        gap: 2.5rem;
        margin-top: 2.5rem;
    }


}

@media (prefers-reduced-motion: reduce) {
    .about-hero-glow,
    .about-hero-logo,
    .about-scroll span,
    .about-ecosystem-light {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
