:root {
    --green: #005e48;
    --green-deep: #004334;
    --sand: #d1ae85;
    --cream: #f2ede3;
    --cream-2: #e8e0d3;
    --espresso: #171411;
    --white: #fffdf8;
    --line: rgba(23, 20, 17, 0.18);
    --container: min(92vw, 1440px);
    --font-sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--espresso);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    background: var(--sand);
    color: var(--green-deep);
}

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

img {
    height: auto;
}

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

button {
    color: inherit;
    font: inherit;
}

p,
h1,
h2,
h3,
figure {
    margin: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 12px 18px;
    translate: 0 -160%;
    background: var(--sand);
    color: var(--espresso);
    font-size: 0.8rem;
    font-weight: 700;
    transition: translate 180ms ease;
}

.skip-link:focus {
    translate: 0;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    height: 3px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    scale: 0 1;
    transform-origin: left;
    background: var(--sand);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    width: 100%;
    min-height: 88px;
    padding: 0 4vw;
    border-bottom: 1px solid transparent;
    transition:
        min-height 350ms var(--ease),
        background-color 350ms ease,
        border-color 350ms ease;
}

.site-header.is-scrolled,
.site-header.menu-is-open {
    min-height: 72px;
    border-color: var(--line);
    background: rgba(242, 237, 227, 0.95);
    backdrop-filter: blur(16px);
}

.brand {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 178px;
}

.brand img {
    height: auto;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 2.6vw, 44px);
}

.desktop-nav a,
.header-menu-link {
    position: relative;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

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

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    scale: 1 1;
    transform-origin: left;
}

.header-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0 12px 24px;
    border-left: 1px solid var(--line);
}

.header-menu-link span {
    color: var(--green);
    font-size: 1rem;
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.section {
    width: var(--container);
    margin-inline: auto;
    padding-block: clamp(100px, 12vw, 190px);
}

.eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.section-label span {
    display: grid;
    width: 34px;
    height: 34px;
    border: 1px solid currentColor;
    border-radius: 50%;
    place-items: center;
    font-size: 0.62rem;
}

.section-label--light {
    color: var(--cream);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 24px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        color 260ms ease,
        background-color 260ms ease,
        translate 260ms var(--ease);
}

.button:hover,
.button:focus-visible {
    translate: 0 -3px;
}

.button--primary {
    border-color: var(--green);
    background: var(--green);
    color: var(--white);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: transparent;
    color: var(--green);
}

.button--sand {
    border-color: var(--sand);
    background: var(--sand);
    color: var(--espresso);
}

.button--sand:hover,
.button--sand:focus-visible {
    background: transparent;
    color: var(--sand);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.text-link span {
    transition: translate 250ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
    translate: 4px 0;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(40px, 6vw, 110px);
    padding: 130px 4vw 118px;
    overflow: hidden;
}

.hero__copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-top: 20px;
}

.hero__copy > .eyebrow {
    display: flex;
    justify-content: space-between;
    max-width: 670px;
    margin-bottom: clamp(36px, 5vw, 76px);
    color: var(--green);
}

.hero__copy > .eyebrow span {
    color: var(--espresso);
}

.hero__title {
    max-width: 800px;
    font-family: var(--font-serif);
    font-size: clamp(4.2rem, 7.4vw, 8.2rem);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.76;
}

.hero__title span,
.hero__title em {
    display: block;
}

.hero__title em {
    margin-left: 0.52em;
    color: var(--green);
    font-weight: 500;
}

.hero__intro {
    display: grid;
    grid-template-columns: minmax(180px, 330px) auto;
    align-items: end;
    gap: 42px;
    max-width: 710px;
    margin-top: clamp(46px, 7vw, 96px);
}

.hero__intro > p {
    color: rgba(23, 20, 17, 0.72);
    font-size: clamp(0.9rem, 1.1vw, 1.04rem);
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.hero__visual {
    position: relative;
    width: min(100%, 610px);
    justify-self: end;
    padding-right: clamp(0px, 3vw, 52px);
}

.hero__video-frame {
    position: relative;
    height: min(71vh, 760px);
    min-height: 560px;
    overflow: hidden;
    background: var(--green);
}

.hero__video-frame::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 67, 52, 0.1);
    content: "";
    pointer-events: none;
}

.hero__video-frame video {
    height: 100%;
    object-fit: cover;
}

