@font-face {
    font-family: "Gotham";
    src: url("/wp-content/uploads/2025/06/Gotham-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Work Sans";
    src: url("../fonts/work-sans-regular-medium.woff2") format("woff2");
    font-weight: 400 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #fafafa;
    --secondary: #f8f5f2;
    --ink: #1a1a1a;
    --muted: #4a4f55;
    --soft-muted: #6d7277;
    --line: rgba(26, 26, 26, .1);
    --paper: #fafafa;
    --soft: #f8f5f2;
    --white: #ffffff;
    --blue: #1c24b3;
    --blue-dark: #10178d;
    --shadow: 0 22px 64px rgba(26, 26, 26, .09);
    --container: 1180px;
    --font-head: "Gotham", "Work Sans", Arial, sans-serif;
    --font-body: "Work Sans", Arial, sans-serif;
    --header-height: 132px;
    --header-offset: 0px;
    --anchor-offset: 162px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html.admin-bar {
    --header-offset: 32px;
}

@media (max-width: 782px) {
    html.admin-bar {
        --header-offset: 46px;
    }
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.556;
    overflow-x: hidden;
}

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

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

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: var(--header-offset);
    left: 0;
    right: 0;
    z-index: 60;
    display: block;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(26, 26, 26, .08);
    background: var(--paper);
    transition: min-height .22s ease, box-shadow .22s ease;
}

.site-header.is-scrolled {
    min-height: 88px;
    box-shadow: 0 14px 34px rgba(26, 26, 26, .06);
}

.site-topbar {
    max-height: 36px;
    overflow: hidden;
    color: rgba(26, 26, 26, .84);
    background: var(--paper);
    border-bottom: 1px solid rgba(26, 26, 26, .07);
    font-family: var(--font-head);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.2;
    opacity: 1;
    transition: max-height .22s ease, opacity .16s ease, border-color .22s ease;
}

.site-header.is-scrolled .site-topbar {
    max-height: 0;
    border-color: transparent;
    opacity: 0;
    pointer-events: none;
}

.site-topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    width: 100%;
    min-height: 36px;
    margin: 0 auto;
    padding: 0 clamp(25px, 4.6vw, 70px);
}

.site-topbar__brand,
.site-topbar__item {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    white-space: nowrap;
    transition: color .18s ease;
}

.site-topbar__brand {
    color: var(--ink);
    gap: 10px;
}

.site-topbar__brand span {
    color: inherit;
}

.site-topbar__brand em {
    color: rgba(26, 26, 26, .64);
    border-bottom: 1px solid transparent;
    font-style: normal;
    transition: color .18s ease, border-color .18s ease;
}

.site-topbar__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px 22px;
}

.site-topbar__item {
    gap: 7px;
}

.site-topbar svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

a.site-topbar__brand:hover,
a.site-topbar__brand:focus,
a.site-topbar__item:hover,
a.site-topbar__item:focus {
    color: var(--blue);
}

a.site-topbar__brand:hover em,
a.site-topbar__brand:focus em {
    border-color: currentColor;
    color: var(--blue);
}

.site-header__main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: calc(var(--header-height) - 36px);
    padding: 15px clamp(25px, 4.6vw, 70px);
    transition: min-height .22s ease, padding .22s ease;
}

.site-header.is-scrolled .site-header__main {
    min-height: 88px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img,
.site-footer img {
    width: 112px;
    height: auto;
}

.primary-nav > ul {
    display: flex;
    justify-content: center;
    gap: clamp(8px, 1.1vw, 18px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav li {
    position: relative;
}

.primary-nav a {
    position: relative;
    display: block;
    padding: 13px 4px;
    color: rgba(26, 26, 26, .74);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    transition: color .18s ease, transform .18s ease, background-color .18s ease;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li:focus-within > a,
.primary-nav > ul > li.is-current > a,
.primary-nav > ul > li.is-ancestor > a {
    color: var(--blue);
}

.primary-nav > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .18s ease;
}

.primary-nav > ul > li > a:hover::after,
.primary-nav > ul > li:focus-within > a::after,
.primary-nav > ul > li.is-current > a::after,
.primary-nav > ul > li.is-ancestor > a::after {
    transform: scaleX(1);
}

.primary-nav ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid rgba(23, 21, 20, .1);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease;
}

.primary-nav .submenu-overview {
    display: none;
}

.primary-nav li:hover > ul,
.primary-nav li:focus-within > ul {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.primary-nav ul ul a {
    padding: 10px 12px;
    border-radius: 0;
    color: rgba(26, 26, 26, .72);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
}

.primary-nav ul ul a:hover,
.primary-nav ul ul a:focus,
.primary-nav ul ul li.is-current > a {
    background: var(--soft);
    color: var(--blue);
    transform: translateX(4px);
}

.mobile-nav-cta {
    display: none !important;
}

.nav-toggle {
    display: none;
    justify-self: end;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.header-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 61px;
    padding: 20px 30px;
    border: 2px solid var(--blue);
    border-radius: 8px;
    background: var(--blue);
    color: white;
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.1;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.header-cta {
    min-height: 52px;
    padding: 16px 25px;
}

.btn:hover,
.btn:focus,
.header-cta:hover,
.header-cta:focus {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

.btn-secondary {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue);
}

.btn-secondary:hover,
.btn-secondary:focus {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.site-main {
    overflow: hidden;
    padding-top: var(--header-height);
}

.site-main [id] {
    scroll-margin-top: var(--anchor-offset);
}

.hero {
    position: relative;
    min-height: clamp(620px, 82vh, 840px);
    display: flex;
    align-items: flex-end;
    isolation: isolate;
    background: var(--ink);
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(14, 12, 10, .78), rgba(14, 12, 10, .42) 42%, rgba(14, 12, 10, .1)),
        linear-gradient(0deg, rgba(247, 243, 239, 1), rgba(247, 243, 239, 0) 34%);
}

.hero-grid {
    padding: 150px 0 92px;
}

.hero-copy {
    max-width: 690px;
    color: white;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, .86);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 500;
    color: inherit;
    overflow-wrap: break-word;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: .96;
    max-width: 820px;
}

.home-container {
    width: min(1296px, calc(100% - 80px));
    margin: 0 auto;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 0;
    isolation: isolate;
    color: var(--white);
    background: var(--ink);
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(18, 18, 18, .72), rgba(18, 18, 18, .38) 48%, rgba(18, 18, 18, .12)),
        linear-gradient(0deg, rgba(18, 18, 18, .1), rgba(18, 18, 18, .08));
}

.home-hero__inner {
    width: min(1296px, calc(100% - 80px));
    padding: 190px 0 210px;
}

.home-hero__copy {
    max-width: 670px;
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    --hero-position-x: 50%;
    background-position: var(--hero-position-x) center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: kupe-hero-breathe 18s ease-in-out infinite alternate;
}

.home-hero h1 {
    margin: 0;
    max-width: 760px;
    color: var(--white);
    font-size: clamp(48px, 5.2vw, 74px);
    line-height: 1.06;
}

.home-hero p {
    max-width: 560px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1.55;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.home-intro {
    padding: 116px 0 124px;
    background: var(--secondary);
}

.home-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, .94fr);
    gap: 104px;
    align-items: center;
}

.home-intro__image {
    padding-right: 0;
    overflow: hidden;
}

.home-intro__image img {
    width: 100%;
    aspect-ratio: 1 / 1.12;
    object-fit: cover;
    border-radius: 0;
}

.home-intro__copy {
    padding: 24px 24px 0 0;
}

.home-kicker {
    display: grid;
    grid-template-columns: 68px auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 28px;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
}

.home-kicker span {
    display: block;
    width: 100%;
    border-top: 2px solid currentColor;
}

.home-kicker--light {
    color: var(--white);
}

.home-studio .home-kicker--light {
    color: var(--blue);
}

.home-intro h2,
.home-section-head h2,
.home-studio h2,
.home-business h2,
.home-final h2,
.home-proof h2,
.home-location h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3.1vw, 46px);
    line-height: 1.16;
}

.home-intro p,
.home-section-head p,
.home-business p,
.home-studio p,
.home-proof p,
.home-location p {
    margin: 24px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.62;
}

.home-link,
.home-card span {
    position: relative;
    display: inline-flex;
    margin-top: 32px;
    color: var(--blue);
    font-family: var(--font-head);
    font-weight: 500;
    transition: transform .18s ease, color .18s ease;
}

.home-link::after,
.home-card span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .22s ease;
}

