:root {
    --ink: #14211c;
    --ink-soft: #425049;
    --forest: #10231d;
    --forest-2: #173129;
    --ivory: #f2efe8;
    --paper: #fbfaf6;
    --line: rgba(20, 33, 28, 0.18);
    --line-light: rgba(255, 255, 255, 0.28);
    --white: #ffffff;
    --accent: #b5a584;
    --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
    --sans: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shell: min(88vw, 1440px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

img,
video {
    display: block;
    width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

p,
h1,
h2,
h3 {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.025em;
}

h2 {
    max-width: 14ch;
    margin-bottom: 1.5rem;
    font-size: clamp(2.8rem, 5.5vw, 6rem);
    line-height: 0.98;
}

.page-shell {
    width: var(--shell);
    margin-inline: auto;
}

.section {
    padding-block: clamp(6.5rem, 11vw, 11rem);
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 1rem;
    left: 1rem;
    padding: 0.8rem 1rem;
    color: var(--forest);
    background: var(--white);
    transform: translateY(-180%);
    transition: transform 180ms ease;
}

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

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5.5rem;
    padding-inline: 4vw;
    color: var(--white);
    border-bottom: 1px solid transparent;
    transition: color 350ms ease, background 350ms ease, border-color 350ms ease, min-height 350ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    min-height: 4.6rem;
    color: var(--ink);
    background: rgba(242, 239, 232, 0.94);
    border-color: var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    position: relative;
    z-index: 102;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.08rem;
    letter-spacing: 0.045em;
}

.brand-name span,
.brand-footer span {
    color: var(--accent);
}

.brand-mark {
    display: grid;
    width: 2.3rem;
    height: 2.3rem;
    place-items: center;
}

/*.brand-mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}*/

.brand-mark {
      width: 48px;
	  height: 48px;
	  background-image: url("../../img/logo.png");
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: contain;
	  flex-shrink: 0;
    }

.logo-mark {
	  width: 48px;
	  height: 48px;
	  background-image: url("../../img/logo.png");
	  background-repeat: no-repeat;
	  background-position: center;
	  background-size: contain;
	  flex-shrink: 0;
	}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.2rem, 2vw, 2.4rem);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.105em;
    text-transform: uppercase;
}

.primary-nav a {
    position: relative;
    white-space: nowrap;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: -0.45rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 280ms var(--ease);
}

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

.primary-nav .nav-agencies {
    opacity: 0.72;
}

.primary-nav .nav-contact {
    padding: 0.72rem 1rem;
    border: 1px solid currentColor;
}

.primary-nav .nav-contact::after,
.primary-nav .language-switch::after {
    display: none;
}

.language-switch {
    padding-left: 0.2rem;
}

.nav-toggle {
    position: relative;
    z-index: 102;
    display: none;
    width: 2.9rem;
    height: 2.9rem;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 0.6rem;
    width: 1.7rem;
    height: 1px;
    background: currentColor;
    transition: transform 260ms var(--ease), top 260ms var(--ease);
}

.nav-toggle span:first-child {
    top: 1.15rem;
}

.nav-toggle span:last-child {
    top: 1.72rem;
}

.site-header.is-open .nav-toggle span:first-child {
    top: 1.45rem;
    transform: rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
    top: 1.45rem;
    transform: rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    min-height: max(42rem, 100svh);
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.hero-image,
.hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
    object-position: center;
    animation: hero-arrive 1.6s var(--ease) both;
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 20, 15, 0.84) 0%, rgba(7, 20, 15, 0.58) 34%, rgba(7, 20, 15, 0.05) 68%),
        linear-gradient(0deg, rgba(7, 20, 15, 0.45) 0%, transparent 42%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: clamp(7rem, 13vh, 9.5rem);
}

.hero h1 {
    max-width: 10.8ch;
    margin-bottom: 1.7rem;
    font-size: clamp(3.5rem, 7.4vw, 8.2rem);
    line-height: 0.91;
    text-wrap: balance;
}