.hero__video-label {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.hero__floating-image {
    position: absolute;
    right: -2vw;
    bottom: 11%;
    z-index: 3;
    width: clamp(130px, 12vw, 210px);
    padding: 8px 8px 12px;
    background: var(--cream);
    box-shadow: 0 18px 60px rgba(23, 20, 17, 0.16);
    rotate: 3deg;
}

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

.hero__floating-image figcaption {
    margin-top: 9px;
    font-family: var(--font-serif);
    font-size: 0.82rem;
    font-style: italic;
    text-align: center;
}

.motion-toggle {
    position: absolute;
    right: calc(3vw + 10px);
    top: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 13px;
    border: 0;
    border-radius: 999px;
    background: rgba(242, 237, 227, 0.88);
    cursor: pointer;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.motion-toggle__icon {
    font-size: 0.72rem;
    letter-spacing: -0.18em;
}

.hero__wordmark {
    position: absolute;
    right: 4vw;
    bottom: -0.08em;
    left: 4vw;
    z-index: 4;
    overflow: hidden;
    color: var(--cream);
    font-size: clamp(5.7rem, 15.3vw, 17.5rem);
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 0.67;
    mix-blend-mode: difference;
    pointer-events: none;
    text-align: center;
}

.brand-ticker {
    overflow: hidden;
    padding: 21px 0;
    background: var(--green);
    color: var(--cream);
}

.brand-ticker__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: clamp(30px, 4vw, 70px);
    animation: ticker 24s linear infinite;
}

.brand-ticker span {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 3.7rem);
    font-style: italic;
    line-height: 1;
    white-space: nowrap;
}

.brand-ticker i {
    color: var(--sand);
    font-size: 0.85rem;
    font-style: normal;
}

@keyframes ticker {
    to {
        translate: -50% 0;
    }
}

.manifesto {
    display: grid;
    width: 92vw;
    grid-template-columns: minmax(150px, 0.25fr) 1fr;
    gap: clamp(48px, 6vw, 90px);
    padding-block: clamp(90px, 9vw, 145px);
    border-bottom: 1px solid var(--line);
}

.ritual {
    width: 92vw;
}

.manifesto__content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 60px);
}

.manifesto__copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.manifesto__kicker {
    margin-bottom: clamp(36px, 4.5vw, 68px);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.7;
    text-transform: uppercase;
}

.manifesto__title {
    max-width: 950px;
    font-family: var(--font-serif);
    font-size: clamp(2.7rem, 4.25vw, 5.1rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.93;
}

.manifesto__title em {
    display: block;
    margin-top: 0.12em;
    color: var(--green);
    font-family: var(--font-serif);
    font-size: 1em;
    font-style: italic;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: inherit;
}

.manifesto__aside {
    max-width: 520px;
    margin-top: clamp(34px, 3.5vw, 56px);
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.manifesto__aside > p {
    margin-bottom: 32px;
    color: rgba(23, 20, 17, 0.8);
    font-size: clamp(0.98rem, 1.05vw, 1.08rem);
    line-height: 1.7;
}

.manifesto__collage {
    display: grid;
    min-height: clamp(520px, 39vw, 690px);
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: clamp(8px, 0.8vw, 14px);
}

.manifesto__image {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: var(--green-deep);
}

.manifesto__image--process {
    grid-column: 1;
    grid-row: 1;
}

.manifesto__image--people {
    grid-column: 2;
    grid-row: 1 / 3;
}

.manifesto__image--place {
    grid-column: 1;
    grid-row: 2;
}

.manifesto__image img {
    height: 100%;
    object-fit: cover;
    transition: scale 800ms var(--ease);
}

.manifesto__image--process img {
    object-position: 54% center;
}

.manifesto__image--people img {
    object-position: 58% center;
}

.manifesto__image--place img {
    object-position: center;
}

.manifesto__image::after {
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 38, 29, 0.48));
    content: "";
    pointer-events: none;
}

.manifesto__image:hover img {
    scale: 1.035;
}

