@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --ink: #11182b;
    --ink-2: #1a2340;
    --paper: #f6f5ee;
    --white: #fff;
    --lime: #b9f227;
    --cyan: #48dfe9;
    --orange: #ff7a4c;
    --purple: #a98bff;
    --pink: #ff9ab7;
    --yellow: #ffdf65;
    --muted: #667085;
    --line: #d9dacf;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(17, 24, 43, .13);
    --shell: min(1180px, calc(100vw - 48px));
}

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

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
.brand,
.button {
    font-family: "Space Grotesk", sans-serif;
}

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

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: none;
}

.announcement {
    position: relative;
    z-index: 51;
    color: var(--ink);
    background: var(--lime);
    font-size: .82rem;
    font-weight: 700;
}

.announcement__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 34px;
}

.announcement__inner a {
    margin-left: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.announcement.is-hidden {
    display: none;
}

.announcement__close {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-left: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(17, 24, 43, .1);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
}

.announcement__close:hover {
    background: rgba(17, 24, 43, .2);
}

.announcement__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ink);
    box-shadow: 0 0 0 4px rgba(17, 24, 43, .13);
}

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
    background: rgba(246, 245, 238, .94);
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(17, 24, 43, .06);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 86px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    line-height: 1;
}

.brand img {
    flex: 0 0 auto;
    border-radius: 0;
    object-fit: contain;
}

.brand__words {
    display: grid;
    gap: 3px;
    font-size: .83rem;
    letter-spacing: -.02em;
}

.brand__words strong {
    font-size: 1rem;
}

.brand__words span {
    letter-spacing: .19em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: .91rem;
    font-weight: 600;
}

.site-nav > a:not(.button) {
    position: relative;
    padding-block: 8px;
}

.site-nav__mobile-note,
.nav-backdrop {
    display: none;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    bottom: 3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    content: "";
    transition: width .2s ease;
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 11px;
    border: 0;
    border-radius: 14px;
    color: var(--white);
    background: var(--ink);
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    min-height: 52px;
    padding: 13px 21px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease, background .2s ease;
}

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

.button--small {
    min-height: 43px;
    padding: 10px 17px;
}

.button--dark {
    color: var(--white);
    background: var(--ink);
    box-shadow: 5px 5px 0 var(--cyan);
}

.button--dark:hover {
    box-shadow: 8px 8px 0 var(--cyan);
}

.button--lime {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 6px 6px 0 rgba(255, 255, 255, .15);
}

.button--outline {
    border-color: var(--ink);
    background: transparent;
}

.button--outline:hover {
    color: var(--white);
    background: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 2px solid var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: .92rem;
    font-weight: 700;
}

.text-link span {
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.back-to-top {
    position: fixed;
    z-index: 40;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 2px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 var(--ink);
    opacity: 0;
    pointer-events: none;
    place-items: center;
    transform: translateY(14px);
    transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--ink);
    font-family: "Space Grotesk", sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 21px;
    height: 3px;
    background: var(--orange);
}

.eyebrow--light {
    color: var(--lime);
}

.hero {
    position: relative;
    padding: 70px 0 0;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: -190px;
    right: -170px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(17, 24, 43, .09);
    border-radius: 50%;
    box-shadow: inset 0 0 0 80px rgba(185, 242, 39, .08);
    content: "";
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.03fr .97fr;
    align-items: center;
    gap: 70px;
    min-height: 570px;
}

.hero__copy {
    max-width: 650px;
}

.hero h1 {
    margin-bottom: 30px;
    font-size: clamp(3.8rem, 6vw, 6.7rem);
    line-height: .88;
    letter-spacing: -.075em;
}

.hero h1 em,
.section-heading h2 em,
.page-hero h1 em {
    display: block;
    color: var(--orange);
    font-style: normal;
}

.hero__copy > p {
    max-width: 620px;
    margin-bottom: 36px;
    color: #4d566b;
    font-size: 1.13rem;
    line-height: 1.65;
}

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

.hero__visual {
    position: relative;
    min-height: 510px;
}

.code-window {
    position: absolute;
    z-index: 3;
    top: 45px;
    right: 0;
    width: min(100%, 520px);
    overflow: hidden;
    border: 6px solid var(--ink);
    border-radius: 19px;
    color: #eef2ff;
    background: var(--ink);
    box-shadow: 18px 18px 0 var(--orange), var(--shadow);
    transform: rotate(1.5deg);
}