.hero-content > p {
    max-width: 39rem;
    margin-bottom: 2.5rem;
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.35rem;
    border: 1px solid currentColor;
    cursor: pointer;
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 280ms ease, background 280ms ease, opacity 280ms ease;
}

.button-light {
    color: var(--white);
    background: transparent;
}

.button-light:hover,
.button-light:focus-visible {
    color: var(--forest);
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding-block: 0.3rem;
    border-bottom: 1px solid currentColor;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link span {
    font-size: 1rem;
    transition: transform 250ms var(--ease);
}

.text-link:hover span {
    transform: translate(0.18rem, -0.18rem);
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    right: 4vw;
    bottom: 2.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 1px;
    height: 3rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.35);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--white);
    content: "";
    animation: scroll-line 2s ease-in-out infinite;
    transform: translateY(-100%);
}

.eyebrow {
    margin-bottom: 1.5rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: rgba(255, 255, 255, 0.7);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.6fr);
    align-items: end;
    column-gap: 8vw;
    margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-intro {
    max-width: 33rem;
    margin-bottom: 0.4rem;
    color: var(--ink-soft);
    font-size: 1.03rem;
}

.visions {
    background: var(--ivory);
}

.visions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(18rem, 0.75fr);
    gap: clamp(3rem, 7vw, 8rem) clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.vision figure {
    margin: 0;
    overflow: hidden;
    background: #d8d3c8;
}

.vision figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease);
}

.vision:hover figure img {
    transform: scale(1.018);
}

.vision-salon figure {
    aspect-ratio: 3 / 2;
}

.vision-stair {
    margin-top: clamp(6rem, 14vw, 13rem);
}

.vision-stair figure {
    aspect-ratio: 2 / 3;
}

.vision-copy {
    max-width: 43rem;
    padding-top: 1.7rem;
}

.vision-copy .meta,
.meta {
    margin-bottom: 0.55rem;
    color: var(--ink-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.135em;
    text-transform: uppercase;
}

.vision-copy h3 {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 3.2vw, 3.7rem);
    line-height: 1;
}

.vision-copy > p:last-child {
    max-width: 37rem;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.vision-pavilion {
    position: relative;
    grid-column: 1 / -1;
    margin-top: clamp(2rem, 5vw, 5rem);
}

.vision-pavilion figure {
    aspect-ratio: 16 / 8.3;
}

.vision-copy-overlay {
    position: absolute;
    right: clamp(1.5rem, 5vw, 5rem);
    bottom: clamp(1.5rem, 5vw, 5rem);
    width: min(31rem, calc(100% - 3rem));
    padding: clamp(1.5rem, 3vw, 2.8rem);
    color: var(--white);
    background: rgba(12, 31, 24, 0.87);
    backdrop-filter: blur(12px);
}

.vision-copy-overlay .meta,
.vision-copy-overlay > p:last-child {
    color: rgba(255, 255, 255, 0.72);
}

.concept-note {
    max-width: 52rem;
    margin: 3rem 0 0 auto;
    padding-top: 1.3rem;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    font-size: 0.78rem;
}

.film-section {
    position: relative;
    display: grid;
    min-height: min(72rem, 88svh);
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--forest);
}

.film-section > img,
.film-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.film-section > img {
    object-fit: cover;
    object-position: center;
}

.film-shade {
    background: linear-gradient(90deg, rgba(6, 19, 14, 0.88) 0%, rgba(6, 19, 14, 0.58) 48%, rgba(6, 19, 14, 0.12) 78%);
}

.film-content {
    position: relative;
    z-index: 1;
}

.film-content h2 {
    max-width: 13ch;
    margin-bottom: 1.7rem;
}

.film-content > p:not(.eyebrow) {
    max-width: 34rem;
    margin-bottom: 2.2rem;
    color: rgba(255, 255, 255, 0.78);
}