.manifesto__image figcaption {
    position: absolute;
    right: 12px;
    bottom: 11px;
    left: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.manifesto__image figcaption span {
    color: var(--sand);
}

.section-heading,
.signature__header,
.place__heading {
    display: grid;
    grid-template-columns: minmax(170px, 0.32fr) 1fr;
    align-items: end;
    gap: 6vw;
    margin-bottom: clamp(64px, 9vw, 130px);
}

.section-heading h2,
.signature__header h2,
.place__heading h2,
.day-flow__intro h2,
.visit h2 {
    font-family: var(--font-serif);
    font-size: clamp(3.4rem, 7vw, 8rem);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.83;
}

.section-heading h2 em,
.signature__header h2 em,
.place__heading h2 em,
.day-flow__intro h2 em,
.visit h2 em {
    color: var(--green);
    font-weight: 500;
}

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

.ritual-card {
    position: relative;
    display: grid;
    min-height: 320px;
    grid-template-columns: 100px minmax(300px, 0.85fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 4vw;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.ritual-card__number {
    align-self: start;
    padding-top: 10px;
    color: var(--green);
    font-family: var(--font-serif);
    font-size: 1.5rem;
}

.ritual-card__copy .eyebrow {
    margin-bottom: 28px;
    color: var(--green);
}

.ritual-card__copy h3 {
    max-width: 580px;
    margin-bottom: 24px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.3vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.97;
}

.ritual-card__copy > p:last-child {
    max-width: 500px;
    color: rgba(23, 20, 17, 0.67);
    font-size: 0.9rem;
}

.ritual-card__image {
    width: min(100%, 360px);
    aspect-ratio: 1;
    overflow: hidden;
    justify-self: end;
}

.ritual-card__image img {
    height: 100%;
    object-fit: cover;
    transition: scale 700ms var(--ease);
}

.ritual-card:hover .ritual-card__image img {
    scale: 1.045;
}

.day-flow {
    display: grid;
    grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
    gap: 7vw;
    padding: clamp(100px, 12vw, 180px) 4vw;
    background: var(--green);
    color: var(--cream);
}

.day-flow__intro {
    position: sticky;
    top: 118px;
    align-self: start;
}

.day-flow__intro h2 {
    margin: clamp(60px, 8vw, 110px) 0 42px;
}

.day-flow__intro h2 em {
    color: var(--sand);
}

.day-flow__intro > p {
    max-width: 450px;
    color: rgba(242, 237, 227, 0.7);
}

.day-flow__moments {
    display: grid;
    gap: 90px;
}

.moment figure {
    height: min(76vh, 750px);
    overflow: hidden;
    background: var(--green-deep);
}

.moment img {
    height: 100%;
    object-fit: cover;
    transition: scale 900ms var(--ease);
}

.moment:hover img {
    scale: 1.035;
}

.moment__meta {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(242, 237, 227, 0.3);
}

.moment__meta > span {
    color: var(--sand);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.moment__meta h3 {
    margin-bottom: 4px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3.6rem);
    font-weight: 500;
    line-height: 1;
}

.moment__meta p {
    color: rgba(242, 237, 227, 0.68);
    font-size: 0.86rem;
}

.signature__header {
    grid-template-columns: minmax(170px, 0.27fr) 1fr minmax(230px, 0.26fr);
}

.signature__header > p {
    align-self: end;
    color: rgba(23, 20, 17, 0.67);
    font-size: 0.9rem;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(50px, 7vw, 110px) 3vw;
}

.signature-card:nth-child(even) {
    margin-top: 110px;
}

.signature-card figure {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-2);
}

.signature-card figure img {
    height: 100%;
    object-fit: cover;
    transition: scale 800ms var(--ease);
}

.signature-card:hover figure img {
    scale: 1.04;
}

.signature-card figure span {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cream);
    font-size: 0.62rem;
    font-weight: 700;
    place-items: center;
}

.signature-card__copy {
    display: grid;
    grid-template-columns: minmax(120px, 0.3fr) 1fr;
    gap: 14px 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.signature-card__copy .eyebrow {
    grid-row: 1 / 3;
    color: var(--green);
}

.signature-card__copy h3 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3vw, 3.5rem);
    font-weight: 500;
    line-height: 0.95;
}

.signature-card__copy > p:last-child {
    max-width: 420px;
    color: rgba(23, 20, 17, 0.65);
    font-size: 0.83rem;
}

.signature__cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 48px;
    margin-top: 120px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.signature__cta p {
    max-width: 390px;
    color: rgba(23, 20, 17, 0.66);
    font-size: 0.85rem;
}

.place {
    padding-top: 50px;
}

.gallery {
    display: grid;
    grid-template-columns: 1.15fr 0.7fr 0.95fr;
    grid-template-rows: 34vw 16vw 24vw;
    gap: 1.2vw;
}

.gallery__item {
    overflow: hidden;
    background: var(--cream-2);
}

.gallery__item img {
    height: 100%;
    object-fit: cover;
    transition: scale 800ms var(--ease);
}

.gallery__item:hover img {
    scale: 1.035;
}

.gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery__item--2 {
    grid-column: 2 / 4;
    grid-row: 1;
}

.gallery__item--3 {
    grid-column: 2;
    grid-row: 2 / 4;
}

.gallery__item--4 {
    grid-column: 3;
    grid-row: 2 / 4;
}

.gallery__note {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    max-width: 240px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    color: var(--green);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.15;
}

.visit {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    min-height: 88vh;
    background: var(--green-deep);
    color: var(--cream);
}

.visit__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(80px, 10vw, 150px) 8vw 80px 4vw;
}

.visit h2 {
    margin: 80px 0 50px;
}

.visit h2 em {
    color: var(--sand);
}

.visit address {
    margin-bottom: 46px;
    color: rgba(242, 237, 227, 0.72);
    font-size: clamp(1rem, 1.4vw, 1.3rem);
    font-style: normal;
    line-height: 1.7;
}

.visit__image {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.visit__image img {
    height: 100%;
    object-fit: cover;
}

.visit__image figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    color: var(--white);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.site-footer {
    padding: 90px 4vw 28px;
    background: var(--sand);
    color: var(--green-deep);
}

.site-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 90px;
}

