:root {
    --paper: #f2ecde;
    --paper-deep: #e6ddca;
    --ink: #172018;
    --ink-soft: #38433a;
    --muted: #5b655c;
    --forest: #294a34;
    --clay: #a63f25;
    --clay-deep: #7f2d1d;
    --sun: #ead269;
    --night: #151a18;
    --night-soft: #222a25;
    --violet: #8c67d7;
    --line: rgba(23, 32, 24, 0.18);
    --line-light: rgba(255, 255, 255, 0.24);
    --success: #1f5b32;
    --error: #8c2c1e;
    --font-display: "Iowan Old Style", "Palatino Linotype", "URW Palladio L", "Book Antiqua", Georgia, "Times New Roman", serif;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: min(1240px, calc(100vw - 4rem));
    --shadow: 0 30px 80px rgba(23, 32, 24, 0.14);
}

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

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

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

::selection {
    background: var(--sun);
    color: var(--ink);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid var(--violet);
    outline-offset: 4px;
}

h1[tabindex="-1"]:focus {
    outline: none;
}

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

.app-shell {
    position: relative;
    min-height: 100vh;
}

.site-main,
.site-header,
.site-footer {
    position: relative;
    z-index: 2;
}

.site-main {
    min-height: 60vh;
}

.site-grain {
    position: fixed;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    transform: translateY(-160%);
    background: var(--sun);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.section {
    padding-block: clamp(5rem, 9vw, 8.5rem);
}

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

.section--night {
    background: var(--night);
    color: #f7f0e3;
}

.section--clay {
    background: var(--clay);
    color: #fff8ec;
}

.section--sun {
    background: var(--sun);
    color: var(--ink);
}

.overline {
    margin: 0 0 1.1rem;
    color: var(--clay);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.overline--light {
    color: rgba(255, 248, 236, 0.82);
}

.overline--night {
    color: var(--sun);
}

h1,
h2,
h3,
.site-footer__brand {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 450;
    letter-spacing: -0.035em;
    line-height: 0.99;
    overflow-wrap: anywhere;
}

h1 em,
h2 em,
h3 em {
    color: var(--clay);
    font-weight: 300;
}

h2 {
    font-size: clamp(2.35rem, 5vw, 5.25rem);
}

.lead-copy {
    color: var(--ink-soft);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 350;
    line-height: 1.45;
}

.button {
    display: inline-flex;
    min-height: 3.2rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.35rem;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.button--sun {
    background: var(--sun);
    color: var(--ink);
}

.button--sun:hover {
    background: #f3df7f;
}

.button--clay,
.button--primary {
    background: var(--clay);
    color: #fff;
}

.button--clay:hover,
.button--primary:hover {
    background: var(--clay-deep);
}

.button--ink {
    background: var(--ink);
    color: #fff;
}

.button--ink:hover {
    background: #050a06;
}

.button--compact {
    min-width: 3.2rem;
    padding-inline: 1rem;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.7rem;
    padding-block: 0.25rem;
    border-bottom: 1px solid currentColor;
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 700;
    transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover {
    gap: 1rem;
    color: var(--clay);
}

.text-link--light {
    color: #fff;
}

.text-link--light:hover {
    color: var(--sun);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(242, 236, 222, 0.94);
    backdrop-filter: blur(16px);
}

.site-header__bar {
    display: flex;
    min-height: 5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.site-header__brand {
    display: grid;
    grid-template-columns: 2.25rem auto;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.7rem;
    min-width: max-content;
}

.site-header__brand-mark {
    display: grid;
    grid-row: 1 / span 2;
    place-items: center;
    width: 2.25rem;
    aspect-ratio: 1;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1;
}

.site-header__brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
}

.site-header__brand-place {
    color: var(--muted);
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
}

.site-header__nav-link {
    position: relative;
    padding-block: 0.5rem;
    color: var(--ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.site-header__nav-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    transform: scaleX(0);
    background: var(--clay);
    content: "";
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link.is-active::after {
    transform: scaleX(1);
}

.site-header__nav-link.is-active {
    color: var(--clay-deep);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.button--header {
    min-height: 2.65rem;
    padding: 0.65rem 1rem;
    background: var(--ink);
    color: #fff;
    font-size: 0.7rem;
}

.button--header:hover {
    background: var(--clay-deep);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
}

.language-switcher__link {
    display: grid;
    min-width: 2rem;
    min-height: 2rem;
    place-items: center;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.language-switcher__link:hover,
.language-switcher__link.is-active {
    background: var(--sun);
    color: var(--ink);
}

.site-header__menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
}

.site-header__menu-toggle span {
    position: absolute;
    width: 1.05rem;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
}

.site-header__menu-toggle span:first-child {
    transform: translateY(-3px);
}

.site-header__menu-toggle span:last-child {
    transform: translateY(3px);
}

.site-header__menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
}

.site-header__menu-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg);
}

.site-header__panel {
    display: none;
}

/* Home hero */

.home-hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 5rem);
    max-height: 62rem;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.home-hero__image,
.home-hero__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__image {
    object-fit: cover;
    object-position: center 48%;
}

.home-hero__shade {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(9, 15, 10, 0.76) 0%, rgba(9, 15, 10, 0.42) 55%, rgba(9, 15, 10, 0.09) 100%),
        linear-gradient(180deg, transparent 35%, rgba(9, 15, 10, 0.46) 100%);
}

.home-hero__content {
    padding-block: clamp(6rem, 13vh, 10rem) 5.5rem;
    color: #fff;
}

.home-hero h1 {
    max-width: 9ch;
    color: #fff;
    font-size: clamp(4rem, 9vw, 8.4rem);
}

.home-hero h1 em {
    color: var(--sun);
}

.home-hero__content > p:not(.overline) {
    max-width: 45rem;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.home-hero__note {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* The place */

.place-story {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.place-story__figure {
    position: relative;
    margin: 0;
}

.place-story__figure::before {
    position: absolute;
    z-index: -1;
    top: -2rem;
    right: -2rem;
    width: 45%;
    aspect-ratio: 1;
    border: 1px solid var(--clay);
    content: "";
}

.place-story__figure img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.04);
}

.place-story__figure figcaption,
.form-hero__image figcaption,
.contact-hero__figure figcaption {
    margin-top: 0.8rem;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.place-story__copy h2 {
    max-width: 12ch;
}

.place-story__copy > p:not(.overline) {
    max-width: 42rem;
}

.place-story__verbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-block: 2rem;
}

.place-story__verbs span {
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Day / night signature */

.pulse-section {
    position: relative;
    overflow: hidden;
}

.pulse-section::after {
    position: absolute;
    right: -14rem;
    bottom: -20rem;
    width: 38rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(140, 103, 215, 0.2);
    content: "";
    filter: blur(80px);
    pointer-events: none;
}

.pulse-section__heading {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.7fr;
    align-items: end;
    gap: 3rem;
    margin-bottom: 4rem;
}

.pulse-section__heading h2 {
    color: #fff;
}

.pulse-section__heading h2 em {
    color: var(--sun);
}

.pulse-section__heading > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.pulse-diptych {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 1.25rem;
}

.pulse-diptych figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.pulse-diptych img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulse-diptych__day {
    aspect-ratio: 4 / 3;
}

.pulse-diptych__night {
    aspect-ratio: 4 / 5;
    transform: translateY(3rem);
}

.pulse-diptych figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.45rem 0.65rem;
    background: var(--paper);
    color: var(--ink);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Programme */

.programme__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.programme__intro {
    position: sticky;
    top: 8rem;
    align-self: start;
}

.programme__intro h2 {
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.programme__intro > p:last-child {
    max-width: 30rem;
    color: var(--muted);
}

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

.programme-row {
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding-block: 1.75rem;
    border-bottom: 1px solid var(--line);
    transition: padding-inline 180ms ease, color 180ms ease;
}

.programme-row:hover {
    padding-inline: 0.75rem;
    color: var(--clay);
}

.programme-row__number {
    color: var(--clay);
    font-family: var(--font-display);
    font-size: 0.95rem;
}

.programme-row strong,
.programme-row small {
    display: block;
}

.programme-row strong {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 450;
    line-height: 1.2;
}

.programme-row small {
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.75rem;
}

/* Nature */

.nature-section {
    background: var(--paper-deep);
}

.nature-section__heading {
    display: grid;
    grid-template-columns: 0.6fr 1.3fr 0.8fr;
    align-items: end;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.nature-section__heading h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

.nature-section__heading > p:last-child {
    margin: 0;
    color: var(--muted);
}

.nature-mosaic {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.nature-mosaic figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.nature-mosaic__wide {
    grid-row: 1 / span 2;
    min-height: 42rem;
}

.nature-mosaic__portrait,
.nature-mosaic__small {
    min-height: 20.5rem;
}

.nature-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.nature-mosaic figure:hover img {
    transform: scale(1.025);
}

.nature-mosaic figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.6rem;
    background: rgba(23, 32, 24, 0.78);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* Map / CTA */

.location-section__layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: stretch;
    gap: clamp(3rem, 7vw, 7rem);
}

.location-section__copy h2 {
    color: #fff;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.location-section__copy > p:not(.overline) {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.82);
}

.location-section address {
    display: grid;
    margin-block: 2rem;
    font-style: normal;
}

.location-section address span {
    color: rgba(255, 255, 255, 0.76);
}

.map-frame {
    position: relative;
    min-height: 34rem;
    overflow: hidden;
    background: var(--paper-deep);
    box-shadow: var(--shadow);
}

.map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.proposal-callout {
    position: relative;
    display: grid;
    min-height: 46rem;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.proposal-callout > img,
.proposal-callout__shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.proposal-callout > img {
    object-fit: cover;
}

.proposal-callout__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 14, 13, 0.82), rgba(12, 14, 13, 0.34));
}

.proposal-callout__content {
    padding-block: 6rem;
    color: #fff;
}

.proposal-callout h2 {
    max-width: 13ch;
    margin-bottom: 2rem;
    color: #fff;
}

.proposal-callout h2 em {
    color: var(--sun);
}

/* Interior heroes */

.interior-hero {
    position: relative;
    display: grid;
    min-height: min(76svh, 48rem);
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.interior-hero > img,
.interior-hero__veil {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.interior-hero > img {
    object-fit: cover;
}

.interior-hero--day > img {
    object-position: center 56%;
}

.interior-hero--night > img {
    object-position: center 45%;
}

.interior-hero__veil {
    z-index: -1;
    background: linear-gradient(90deg, rgba(10, 16, 11, 0.78), rgba(10, 16, 11, 0.2)), linear-gradient(180deg, transparent 35%, rgba(10, 16, 11, 0.58));
}

.interior-hero--night .interior-hero__veil {
    background: linear-gradient(90deg, rgba(11, 9, 16, 0.85), rgba(36, 18, 57, 0.3)), linear-gradient(180deg, transparent, rgba(11, 9, 16, 0.72));
}

.interior-hero__content {
    padding-block: 7rem 5rem;
    color: #fff;
}

.interior-hero h1 {
    max-width: 13ch;
    color: #fff;
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.interior-hero h1 em {
    color: var(--sun);
}

.interior-hero__content > p:not(.overline) {
    max-width: 42rem;
    margin: 1.5rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.interior-hero .button {
    margin-top: 2rem;
}

/* Services */

.service-index__layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
}

.service-index h2 {
    font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

.service-index__copy p:last-child {
    color: var(--muted);
}

.service-chapters {
    background: var(--paper-deep);
}

.service-chapter {
    display: grid;
    grid-template-columns: 4rem minmax(0, 0.7fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: clamp(4rem, 8vw, 7rem);
    border-top: 1px solid var(--line);
}

.service-chapter__number {
    align-self: start;
    color: var(--clay);
    font-family: var(--font-display);
    font-size: 1rem;
}

.service-chapter__copy h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.service-chapter__copy > p:not(.overline) {
    margin-block: 1.5rem;
    color: var(--ink-soft);
}

.service-chapter__image,
.service-chapter__pair figure {
    margin: 0;
    overflow: hidden;
}

.service-chapter__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-chapter__pair {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 1rem;
}

.service-chapter__pair figure:first-child {
    aspect-ratio: 3 / 4;
}

.service-chapter__pair figure:last-child {
    aspect-ratio: 1;
}

.service-chapter__pair img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-chapter--night,
.service-chapter--dusk {
    position: relative;
    width: 100%;
    max-width: none;
    padding-inline: max(2rem, calc((100vw - 1240px) / 2));
    border-color: var(--line-light);
    background: var(--night);
    color: #fff;
}

.service-chapter--dusk {
    background: var(--forest);
}

.service-chapter--night .service-chapter__copy h2,
.service-chapter--dusk .service-chapter__copy h2 {
    color: #fff;
}

.service-chapter--night .service-chapter__copy > p:not(.overline),
.service-chapter--dusk .service-chapter__copy > p:not(.overline) {
    color: rgba(255, 255, 255, 0.72);
}

.service-chapter--night .service-chapter__number,
.service-chapter--dusk .service-chapter__number {
    color: var(--sun);
}

.service-close__layout {
    display: grid;
    grid-template-columns: 0.5fr 1.4fr auto;
    align-items: end;
    gap: 2rem;
}

.service-close h2 {
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
}

/* Events */

.events-manifesto__layout {
    display: grid;
    grid-template-columns: 0.25fr 1.25fr 0.7fr;
    align-items: end;
    gap: 3rem;
}

.events-manifesto__index {
    margin: 0;
    color: var(--clay);
    font-family: var(--font-display);
    font-size: 1.1rem;
    writing-mode: vertical-rl;
}

.events-manifesto h2 {
    font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.events-manifesto .lead-copy {
    margin: 0;
}

.event-formats {
    background: #f7f2e8;
}

.event-formats__heading {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    align-items: end;
    gap: 2rem;
    margin-bottom: 4rem;
}

.event-formats__heading h2 {
    max-width: 15ch;
    font-size: clamp(2.6rem, 4.5vw, 4.6rem);
}

.event-format {
    display: grid;
    grid-template-columns: 0.45fr 0.8fr 1fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    padding-block: 3rem;
    border-top: 1px solid var(--line);
}

.event-format__label {
    color: var(--clay);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.event-format__label span {
    display: block;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 350;
}

.event-format__copy h3 {
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.event-format__copy p {
    color: var(--muted);
}

.event-format figure {
    margin: 0;
    overflow: hidden;
}

.event-format figure,
.event-format img {
    aspect-ratio: 4 / 3;
}

.event-format img {
    width: 100%;
    object-fit: cover;
}

.event-format--music {
    grid-template-columns: 0.45fr 1fr 0.8fr;
}

.event-format--music figure {
    grid-column: 2;
    grid-row: 1;
}

.event-format--music .event-format__copy {
    grid-column: 3;
}

.event-process__layout {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: clamp(3rem, 8vw, 8rem);
}

.event-process h2 {
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 5rem);
}

.event-process h2 em {
    color: var(--sun);
}

.event-process__steps {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line-light);
    list-style: none;
}

.event-process__steps li {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    padding-block: 1.75rem;
    border-bottom: 1px solid var(--line-light);
}

.event-process__steps li > span {
    color: var(--sun);
    font-family: var(--font-display);
}

.event-process__steps strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 450;
}

.event-process__steps p {
    margin: 0.4rem 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.event-close__layout {
    display: grid;
    grid-template-columns: 0.5fr 1.1fr 0.7fr;
    align-items: end;
    gap: 2rem;
}

.event-close h2 {
    font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.event-close__layout > p:not(.overline) {
    margin: 0;
}

.event-close .button {
    grid-column: 3;
    justify-self: start;
}

/* Forms / reservation */

.form-hero {
    padding-block: clamp(5rem, 9vw, 8rem);
    background: var(--night);
    color: #fff;
}

.form-hero__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.form-hero h1 {
    color: #fff;
    font-size: clamp(3.2rem, 6vw, 6rem);
}

.form-hero h1 em {
    color: var(--sun);
}

.form-hero__copy > p:last-child {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.72);
}

.form-hero__image {
    margin: 0;
}

.form-hero__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.form-hero__image figcaption {
    color: rgba(255, 255, 255, 0.55);
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.65fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 7rem);
}

.form-panel {
    min-width: 0;
}

.form-panel__heading {
    margin-bottom: 2.5rem;
}

.form-panel__heading h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
}

.form-panel__heading > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.inquiry-form {
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

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

.field {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1.4rem;
}

.field__label {
    color: var(--ink);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.field__label span {
    color: var(--clay);
}

.field__control {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.75rem 0;
    border: 0;
    border-bottom: 1px solid var(--ink);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field__control:focus {
    border-color: var(--clay);
    box-shadow: 0 2px 0 var(--clay);
}

.field__control::placeholder {
    color: #8b928a;
    opacity: 1;
}

.field__control--textarea {
    min-height: 8rem;
    resize: vertical;
}

.field__control.invalid {
    border-color: var(--error);
    box-shadow: 0 1px 0 var(--error);
}

.field__validation {
    color: var(--error);
    font-size: 0.75rem;
    font-weight: 600;
}

.form-summary {
    margin: 0 0 1.5rem;
    padding: 0;
    color: var(--error);
    font-size: 0.8rem;
}

.form-summary:empty,
.validation-summary-valid {
    display: none;
}

.form-summary ul {
    margin: 0;
    padding-left: 1.2rem;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
}

.form-note {
    max-width: 25rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.status-banner {
    margin: 1.5rem 0 0;
    padding: 1rem 1.1rem;
    border-left: 3px solid;
    font-size: 0.86rem;
}

.status-banner--success {
    border-color: var(--success);
    background: rgba(31, 91, 50, 0.1);
    color: var(--success);
}

.status-banner--error {
    border-color: var(--error);
    background: rgba(140, 44, 30, 0.1);
    color: var(--error);
}

.booking-aside {
    position: sticky;
    top: 8rem;
    padding: 2rem;
    background: var(--sun);
}

.booking-aside h2 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.booking-aside ol {
    margin: 2rem 0 0;
    padding: 0;
    border-top: 1px solid rgba(23, 32, 24, 0.24);
    list-style: none;
}

.booking-aside li {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0.75rem;
    padding-block: 1.1rem;
    border-bottom: 1px solid rgba(23, 32, 24, 0.24);
}

.booking-aside li > span {
    color: var(--clay-deep);
    font-family: var(--font-display);
    font-size: 0.8rem;
}

.booking-aside strong {
    font-size: 0.83rem;
}

.booking-aside li p,
.booking-aside__note p {
    margin: 0.25rem 0 0;
    color: var(--ink-soft);
    font-size: 0.78rem;
}

.booking-aside__note {
    margin-top: 2rem;
}

.booking-aside__note .text-link {
    margin-top: 0.75rem;
}

/* Contact */

.contact-hero {
    padding-block: clamp(5rem, 9vw, 8rem);
    background: var(--paper-deep);
}

.contact-hero__layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.contact-hero h1 {
    font-size: clamp(3.2rem, 6vw, 6.2rem);
}

.contact-hero__copy > p:last-child {
    max-width: 34rem;
    color: var(--muted);
}

.contact-hero__figure {
    margin: 0;
}

.contact-hero__figure img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(17rem, 0.7fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 8rem);
}

.contact-details {
    position: sticky;
    top: 8rem;
}

.contact-details h2 {
    margin-bottom: 2rem;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.contact-details__item {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 1rem;
    padding-block: 1.2rem;
    border-top: 1px solid var(--line);
}

.contact-details__item > span {
    color: var(--clay);
    font-family: var(--font-display);
    font-size: 0.8rem;
}

.contact-details__item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-details__item a,
.contact-details__item address {
    display: block;
    margin-top: 0.3rem;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: normal;
    font-weight: 450;
    line-height: 1.45;
}

.contact-details > .text-link {
    margin-top: 1.5rem;
}

.form-panel--contact {
    padding: clamp(2rem, 5vw, 4rem);
    background: #f9f5ec;
}

.contact-map {
    padding-block: 5rem 7rem;
    background: var(--forest);
    color: #fff;
}

.contact-map__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-map__heading h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
}

.map-frame--wide {
    min-height: min(60vw, 38rem);
}

/* Footer */

.site-footer {
    padding-block: 5rem 2rem;
    border-top: 1px solid var(--line-light);
    background: var(--night);
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
}

.site-footer__kicker,
.site-footer__heading {
    margin: 0 0 1rem;
    color: var(--sun);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer__brand {
    color: #fff;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.site-footer__text {
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.62);
}

.site-footer__links {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.site-footer__links a {
    width: fit-content;
}

.site-footer__links a:hover {
    color: var(--sun);
}

.newsletter-form__row {
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
}

.newsletter-form .field__label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-form .field__control {
    flex: 1;
    min-width: 0;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.newsletter-form .field__control::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.newsletter-form .field__validation {
    color: #ffac96;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-light);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
}

.site-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.site-footer__socials a:hover {
    color: var(--sun);
}

/* Framework errors */

.error-ui {
    display: none;
}

#blazor-error-ui {
    position: fixed;
    z-index: 80;
    right: 1rem;
    bottom: 1rem;
    max-width: calc(100vw - 2rem);
    padding: 1rem;
    border-left: 3px solid var(--error);
    background: #fff;
    color: var(--error);
    box-shadow: var(--shadow);
}

#blazor-error-ui .reload,
#blazor-error-ui .dismiss {
    margin-left: 0.7rem;
    cursor: pointer;
    font-weight: 700;
}

/* Tablet */

@media (max-width: 1080px) {
    :root {
        --container: min(1240px, calc(100vw - 2.5rem));
    }

    .site-header__nav,
    .site-header__language,
    .button--header {
        display: none;
    }

    .site-header__menu-toggle {
        position: relative;
        display: grid;
        place-items: center;
    }

    .site-header__panel {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding-block: 1rem 1.5rem;
        border-top: 1px solid var(--line);
    }

    .site-header__panel > a:not(.site-header__panel-cta) {
        padding: 0.8rem 0;
        border-bottom: 1px solid var(--line);
        color: var(--ink-soft);
        font-family: var(--font-display);
        font-size: 1.15rem;
    }

    .site-header__panel-cta {
        align-self: center;
        justify-self: start;
        margin-top: 1rem;
        color: var(--clay-deep);
        font-size: 0.8rem;
        font-weight: 700;
    }

    .site-header__panel .language-switcher {
        justify-self: end;
        margin-top: 0.6rem;
    }

    .pulse-section__heading,
    .nature-section__heading {
        grid-template-columns: 0.65fr 1.35fr;
    }

    .pulse-section__heading > p:last-child,
    .nature-section__heading > p:last-child {
        grid-column: 2;
    }

    .service-chapter {
        grid-template-columns: 3rem minmax(0, 0.9fr) minmax(0, 1fr);
        gap: 2rem;
    }

    .service-close__layout,
    .event-close__layout {
        grid-template-columns: 1fr 2fr;
    }

    .service-close .button,
    .event-close .button {
        grid-column: 2;
        justify-self: start;
    }

    .events-manifesto__layout {
        grid-template-columns: 0.15fr 1fr;
    }

    .events-manifesto .lead-copy {
        grid-column: 2;
    }

    .event-format,
    .event-format--music {
        grid-template-columns: 0.3fr 0.8fr 1fr;
        gap: 2rem;
    }

    .event-format--music figure {
        grid-column: 2;
    }

    .event-format--music .event-format__copy {
        grid-column: 3;
    }

    .site-footer__grid {
        grid-template-columns: 1.2fr 0.8fr 0.8fr;
    }

    .site-footer__grid > section:last-child {
        grid-column: 1 / -1;
        max-width: 28rem;
    }
}

/* Mobile */

@media (max-width: 760px) {
    :root {
        --container: calc(100vw - 1.5rem);
    }

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

    .section {
        padding-block: 4.5rem;
    }

    .site-header__bar {
        min-height: 4.5rem;
    }

    .site-header__panel {
        grid-template-columns: 1fr;
    }

    .site-header__panel .language-switcher {
        justify-self: start;
    }

    .home-hero {
        min-height: calc(100svh - 4.5rem);
        max-height: none;
    }

    .home-hero__shade {
        background: linear-gradient(180deg, rgba(9, 15, 10, 0.18) 5%, rgba(9, 15, 10, 0.82) 76%, rgba(9, 15, 10, 0.9) 100%);
    }

    .home-hero__content {
        padding-block: 8rem 3rem;
    }

    .home-hero h1 {
        max-width: 8ch;
        font-size: clamp(3.5rem, 17vw, 5.2rem);
    }

    .home-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.25rem;
    }

    .home-hero__note {
        display: none;
    }

    .place-story,
    .programme__layout,
    .location-section__layout,
    .service-index__layout,
    .event-process__layout,
    .form-hero__layout,
    .booking-layout,
    .contact-hero__layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .place-story {
        gap: 3.5rem;
    }

    .place-story__figure {
        width: calc(100% - 2rem);
    }

    .place-story__figure::before {
        top: -1rem;
        right: -1.5rem;
    }

    .pulse-section__heading,
    .nature-section__heading {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .pulse-section__heading > p:last-child,
    .nature-section__heading > p:last-child {
        grid-column: auto;
    }

    .pulse-diptych {
        grid-template-columns: 1fr;
    }

    .pulse-diptych__day,
    .pulse-diptych__night {
        aspect-ratio: 4 / 3;
        transform: none;
    }

    .programme__intro {
        position: static;
    }

    .programme-row {
        grid-template-columns: 2rem 1fr auto;
        gap: 0.75rem;
    }

    .nature-mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .nature-mosaic__wide {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 22rem;
    }

    .nature-mosaic__portrait,
    .nature-mosaic__small {
        min-height: 16rem;
    }

    .location-section__layout {
        gap: 2.5rem;
    }

    .map-frame {
        min-height: 24rem;
    }

    .proposal-callout {
        min-height: 38rem;
    }

    .proposal-callout__shade {
        background: linear-gradient(180deg, rgba(12, 14, 13, 0.38), rgba(12, 14, 13, 0.86));
    }

    .interior-hero {
        min-height: 40rem;
    }

    .interior-hero h1 {
        font-size: clamp(3.2rem, 14vw, 5.2rem);
    }

    .service-chapter,
    .service-chapter--night,
    .service-chapter--dusk {
        grid-template-columns: 2rem 1fr;
        gap: 1rem;
        padding: 4.5rem 0.75rem;
    }

    .service-chapter__copy {
        grid-column: 2;
    }

    .service-chapter__image,
    .service-chapter__pair {
        grid-column: 1 / -1;
        margin-top: 1.5rem;
    }

    .service-close__layout,
    .event-close__layout,
    .events-manifesto__layout,
    .event-formats__heading {
        grid-template-columns: 1fr;
    }

    .service-close .button,
    .event-close .button,
    .events-manifesto .lead-copy {
        grid-column: auto;
    }

    .events-manifesto__index {
        writing-mode: initial;
    }

    .event-format,
    .event-format--music {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
    }

    .event-format__copy {
        grid-column: 2;
    }

    .event-format figure,
    .event-format--music figure {
        grid-column: 1 / -1;
        grid-row: auto;
        margin-top: 1rem;
    }

    .event-format--music .event-format__copy {
        grid-column: 2;
    }

    .form-hero,
    .contact-hero {
        padding-block: 4rem;
    }

    .form-hero__layout,
    .contact-hero__layout {
        gap: 2.5rem;
    }

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

    .booking-aside,
    .contact-details {
        position: static;
    }

    .form-panel--contact {
        padding: 1.5rem;
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand-block,
    .site-footer__grid > section:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 420px) {
    .site-header__brand-place {
        display: none;
    }

    .site-header__brand {
        grid-template-rows: 1fr;
    }

    .site-header__brand-mark {
        grid-row: 1;
    }

    .home-hero h1 {
        font-size: clamp(3.3rem, 16.5vw, 4.35rem);
    }

    .home-hero__content > p:not(.overline) {
        font-size: 0.95rem;
    }

    .nature-mosaic {
        grid-template-columns: 1fr;
    }

    .nature-mosaic__wide,
    .nature-mosaic__portrait,
    .nature-mosaic__small {
        grid-column: auto;
        min-height: 20rem;
    }

    .form-actions,
    .newsletter-form__row {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .home-hero__actions .text-link,
    .place-story__copy .text-link,
    .programme-row,
    .booking-aside .text-link,
    .contact-details .text-link,
    .site-header__panel-cta {
        width: fit-content;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .site-footer__brand-block,
    .site-footer__grid > section:last-child {
        grid-column: auto;
    }
}

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

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