.home-link:hover,
.home-link:focus,
.home-card:hover span,
.home-card:focus span {
    color: var(--ink);
    transform: translateX(6px);
}

.home-link:hover::after,
.home-link:focus::after,
.home-card:hover span::after,
.home-card:focus span::after {
    transform: scaleX(1);
}

.home-offer,
.home-business {
    padding: 126px 0;
    background: var(--primary);
}

.home-offer {
    padding-top: 118px;
}

.home-section-head {
    max-width: 820px;
}

.home-section-head--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .72fr);
    gap: 60px;
    align-items: end;
}

.home-section-head--split p {
    margin: 0 0 7px;
}

.home-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.home-offer .home-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-card {
    display: grid;
    grid-template-rows: minmax(72px, auto) 1fr auto;
    row-gap: 24px;
    min-height: 300px;
    padding: 48px 38px 38px;
    border-radius: 0;
    background: var(--secondary);
    transition: background-color .22s ease;
}

.home-card:hover,
.home-card:focus {
    background: var(--white);
}

.home-card h3 {
    margin: 0;
    color: #0c0c0c;
    font-size: 28px;
    line-height: 1.18;
}

.home-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.home-card span {
    margin-top: 0;
    padding-top: 0;
    align-self: end;
}

.home-offer__footer {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.home-proof {
    padding: 126px 0;
    background: var(--primary);
}

.home-proof__grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(330px, .44fr);
    gap: 86px;
    align-items: center;
}

.home-proof__copy {
    max-width: 710px;
}

.home-proof__copy a {
    color: var(--blue);
}

.home-proof__actions,
.home-location__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
}

.home-proof__panel {
    padding: 54px 48px;
    border-radius: 8px;
    background: var(--secondary);
    box-shadow: none;
}

.home-rating {
    display: flex;
    gap: 18px;
    align-items: flex-end;
}

.home-rating strong {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 78px;
    font-weight: 500;
    line-height: .86;
}

.home-rating span {
    max-width: 110px;
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.2;
}

.home-stars {
    margin-top: 28px;
    color: var(--blue);
    font-size: 24px;
    letter-spacing: .06em;
}

.home-proof__panel p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 16px;
}

.home-review-highlights {
    display: grid;
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid rgba(26, 26, 26, .1);
}

.home-review-highlight {
    display: grid;
    gap: 7px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(26, 26, 26, .1);
}

.home-review-highlight strong {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.25;
}

.home-review-highlight span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.home-card--quiet {
    background: var(--secondary);
    border: 0;
}

.home-studio {
    padding: 126px 0;
    color: var(--ink);
    background: var(--secondary);
}

.home-studio__grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr);
    gap: 90px;
    align-items: center;
}

.home-studio h2,
.home-studio p {
    color: var(--ink);
}

.home-studio p {
    color: var(--muted);
}

.home-studio .btn {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.home-studio .btn:hover,
.home-studio .btn:focus {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue);
    transform: translateY(-2px);
}

.home-studio .btn-secondary {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue);
}

.home-studio .btn-secondary:hover,
.home-studio .btn-secondary:focus {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
    transform: translateY(-2px);
}

.home-studio__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.home-studio__facts {
    display: grid;
    gap: 18px;
}

.home-studio__facts div {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid rgba(26, 26, 26, .12);
}

.home-studio__facts div:last-child {
    border-bottom: 1px solid rgba(26, 26, 26, .12);
}

.home-studio__facts strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.home-studio__facts span {
    color: var(--muted);
    font-size: 18px;
}

.home-final {
    padding: 112px 0;
    color: var(--white);
    background: var(--blue);
}

.home-final__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
}

.home-final h2 {
    max-width: 740px;
    color: var(--white);
}

.home-location {
    padding: 126px 0;
    background: var(--secondary);
}

.home-location__grid {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(480px, 1fr);
    gap: 70px;
    align-items: center;
}

.home-location__copy {
    max-width: 510px;
}

.home-map {
    min-height: 390px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 26, .08);
    background: var(--white);
    box-shadow: none;
}

.home-map iframe {
    display: block;
    width: 100%;
    height: 390px;
    border: 0;
    filter: grayscale(.18) contrast(.98);
}

.home-final .btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.home-final .btn:hover,
.home-final .btn:focus {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

.studio-hero {
    padding: 116px 0 126px;
    background: var(--secondary);
}

.studio-hero__copy {
    max-width: 670px;
}

.studio-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(520px, .9fr);
    gap: 86px;
    align-items: center;
}

.studio-hero__copy h1 {
    margin: 0;
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(48px, 5.2vw, 74px);
    line-height: 1.06;
}

.studio-hero__lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--soft-muted);
    font-size: 18px;
    line-height: 1.55;
}

.studio-hero__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 220px));
    gap: 14px;
    margin-top: 34px;
}

.studio-hero__meta div {
    padding: 20px 22px;
    background: var(--white);
}

.studio-hero__meta strong,
.studio-hero__meta span {
    display: block;
}

.studio-hero__meta strong {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.15;
}

.studio-hero__meta span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.photo-hero-notice {
    margin-top: 22px;
    padding: 17px 20px;
    border-left: 3px solid var(--blue);
    background: var(--white);
    color: var(--ink);
}

.photo-hero-notice strong,
.photo-hero-notice span {
    display: block;
}

.photo-hero-notice strong {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

.photo-hero-notice span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.photo-hero-notice a {
    display: inline-flex;
    margin-left: 4px;
    color: var(--blue);
    font-family: var(--font-head);
    font-weight: 500;
    border-bottom: 1px solid currentColor;
    transition: color .18s ease;
}

.photo-hero-notice a:hover,
.photo-hero-notice a:focus {
    color: var(--ink);
}

.studio-hero__deal {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--blue);
    font-size: 15px;
    line-height: 1.45;
    transition: color .18s ease, transform .18s ease;
}

.studio-hero__deal strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.studio-hero__deal span {
    color: var(--ink);
}

.studio-hero__deal em {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-family: var(--font-head);
    font-style: normal;
    font-weight: 500;
}

.studio-hero__deal em::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .18s ease;
}

.studio-hero__deal em::before {
    content: "";
    position: absolute;
    left: 0;
    right: 16px;
    bottom: -5px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.studio-hero__deal:hover,
.studio-hero__deal:focus {
    color: var(--ink);
    transform: translateX(6px);
}

.studio-hero__deal:hover em::before,
.studio-hero__deal:focus em::before {
    transform: scaleX(1);
}

.studio-hero__deal:hover em::after,
.studio-hero__deal:focus em::after {
    transform: translateX(3px) rotate(45deg);
}

.studio-hero__image {
    margin: 0;
    overflow: hidden;
    background: var(--white);
}

.studio-hero__image img {
    width: 100%;
    aspect-ratio: 5 / 6;
    object-fit: cover;
    object-position: center;
    animation: kupe-studio-image-breathe 18s ease-in-out infinite alternate;
}

.studio-section-head {
    max-width: 820px;
}

.studio-section-head h2,
.studio-equipment h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 3.1vw, 46px);
    line-height: 1.16;
}

.studio-section-head p,
.studio-equipment__intro > p,
.studio-addons p {
    margin: 24px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.62;
}

.studio-price-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.studio-gallery {
    background: var(--primary);
}

.studio-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 230px;
    gap: 16px;
    margin-top: 54px;
}

.studio-gallery__item {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: var(--secondary);
}

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

.studio-gallery__button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.studio-gallery__button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(26, 26, 26, .18);
    opacity: 0;
    transition: opacity .22s ease;
}

.studio-gallery__button::after {
    content: "Zvětšit";
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    padding: 9px 13px;
    color: var(--white);
    background: var(--blue);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease;
}

.studio-gallery__button:hover::before,
.studio-gallery__button:focus-visible::before,
.studio-gallery__button:hover::after,
.studio-gallery__button:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.studio-gallery__button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kupe-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 52px 78px;
    background: rgba(18, 18, 18, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

.kupe-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

html.lightbox-open,
body.lightbox-open {
    overflow: hidden;
}

.kupe-lightbox__figure {
    display: grid;
    gap: 16px;
    width: min(1120px, 100%);
    margin: 0;
}

.kupe-lightbox__image {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 172px);
    margin: 0 auto;
    object-fit: contain;
    background: var(--ink);
}

.kupe-lightbox__caption {
    min-height: 1.4em;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    text-align: center;
}

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