.site-footer__brand img {
    width: min(46vw, 500px);
}

.site-footer__brand p {
    margin-top: 18px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__statement {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.2vw, 3.7rem);
    font-style: italic;
    line-height: 0.95;
    text-align: right;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 67, 52, 0.35);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__bottom div {
    display: flex;
    gap: 32px;
}

.js .reveal {
    opacity: 0;
    translate: 0 26px;
    transition:
        opacity 900ms var(--ease),
        translate 900ms var(--ease);
}

.js .reveal.is-visible {
    opacity: 1;
    translate: 0;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 190px 1fr auto;
    }

    .desktop-nav {
        gap: 20px;
    }

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

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

    .hero__video-frame {
        min-height: 520px;
    }

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

    .manifesto__collage {
        height: min(58vw, 650px);
        min-height: 500px;
    }

    .signature__header {
        grid-template-columns: 170px 1fr;
    }

    .signature__header > p {
        grid-column: 2;
        max-width: 450px;
    }
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr auto;
        min-height: 72px;
        padding-inline: 24px;
        isolation: isolate;
    }

    .site-header.menu-is-open {
        backdrop-filter: none;
    }

    .brand {
        z-index: 102;
        width: 148px;
    }

    .desktop-nav,
    .header-menu-link {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        display: grid;
        width: 46px;
        height: 46px;
        padding: 0;
        border: 1px solid var(--line);
        border-radius: 50%;
        background: transparent;
        cursor: pointer;
        place-content: center;
    }

    .menu-toggle span {
        display: block;
        width: 17px;
        height: 1px;
        margin: 3px 0;
        background: var(--espresso);
        transition: rotate 280ms var(--ease), translate 280ms var(--ease);
    }

    .site-header.menu-is-open .menu-toggle span:first-child {
        translate: 0 3.5px;
        rotate: 45deg;
    }

    .site-header.menu-is-open .menu-toggle span:last-child {
        translate: 0 -3.5px;
        rotate: -45deg;
    }

    .mobile-menu {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 101;
        display: flex;
        visibility: hidden;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        flex-direction: column;
        justify-content: space-between;
        padding:
            calc(100px + env(safe-area-inset-top))
            max(24px, env(safe-area-inset-right))
            calc(30px + env(safe-area-inset-bottom))
            max(24px, env(safe-area-inset-left));
        overflow-y: auto;
        background: var(--cream);
        opacity: 0;
        overscroll-behavior: contain;
        pointer-events: none;
        transition: opacity 320ms ease, visibility 320ms ease;
        -webkit-overflow-scrolling: touch;
    }

    .site-header.menu-is-open .mobile-menu {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu nav {
        display: grid;
        flex: 0 0 auto;
    }

    .mobile-menu nav a {
        display: flex;
        align-items: baseline;
        gap: 22px;
        min-width: 0;
        padding: 10px 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--font-serif);
        font-size: clamp(2.35rem, 10vw, 5.4rem);
        line-height: 1;
    }

    .mobile-menu nav a span {
        color: var(--green);
        font-family: var(--font-sans);
        font-size: 0.6rem;
    }

    .mobile-menu nav a.mobile-menu__menu-link {
        gap: 10px;
        padding-left: 34px;
        color: var(--green);
    }

    .mobile-menu__footer {
        display: flex;
        flex: 0 0 auto;
        align-items: flex-end;
        justify-content: space-between;
        gap: 24px;
        margin-top: clamp(38px, 9vh, 76px);
        color: rgba(23, 20, 17, 0.7);
        font-size: 0.72rem;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 72px;
        padding: 130px 24px 110px;
    }

    .hero__copy {
        padding-top: 0;
    }

    .hero__title {
        max-width: 720px;
    }

    .hero__visual {
        width: 78%;
        justify-self: end;
    }

    .hero__video-frame {
        height: 70vh;
    }

    .hero__wordmark {
        right: 24px;
        left: 24px;
    }

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

    .manifesto > .section-label {
        margin-bottom: 18px;
    }

    .ritual-card {
        grid-template-columns: 65px 1fr;
    }

    .ritual-card__image {
        grid-column: 2;
        width: min(100%, 520px);
        aspect-ratio: 1;
        justify-self: start;
    }

    .day-flow {
        grid-template-columns: 1fr;
    }

    .day-flow__intro {
        position: static;
        max-width: 720px;
    }

    .day-flow__intro h2 {
        margin-top: 70px;
    }

    .signature-card__copy {
        grid-template-columns: 1fr;
    }

    .signature-card__copy .eyebrow {
        grid-row: auto;
    }

    .gallery {
        grid-template-rows: 45vw 22vw 32vw;
    }

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

    .visit__content {
        min-height: 650px;
        padding-inline: 4vw;
    }

    .visit__image {
        min-height: 70vh;
    }
}