.code-window__bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 47px;
    padding-inline: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: #1a2340;
}

.code-window__bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.code-window__bar span:nth-child(2) {
    background: var(--yellow);
}

.code-window__bar span:nth-child(3) {
    background: var(--lime);
}

.code-window__bar b {
    margin-left: auto;
    color: #8993aa;
    font: 500 .68rem "DM Sans", sans-serif;
}

.code-window__body {
    padding: 27px 23px 29px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: clamp(.75rem, 1.2vw, .88rem);
    line-height: 2;
}

.code-window__body > div {
    display: grid;
    grid-template-columns: 26px 1fr;
}

.code-window__body i {
    color: #505b75;
    font-style: normal;
    user-select: none;
}

.code-window__body code {
    color: #e9edf7;
}

.code-window .pink { color: var(--pink); }
.code-window .cyan { color: var(--cyan); }
.code-window .lime { color: var(--lime); }
.code-window .yellow { color: var(--yellow); }

.code-window__result {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 17px 21px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #aeb8ca;
    background: #0b1121;
    font-size: .72rem;
}

.code-window__result strong {
    margin-left: auto;
    color: var(--lime);
    letter-spacing: .06em;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(185, 242, 39, .13);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    50% { box-shadow: 0 0 0 10px rgba(185, 242, 39, 0); }
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(17, 24, 43, .16);
    border-radius: 50%;
}

.orbit--one {
    top: -7px;
    left: 20px;
    width: 390px;
    height: 390px;
}

.orbit--two {
    right: -100px;
    bottom: -30px;
    width: 320px;
    height: 320px;
}

.floating-tag {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 3px solid var(--ink);
    color: var(--ink);
    background: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.floating-tag--top {
    top: 19px;
    right: 14px;
    background: var(--lime);
    transform: rotate(4deg);
}

.floating-tag--bottom {
    bottom: 19px;
    left: -4px;
    background: var(--cyan);
    transform: rotate(-3deg);
}

.floating-tag--bottom span {
    color: var(--orange);
}

.hero__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero__facts > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 25px 28px;
    border-right: 1px solid var(--line);
}

.hero__facts > div:last-child {
    border-right: 0;
}

.hero__facts strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.55rem;
    letter-spacing: -.04em;
}