.kupe-lightbox__close:hover,
.kupe-lightbox__close:focus,
.kupe-lightbox__nav:hover,
.kupe-lightbox__nav:focus {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.kupe-lightbox__close {
    top: 28px;
    right: 28px;
}

.kupe-lightbox__close::before,
.kupe-lightbox__close::after {
    content: "";
    position: absolute;
    width: 23px;
    border-top: 2px solid currentColor;
}

.kupe-lightbox__close::before {
    transform: rotate(45deg);
}

.kupe-lightbox__close::after {
    transform: rotate(-45deg);
}

.kupe-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}

.kupe-lightbox__nav:hover,
.kupe-lightbox__nav:focus {
    transform: translateY(-50%) scale(1.04);
}

.kupe-lightbox__nav--prev {
    left: 28px;
}

.kupe-lightbox__nav--next {
    right: 28px;
}

.kupe-lightbox__nav::before {
    content: "";
    width: 13px;
    height: 13px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}

.kupe-lightbox__nav--prev::before {
    transform: translateX(3px) rotate(-135deg);
}

.kupe-lightbox__nav--next::before {
    transform: translateX(-3px) rotate(45deg);
}

.gallery-hero {
    padding: 76px 0 72px;
    background: var(--secondary);
}

.gallery-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(430px, .64fr);
    gap: 72px;
    align-items: end;
}

.gallery-hero__copy {
    max-width: 720px;
}

.gallery-hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.08;
}

.gallery-hero p {
    max-width: 650px;
    margin: 22px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.58;
}

.gallery-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.gallery-hero__preview {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.gallery-hero__image {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: var(--primary);
}

.gallery-hero__image--1 {
    grid-row: span 2;
}

.gallery-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-hero__image--1 img {
    object-position: 47% center;
}

.gallery-wall-section {
    background: var(--primary);
}

.gallery-wall-section.section {
    padding: 88px 0 96px;
}

.gallery-wall-section:nth-of-type(even) {
    background: var(--secondary);
}

.gallery-wall {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: dense;
    gap: 16px;
    margin-top: 44px;
}

.gallery-wall__item {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: var(--secondary);
}

.gallery-wall .studio-gallery__button {
    height: 100%;
}

.gallery-wall__item--wide {
    grid-column: span 6;
    grid-row: span 2;
}

.gallery-wall__item--portrait {
    grid-column: span 3;
    grid-row: span 3;
}

.gallery-wall__item--portrait-feature {
    grid-column: span 4;
    grid-row: span 3;
}

.gallery-wall__item--small {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery-wall__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-services {
    background: var(--secondary);
}

.photo-hub-hero {
    padding: 76px 0 72px;
    background: var(--secondary);
}

.photo-hub-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .74fr) minmax(430px, .62fr);
    gap: 72px;
    align-items: end;
}

.photo-hub-hero__copy {
    max-width: 760px;
}

.photo-hub-hero h1 {
    max-width: 710px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.08;
}

.photo-hub-hero p {
    max-width: 690px;
    margin: 22px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.58;
}

.photo-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.photo-hub-hero__preview {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    grid-template-rows: repeat(2, 190px);
    gap: 16px;
}

.photo-hub-hero__image {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    background: var(--primary);
}

.photo-hub-hero__image--1 {
    grid-row: span 2;
}

.photo-hub-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-hub-hero__image--1 img {
    object-position: 47% center;
}

.photo-services {
    background: var(--primary);
}

.photo-services--secondary,
.photo-related {
    background: var(--secondary);
}

.photo-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
}

.photo-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    background: var(--secondary);
    transition: background-color .22s ease;
}

.photo-card:hover,
.photo-card:focus {
    background: var(--white);
}

.photo-card figure {
    margin: 0;
    overflow: hidden;
    background: var(--primary);
}

.photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.photo-card:hover img,
.photo-card:focus img {
    transform: scale(1.025);
}

.photo-card div {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 17px;
    padding: 30px 30px 28px;
}

.photo-card span {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.photo-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.14;
}

.photo-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.photo-card em {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: var(--blue);
    font-family: var(--font-head);
    font-style: normal;
    font-weight: 500;
    transition: color .18s ease, transform .18s ease;
}

.photo-card em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.photo-card:hover em,
.photo-card:focus em {
    color: var(--ink);
    transform: translateX(6px);
}

.photo-card:hover em::after,
.photo-card:focus em::after {
    transform: scaleX(1);
}

.photo-card--plain {
    grid-template-rows: 1fr;
}

.photo-card--plain div {
    min-height: 310px;
}

.photo-decision .event-ready__copy a {
    display: grid;
    gap: 7px;
    color: var(--white);
}

.photo-decision .event-ready__copy a span {
    color: rgba(255, 255, 255, .78);
}

.photo-process .event-ready__copy li {
    display: grid;
    gap: 7px;
}

.photo-process .event-ready__copy li strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.photo-process .event-ready__copy li span {
    color: rgba(255, 255, 255, .78);
}

.photo-service-options {
    background: var(--primary);
}

.photo-service-options .home-card {
    grid-template-rows: auto auto;
    align-content: start;
    min-height: 255px;
    row-gap: 22px;
}

.photo-detail-hero__image img {
    object-position: center;
}

.photo-details {
    background: var(--secondary);
}

.photo-proof {
    background: var(--primary);
}

.studio-equipment {
    background: var(--secondary);
}

.studio-equipment__grid {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
    gap: 90px;
    align-items: start;
}

.studio-equipment__intro {
    position: sticky;
    top: 132px;
}

.studio-support,
.studio-addons {
    margin-top: 42px;
    padding: 34px;
    background: var(--white);
}

.studio-support h3,
.studio-equipment__list h3,
.studio-addons h3 {
    margin: 0 0 22px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.2;
}

.studio-support ul,
.studio-addons ul,
.studio-detail ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.studio-support li,
.studio-addons li,
.studio-detail li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.58;
}

.studio-support li + li,
.studio-addons li + li,
.studio-detail li + li {
    margin-top: 10px;
}

.studio-support li::before,
.studio-addons li::before,
.studio-detail li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 7px;
    height: 7px;
    background: var(--blue);
}

.studio-equipment__list {
    padding: 44px 48px;
    background: var(--white);
}

.studio-detail {
    border-top: 1px solid rgba(26, 26, 26, .12);
}

.studio-detail:last-child {
    border-bottom: 1px solid rgba(26, 26, 26, .12);
}

.studio-detail summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
}

.studio-detail summary::-webkit-details-marker {
    display: none;
}

.studio-detail summary::after {
    content: "";
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: translateY(-3px) rotate(45deg);
    transition: transform .18s ease;
}

.studio-detail[open] summary::after {
    transform: translateY(3px) rotate(225deg);
}

.studio-detail ul {
    padding: 0 0 24px;
    overflow: hidden;
    transition: height .24s cubic-bezier(.22, 1, .36, 1), opacity .18s ease;
}

.studio-pricing {
    background: var(--primary);
}

.studio-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 54px;
}

.studio-price-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 280px;
    padding: 38px 34px;
    background: var(--secondary);
}

.studio-price-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
}

.studio-price-card__price {
    align-self: center;
}

.studio-price-card__price strong {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 64px;
    font-weight: 500;
    line-height: .95;
}

.studio-price-card__price span {
    display: block;
    margin-top: 7px;
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 500;
}

.studio-loyalty {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
    margin-top: 22px;
    padding: 40px 42px;
    color: var(--white);
    background: var(--blue);
}

.studio-loyalty__label {
    display: block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
}

.studio-loyalty h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(28px, 2.4vw, 36px);
    line-height: 1.16;
}

.studio-loyalty p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.6;
}

.studio-loyalty .btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
}

.studio-loyalty .btn:hover,
.studio-loyalty .btn:focus {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.studio-addons {
    max-width: 850px;
}

.studio-pricing__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.studio-next {
    padding-top: 118px;
}

.event-hero__image img {
    object-position: center;
}

.event-formats .home-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-format-card {
    grid-template-rows: minmax(72px, auto) 1fr;
}

.event-ready {
    color: var(--white);
    background: var(--blue);
}

.event-ready__grid {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
    gap: 90px;
    align-items: start;
}

.event-ready .home-kicker,
.event-ready h2 {
    color: var(--white);
}

.event-ready h2 {
    margin: 0;
    font-size: clamp(34px, 3.1vw, 46px);
    line-height: 1.16;
}

.event-ready__copy p {
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 18px;
    line-height: 1.62;
}

.event-ready__copy ul {
    display: grid;
    gap: 16px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.event-ready__copy li {
    position: relative;
    padding-left: 28px;
    color: var(--white);
    line-height: 1.58;
}

.event-ready__copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .68em;
    width: 8px;
    height: 8px;
    background: var(--white);
}

.rental-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.rental-card {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    gap: 22px;
    min-height: 430px;
    padding: 42px 38px 36px;
    background: var(--secondary);
    transition: background-color .22s ease;
}

.rental-card:hover,
.rental-card:focus {
    background: var(--white);
}

.rental-card__type {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
}

.rental-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.16;
}