@media (max-width: 700px) {
    :root {
        --container: calc(100vw - 40px);
    }

    html {
        scroll-padding-top: 74px;
    }

    .section {
        padding-block: 90px;
    }

    .mobile-menu__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .hero {
        gap: 54px;
        min-height: auto;
        padding-top: 112px;
        padding-bottom: 86px;
    }

    .hero__copy > .eyebrow {
        display: block;
        margin-bottom: 46px;
    }

    .hero__copy > .eyebrow span {
        display: block;
        margin-top: 8px;
    }

    .hero__title {
        font-size: clamp(3.5rem, 18vw, 5.8rem);
        line-height: 0.82;
    }

    .hero__title em {
        margin: 0.12em 0 0 0.24em;
    }

    .hero__intro {
        gap: 30px;
        margin-top: 48px;
    }

    .hero__actions {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .hero__visual {
        width: calc(100% - 36px);
        padding: 0;
    }

    .hero__video-frame {
        height: 67svh;
        min-height: 520px;
    }

    .hero__floating-image {
        right: auto;
        bottom: 8%;
        left: -36px;
        width: 132px;
        rotate: -3deg;
    }

    .motion-toggle {
        right: 10px;
    }

    .hero__wordmark {
        display: none;
    }

    .brand-ticker {
        padding-block: 17px;
    }

    .manifesto {
        gap: 40px;
    }

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

    .manifesto__kicker {
        margin-bottom: 42px;
    }

    .manifesto__title {
        font-size: clamp(2.75rem, 12vw, 4.5rem);
    }

    .manifesto__aside {
        max-width: 400px;
        margin-top: 36px;
        padding-top: 22px;
    }

    .manifesto__collage {
        height: min(132vw, 620px);
        min-height: 480px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: minmax(0, 1.35fr) minmax(0, 0.65fr);
    }

    .manifesto__image--people {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .manifesto__image--process {
        grid-column: 1;
        grid-row: 2;
    }

    .manifesto__image--place {
        grid-column: 2;
        grid-row: 2;
    }

    .section-heading,
    .signature__header,
    .place__heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 50px;
        margin-bottom: 65px;
    }

    .section-heading h2,
    .signature__header h2,
    .place__heading h2,
    .day-flow__intro h2,
    .visit h2 {
        font-size: clamp(3.2rem, 15vw, 5.5rem);
    }

    .ritual-card {
        grid-template-columns: 42px 1fr;
        gap: 24px;
        padding-block: 26px 42px;
    }

    .ritual-card__number {
        font-size: 1rem;
    }

    .ritual-card__copy h3 {
        font-size: 2.5rem;
    }

    .ritual-card__image {
        width: 100%;
        aspect-ratio: 1;
    }

    .day-flow {
        gap: 80px;
        padding: 90px 20px;
    }

    .day-flow__intro h2 {
        margin-top: 56px;
    }

    .day-flow__moments {
        gap: 68px;
    }

    .moment figure {
        height: 62svh;
        min-height: 460px;
    }

    .moment__meta {
        grid-template-columns: 65px 1fr;
    }

    .signature__header > p {
        grid-column: auto;
    }

    .signature-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

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

    .signature-card__copy h3 {
        font-size: 2.8rem;
    }

    .signature__cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        margin-top: 80px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 92vw 54vw 72vw auto;
        gap: 10px;
    }

    .gallery__item--1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .gallery__item--2 {
        grid-column: 1 / 3;
        grid-row: 3;
    }

    .gallery__item--3 {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery__item--4 {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery__note {
        grid-column: 1 / 3;
        grid-row: 4;
        margin-top: 22px;
    }

    .visit__content {
        min-height: 630px;
        padding-inline: 20px;
    }

    .visit h2 {
        margin: 60px 0 40px;
    }

    .visit__image {
        min-height: 80svh;
    }

    .site-footer {
        padding: 70px 20px 24px;
    }

    .site-footer__top,
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 46px;
    }

    .site-footer__top {
        padding-bottom: 65px;
    }

    .site-footer__brand img {
        width: min(86vw, 430px);
    }

    .site-footer__statement {
        text-align: left;
    }

    .site-footer__bottom div {
        flex-wrap: wrap;
        gap: 18px 24px;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        translate: 0;
    }
}

/* Cinematic triptych hero */

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

.site-header:not(.is-scrolled):not(.menu-is-open) {
    color: var(--cream);
}

.site-header:not(.is-scrolled):not(.menu-is-open) .brand img {
    filter: brightness(0) invert(1);
}

.site-header:not(.is-scrolled):not(.menu-is-open) .header-menu-link {
    border-color: rgba(255, 255, 255, 0.42);
}

.site-header:not(.is-scrolled):not(.menu-is-open) .header-menu-link span {
    color: var(--sand);
}

.site-header:not(.is-scrolled):not(.menu-is-open) .menu-toggle {
    border-color: rgba(255, 255, 255, 0.5);
}

.site-header:not(.is-scrolled):not(.menu-is-open) .menu-toggle span {
    background: var(--cream);
}

.hero.hero--cinematic {
    position: relative;
    display: block;
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
    background: var(--green-deep);
    color: var(--cream);
}

.hero-film {
    position: absolute;
    inset: 0;
    display: flex;
    min-height: 720px;
}

.hero-film__panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.34);
    background: var(--green-deep);
    isolation: isolate;
    transition: flex 900ms var(--ease);
}