.hero__facts span {
    color: var(--muted);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section {
    padding: 128px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.section-heading--compact {
    margin-bottom: 42px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: .98;
    letter-spacing: -.065em;
}

.section-heading > p {
    margin: 0 0 8px;
    color: #596175;
}

.section-heading .text-link {
    justify-self: end;
    margin-bottom: 12px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.program-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 410px;
    padding: 28px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--white);
    transition: transform .25s ease, box-shadow .25s ease;
}

.program-card:nth-child(n+4) {
    min-height: 360px;
}

.program-card::before {
    position: absolute;
    top: -95px;
    right: -95px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: var(--card-accent);
    content: "";
    transition: transform .35s ease;
}

.program-card:hover {
    box-shadow: 10px 10px 0 var(--ink);
    transform: translate(-4px, -4px);
}

.program-card:hover::before {
    transform: scale(1.25);
}

.program-card--lime { --card-accent: var(--lime); }
.program-card--cyan { --card-accent: var(--cyan); }
.program-card--orange { --card-accent: var(--orange); }
.program-card--purple { --card-accent: var(--purple); }

.program-card__top {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.program-card__number {
    font-family: ui-monospace, monospace;
    font-size: .74rem;
    font-weight: 700;
}

.program-card__arrow {
    font-size: 1.3rem;
    transition: transform .2s ease;
}

.program-card:hover .program-card__arrow {
    transform: rotate(45deg);
}

.program-card h3 {
    margin: 0 0 13px;
    font-size: 1.75rem;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.program-card h3 a::after {
    position: absolute;
    inset: 0;
    content: "";
}

.program-card p {
    margin: 0;
    color: #596175;
    font-size: .92rem;
    line-height: 1.55;
}

.program-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 22px;
}

.program-card__meta span {
    padding: 5px 9px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.section-action {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

.manifesto {
    position: relative;
    padding: 100px 0 115px;
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.manifesto::after {
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 520px;
    height: 520px;
    border: 80px solid rgba(72, 223, 233, .1);
    border-radius: 50%;
    content: "";
}

.manifesto__marquee {
    margin-bottom: 95px;
    padding-block: 15px;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, .16);
    color: var(--lime);
    font: 700 1rem "Space Grotesk", sans-serif;
    letter-spacing: .12em;
    white-space: nowrap;
}

.manifesto__marquee span {
    display: block;
    width: max-content;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    to { transform: translateX(-40%); }
}

.manifesto__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 80px;
}

.manifesto__label > span {
    display: block;
    margin-bottom: 35px;
    color: var(--cyan);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.manifesto__badge {
    display: grid;
    place-content: center;
    width: 155px;
    height: 155px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--orange);
    font: 700 2.5rem/1 "Space Grotesk", sans-serif;
    text-align: center;
    transform: rotate(-8deg);
}

.manifesto__badge small {
    display: block;
    margin-top: 6px;
    font-size: .55rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.manifesto blockquote {
    max-width: 880px;
    margin: 0 0 65px;
    font: 600 clamp(2.2rem, 4vw, 4.4rem)/1.08 "Space Grotesk", sans-serif;
    letter-spacing: -.055em;
}

.manifesto__points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.manifesto__points b {
    color: var(--orange);
    font-family: ui-monospace, monospace;
    font-size: .7rem;
}

.manifesto__points span {
    display: block;
    margin: 5px 0 8px;
    color: var(--lime);
    font: 700 1rem "Space Grotesk", sans-serif;
}

.manifesto__points p {
    margin: 0;
    color: #aeb7c8;
    font-size: .85rem;
}

.gallery-preview {
    padding-bottom: 90px;
}

.photo-mosaic {
    display: grid;
    grid-template-columns: 1.35fr .65fr 1fr;
    grid-template-rows: 290px 230px;
    gap: 14px;
}

.photo-mosaic__item {
    position: relative;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--ink);
}

.photo-mosaic__item--1 {
    grid-row: 1 / 3;
}

.photo-mosaic__item--2 {
    grid-column: 2 / 4;
}

.photo-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.photo-mosaic__item:hover img {
    transform: scale(1.04);
}

.photo-mosaic__item figcaption {
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 10px;
    color: var(--white);
    background: rgba(17, 24, 43, .84);
    backdrop-filter: blur(8px);
    font-size: .72rem;
    font-weight: 700;
}

.photo-mosaic__item figcaption span {
    color: var(--lime);
    font-family: ui-monospace, monospace;
}

.stories-preview {
    background: #ecebe3;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.story-card {
    min-width: 0;
}

.story-card__visual {
    position: relative;
    display: block;
    height: 255px;
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 18px;
    background: var(--cyan);
}

.story-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.story-card:hover .story-card__visual img {
    transform: scale(1.04);
}

.story-card__pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, var(--lime) 0 12%, transparent 12.5%),
        linear-gradient(130deg, transparent 0 40%, var(--ink) 40% 48%, transparent 48%),
        var(--cyan);
}

.story-card__pattern--1 {
    background:
        repeating-linear-gradient(135deg, transparent 0 24px, rgba(17, 24, 43, .13) 24px 28px),
        var(--orange);
}

.story-card__pattern--2 {
    background:
        radial-gradient(circle, var(--ink) 0 8%, transparent 8.5%) 0 0/45px 45px,
        var(--lime);
}

.story-card__arrow {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    background: var(--white);
    transition: transform .2s ease;
}

.story-card:hover .story-card__arrow {
    transform: rotate(45deg);
}

.story-card__body {
    padding: 22px 3px 0;
}

.story-card time {
    display: block;
    margin-bottom: 10px;
    color: var(--muted);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.story-card h3 {
    margin-bottom: 10px;
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: -.04em;
}

.story-card h3 a:hover {
    text-decoration: underline;
    text-decoration-color: var(--orange);
    text-underline-offset: 4px;
}

.story-card p {
    color: #5b6374;
    font-size: .88rem;
    line-height: 1.55;
}

.partner-strip {
    padding: 44px 0;
    border-top: 1px solid var(--line);
    background: var(--white);
}

.partner-strip .shell {
    display: flex;
    align-items: center;
    gap: 55px;
}

.partner-strip .shell > span {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 46px;
}

.partner-list a,
.partner-list > span {
    filter: grayscale(1);
    opacity: .7;
    transition: filter .2s ease, opacity .2s ease;
}

.partner-list a:hover {
    filter: none;
    opacity: 1;
}

.partner-list img {
    max-width: 130px;
    max-height: 46px;
}

.partner-list strong {
    font: 700 1.2rem "Space Grotesk", sans-serif;
}

.site-footer {
    padding: 90px 0 28px;
    color: #dfe4ef;
    background: #0c1222;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.footer-cta h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .65fr 1.15fr .65fr;
    gap: 55px;
    padding: 65px 0;
}

.brand--footer {
    margin-bottom: 23px;
    color: var(--white);
}

.footer-grid > div:first-child p {
    max-width: 340px;
    color: #9ea8ba;
    font-size: .88rem;
}

.footer-hashtag {
    color: var(--lime);
    font: 700 .78rem "Space Grotesk", sans-serif;
    letter-spacing: .12em;
}

.footer-grid h3 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) p {
    margin: 0;
    color: #9ea8ba;
    font-size: .84rem;
    overflow-wrap: anywhere;
}

.footer-grid a:hover {
    color: var(--lime) !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #707b91;
    font-size: .7rem;
}

/* Inner pages */
.page-hero {
    padding: 76px 0 70px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: 1fr .42fr;
    align-items: end;
    gap: 75px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(4rem, 7.2vw, 7.2rem);
    line-height: .88;
    letter-spacing: -.08em;
}

.page-hero__intro {
    margin: 0 0 8px;
    color: #596175;
    font-size: 1.08rem;
}

.page-hero--dark {
    color: var(--white);
    background: var(--ink);
}

.page-hero--dark .page-hero__intro {
    color: #aeb7c8;
}

.page-hero--dark .eyebrow {
    color: var(--lime);
}

.content-section {
    padding: 90px 0;
}

.content-section--white {
    background: var(--white);
}

.split-content {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 100px;
}

.split-content__label {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.split-content__main h2 {
    margin-bottom: 32px;
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.split-content__main > p {
    max-width: 790px;
    color: #4d566b;
    font-size: 1.06rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 60px;
}

.value-card {
    padding: 28px;
    border: 2px solid var(--ink);
    border-radius: 18px;
}

.value-card:nth-child(1) { background: var(--lime); }
.value-card:nth-child(2) { background: var(--cyan); }
.value-card:nth-child(3) { background: var(--orange); }

.value-card b {
    font: 700 .7rem ui-monospace, monospace;
}

.value-card h3 {
    margin: 32px 0 10px;
    font-size: 1.45rem;
}

.value-card p {
    margin: 0;
    font-size: .86rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
}

.team-card__photo {
    aspect-ratio: 4 / 4.2;
    background:
        linear-gradient(135deg, transparent 50%, rgba(17, 24, 43, .12) 50%),
        var(--cyan);
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__body {
    padding: 22px;
}

.team-card h3 {
    margin-bottom: 2px;
    font-size: 1.28rem;
}

.team-card small {
    color: var(--orange);
    font-weight: 700;
}

.team-card p {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: .84rem;
}

.programme-list .program-grid {
    grid-template-columns: repeat(2, 1fr);
}

.programme-list .program-card {
    min-height: 390px;
}

.programme-toolbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 24px 50px;
    margin-bottom: 38px;
    padding: 26px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.programme-toolbar .eyebrow {
    margin-bottom: 8px;
}

.programme-toolbar h2 {
    margin: 0;
    font-size: clamp(1.5rem, 2.8vw, 2.3rem);
    letter-spacing: -.045em;
}

.programme-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.programme-filters button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

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

.programme-filters button.is-active {
    color: var(--white);
    background: var(--ink);
}

.programme-filters button span {
    display: grid;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    place-items: center;
    font-size: .62rem;
}

.programme-filter-status {
    grid-column: 1 / -1;
    margin: -8px 0 0;
    color: var(--muted);
    font-size: .7rem;
}

.program-card[hidden] {
    display: none;
}

.programme-detail-hero {
    padding: 85px 0 95px;
}

.programme-detail-hero__grid {
    display: grid;
    grid-template-columns: 1fr .52fr;
    gap: 80px;
    align-items: end;
}

.programme-detail-hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3.4rem, 7vw, 7.2rem);
    line-height: .9;
    letter-spacing: -.075em;
}

.programme-detail-hero__lead {
    max-width: 760px;
    color: #50596d;
    font-size: 1.15rem;
}

.programme-meta {
    display: grid;
    gap: 12px;
}

.programme-meta > div {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.programme-meta span {
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.programme-meta strong {
    text-align: right;
}

.programme-body {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 110px;
}

.prose {
    color: #394156;
    font-size: 1.05rem;
    line-height: 1.85;
}

.prose p {
    margin-bottom: 1.5em;
}

.prose h2,
.prose h3 {
    color: var(--ink);
}

.enrol-card {
    position: sticky;
    top: 120px;
    align-self: start;
    padding: 28px;
    border-radius: 18px;
    background: var(--lime);
    box-shadow: 8px 8px 0 var(--ink);
}

.enrol-card h3 {
    margin-bottom: 10px;
    font-size: 1.65rem;
    line-height: 1.08;
}

.enrol-card p {
    font-size: .87rem;
}

.enrol-card .button {
    width: 100%;
}

.stories-page .story-grid {
    row-gap: 55px;
}

.pagination-wrap {
    margin-top: 60px;
}

.pagination-wrap nav > div:first-child {
    display: none;
}

.pagination-wrap nav > div:last-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pagination-wrap a,
.pagination-wrap span[aria-current="page"] span {
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: 6px;
}

.article-hero {
    padding: 90px 0 60px;
    text-align: center;
}

.article-hero time {
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 980px;
    margin: 20px auto 25px;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .95;
    letter-spacing: -.07em;
}

.article-hero p {
    max-width: 690px;
    margin: 0 auto;
    color: #596175;
    font-size: 1.12rem;
}

.article-visual {
    width: var(--shell);
    height: min(60vw, 660px);
    margin: 0 auto;
    overflow: hidden;
    border-radius: 26px;
    background:
        radial-gradient(circle at 25% 30%, var(--lime) 0 12%, transparent 12.5%),
        repeating-linear-gradient(135deg, transparent 0 35px, rgba(17, 24, 43, .12) 35px 41px),
        var(--cyan);
}

.article-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 770px;
    padding: 80px 0 120px;
    margin: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
}

.gallery-card {
    grid-column: span 4;
    margin: 0;
}

.gallery-card:nth-child(5n+1),
.gallery-card:nth-child(5n+2) {
    grid-column: span 6;
}

.gallery-card__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--ink);
    cursor: zoom-in;
}

.gallery-card:nth-child(5n+1) .gallery-card__image,
.gallery-card:nth-child(5n+2) .gallery-card__image {
    aspect-ratio: 16 / 10;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.gallery-card:hover img {
    transform: scale(1.035);
}

.gallery-card__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    width: 42px;
    height: 42px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 3px 3px 0 var(--ink);
    place-items: center;
    transition: transform .2s ease;
}

.gallery-card:hover .gallery-card__zoom {
    transform: rotate(45deg);
}

.gallery-card figcaption {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 3px 25px;
    font-size: .85rem;
    font-weight: 700;
}

.gallery-card figcaption span {
    color: var(--muted);
    font: .68rem ui-monospace, monospace;
}

body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    grid-template-columns: 70px minmax(0, 1050px) 70px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 60px 28px 28px;
    background: rgba(8, 13, 26, .96);
    backdrop-filter: blur(12px);
}