.rental-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.58;
}

.rental-card__price {
    display: grid;
    gap: 5px;
    padding-top: 24px;
    border-top: 1px solid rgba(26, 26, 26, .12);
}

.rental-card__price strong {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 25px;
    font-weight: 500;
}

.rental-card__price span {
    color: var(--muted);
    font-size: 14px;
}

.rental-card em {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: var(--blue);
    font-family: var(--font-head);
    font-style: normal;
    font-weight: 500;
    transition: color .18s ease, transform .18s ease;
}

.rental-card em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.rental-card:hover em,
.rental-card:focus em {
    color: var(--ink);
    transform: translateX(6px);
}

.rental-card:hover em::after,
.rental-card:focus em::after {
    transform: scaleX(1);
}

.rental-hub-hero {
    padding: 76px 0 72px;
    background: var(--secondary);
}

.rental-hub-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(340px, .48fr);
    gap: 68px;
    align-items: start;
}

.rental-hub-hero__copy {
    max-width: 760px;
}

.rental-hub-hero h1 {
    max-width: 700px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.08;
}

.rental-hub-hero p {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.58;
}

.rental-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.rental-hub-hero__panel {
    display: grid;
    border-top: 1px solid rgba(26, 26, 26, .14);
    border-bottom: 1px solid rgba(26, 26, 26, .14);
}

.rental-hub-hero__panel a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(26, 26, 26, .1);
}

.rental-hub-hero__panel a:first-child {
    border-top: 0;
}

.rental-hub-hero__panel span,
.rental-hub-hero__panel em {
    color: var(--soft-muted);
    font-size: 14px;
    line-height: 1.2;
}

.rental-hub-hero__panel strong {
    grid-column: 1 / 2;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.rental-hub-hero__panel em {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--blue);
    font-family: var(--font-head);
    font-style: normal;
    font-weight: 500;
    transition: color .18s ease, transform .18s ease;
}

.rental-hub-hero__panel a:hover em,
.rental-hub-hero__panel a:focus em {
    color: var(--ink);
    transform: translateX(4px);
}

.rental-guide .event-ready__copy li {
    display: grid;
    gap: 7px;
}

.rental-guide .event-ready__copy li strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.rental-guide .event-ready__copy li span {
    color: rgba(255, 255, 255, .78);
}

.rental-final p,
.business-final p,
.reservation-final p,
.contact-final p {
    max-width: 700px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .82);
    font-size: 17px;
    line-height: 1.58;
}

.rental-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.reservation-option-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.reservation-option-card {
    display: grid;
    grid-template-rows: minmax(72px, auto) 1fr auto;
    row-gap: 24px;
    min-height: 330px;
    padding: 42px 34px 36px;
    border: 0;
    border-radius: 0;
    background: var(--secondary);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color .22s ease;
}

.reservation-option-card:hover,
.reservation-option-card:focus-visible {
    background: var(--white);
}

.reservation-option-card h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.16;
}

.reservation-option-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.reservation-option-card span {
    position: relative;
    display: inline-flex;
    width: fit-content;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    transition: color .18s ease, transform .18s ease;
}

.reservation-option-card span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s ease;
}

.reservation-option-card:hover span,
.reservation-option-card:focus-visible span {
    color: var(--ink);
    transform: translateX(6px);
}

.reservation-option-card:hover span::after,
.reservation-option-card:focus-visible span::after {
    transform: scaleX(1);
}

.reservation-options__terms {
    max-width: 760px;
    margin: 24px auto 0;
    color: var(--soft-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.reservation-options__terms a {
    color: var(--blue);
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.reservation-options__terms a:hover,
.reservation-options__terms a:focus-visible {
    color: var(--ink);
}

.reservation-flow .event-ready__copy li {
    display: grid;
    gap: 7px;
}

.reservation-flow .event-ready__copy li strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.reservation-flow .event-ready__copy li span {
    color: rgba(255, 255, 255, .78);
}

.reservation-contact-first__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 40px;
}

.contact-hero {
    padding: 76px 0 72px;
    background: var(--secondary);
}

.contact-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .78fr) minmax(360px, .52fr);
    gap: 68px;
    align-items: start;
}

.contact-hero__copy {
    max-width: 720px;
}

.contact-hero h1 {
    max-width: 620px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.1vw, 58px);
    line-height: 1.08;
}

.contact-hero p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--soft-muted);
    font-size: 17px;
    line-height: 1.58;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contact-hero__panel {
    display: grid;
    border-top: 1px solid rgba(26, 26, 26, .14);
    border-bottom: 1px solid rgba(26, 26, 26, .14);
}

.contact-hero__panel a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(26, 26, 26, .1);
}

.contact-hero__panel a:first-child {
    border-top: 0;
}

.contact-hero__panel span,
.contact-hero__panel em {
    color: var(--soft-muted);
    font-size: 14px;
    line-height: 1.2;
}

.contact-hero__panel strong {
    grid-column: 1 / 2;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.contact-hero__panel em {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    align-self: center;
    color: var(--blue);
    font-family: var(--font-head);
    font-style: normal;
    font-weight: 500;
    transition: color .18s ease, transform .18s ease;
}

.contact-hero__panel a:hover em,
.contact-hero__panel a:focus em {
    color: var(--ink);
    transform: translateX(4px);
}

.contact-guide .event-ready__copy li {
    display: grid;
    gap: 7px;
}

.contact-guide .event-ready__copy li strong {
    font-family: var(--font-head);
    font-weight: 500;
}

.contact-guide .event-ready__copy li span {
    color: rgba(255, 255, 255, .78);
}

.about-hero {
    padding: 92px 0 98px;
    background: var(--secondary);
}

.about-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(460px, .7fr);
    gap: 82px;
    align-items: center;
}

.about-hero__copy {
    max-width: 720px;
}

.about-hero h1 {
    max-width: 660px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.3vw, 62px);
    line-height: 1.07;
}

.about-hero p {
    max-width: 610px;
    margin: 24px 0 0;
    color: var(--soft-muted);
    font-size: 18px;
    line-height: 1.58;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.about-hero__image {
    margin: 0;
    overflow: hidden;
    background: var(--ink);
}

.about-hero__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.about-people {
    background: var(--primary);
}

.about-people__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 54px;
}

.about-person {
    display: grid;
    grid-template-rows: auto 1fr;
    background: var(--secondary);
}

.about-person__image {
    min-height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--ink);
}

.about-person__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

.about-person__body {
    display: grid;
    gap: 18px;
    align-content: start;
    padding: 38px;
}

.about-person__body > span {
    color: var(--blue);
    font-family: var(--font-head);
    font-weight: 500;
}

.about-person h3 {
    margin: 0;
    color: var(--ink);
    font-size: 30px;
    line-height: 1.15;
}

.about-person p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.58;
}

.about-person__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 6px;
}

.about-person__links .home-link {
    margin-top: 0;
}

.about-proof {
    background: var(--blue);
}

.about-proof h2 {
    color: var(--white);
}

.about-proof .home-kicker {
    color: var(--white);
}

.about-proof__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.about-proof__item {
    padding: 28px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
}

.about-proof__item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.12;
}

.about-proof__item p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15px;
    line-height: 1.55;
}

.about-services {
    background: var(--secondary);
}

.pricing-hero {
    padding: 92px 0 98px;
    background: var(--secondary);
}

.pricing-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, .48fr);
    gap: 76px;
    align-items: center;
}

.pricing-hero__copy {
    max-width: 760px;
}

.pricing-hero h1 {
    max-width: 680px;
    margin: 0;
    color: var(--ink);
    font-size: clamp(38px, 4.4vw, 62px);
    line-height: 1.07;
}

.pricing-hero p {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--soft-muted);
    font-size: 18px;
    line-height: 1.58;
}

.pricing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.pricing-main-card {
    display: grid;
    gap: 18px;
    padding: 44px 38px;
    color: var(--white);
    background: var(--blue);
}

.pricing-main-card span,
.pricing-photo__price span {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
}