.hero-film__panel:last-child {
    border-right: 0;
}

.hero-film__panel.is-active {
    flex: 1.22 1 0;
}

.hero-film.is-interacting .hero-film__panel {
    flex: 0.76 1 0;
}

.hero-film.is-interacting .hero-film__panel.is-active {
    flex: 1.48 1 0;
}

.hero-film__panel video {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: 100%;
    object-fit: cover;
    scale: 1.04;
    transition:
        filter 700ms ease,
        scale 1200ms var(--ease);
}

.hero-film__panel--roast video {
    object-position: 52% center;
}

.hero-film__panel--cup video {
    object-position: 50% center;
}

.hero-film__panel--serve video {
    object-position: 48% center;
}

.hero-film__panel:not(.is-active) video {
    filter: saturate(0.78) brightness(0.84);
}

.hero-film.is-interacting .hero-film__panel.is-active video {
    filter: saturate(1) brightness(1);
    scale: 1;
}

.hero-film__shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 38, 29, 0.28);
    pointer-events: none;
    transition: background-color 700ms ease;
}

.hero-film__panel:not(.is-active) .hero-film__shade {
    background: rgba(0, 38, 29, 0.44);
}

.hero-film__chapter {
    position: absolute;
    top: 118px;
    right: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-film__chapter p {
    overflow: hidden;
    opacity: 0;
    translate: 12px 0;
    white-space: nowrap;
    transition:
        opacity 500ms ease 100ms,
        translate 500ms var(--ease) 100ms;
}

.hero-film__panel.is-active .hero-film__chapter p {
    opacity: 0.82;
    translate: 0;
}

.hero-film__statement {
    position: absolute;
    right: clamp(18px, 2vw, 36px);
    bottom: clamp(78px, 9vh, 116px);
    left: clamp(18px, 2vw, 36px);
}

.hero-film__statement > p {
    margin-bottom: -0.45em;
    color: var(--sand);
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.4vw, 1.7rem);
    font-style: italic;
}

.hero-film__statement strong {
    display: block;
    color: var(--cream);
    font-size: clamp(2.9rem, 5.1vw, 6.8rem);
    font-weight: 600;
    letter-spacing: -0.06em;
    line-height: 0.86;
}

.hero-film__statement > span {
    display: block;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0;
    text-transform: uppercase;
    transition:
        max-height 450ms var(--ease),
        margin-top 450ms var(--ease),
        opacity 450ms ease;
}

.hero-film__panel.is-active .hero-film__statement > span {
    max-height: 24px;
    margin-top: 18px;
    opacity: 0.78;
}

.hero-film__identity {
    position: absolute;
    top: 47%;
    right: 4vw;
    left: 4vw;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 52vw) 1fr;
    align-items: end;
    gap: 2vw;
    translate: 0 -50%;
    pointer-events: none;
}

.hero-film__identity h1 {
    margin: 0;
}

.hero-film__identity h1 img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.hero-film__location,
.hero-film__descriptor {
    padding-bottom: 0.55vw;
    font-size: clamp(0.58rem, 0.68vw, 0.73rem);
    font-weight: 700;
    letter-spacing: 0.11em;
    line-height: 1.6;
    text-transform: uppercase;
}

.hero-film__location {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-film__location span {
    color: var(--sand);
}

.hero-film__descriptor {
    justify-self: end;
    color: var(--sand);
    text-align: right;
}

.hero-film__menu {
    position: absolute;
    right: 4vw;
    bottom: 38px;
    z-index: 7;
    display: grid;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    background: var(--sand);
    color: var(--espresso);
    place-content: center;
    text-align: center;
    transition:
        background-color 300ms ease,
        color 300ms ease,
        rotate 500ms var(--ease),
        scale 500ms var(--ease);
}

.hero-film__menu span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
}