.film-play {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.play-icon {
    position: relative;
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    place-items: center;
    transition: color 250ms ease, background 250ms ease;
}

.play-icon::after {
    width: 0;
    height: 0;
    margin-left: 0.2rem;
    border-top: 0.36rem solid transparent;
    border-bottom: 0.36rem solid transparent;
    border-left: 0.55rem solid currentColor;
    content: "";
}

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

.film-preview {
    display: inline-block;
    padding-top: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    border-top: 1px solid var(--line-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.services {
    background: var(--paper);
}

.services-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(19rem, 0.55fr);
    column-gap: 8vw;
    margin-bottom: clamp(4rem, 7vw, 7rem);
}

.services-heading .eyebrow {
    grid-column: 1 / -1;
}

.services-heading h2 {
    max-width: 11ch;
    margin-bottom: 0;
}

.services-heading > p:last-child {
    align-self: end;
    max-width: 32rem;
    margin-bottom: 0.55rem;
    color: var(--ink-soft);
}

.services-list {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.services-list li {
    display: flex;
    align-items: center;
    min-height: 7rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.6vw, 3rem);
    line-height: 1.1;
}

.studio {
    background: var(--ivory);
}

.studio-grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(24rem, 1fr);
    gap: clamp(3rem, 9vw, 10rem);
    align-items: center;
}

.studio-image {
    margin: 0;
}

.studio-image img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.studio-content h2 {
    max-width: 11ch;
}

.studio-intro {
    max-width: 42rem;
    margin-bottom: clamp(3rem, 5vw, 5rem);
    color: var(--ink-soft);
    font-size: 1.03rem;
}

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

.people article {
    display: grid;
    grid-template-columns: 4.6rem 1fr;
    gap: 1.25rem;
    align-items: center;
    padding-block: 1.5rem;
    border-bottom: 1px solid var(--line);
}

.person-mark {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    font-family: var(--serif);
    font-size: 0.9rem;
}

.people h3 {
    margin-bottom: 0.18rem;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

.people p {
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.contact {
    color: var(--white);
    background: var(--forest);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1.1fr);
    gap: clamp(4rem, 10vw, 11rem);
}

.contact-copy h2 {
    max-width: 10ch;
}

.contact-copy > p:last-child {
    max-width: 31rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-form > label:not(.privacy) {
    display: grid;
    gap: 0.45rem;
}

.contact-form label > span:first-child {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.45rem 0;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line-light);
    border-radius: 0;
    outline: none;
    transition: border-color 200ms ease;
}

.contact-form textarea {
    min-height: 6rem;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--white);
}

.field-wide {
    grid-column: 1 / -1;
}

.privacy {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.75rem;
    align-items: start;
    cursor: pointer;
}

.privacy input {
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
    accent-color: var(--accent);
}

.privacy span {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.55;
    text-transform: none !important;
}

.privacy a {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.form-footer button[disabled] {
    cursor: wait;
    opacity: 0.55;
}

.form-status {
    max-width: 26rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.82rem;
}

.form-status.is-error {
    color: #ffd0c8;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.site-footer {
    padding-block: 4.5rem 2rem;
    color: rgba(255, 255, 255, 0.72);
    background: #09140f;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
}

.brand-footer {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-grid > div p {
    max-width: 25rem;
    margin: 1rem 0 0;
    font-size: 0.85rem;
}

.site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem 2rem;
    align-content: start;
    font-size: 0.77rem;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    color: var(--white);
}

.copyright {
    grid-column: 1 / -1;
    margin: 2.2rem 0 0;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
}

.film-dialog {
    width: min(92vw, 1180px);
    max-width: none;
    padding: 0;
    background: #050906;
    border: 0;
}

.film-dialog::backdrop {
    background: rgba(3, 9, 6, 0.92);
    backdrop-filter: blur(7px);
}

.film-dialog video {
    max-height: 86svh;
}

.dialog-close {
    position: absolute;
    z-index: 2;
    top: 0.8rem;
    right: 0.8rem;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    color: var(--white);
    background: rgba(5, 14, 9, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    place-items: center;
}

.js .reveal {
    opacity: 0;
    transform: translateY(2.2rem);
    transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

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

@keyframes hero-arrive {
    from { opacity: 0; transform: scale(1.035); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-line {
    0% { transform: translateY(-100%); }
    45%, 55% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

@media (max-width: 1080px) {
    :root {
        --shell: min(90vw, 920px);
    }

    .nav-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        z-index: 101;
        inset: 0;
        display: grid;
        align-content: center;
        justify-items: start;
        gap: 1.15rem;
        padding: 7rem 7vw 4rem;
        color: var(--ink);
        background: var(--ivory);
        font-family: var(--serif);
        font-size: clamp(1.9rem, 6vw, 3.3rem);
        font-weight: 400;
        letter-spacing: -0.02em;
        text-transform: none;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-1rem);
        transition: opacity 280ms ease, transform 400ms var(--ease);
    }

    .primary-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .primary-nav .nav-contact {
        margin-top: 0.8rem;
        padding: 0.7rem 1rem;
        font-family: var(--sans);
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .primary-nav .language-switch {
        position: absolute;
        right: 7vw;
        bottom: 2rem;
        font-family: var(--sans);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.12em;
    }

    .visions-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(15rem, 0.65fr);
    }

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

@media (max-width: 760px) {
    :root {
        --shell: min(88vw, 40rem);
    }

    html {
        scroll-padding-top: 4.6rem;
    }

    h2 {
        font-size: clamp(2.65rem, 13vw, 4.5rem);
    }

    .site-header {
        min-height: 4.8rem;
        padding-inline: 6vw;
    }

    .brand {
        gap: 0.55rem;
        font-size: 0.92rem;
    }

    .brand-mark {
        width: 2rem;
        height: 2rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-image {
        object-position: 62% center;
    }

    .hero-shade {
        background: linear-gradient(0deg, rgba(6, 19, 14, 0.9) 0%, rgba(6, 19, 14, 0.55) 55%, rgba(6, 19, 14, 0.18) 100%);
    }

    .hero-content {
        padding-bottom: 8rem;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(3.15rem, 16vw, 5rem);
        line-height: 0.94;
    }

    .hero-content > p {
        max-width: 30rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        align-items: flex-start;
        gap: 1.3rem;
        flex-direction: column;
    }

    .scroll-cue {
        right: 6vw;
        bottom: 1.8rem;
    }

    .scroll-cue span {
        display: none;
    }

    .section-heading,
    .services-heading {
        grid-template-columns: 1fr;
        gap: 1.7rem;
    }

    .section-heading .eyebrow,
    .services-heading .eyebrow {
        grid-column: auto;
        margin-bottom: 0;
    }

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

    .vision-stair {
        width: 78%;
        margin: 0 0 0 auto;
    }

    .vision-pavilion {
        grid-column: auto;
        margin-top: 0;
    }

    .vision-pavilion figure {
        aspect-ratio: 4 / 5;
    }

    .vision-pavilion figure img {
        object-position: 62% center;
    }

    .vision-copy-overlay {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        color: var(--ink);
        background: transparent;
        backdrop-filter: none;
    }

    .vision-copy-overlay .meta,
    .vision-copy-overlay > p:last-child {
        color: var(--ink-soft);
    }

    .film-section {
        min-height: 82svh;
    }

    .film-section > img {
        object-position: 66% center;
    }

    .film-shade {
        background: linear-gradient(0deg, rgba(5, 18, 13, 0.9) 0%, rgba(5, 18, 13, 0.58) 65%, rgba(5, 18, 13, 0.15) 100%);
    }

    .film-content {
        align-self: end;
        padding-bottom: 6rem;
    }

    .services-list li {
        min-height: 6.5rem;
        font-size: clamp(1.45rem, 7vw, 2.25rem);
    }

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

    .studio-image {
        width: 80%;
    }

    .contact-grid {
        gap: 3.5rem;
    }

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

    .field-wide {
        grid-column: auto;
    }

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

    .copyright {
        grid-column: auto;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