.pricing-main-card strong {
    font-family: var(--font-head);
    font-size: clamp(54px, 5vw, 76px);
    font-weight: 500;
    line-height: .92;
}

.pricing-main-card p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.55;
}

.pricing-photo {
    background: var(--primary);
}

.pricing-photo__grid {
    display: grid;
    grid-template-columns: minmax(0, .68fr) minmax(360px, .82fr);
    gap: 22px;
    margin-top: 54px;
}

.pricing-photo__price,
.pricing-photo__applies {
    padding: 38px 34px;
    background: var(--secondary);
}

.pricing-photo__price {
    display: grid;
    align-content: start;
    gap: 18px;
}

.pricing-photo__price--active {
    color: var(--white);
    background: var(--blue);
}

.pricing-photo__price span {
    color: var(--blue);
}

.pricing-photo__price--active span {
    color: rgba(255, 255, 255, .82);
}

.pricing-photo__price strong {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: clamp(46px, 4vw, 62px);
    font-weight: 500;
    line-height: .96;
}

.pricing-photo__price--active strong {
    color: var(--white);
}

.pricing-photo__price p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.pricing-photo__price--active p {
    color: var(--white);
}

.pricing-photo__applies h3 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: 25px;
}

.pricing-photo__applies ul,
.pricing-custom .event-ready__copy ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing-photo__applies li,
.pricing-custom .event-ready__copy li {
    display: grid;
    gap: 5px;
    padding-top: 12px;
    border-top: 1px solid rgba(26, 26, 26, .1);
    color: var(--muted);
}

.pricing-photo__applies li:first-child,
.pricing-custom .event-ready__copy li:first-child {
    padding-top: 0;
    border-top: 0;
}

.pricing-custom .event-ready__copy li {
    border-color: rgba(255, 255, 255, .16);
}

.pricing-custom .event-ready__copy li strong {
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 500;
}

.pricing-custom .event-ready__copy li span {
    color: rgba(255, 255, 255, .78);
}

.pricing-rental {
    background: var(--secondary);
}

.pricing-rental__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card-link {
    transition: background-color .18s ease, transform .18s ease;
}

.pricing-card-link:hover,
.pricing-card-link:focus-visible {
    background: var(--white);
    transform: translateY(-3px);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .52s ease var(--reveal-delay, 0ms),
        transform .52s cubic-bezier(.22, 1, .36, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

@keyframes kupe-hero-breathe {
    from {
        background-position: var(--hero-position-x) center;
    }

    to {
        background-position: calc(var(--hero-position-x) + 2%) center;
    }
}

@keyframes kupe-studio-image-breathe {
    from {
        object-position: 48% center;
    }

    to {
        object-position: 52% center;
    }
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
}

h3 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.15;
}

.hero-copy p {
    max-width: 620px;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(18px, 2vw, 23px);
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.section {
    padding: clamp(72px, 9vw, 128px) 0;
}

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

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(36px, 7vw, 86px);
    align-items: center;
}

.split-grid img {
    aspect-ratio: 4 / 5;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: var(--shadow);
}

.split-grid p:not(.eyebrow),
.feature p,
.cta-band p,
.service-card p {
    color: var(--muted);
    font-size: 18px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.service-card {
    min-height: 245px;
    padding: 26px;
    border: 1px solid rgba(23, 21, 20, .09);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 40px rgba(33, 28, 24, .07);
}

.service-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue);
    font-weight: 700;
    transition: transform .18s ease, color .18s ease;
}

.service-card a:hover,
.service-card a:focus {
    color: var(--ink);
    transform: translateX(6px);
}

.feature {
    background: var(--ink);
    color: white;
}

.feature .container {
    max-width: 920px;
}

.feature p {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(20px, 2.5vw, 30px);
}

.cta-band {
    padding: clamp(64px, 8vw, 104px) 0;
    background: var(--soft);
}

.cta-band .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px 44px;
    align-items: center;
}

.cta-band h2,
.cta-band p {
    max-width: 760px;
}

.site-footer {
    padding: 70px clamp(20px, 5vw, 70px) 30px;
    border-top: 1px solid rgba(23, 21, 20, .1);
    background: var(--ink);
    color: var(--white);
}

.site-footer__inner,
.site-footer__bottom {
    width: min(1296px, 100%);
    margin: 0 auto;
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(190px, .45fr) minmax(0, 1.55fr);
    gap: clamp(54px, 7vw, 110px);
    align-items: start;
}

.site-footer__brand {
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 30px;
}

.site-footer p {
    max-width: 410px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
    line-height: 1.58;
}

.site-footer img {
    filter: invert(1) brightness(2);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
}

.site-footer__social a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .82);
    transition: background-color .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
    transform: translateY(-3px);
}

.site-footer__social svg {
    width: 17px;
    height: 17px;
}

.site-footer__social rect,
.site-footer__social circle,
.site-footer__social path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__social path {
    fill: currentColor;
    stroke: none;
}

.site-footer__nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 64px);
}

.site-footer__col {
    display: grid;
    align-content: start;
    gap: 11px;
    margin: 0;
    font-style: normal;
}

.site-footer__heading {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    color: var(--white);
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

.site-footer__heading::before {
    display: none;
}

.site-footer__col a,
.site-footer__legal a {
    color: rgba(255, 255, 255, .62);
    line-height: 1.45;
    transition: color .18s ease, transform .18s ease;
}

.site-footer__col a {
    font-size: 15px;
}

.site-footer__contact a {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
}

.site-footer__contact-icon {
    display: grid;
    place-items: center;
    width: 18px;
    height: 20px;
    margin-top: 1px;
    color: rgba(255, 255, 255, .72);
}

.site-footer__contact-icon svg {
    width: 17px;
    height: 17px;
}

.site-footer__contact-icon path,
.site-footer__contact-icon circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer__col a:hover,
.site-footer__col a:focus,
.site-footer__legal a:hover,
.site-footer__legal a:focus {
    color: var(--white);
    transform: translateX(4px);
}

.site-footer__bottom {
    display: grid;
    justify-items: stretch;
    gap: 20px 32px;
    margin-top: 64px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .46);
    font-size: 13px;
}

.site-footer__credits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
}

.site-footer__credits a {
    color: rgba(255, 255, 255, .62);
    transition: color .18s ease;
}

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

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 18px;
    order: -1;
}

.cookie-consent-layer {
    position: fixed;
    inset: 0;
    z-index: 80;
    opacity: 0;
    transition: opacity .2s ease;
}

.cookie-consent-layer[hidden] {
    display: none;
}

.cookie-consent-layer.is-visible {
    opacity: 1;
}

.cookie-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, .22);
}

.cookie-consent {
    position: absolute;
    left: 50%;
    bottom: clamp(16px, 3vw, 36px);
    display: grid;
    gap: 18px;
    width: min(520px, calc(100% - 48px));
    padding: 30px 30px 26px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(26, 26, 26, .12);
    border-top: 3px solid var(--blue);
    box-shadow: 0 24px 70px rgba(26, 26, 26, .16);
    opacity: 0;
    transform: translate(-50%, 14px);
    transition: opacity .22s ease, transform .22s ease;
}

.cookie-consent.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.cookie-consent__main {
    max-width: 100%;
}

.cookie-consent.is-settings-open .cookie-consent__main,
.cookie-consent.is-settings-open .cookie-consent__actions {
    display: none;
}

.cookie-consent__eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.14;
}

.cookie-consent p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.cookie-consent__policy-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease;
}

.cookie-consent__policy-link:hover,
.cookie-consent__policy-link:focus-visible {
    color: var(--ink);
}

.cookie-consent__actions {
    display: grid;
    gap: 9px;
}

.cookie-consent .btn {
    width: 100%;
    min-height: 56px;
    padding: 18px 26px;
    white-space: nowrap;
}

.cookie-consent .btn-secondary {
    border-color: var(--blue);
    background: var(--white);
    color: var(--blue);
}

.cookie-consent .btn-secondary:hover,
.cookie-consent .btn-secondary:focus {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
}

.cookie-consent__text-btn {
    border: 0;
    padding: 8px 6px;
    color: var(--soft-muted);
    background: transparent;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease;
}

.cookie-consent__text-btn:hover,
.cookie-consent__text-btn:focus {
    color: var(--ink);
    transform: translateY(-1px);
}

.cookie-consent__reject {
    justify-self: center;
    opacity: .84;
}

.cookie-consent__settings {
    display: grid;
    gap: 10px;
}