.hero-film__menu strong {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.hero-film__menu i {
    margin-top: 5px;
    font-style: normal;
}

.hero-film__menu:hover,
.hero-film__menu:focus-visible {
    background: var(--cream);
    rotate: 5deg;
    scale: 1.05;
}

.hero-film__scroll {
    position: absolute;
    bottom: 38px;
    left: 4vw;
    z-index: 7;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-film__scroll i {
    display: grid;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    font-style: normal;
    place-items: center;
    transition: translate 300ms var(--ease);
}

.hero-film__scroll:hover i,
.hero-film__scroll:focus-visible i {
    translate: 0 5px;
}

.motion-toggle.motion-toggle--film {
    top: auto;
    right: calc(4vw + 145px);
    bottom: 80px;
    background: rgba(0, 38, 29, 0.7);
    color: var(--cream);
}

@media (max-width: 980px) {
    .hero.hero--cinematic {
        min-height: 100svh;
        padding: 0;
    }

    .hero-film {
        min-height: 680px;
    }

    .hero-film__chapter {
        top: 98px;
        right: 14px;
        left: 14px;
    }

    .hero-film__chapter p,
    .hero-film__statement > span {
        display: none;
    }

    .hero-film__identity {
        top: 43%;
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .hero-film__identity h1 {
        width: min(72vw, 680px);
        grid-row: 1;
    }

    .hero-film__location,
    .hero-film__descriptor {
        position: absolute;
        top: calc(100% + 16px);
    }

    .hero-film__location {
        left: 0;
    }

    .hero-film__descriptor {
        right: 0;
    }

    .hero-film__menu {
        right: 24px;
        bottom: 28px;
        width: 108px;
        height: 108px;
    }

    .hero-film__scroll {
        bottom: 30px;
        left: 24px;
    }

    .motion-toggle.motion-toggle--film {
        right: 142px;
        bottom: 63px;
    }
}

@media (max-width: 700px) {
    .hero.hero--cinematic {
        min-height: 100svh;
        padding: 0;
    }

    .hero-film {
        min-height: 660px;
    }

    .hero-film__panel,
    .hero-film__panel.is-active,
    .hero-film.is-interacting .hero-film__panel,
    .hero-film.is-interacting .hero-film__panel.is-active {
        flex: 1 1 0;
    }

    .hero-film__panel video {
        scale: 1.06;
    }

    .hero-film__panel--roast video {
        object-position: 48% center;
    }

    .hero-film__panel--cup video {
        object-position: 53% center;
    }

    .hero-film__panel--serve video {
        object-position: 48% center;
    }

    .hero-film__chapter {
        top: 88px;
        right: 9px;
        left: 9px;
        justify-content: center;
        border-top-color: rgba(255, 255, 255, 0.35);
    }

    .hero-film__statement {
        right: 0;
        bottom: 88px;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-film__statement > p {
        margin: 0 0 9px;
        font-size: 0.9rem;
    }

    .hero-film__statement strong {
        font-size: clamp(2.1rem, 9.5vw, 3.2rem);
        letter-spacing: -0.04em;
        line-height: 1;
        writing-mode: vertical-rl;
    }

    .hero-film__identity {
        top: 37%;
        right: 14px;
        left: 14px;
    }

    .hero-film__identity h1 {
        width: 82vw;
    }

    .hero-film__location {
        top: calc(100% + 14px);
        left: 7px;
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        font-size: 0.52rem;
    }

    .hero-film__descriptor {
        top: calc(100% + 14px);
        right: 7px;
        font-size: 0.52rem;
    }

    .hero-film__menu {
        right: 16px;
        bottom: 18px;
        width: 92px;
        height: 92px;
    }

    .hero-film__menu span {
        font-size: 0.86rem;
    }

    .hero-film__menu strong {
        font-size: 0.66rem;
    }

    .hero-film__scroll {
        bottom: 27px;
        left: 16px;
    }

    .hero-film__scroll span {
        display: none;
    }

    .motion-toggle.motion-toggle--film {
        right: auto;
        bottom: 34px;
        left: 64px;
        padding-inline: 10px;
    }

    .motion-toggle.motion-toggle--film .motion-toggle__text {
        display: none;
    }
}

/* Editorial split hero */

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) {
    border-color: var(--line);
    background: rgba(242, 237, 227, 0.96);
    color: var(--espresso);
    backdrop-filter: blur(16px);
}

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) .brand img {
    filter: none;
}

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) .header-menu-link {
    border-color: var(--line);
}

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) .header-menu-link span {
    color: var(--green);
}

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) .menu-toggle {
    border-color: var(--line);
}

.editorial-home .site-header:not(.is-scrolled):not(.menu-is-open) .menu-toggle span {
    background: var(--espresso);
}

.hero.hero--editorial {
    position: relative;
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(360px, 44fr) minmax(0, 56fr);
    align-items: center;
    gap: 0;
    column-gap: clamp(18px, 2vw, 32px);
    padding: 88px clamp(20px, 3vw, 52px) 0;
    overflow: hidden;
    background: var(--cream);
    color: var(--espresso);
}

.editorial-hero__copy {
    position: relative;
    display: grid;
    min-width: 0;
    height: min(78vh, 800px);
    min-height: 620px;
    grid-template-rows: auto 1fr auto;
    padding: 28px 4vw 34px;
    overflow: hidden;
    background: var(--green);
    color: var(--cream);
}