.gallery-lightbox figure {
    display: grid;
    max-height: calc(100vh - 90px);
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: var(--ink);
}

.gallery-lightbox figure img {
    width: 100%;
    max-height: calc(100vh - 170px);
    object-fit: contain;
}

.gallery-lightbox figcaption {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 16px 19px;
    color: var(--white);
}

.gallery-lightbox figcaption strong {
    font-family: "Space Grotesk", sans-serif;
}

.gallery-lightbox figcaption span {
    color: #9ea8ba;
    font-size: .78rem;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    cursor: pointer;
    place-items: center;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
    color: var(--ink);
    background: var(--lime);
    transform: scale(1.05);
}

.gallery-lightbox__close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 1.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
}

.contact-details {
    padding-top: 15px;
}

.contact-details h2 {
    margin-bottom: 25px;
    font-size: 2.3rem;
    line-height: 1.05;
    letter-spacing: -.05em;
}

.contact-details > p {
    color: var(--muted);
}

.contact-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 24px;
}

.contact-topics span {
    padding: 6px 10px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: .66rem;
    font-weight: 700;
}

.contact-list {
    display: grid;
    gap: 22px;
    margin-top: 45px;
}

.contact-list div {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.contact-list span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-list a,
.contact-list p {
    margin: 0;
    font-weight: 600;
}

.contact-form {
    padding: 42px;
    border: 2px solid var(--ink);
    border-radius: 24px;
    background: var(--white);
    box-shadow: 12px 12px 0 var(--cyan);
}

.contact-form__heading {
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.contact-form__heading > span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-form__heading h2 {
    margin-bottom: 5px;
    font-size: 1.8rem;
    letter-spacing: -.045em;
}

.contact-form__heading p {
    margin: 0;
    color: var(--muted);
    font-size: .74rem;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.field {
    display: grid;
    gap: 7px;
}

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

.field label {
    font-size: .76rem;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border: 1px solid #cdd0d7;
    border-radius: 8px;
    outline: none;
    background: #fbfbf8;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input,
.field select {
    height: 51px;
    padding: 0 14px;
}

.field textarea {
    min-height: 145px;
    padding: 13px 14px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(72, 223, 233, .2);
}

.field-error {
    color: #b42318;
    font-size: .72rem;
}

.form-alert {
    margin-bottom: 24px;
    padding: 14px 17px;
    border-radius: 8px;
    font-size: .88rem;
}

.form-alert--success {
    border: 1px solid #87bb15;
    background: #effbd0;
}

.form-alert--error {
    border: 1px solid #f1a29b;
    background: #fff0ee;
}

.contact-form .button {
    margin-top: 24px;
}

.contact-form .button:disabled {
    cursor: wait;
    opacity: .72;
    transform: none;
}

.contact-form__note {
    display: inline-block;
    margin: 25px 0 0 16px;
    color: var(--muted);
    font-size: .68rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.empty-state {
    padding: 70px 30px;
    border: 2px dashed var(--line);
    border-radius: 20px;
    text-align: center;
}

.empty-state h2 {
    margin-bottom: 8px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal--delay {
    transition-delay: .15s;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

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

@media (max-width: 980px) {
    :root {
        --shell: min(100% - 38px, 780px);
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 45;
        inset: 120px 19px auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 20px;
        border: 2px solid var(--ink);
        border-radius: 18px;
        background: var(--paper);
        box-shadow: 10px 10px 0 var(--ink);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .announcement.is-hidden + .site-header .site-nav {
        inset-block-start: 88px;
    }

    .nav-backdrop {
        position: fixed;
        z-index: 44;
        inset: 0;
        display: block;
        background: rgba(8, 13, 26, .5);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
        backdrop-filter: blur(4px);
    }

    .nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .site-nav > a:not(.button) {
        padding: 13px 10px;
        font-size: 1.05rem;
    }

    .site-nav .button {
        margin-top: 10px;
    }

    .site-nav__mobile-note {
        display: grid;
        gap: 2px;
        margin: 9px 0 5px;
        padding: 14px 10px;
        border-top: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
        color: var(--muted);
        font-size: .72rem;
    }

    .site-nav__mobile-note a {
        color: var(--ink);
        font-weight: 700;
        overflow-wrap: anywhere;
    }

    .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding-top: 50px;
    }

    .hero__grid,
    .page-hero__grid,
    .programme-detail-hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero__visual {
        width: min(100%, 590px);
        min-height: 500px;
        margin: 0 auto;
    }

    .hero__facts {
        grid-template-columns: 1fr 1fr;
        margin-top: 40px;
    }

    .hero__facts > div:nth-child(2) {
        border-right: 0;
    }

    .hero__facts > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section {
        padding: 95px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .manifesto__grid {
        grid-template-columns: 150px 1fr;
        gap: 45px;
    }

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

    .photo-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 220px 220px;
    }

    .photo-mosaic__item--1 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .photo-mosaic__item--2 {
        grid-column: auto;
    }

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

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

    .footer-grid > div:last-child {
        grid-column: 2 / 4;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-grid > div:last-child h3 {
        width: 100%;
    }

    .split-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .programme-body {
        grid-template-columns: 1fr 280px;
        gap: 55px;
    }

    .programme-toolbar {
        grid-template-columns: 1fr;
    }

    .programme-filters {
        justify-content: flex-start;
    }

    .gallery-card,
    .gallery-card:nth-child(5n+1),
    .gallery-card:nth-child(5n+2) {
        grid-column: span 6;
    }

    .gallery-lightbox {
        grid-template-columns: 48px minmax(0, 1fr) 48px;
        gap: 8px;
        padding-inline: 12px;
    }

    .gallery-lightbox__nav {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: calc(100% - 30px);
        --radius: 18px;
    }

    body {
        font-size: 15px;
    }

    .announcement__inner {
        justify-content: flex-start;
        min-height: 42px;
        overflow: hidden;
        white-space: nowrap;
    }

    .announcement__inner > span:nth-child(2) {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .announcement__inner a {
        display: none;
    }

    .announcement__close {
        margin-left: auto;
    }

    .site-header__inner {
        min-height: 72px;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .brand__words strong {
        font-size: .87rem;
    }

    .brand__words {
        font-size: .68rem;
    }

    .site-nav {
        inset: 104px 15px auto;
    }

    .announcement.is-hidden + .site-header .site-nav {
        inset-block-start: 82px;
    }

    .hero {
        padding-top: 42px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 17vw, 5rem);
    }

    .hero__copy > p {
        font-size: 1rem;
    }

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

    .hero__visual {
        min-height: 380px;
    }

    .code-window {
        top: 35px;
        width: calc(100% - 10px);
        border-width: 4px;
        box-shadow: 10px 10px 0 var(--orange);
    }

    .code-window__body {
        padding: 20px 14px;
        line-height: 1.75;
    }

    .floating-tag--top {
        right: 0;
    }

    .floating-tag--bottom {
        bottom: 0;
        left: 0;
    }

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

    .hero__facts > div {
        padding: 18px 10px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .hero__facts > div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading h2,
    .page-hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.6rem);
    }

    .program-grid,
    .programme-list .program-grid,
    .story-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .program-card:nth-child(n+4),
    .programme-list .program-card {
        min-height: 360px;
    }

    .manifesto {
        padding: 75px 0;
    }

    .manifesto__marquee {
        margin-bottom: 60px;
    }

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

    .manifesto__label {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .manifesto__label > span {
        margin: 0;
    }

    .manifesto__badge {
        width: 110px;
        height: 110px;
        font-size: 2rem;
    }

    .manifesto blockquote {
        font-size: 2.2rem;
    }

    .photo-mosaic {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 260px);
    }

    .photo-mosaic__item--1,
    .photo-mosaic__item--2 {
        grid-column: auto;
    }

    .section-heading .text-link {
        justify-self: start;
    }

    .partner-strip .shell {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .partner-list {
        gap: 25px;
    }

    .footer-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / 3;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .page-hero {
        padding: 58px 0 62px;
    }

    .content-section {
        padding: 75px 0;
    }

    .split-content {
        gap: 30px;
    }

    .programme-body {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .enrol-card {
        position: static;
    }

    .article-hero {
        padding-top: 65px;
    }

    .article-visual {
        width: calc(100% - 30px);
        height: 65vw;
        border-radius: 16px;
    }

    .article-body {
        width: calc(100% - 40px);
        padding-block: 55px 85px;
    }

    .gallery-card,
    .gallery-card:nth-child(5n+1),
    .gallery-card:nth-child(5n+2) {
        grid-column: 1 / -1;
    }

    .programme-toolbar {
        padding: 21px 18px;
    }

    .programme-filters {
        gap: 6px;
    }

    .programme-filters button {
        min-height: 42px;
        padding-inline: 13px;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr auto;
        align-items: end;
        padding: 58px 12px 18px;
    }

    .gallery-lightbox figure {
        grid-column: 1 / -1;
        grid-row: 1;
        align-self: center;
    }

    .gallery-lightbox__nav {
        grid-row: 2;
        width: 100%;
        border-radius: 10px;
    }

    .gallery-lightbox__nav--previous {
        grid-column: 1;
    }

    .gallery-lightbox__nav--next {
        grid-column: 2;
    }

    .gallery-lightbox figcaption {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .contact-form {
        padding: 25px 20px;
        box-shadow: 7px 7px 0 var(--cyan);
    }

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

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

    .contact-form__note {
        display: block;
        margin: 14px 0 0;
    }

    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 43px;
        height: 43px;
    }
}