.cookie-consent__settings[hidden] {
    display: none;
}

.cookie-consent__settings-head {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(26, 26, 26, .1);
}

.cookie-consent__settings-head h2 {
    margin: 0;
    font-size: 28px;
}

.cookie-consent__settings-head p:last-child {
    margin-top: 8px;
}

.cookie-consent__option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(26, 26, 26, .08);
}

.cookie-consent__option input {
    position: relative;
    flex: 0 0 auto;
    order: 2;
    width: 44px;
    height: 24px;
    margin: 1px 0 0;
    border: 1px solid rgba(26, 26, 26, .22);
    border-radius: 999px;
    appearance: none;
    background: rgba(26, 26, 26, .12);
    cursor: pointer;
    transition: background-color .18s ease, border-color .18s ease;
}

.cookie-consent__option input::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--white);
    box-shadow: 0 2px 7px rgba(26, 26, 26, .18);
    transition: transform .18s ease;
}

.cookie-consent__option input:checked {
    border-color: var(--blue);
    background: var(--blue);
}

.cookie-consent__option input:checked::before {
    transform: translateX(20px);
}

.cookie-consent__option input:disabled {
    cursor: default;
    opacity: .76;
}

.cookie-consent__option strong,
.cookie-consent__option small {
    display: block;
}

.cookie-consent__option strong {
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 500;
}

.cookie-consent__option small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.cookie-consent__settings-actions {
    display: grid;
    gap: 8px;
    padding-top: 4px;
}

.to-top {
    position: fixed;
    right: clamp(18px, 3vw, 42px);
    bottom: clamp(18px, 3vw, 42px);
    z-index: 35;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 2px solid var(--blue);
    border-radius: 0;
    background: var(--blue);
    color: var(--white);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease, background-color .18s ease, color .18s ease;
}

.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.to-top:hover,
.to-top:focus {
    background: var(--white);
    color: var(--blue);
    transform: translateY(-3px);
}

.to-top__icon {
    position: relative;
    display: block;
    width: 16px;
    height: 19px;
}

.to-top__icon::before,
.to-top__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    background: currentColor;
}

.to-top__icon::before {
    bottom: 1px;
    width: 3px;
    height: 18px;
    border-radius: 999px;
    transform: translateX(-50%);
}

.to-top__icon::after {
    top: 1px;
    width: 13px;
    height: 13px;
    border-top: 3px solid currentColor;
    border-left: 3px solid currentColor;
    background: transparent;
    transform: translateX(-50%) rotate(45deg);
}

#reenio-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--paper);
    opacity: 0;
    transition: opacity .18s ease;
}

#reenio-overlay.is-visible {
    opacity: 1;
}

.reenio-topbar {
    height: 62px;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    align-items: center;
    border-bottom: 1px solid rgba(23, 21, 20, .12);
    background: var(--white);
}

.reenio-topbar img {
    justify-self: center;
    width: 92px;
}

#reenio-back-btn {
    width: 44px;
    height: 44px;
    margin-left: 12px;
    border: 0;
    border-radius: 999px;
    background: var(--soft);
    color: var(--ink);
    font-size: 24px;
    cursor: pointer;
}

#reenio-iframe {
    display: block;
    width: 100%;
    min-height: calc(100vh - 62px);
    border: 0;
}

#reenio-safe-exit {
    display: none;
    position: fixed;
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(23, 21, 20, .62);
}

#reenio-safe-exit.is-visible {
    display: flex;
}

.reenio-safe-card {
    width: min(520px, 100%);
    padding: 32px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.reenio-safe-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.legal-hero {
    padding: clamp(82px, 10vw, 132px) 0 clamp(64px, 8vw, 100px);
    background: var(--soft);
}

.legal-hero__inner {
    max-width: 850px;
}

.legal-hero h1 {
    max-width: 780px;
    margin: 28px 0 0;
    font-family: var(--font-head);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 500;
    line-height: 1.05;
}

.legal-hero p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.65;
}

.legal-hero__inner > span {
    display: inline-block;
    margin-top: 26px;
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 500;
}

.legal-layout {
    padding: clamp(64px, 8vw, 104px) 0;
}

.legal-layout__grid {
    display: grid;
    grid-template-columns: minmax(210px, 250px) minmax(0, 760px);
    justify-content: space-between;
    gap: clamp(54px, 8vw, 120px);
}

.legal-nav {
    position: sticky;
    top: 128px;
    align-self: start;
    max-height: calc(100vh - 158px);
    overflow: auto;
    padding-right: 16px;
}

.legal-nav > strong {
    display: block;
    margin-bottom: 15px;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 500;
}

.legal-nav ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-nav a {
    display: block;
    color: var(--soft-muted);
    font-size: 13px;
    line-height: 1.4;
    transition: color .2s ease;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
    color: var(--blue);
}

.legal-document {
    min-width: 0;
}

.legal-document__intro {
    margin-bottom: 50px;
    padding: 28px 30px;
    border-left: 3px solid var(--blue);
    background: var(--soft);
}

.legal-document__section {
    scroll-margin-top: 132px;
}

.legal-document__section + .legal-document__section {
    margin-top: 52px;
    padding-top: 50px;
    border-top: 1px solid var(--line);
}

.legal-document h2 {
    margin: 0 0 22px;
    font-family: var(--font-head);
    font-size: 27px;
    font-weight: 500;
    line-height: 1.25;
}

.legal-document h3 {
    margin: 26px 0 8px;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.35;
}

.legal-document h3:first-child {
    margin-top: 0;
}

.legal-document p,
.legal-document li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.legal-document p {
    margin: 0;
}

.legal-document p + p {
    margin-top: 14px;
}

.legal-document ul {
    display: grid;
    gap: 8px;
    margin: 16px 0;
    padding-left: 22px;
}

.legal-document code {
    padding: 2px 5px;
    color: var(--ink);
    background: var(--soft);
    font-size: .9em;
}

.legal-table-wrap {
    max-width: 100%;
    margin: 18px 0 20px;
    overflow-x: auto;
}

.legal-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--soft);
}

.legal-table th,
.legal-table td {
    padding: 14px 16px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    color: var(--ink);
    font-family: var(--font-head);
    font-weight: 500;
}

.legal-settings-button {
    margin-top: 22px;
}

.legal-template {
    margin-top: 22px;
    padding: 20px 22px;
    border-left: 3px solid var(--blue);
    background: var(--soft);
}

.legal-template strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 500;
}