.editorial-hero__meta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    border-bottom: 0;
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.editorial-hero__meta span:last-child {
    color: var(--sand);
}

.editorial-hero__art {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    z-index: 0;
    height: 31%;
    overflow: hidden;
    border-top: 10px solid var(--cream);
    border-bottom: 10px solid var(--cream);
    pointer-events: none;
}

.editorial-hero__art img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.editorial-hero__identity {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: center;
    width: min(100%, 850px);
    padding-block: clamp(28px, 5vh, 58px);
}

.editorial-hero__identity h1 {
    width: min(76%, 600px);
    margin: 0 auto;
}

.editorial-hero__identity h1 img {
    width: 100%;
    filter: brightness(0) saturate(100%) invert(79%) sepia(15%) saturate(817%) hue-rotate(351deg) brightness(90%) contrast(87%);
}

.editorial-hero__footer {
    position: relative;
    bottom: clamp(12px, 1.7vh, 18px);
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, 1fr) auto;
    align-items: end;
    gap: clamp(28px, 4vw, 70px);
    padding-top: 24px;
    border-top: 1px solid rgba(242, 237, 227, 0.36);
}

.editorial-hero__ritual {
    margin-bottom: 11px;
    color: var(--sand);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.editorial-hero__ritual i {
    margin-inline: 8px;
    color: var(--sand);
    font-style: normal;
}

.editorial-hero__intro {
    max-width: 430px;
    color: rgba(242, 237, 227, 0.68);
    font-size: 0.78rem;
}

.editorial-hero__actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.editorial-hero__actions .text-link {
    color: var(--cream);
}

.editorial-hero__media {
    position: relative;
    min-width: 0;
    height: min(78vh, 800px);
    min-height: 620px;
    overflow: hidden;
    border: 0;
    background: var(--green-deep);
}

.editorial-hero__media video {
    height: 100%;
    object-fit: cover;
    object-position: 50% center;
    scale: 1.015;
}

.editorial-hero__media-wash {
    position: absolute;
    inset: 0;
    background: rgba(0, 67, 52, 0.1);
    pointer-events: none;
}

.editorial-hero__media figcaption {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.58);
    color: var(--white);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.editorial-hero__side-note {
    position: absolute;
    top: 30px;
    right: 23px;
    color: var(--white);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.88;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.motion-toggle.motion-toggle--editorial {
    top: 24px;
    right: auto;
    bottom: auto;
    left: 24px;
    background: rgba(242, 237, 227, 0.9);
    color: var(--espresso);
}

@media (max-width: 1180px) {
    .hero.hero--editorial {
        grid-template-columns: minmax(350px, 46fr) minmax(0, 54fr);
    }

    .editorial-hero__copy {
        padding-inline: 3vw;
    }

    .editorial-hero__footer {
        grid-template-columns: 1fr;
    }

    .editorial-hero__actions {
        justify-content: space-between;
    }
}

@media (max-width: 820px) {
    .hero.hero--editorial {
        display: block;
        min-height: auto;
        padding: 72px 0 0;
        overflow: visible;
    }

    .editorial-hero__copy {
        width: calc(100% - 40px);
        height: auto;
        min-height: 78svh;
        margin: 16px 20px 70px;
        padding: 24px 24px 32px;
    }

    .editorial-hero__identity {
        padding-block: 46px 34px;
    }

    .editorial-hero__identity h1 {
        width: min(78%, 560px);
    }

    .editorial-hero__footer {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .editorial-hero__media {
        width: calc(100% - 40px);
        height: 44svh;
        min-height: 340px;
        margin: 24px 20px 0;
        border: 0;
    }

    .editorial-hero__side-note {
        top: 26px;
    }

    .motion-toggle.motion-toggle--editorial {
        top: 24px;
    }

    .editorial-hero__art {
        top: 62px;
        height: 30%;
        border-top-width: 8px;
        border-bottom-width: 8px;
    }
}

@media (max-width: 600px) {
    .editorial-hero__copy {
        min-height: 82svh;
        padding: 20px 20px 28px;
    }

    .editorial-hero__meta span:last-child {
        display: none;
    }

    .editorial-hero__identity {
        padding-block: 38px 28px;
    }

    .editorial-hero__identity h1 {
        width: 84%;
    }

    .editorial-hero__footer {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .editorial-hero__intro {
        display: none;
    }

    .editorial-hero__actions {
        justify-content: flex-start;
        gap: 18px;
    }

    .editorial-hero__actions .button {
        min-height: 46px;
        padding-inline: 18px;
    }

    .editorial-hero__media {
        height: 44svh;
        min-height: 330px;
    }

    .editorial-hero__media figcaption span:last-child {
        display: none;
    }

    .motion-toggle.motion-toggle--editorial .motion-toggle__text {
        display: none;
    }
}