.legal-document a {
    color: var(--blue);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.legal-document a:hover,
.legal-document a:focus-visible {
    color: var(--ink);
}

@media (max-width: 980px) {
    :root {
        --header-height: 112px;
        --anchor-offset: 136px;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
        overscroll-behavior: none;
    }

    .legal-layout__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .legal-nav {
        position: static;
        max-height: none;
        padding: 22px 24px;
        background: var(--soft);
    }

    .legal-nav ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }

    .site-header {
        z-index: 120;
    }

    .site-header.is-scrolled {
        min-height: 68px;
    }

    .site-topbar {
        font-size: 11.2px;
        text-align: center;
    }

    .site-topbar__inner {
        grid-template-columns: 1fr;
        gap: 4px;
        width: 100%;
        min-height: 44px;
        padding: 5px 14px;
    }

    .site-topbar__brand,
    .site-topbar__links {
        justify-content: center;
    }

    .site-topbar__brand {
        gap: 8px;
    }

    .site-topbar__links {
        gap: 4px 14px;
    }

    .site-topbar__item {
        gap: 5px;
    }

    .site-topbar svg {
        width: 12px;
        height: 12px;
    }

    .site-header__main {
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 68px;
        padding: 12px 14px;
    }

    .site-header.is-scrolled .site-header__main {
        min-height: 68px;
        padding: 12px 14px;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--ink);
    }

    .site-logo,
    .nav-toggle {
        position: relative;
        z-index: 130;
    }

    .nav-toggle[aria-expanded="true"] {
        border-color: var(--blue);
        background: var(--blue);
        color: var(--white);
    }

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

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

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

    .primary-nav {
        display: none;
        position: fixed;
        inset: auto 0 0;
        z-index: 100;
        top: var(--header-offset);
        min-height: calc(100vh - var(--header-offset));
        padding: calc(var(--header-height) + 28px) 20px 112px;
        background: var(--white);
        overflow: hidden;
    }

    .primary-nav.is-open {
        display: flex;
        flex-direction: column;
    }

    .primary-nav > ul {
        display: grid;
        justify-content: stretch;
        gap: 0;
        width: min(100%, 560px);
        margin: 0 auto;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 0 0 104px;
        -webkit-overflow-scrolling: touch;
    }

    .primary-nav > ul > li {
        padding: 16px 0;
        border-bottom: 1px solid rgba(26, 26, 26, .08);
    }

    .primary-nav > ul > li:last-child {
        border-bottom: 0;
    }

    .primary-nav > ul > li > a {
        display: inline-flex;
        padding: 0;
        color: var(--ink);
        font-size: 18px;
    }

    .primary-nav > ul > li.has-submenu > a {
        position: relative;
        width: 100%;
        justify-content: space-between;
        gap: 18px;
    }

    .primary-nav > ul > li.has-submenu > a::before {
        content: "";
        position: absolute;
        right: 2px;
        top: 50%;
        width: 9px;
        height: 9px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-68%) rotate(45deg);
        transition: transform .18s ease;
    }

    .primary-nav > ul > li.has-submenu.is-expanded > a::before {
        transform: translateY(-30%) rotate(225deg);
    }

    .primary-nav > ul > li > a::after {
        display: none;
    }

    .primary-nav ul ul {
        display: none;
        position: static;
        min-width: 0;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border: 0;
        background: transparent;
        padding: 12px 0 0 0;
    }

    .primary-nav li.is-expanded > ul {
        display: block;
    }

    .primary-nav .submenu-overview {
        display: block;
    }

    .primary-nav ul ul a {
        padding: 7px 0;
        background: transparent;
        color: rgba(26, 26, 26, .72);
        font-size: 15px;
        transform: none;
    }

    .primary-nav .mobile-nav-cta {
        position: absolute;
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 22px;
        bottom: calc(22px + env(safe-area-inset-bottom));
        z-index: 110;
        display: none !important;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        border: 2px solid var(--blue);
        border-radius: 8px;
        background: var(--blue);
        color: var(--white);
        font-family: var(--font-head);
        font-weight: 500;
        line-height: 1;
    }

    .primary-nav.is-open .mobile-nav-cta {
        display: inline-flex !important;
    }

    .primary-nav .mobile-nav-cta:hover,
    .primary-nav .mobile-nav-cta:focus {
        background: var(--white);
        color: var(--blue);
    }

    .header-cta {
        display: none;
    }

    .split-grid,
    .cta-band .container {
        grid-template-columns: 1fr;
    }

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

    .home-hero {
        min-height: 690px;
        padding: 0;
    }

    .home-hero__inner {
        padding: 160px 0 175px;
    }

    .home-hero__media {
        min-height: 0;
    }

    .home-intro,
    .home-offer,
    .home-business,
    .home-studio,
    .home-proof,
    .home-location,
    .gallery-hero,
    .photo-hub-hero,
    .rental-hub-hero,
    .contact-hero,
    .about-hero,
    .pricing-hero {
        padding: 72px 0;
    }

    .home-intro__grid,
    .home-studio__grid,
    .home-proof__grid,
    .home-location__grid,
    .home-section-head--split,
    .home-final__inner,
    .event-ready__grid,
    .gallery-hero__layout,
    .photo-hub-hero__layout,
    .rental-hub-hero__layout,
    .contact-hero__layout,
    .about-hero__layout,
    .pricing-hero__grid,
    .studio-hero__grid,
    .studio-equipment__grid {
        grid-template-columns: 1fr;
    }

    .home-intro__grid,
    .home-studio__grid,
    .home-proof__grid,
    .home-location__grid,
    .event-ready__grid,
    .gallery-hero__layout,
    .photo-hub-hero__layout,
    .rental-hub-hero__layout,
    .contact-hero__layout,
    .about-hero__layout,
    .pricing-hero__grid,
    .studio-hero__grid,
    .studio-equipment__grid {
        gap: 56px;
    }

    .about-people__grid,
    .about-person {
        grid-template-columns: 1fr;
    }

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

    .pricing-photo__applies {
        grid-column: 1 / -1;
    }

    .about-person__image img {
        min-height: 360px;
        aspect-ratio: 16 / 10;
    }

    .gallery-hero__preview {
        grid-template-rows: repeat(2, 220px);
    }

    .photo-hub-hero__preview {
        grid-template-rows: repeat(2, 220px);
    }

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

    .gallery-wall {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 138px;
    }

    .gallery-wall__item--wide {
        grid-column: span 6;
        grid-row: span 2;
    }

    .gallery-wall__item--portrait,
    .gallery-wall__item--portrait-feature,
    .gallery-wall__item--small {
        grid-column: span 3;
        grid-row: span 3;
    }

    .studio-equipment__intro {
        position: static;
    }

    .studio-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 260px;
    }

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

    .rental-card-grid {
        grid-template-columns: 1fr;
    }

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

    .home-intro__image,
    .home-intro__copy {
        padding: 0;
    }

    .home-card-grid {
        grid-template-columns: 1fr;
    }

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

    .event-formats .home-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 540px) {
    :root {
        --header-height: 100px;
        --anchor-offset: 124px;
    }

    .site-topbar__inner {
        min-height: 32px;
        padding: 4px 0;
    }

    .site-topbar__brand,
    .site-topbar__item[href^="mailto:"] {
        display: none;
    }

    .site-header__main {
        min-height: 68px;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .legal-hero {
        padding: 58px 0 54px;
    }

    .legal-hero h1 {
        margin-top: 22px;
        font-size: 38px;
        line-height: 1.08;
    }

    .legal-hero h1 span {
        display: block;
    }

    .legal-hero h1 br {
        display: none;
    }

    .legal-hero p {
        margin-top: 18px;
        font-size: 16px;
    }

    .legal-layout {
        padding: 48px 0 68px;
    }

    .legal-nav {
        padding: 20px;
    }

    .legal-nav ol {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .legal-document__intro {
        margin-bottom: 38px;
        padding: 23px 20px;
    }

    .legal-document__section + .legal-document__section {
        margin-top: 38px;
        padding-top: 36px;
    }

    .legal-document h2 {
        font-size: 23px;
    }

    .legal-document p,
    .legal-document li {
        font-size: 15px;
        line-height: 1.7;
    }

    .site-logo img {
        width: 94px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-grid {
        padding: 118px 0 64px;
    }

    h1 {
        font-size: 44px;
    }

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

    .site-footer {
        padding: 58px 20px 28px;
    }

    .site-footer__nav {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .site-footer__bottom {
        display: grid;
        justify-content: stretch;
        margin-top: 44px;
        gap: 22px;
    }

    .site-footer__credits {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 6px 18px;
        order: 2;
    }

    .site-footer__legal {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
        justify-content: flex-start;
        order: 1;
    }

    .site-footer__legal a {
        font-size: 13px;
    }

    .cookie-consent {
        left: 0;
        bottom: 0;
        position: absolute;
        width: 100%;
        max-height: min(84vh, 700px);
        overflow: auto;
        padding: 26px 22px 20px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        box-shadow: 0 -18px 48px rgba(26, 26, 26, .14);
        transform: translateY(14px);
    }

    .cookie-consent.is-visible {
        transform: translateY(0);
    }

    .cookie-consent__eyebrow {
        display: block;
        margin-bottom: 8px;
    }

    .cookie-consent h2 {
        font-size: 24px;
    }

    .cookie-consent p {
        margin-top: 9px;
        font-size: 14px;
    }

    .cookie-consent .btn {
        min-height: 54px;
        padding: 17px 22px;
    }

    .cookie-consent__actions {
        gap: 4px;
    }

    .cookie-consent__actions .btn-secondary {
        min-height: auto;
        padding: 7px 6px;
        border: 0;
        background: transparent;
        color: var(--blue);
        font-size: 13px;
    }

    .cookie-consent__actions .btn-secondary:hover,
    .cookie-consent__actions .btn-secondary:focus {
        background: transparent;
        color: var(--ink);
        transform: translateY(-1px);
    }

    .cookie-consent__text-btn {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .cookie-consent__actions .btn,
    .cookie-consent__settings-actions .btn {
        width: 100%;
    }

    .cookie-consent__text-btn {
        width: 100%;
        text-align: center;
    }

    .cookie-consent__settings {
        grid-template-columns: 1fr;
        padding-top: 18px;
    }

    .cookie-consent__settings-head {
        padding-bottom: 10px;
    }

    .cookie-consent__settings-head h2 {
        font-size: 24px;
    }

    .cookie-consent__option {
        padding: 12px 0;
    }

    .cookie-consent__settings-actions {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .cookie-consent__settings-actions .btn {
        grid-column: 1 / -1;
    }

    .cookie-consent__settings-actions .cookie-consent__text-btn {
        width: auto;
    }

    .to-top {
        width: 42px;
        height: 42px;
        right: 18px;
        bottom: 18px;
    }

    .reenio-safe-actions .btn {
        width: 100%;
    }

    .home-container {
        width: min(1170px, calc(100% - 40px));
    }

    .home-hero {
        min-height: 620px;
        align-items: flex-end;
        padding: 0;
    }

    .home-hero__media {
        --hero-position-x: 57%;
    }

    .home-hero__inner {
        width: min(1170px, calc(100% - 40px));
        padding: 110px 0 92px;
    }

    .home-hero h1 {
        font-size: 36px;
        line-height: 1.08;
        max-width: 100%;
    }

    .home-hero p {
        margin-top: 22px;
        font-size: 17px;
    }

    .gallery-hero h1,
    .photo-hub-hero h1,
    .rental-hub-hero h1,
    .contact-hero h1,
    .about-hero h1,
    .pricing-hero h1 {
        font-size: 32px;
        line-height: 1.08;
    }

    .gallery-hero p,
    .photo-hub-hero p,
    .rental-hub-hero p,
    .contact-hero p,
    .about-hero p,
    .pricing-hero p {
        margin-top: 16px;
        font-size: 17px;
    }

    .photo-hub-hero__layout,
    .gallery-hero__layout,
    .rental-hub-hero__layout,
    .contact-hero__layout,
    .about-hero__layout,
    .pricing-hero__grid {
        gap: 34px;
    }

    .rental-hub-hero__panel a,
    .contact-hero__panel a {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .rental-hub-hero__panel strong,
    .rental-hub-hero__panel em,
    .contact-hero__panel strong,
    .contact-hero__panel em {
        grid-column: auto;
        grid-row: auto;
    }

    .rental-hub-hero__panel em,
    .contact-hero__panel em {
        align-self: auto;
    }

    .gallery-hero__actions,
    .photo-hub-hero__actions,
    .rental-hub-hero__actions,
    .contact-hero__actions,
    .about-hero__actions,
    .pricing-hero__actions {
        display: grid;
        gap: 12px;
        margin-top: 24px;
    }

    .photo-hub-hero__actions .btn,
    .gallery-hero__actions .btn,
    .rental-hub-hero__actions .btn,
    .contact-hero__actions .btn,
    .about-hero__actions .btn,
    .pricing-hero__actions .btn {
        width: 100%;
    }

    .home-actions .btn {
        width: 100%;
    }

    .studio-hero {
        padding: 52px 0 64px;
    }

    .studio-hero__copy h1 {
        font-size: 36px;
        line-height: 1.08;
    }

    .studio-hero__lead {
        margin-top: 22px;
        font-size: 17px;
        line-height: 1.55;
    }

    .studio-hero .actions {
        display: grid;
        gap: 12px;
    }

    .studio-hero .actions .btn {
        width: 100%;
    }

    .home-offer__footer .btn {
        width: 100%;
    }

    .home-intro,
    .home-offer,
    .home-business,
    .home-studio,
    .home-proof,
    .home-location,
    .home-final,
    .gallery-hero,
    .photo-hub-hero,
    .rental-hub-hero,
    .contact-hero,
    .about-hero,
    .pricing-hero {
        padding: 46px 0 52px;
    }

    .photo-hub-hero__preview,
    .gallery-hero__preview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 178px 128px;
        gap: 10px;
    }

    .photo-hub-hero__image--1,
    .gallery-hero__image--1 {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .home-kicker {
        grid-template-columns: 52px auto;
        gap: 16px;
        margin-bottom: 24px;
        font-size: 15px;
    }

    .home-intro h2,
    .home-section-head h2,
    .home-studio h2,
    .home-business h2,
    .home-final h2,
    .home-proof h2,
    .home-location h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .home-intro p,
    .home-section-head p,
    .home-business p,
    .home-studio p,
    .home-proof p,
    .home-location p {
        margin-top: 18px;
        font-size: 16px;
    }

    .home-card-grid {
        margin-top: 32px;
    }

    .photo-card-grid,
    .rental-card-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .photo-card div {
        padding: 26px 25px;
    }

    .photo-card h3 {
        font-size: 24px;
    }

    .reservation-option-grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .about-people__grid,
    .about-proof__grid,
    .pricing-photo__grid,
    .pricing-rental__grid {
        grid-template-columns: 1fr;
        margin-top: 32px;
    }

    .about-person {
        min-height: auto;
    }

    .about-person__image img {
        min-height: 280px;
        aspect-ratio: 4 / 3;
    }

    .about-person__body,
    .about-proof__item,
    .pricing-main-card,
    .pricing-photo__price,
    .pricing-photo__applies {
        padding: 26px 25px;
    }

    .about-person h3 {
        font-size: 24px;
    }

    .pricing-photo__applies {
        grid-column: auto;
    }

    .rental-card {
        min-height: auto;
        padding: 30px 25px;
    }

    .reservation-option-card {
        grid-template-rows: auto;
        row-gap: 18px;
        min-height: auto;
        padding: 30px 25px;
    }

    .reservation-option-card h3 {
        font-size: 24px;
    }

    .home-offer .home-card-grid {
        grid-template-columns: 1fr;
    }

    .event-formats .home-card-grid {
        grid-template-columns: 1fr;
    }

    .home-card {
        grid-template-rows: auto;
        row-gap: 18px;
        min-height: auto;
        padding: 28px 25px 27px;
    }

    .photo-service-options .home-card {
        min-height: auto;
    }

    .home-card h3 {
        font-size: 24px;
    }

    .home-card span {
        align-self: auto;
    }

    .event-ready__copy p {
        font-size: 16px;
    }

    .event-ready__copy ul {
        margin-top: 24px;
    }

    .home-studio__actions {
        display: grid;
        gap: 12px;
    }

    .rental-final__actions {
        display: grid;
        justify-content: stretch;
    }

    .rental-final__actions .btn {
        width: 100%;
    }

    .home-studio__actions .btn {
        width: 100%;
    }

    .home-studio__facts div {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .home-proof__panel {
        padding: 30px 25px;
    }

    .home-rating strong {
        font-size: 62px;
    }

    .home-map,
    .home-map iframe {
        min-height: 320px;
        height: 320px;
    }

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

    .studio-hero__meta {
        display: grid;
    }

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

    .gallery-wall {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 10px;
        margin-top: 32px;
    }

    .gallery-wall-section.section {
        padding: 52px 0;
    }

    .gallery-wall__item,
    .gallery-wall__item--large,
    .gallery-wall__item--wide,
    .gallery-wall__item--tall,
    .gallery-wall__item--portrait,
    .gallery-wall__item--portrait-feature,
    .gallery-wall__item--small {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .gallery-wall .studio-gallery__button {
        height: auto;
    }

    .studio-gallery__item,
    .studio-gallery__item--1 {
        grid-column: auto;
        grid-row: auto;
    }

    .studio-gallery__item img {
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .gallery-wall__item img {
        height: auto;
        aspect-ratio: auto;
    }

    .kupe-lightbox {
        padding: 72px 20px 88px;
    }

    .kupe-lightbox__image {
        max-height: calc(100vh - 190px);
    }

    .kupe-lightbox__close,
    .kupe-lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .kupe-lightbox__close {
        top: 18px;
        right: 20px;
    }

    .kupe-lightbox__nav {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .kupe-lightbox__nav:hover,
    .kupe-lightbox__nav:focus {
        transform: scale(1.04);
    }

    .kupe-lightbox__nav--prev {
        left: calc(50% - 54px);
    }

    .kupe-lightbox__nav--next {
        right: calc(50% - 54px);
    }

    .studio-equipment__list,
    .studio-support,
    .studio-addons,
    .studio-price-card {
        padding: 28px 25px;
    }

    .studio-price-card {
        min-height: auto;
        gap: 26px;
    }

    .studio-loyalty {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 25px;
    }

    .studio-loyalty .btn {
        width: 100%;
    }

    .studio-section-head h2,
    .studio-equipment h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .studio-section-head p,
    .studio-equipment__intro > p,
    .studio-addons p {
        margin-top: 18px;
        font-size: 16px;
    }

    .studio-price-card p {
        font-size: 16px;
    }

    .studio-pricing__actions .btn {
        width: 100%;
    }
}

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

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

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
