@font-face {
    font-family: "Forum";
    src: url("../fonts/forum-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Forum";
    src: url("../fonts/forum-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}

:root {
    color-scheme: dark;
    --ink: #eadfce;
    --ink-strong: #fffaf1;
    --ink-muted: #b9a78f;
    --canvas: #0a0806;
    --canvas-soft: #15100b;
    --surface: rgba(31, 23, 15, 0.88);
    --surface-solid: #1d150e;
    --line: rgba(214, 165, 80, 0.18);
    --line-strong: rgba(214, 165, 80, 0.38);
    --accent: #d6a550;
    --accent-strong: #efc777;
    --accent-ink: #1c1206;
    --danger: #ff938a;
    --shadow: 0 32px 90px rgba(15, 9, 3, 0.38);
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shell: min(1240px, calc(100vw - 64px));
    --font-display: "Forum", Georgia, serif;
    --font-body: "Manrope", "Segoe UI Variable", sans-serif;
    --header-height: 76px;
    --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-move: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="light"] {
    color-scheme: light;
    --ink: #2d2115;
    --ink-strong: #160f09;
    --ink-muted: #705d48;
    --canvas: #f5f3ef;
    --canvas-soft: #ebe6dd;
    --surface: rgba(255, 253, 248, 0.9);
    --surface-solid: #fffdf8;
    --line: rgba(117, 80, 15, 0.18);
    --line-strong: rgba(117, 80, 15, 0.38);
    --accent: #75500f;
    --accent-strong: #5b3d0b;
    --accent-ink: #fffaf1;
    --shadow: 0 32px 90px rgba(68, 45, 18, 0.14);
}

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

html {
    scroll-behavior: smooth;
    background: var(--canvas);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3 {
    hyphens: none;
    overflow-wrap: normal;
    text-wrap: pretty;
    word-break: normal;
}

p {
    text-wrap: pretty;
}

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

a {
    color: inherit;
}

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

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

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

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

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

.section {
    padding-block: clamp(72px, 7vw, 104px);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    transform: translateY(-150%);
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 700;
}

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

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: none;
}

.hero .eyebrow,
.page-hero .eyebrow,
.tour-page__header .eyebrow,
.contact-page__copy > .eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.display-title {
    max-width: 920px;
    margin: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.04;
}

.section-lead {
    max-width: 520px;
    margin: 26px 0 0;
    color: var(--ink-muted);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.91rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 220ms var(--ease-enter), background 200ms ease, border-color 200ms ease, color 200ms ease;
}

.button:active {
    transform: translateY(0) scale(0.975);
    transition-duration: 120ms;
}

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

.button--glass {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(20, 13, 7, 0.52);
    color: #ffffff;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.button--outline {
    border-color: var(--line-strong);
    color: var(--ink-strong);
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--line-strong);
    color: var(--ink-strong);
    font-weight: 700;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease;
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    isolation: isolate;
    --header-reveal: 620ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    border-bottom: 1px solid var(--line);
    background-color: color-mix(in srgb, var(--canvas) 64%, transparent);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--header-reveal);
}

.site-header.is-scrolled::before {
    opacity: 1;
}

@keyframes reading-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@supports (animation-timeline: scroll()) {
    .site-header::after {
        position: absolute;
        z-index: 2;
        right: 0;
        bottom: -1px;
        left: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-strong), var(--accent));
        content: "";
        transform: scaleX(0);
        transform-origin: left center;
        animation: reading-progress linear both;
        animation-timeline: scroll(root block);
        pointer-events: none;
    }
}

.site-header__inner {
    display: grid;
    height: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    text-decoration: none;
    transition: color var(--header-reveal);
}

html[data-theme="light"] .site-header.is-scrolled .brand,
html[data-theme="light"] .site-header.is-scrolled .site-nav a,
html[data-theme="light"] .site-header.is-scrolled .header-phone,
html[data-theme="light"] .site-header.is-scrolled .theme-toggle {
    color: var(--ink-strong);
}

html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .brand,
html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .site-nav a,
html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .header-phone,
html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .theme-toggle {
    color: var(--ink-strong);
}

html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .theme-toggle {
    border-color: var(--line-strong);
}

html[data-theme="light"] .site-header.is-scrolled .theme-toggle {
    border-color: var(--line-strong);
}

html[data-theme="light"] .site-header.is-scrolled .brand__suffix {
    color: var(--accent-strong);
}

html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .brand__suffix {
    color: var(--accent);
}

.brand__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1;
}

.brand__suffix {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    transition: color var(--header-reveal);
}

.site-header:not(.is-scrolled) .brand__suffix {
    color: #d6a550;
}

.site-nav {
    justify-self: center;
}

.site-nav__list,
.site-nav > ul {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding-block: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color var(--header-reveal);
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    background: var(--accent);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 200ms ease, border-color var(--header-reveal), color var(--header-reveal), transform 160ms var(--ease-enter);
}

.theme-toggle > span {
    display: block;
    line-height: 1;
    transition: transform 360ms var(--ease-enter);
}

html[data-theme="light"] .theme-toggle > span {
    transform: rotate(180deg);
}

.theme-toggle:active {
    transform: scale(0.92);
}

.header-phone {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #ffffff;
    font-size: 0.79rem;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--header-reveal);
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    display: flex;
    min-height: max(740px, 92svh);
    isolation: isolate;
    align-items: center;
    overflow: hidden;
    background: #0a0806;
    color: #ffffff;
}

.hero,
.tour-band:not(.tour-band--quiet),
.page-hero--services {
    --accent: #d6a550;
    --accent-strong: #efc777;
    --accent-ink: #1c1206;
}

.hero__image,
.hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: 54% 54%;
    filter: saturate(0.88);
    transform: scale(1.035);
    animation: hero-breathe 18s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.hero__veil {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(12, 8, 4, 0.86) 0%, rgba(12, 8, 4, 0.55) 43%, rgba(12, 8, 4, 0.06) 78%),
        linear-gradient(0deg, rgba(12, 8, 4, 0.8), transparent 35%, transparent 75%, rgba(12, 8, 4, 0.5));
}

.hero__veil::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 72% 48%, rgba(214, 165, 80, 0.22), transparent 33%);
    content: "";
    mix-blend-mode: screen;
    animation: water-light 9s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.hero.is-motion-active .hero__image,
.hero.is-motion-active .hero__veil::after {
    animation-play-state: running;
    will-change: transform;
}

.hero__content {
    padding-block: calc(var(--header-height) + 64px) 180px;
}

.hero__title {
    max-width: 640px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(4.5rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.hero__lead {
    max-width: 520px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    line-height: 1.5;
}

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

.hero__index {
    position: absolute;
    right: 0;
    bottom: 32px;
    left: 0;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: clamp(28px, 5vw, 72px);
}

.hero__index div {
    display: grid;
    gap: 2px;
}

.hero__index strong {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
}

.hero__index span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.69rem;
    letter-spacing: 0.05em;
}

@keyframes hero-breathe {
    to { transform: scale(1.08); }
}

@keyframes water-light {
    to { transform: translate3d(-3%, 2%, 0) scale(1.05); opacity: 0.62; }
}

@keyframes experience-drift {
    from { transform: translate3d(-1%, 0, 0) scale(1.04); }
    to { transform: translate3d(1.5%, -1%, 0) scale(1.07); }
}

@keyframes theme-reveal {
    from { clip-path: circle(0 at var(--theme-x, 50%) var(--theme-y, 38px)); }
    to { clip-path: circle(150vmax at var(--theme-x, 50%) var(--theme-y, 38px)); }
}

.manifesto {
    border-bottom: 1px solid var(--line);
}

.manifesto__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: center;
    gap: clamp(48px, 9vw, 140px);
}

.manifesto__copy {
    padding-bottom: 8px;
}

.manifesto__copy p {
    margin: 0 0 30px;
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.experience {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.experience__backdrop {
    position: absolute;
    z-index: -1;
    inset: -4%;
    background:
        linear-gradient(90deg, var(--canvas) 0%, color-mix(in srgb, var(--canvas) 80%, transparent) 45%, color-mix(in srgb, var(--canvas) 45%, transparent) 100%),
        url("../images/gallery/water-texture.webp") center / cover no-repeat;
    opacity: 0.74;
    animation: experience-drift 18s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.experience.is-motion-active .experience__backdrop {
    animation-play-state: running;
    will-change: transform;
}

html[data-theme="light"] .experience__backdrop {
    opacity: 0.18;
}

.experience__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(40px, 6vw, 88px);
}

.experience__sticky {
    position: sticky;
    top: calc(var(--header-height) + 48px);
    align-self: start;
}

.experience__sticky .display-title {
    font-size: clamp(3.7rem, 5.5vw, 6rem);
}

.experience__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience__list li {
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
}

.experience__list li:first-child {
    padding-top: 0;
}

.experience__list li > span {
    padding-top: 6px;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
}

.experience__list h3 {
    margin: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 2.2vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
}

.experience__list p {
    margin: 10px 0 0;
    color: var(--ink-muted);
}

.water-story {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: clamp(58px, 9vw, 130px);
}

.water-story__visual {
    position: relative;
    min-height: 540px;
}

.water-story__visual img:first-child {
    width: 84%;
    height: 490px;
    min-height: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.water-story__visual img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 36%;
    height: 260px;
    border: 8px solid var(--canvas);
    border-radius: var(--radius-md);
    object-fit: cover;
}

.water-story__copy > p {
    max-width: 520px;
    margin: 30px 0 40px;
    color: var(--ink-muted);
}

.water-story__copy .display-title {
    font-size: clamp(3.15rem, 5vw, 5.6rem);
}

.feature-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.feature-facts div {
    display: grid;
    gap: 5px;
    padding-right: 14px;
}

.feature-facts dt {
    color: var(--ink-muted);
    font-size: 0.72rem;
}

.feature-facts dd {
    margin: 0;
    color: var(--ink-strong);
    font-weight: 700;
}

.gallery-preview {
    background: var(--canvas-soft);
}

.gallery-preview__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 54px;
}

.gallery-preview__header .display-title {
    font-size: clamp(3.7rem, 6vw, 6rem);
}

.gallery-preview__grid {
    display: grid;
    min-height: 0;
    grid-template-columns: 1.2fr 0.75fr 0.95fr;
    grid-template-rows: 240px 200px 230px;
    gap: 16px;
}

.gallery-preview__item {
    position: relative;
    isolation: isolate;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-preview__item::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(0deg, rgba(8, 5, 3, 0.78), transparent 42%);
    content: "";
    opacity: 0.72;
    pointer-events: none;
    transition: opacity 320ms var(--ease-enter);
}

.gallery-preview__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms var(--ease-enter);
}

.gallery-preview__caption {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    left: 20px;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
    transform: translateY(0);
    transition: color 240ms ease, transform 320ms var(--ease-enter);
}

.gallery-preview__item--1 {
    grid-row: 1 / 3;
}

.gallery-preview__item--2 {
    grid-column: 2;
    grid-row: 1;
}

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

.gallery-preview__item--4 {
    grid-column: 2 / 4;
    grid-row: 2;
}

.gallery-preview__item--5 {
    grid-column: 1 / 3;
    grid-row: 3;
}

.gallery-preview__item--6 {
    grid-column: 3;
    grid-row: 3;
}

.pricing {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(480px, 1.15fr);
    gap: clamp(64px, 10vw, 150px);
}

.pricing__intro {
    align-self: center;
}

.pricing__intro .display-title {
    font-size: clamp(3.4rem, 6vw, 6rem);
}

.pricing__intro > p:last-child {
    max-width: 480px;
    margin: 26px 0 0;
    color: var(--ink-muted);
}

.pricing__panel {
    padding: clamp(26px, 4.4vw, 56px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.pricing__discount {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.pricing__discount strong {
    color: var(--accent);
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing__discount span {
    color: var(--ink-muted);
    font-size: 0.78rem;
}

.price-row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding-block: 23px;
    border-bottom: 1px solid var(--line);
}

.price-row > span:last-child {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.price-row s {
    color: var(--ink-muted);
    font-size: 0.8rem;
}

.price-row strong {
    color: var(--ink-strong);
}

.pricing__panel .button {
    margin-top: 30px;
}

.tour-band {
    position: relative;
    display: grid;
    min-height: 560px;
    isolation: isolate;
    place-items: center;
    overflow: hidden;
    color: #ffffff;
}

.tour-band__image,
.tour-band__image::after {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.tour-band__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
}

.tour-band__image::after {
    z-index: 0;
    background: linear-gradient(90deg, rgba(12, 8, 4, 0.88), rgba(12, 8, 4, 0.34));
    content: "";
}

.tour-band__content {
    display: grid;
    justify-items: start;
}

.tour-band__content .display-title {
    max-width: 820px;
    color: #ffffff;
}

.tour-band__content > p:not(.tour-band__counter) {
    max-width: 520px;
    margin: 26px 0 32px;
    color: rgba(255, 255, 255, 0.74);
}

.tour-band__counter {
    margin: 0 0 20px;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1;
}

.location {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(480px, 1.28fr);
    align-items: center;
    gap: clamp(52px, 9vw, 128px);
}

.location__copy .display-title {
    font-size: clamp(3.6rem, 6vw, 6rem);
}

.location__address {
    max-width: 380px;
    margin: 32px 0 6px;
    color: var(--ink-strong);
}

.location__copy > p:not(.location__address) {
    margin: 0;
    color: var(--ink-muted);
}

.location__phone {
    display: block;
    margin: 30px 0;
    color: var(--accent);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1;
    text-decoration: none;
}

.location__map {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--canvas-soft);
}

.location__map iframe,
.contact-page__map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    filter: grayscale(0.8) contrast(1.05) saturate(0.7);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: var(--canvas-soft);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.6fr;
    gap: 56px;
    padding-block: 72px;
}

.brand--footer {
    color: var(--ink-strong);
}

.site-footer__brand p,
.site-footer__contact p {
    max-width: 380px;
    margin: 18px 0 0;
    color: var(--ink-muted);
    font-size: 0.85rem;
}

.site-footer__contact > a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 14px;
    color: var(--accent);
    font-size: 1.14rem;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__menu,
.site-footer__nav > ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__menu a,
.site-footer__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: var(--ink-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__nav a:hover {
    color: var(--accent);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 20px 28px;
    border-top: 1px solid var(--line);
    color: var(--ink-muted);
    font-size: 0.72rem;
}

.site-footer__bottom p {
    margin: 0;
}

.page-main {
    padding-top: var(--header-height);
}

.page-hero {
    position: relative;
    min-height: 72dvh;
    overflow: hidden;
}

.page-hero--compact {
    display: grid;
    min-height: 0;
    padding-top: clamp(110px, 14vw, 190px);
    padding-bottom: clamp(70px, 9vw, 120px);
    align-content: end;
}

.page-hero h1,
.contact-page h1,
.tour-page__header h1,
.not-found h1 {
    max-width: 980px;
    margin: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.page-hero--compact > p:last-child {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--ink-muted);
    font-size: 1.08rem;
}

.page-hero--pricing {
    display: grid;
    min-height: min(760px, calc(100dvh - var(--header-height)));
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
    align-items: center;
    gap: clamp(56px, 9vw, 130px);
    padding-block: clamp(72px, 8vw, 112px);
}

.price-hero__copy > p:last-child {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--ink-muted);
    font-size: 1.08rem;
}

.price-hero__visual {
    position: relative;
    width: min(100%, 410px);
    aspect-ratio: 0.72;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    justify-self: end;
}

.price-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 56%, rgba(9, 6, 3, 0.8));
    content: "";
    pointer-events: none;
}

.price-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-hero__visual figcaption {
    position: absolute;
    z-index: 1;
    right: 28px;
    bottom: 24px;
    left: 28px;
    color: #fffaf1;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.page-hero--services {
    display: grid;
    isolation: isolate;
    place-items: end start;
    background: #0a0806;
    color: #ffffff;
}

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

.page-hero--services > img {
    object-fit: cover;
    object-position: center 52%;
    filter: saturate(0.72);
}

.page-hero__veil {
    z-index: -1;
    background: linear-gradient(90deg, rgba(12, 8, 4, 0.92), rgba(12, 8, 4, 0.2)), linear-gradient(0deg, rgba(12, 8, 4, 0.7), transparent 48%);
}

.page-hero__content {
    padding-bottom: clamp(58px, 8vw, 104px);
}

.page-hero__content h1 {
    max-width: 860px;
    color: #ffffff;
}

.page-hero__content > p:last-child {
    max-width: 560px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.service-catalog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.service-catalog__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    padding-block: 0 28px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.service-catalog__item > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin-bottom: 24px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.service-catalog__item > span {
    grid-row: 1 / 3;
    padding-top: 5px;
    color: var(--accent);
    font-size: 0.7rem;
    font-weight: 750;
}

.service-catalog__item h2 {
    margin: 0;
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 400;
    line-height: 1;
}

.service-catalog__item p {
    margin: 10px 0 0;
    color: var(--ink-muted);
}

.editorial-split,
.extras {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    align-items: center;
    gap: clamp(56px, 9vw, 130px);
}

.editorial-split__image img,
.extras__visual img {
    width: 100%;
    min-height: 620px;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.editorial-split__copy .display-title {
    font-size: clamp(3.4rem, 4.8vw, 5.4rem);
}

.extras__content .display-title {
    font-size: clamp(3rem, 4.2vw, 4.7rem);
}

.editorial-split__copy p,
.extras__content > p {
    color: var(--ink-muted);
}

.editorial-split__copy .button,
.extras__content .button {
    margin-top: 24px;
}

.price-sheet {
    display: grid;
    grid-template-columns: minmax(280px, 0.65fr) minmax(480px, 1.2fr);
    gap: clamp(64px, 10vw, 150px);
}

.price-sheet__heading {
    align-self: start;
}

.price-sheet__heading .display-title {
    font-size: clamp(3.1rem, 4.8vw, 5.3rem);
}

.price-sheet__heading p {
    margin: 28px 0 0;
    color: var(--ink-muted);
}

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

.price-sheet__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding-block: 30px;
    border-bottom: 1px solid var(--line);
}

.price-sheet__row > span:last-child {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.price-sheet__row s {
    color: var(--ink-muted);
    font-size: 0.78rem;
}

.price-sheet__row strong {
    color: var(--accent);
}

.extras__content dl,
.contact-page dl {
    margin: 36px 0 0;
}

.extras__content dl div,
.contact-page dl div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding-block: 18px;
    border-bottom: 1px solid var(--line);
}

.extras__content dt,
.contact-page dt {
    color: var(--ink-muted);
}

.extras__content dd,
.contact-page dd {
    margin: 0;
    color: var(--ink-strong);
    font-weight: 700;
    text-align: right;
}

.fine-print {
    margin-top: 24px;
    font-size: 0.8rem;
}

.gallery-wall {
    columns: 3;
    column-gap: 16px;
    padding-bottom: clamp(90px, 12vw, 170px);
}

.gallery-wall__item {
    position: relative;
    margin: 0 0 16px;
    break-inside: avoid;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.gallery-wall__item button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery-wall__item img {
    width: 100%;
    transform: translateZ(0);
    transition: transform 160ms var(--ease-enter);
}

.gallery-wall__item:nth-child(4n + 1) img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.gallery-wall__item:nth-child(4n + 2) img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-wall__zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(12, 8, 4, 0.76);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: opacity 140ms ease, transform 140ms var(--ease-enter);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox {
    width: min(1180px, calc(100vw - 48px));
    max-width: none;
    height: min(860px, calc(100dvh - 48px));
    max-height: none;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    background: #030807;
    color: #ffffff;
    opacity: 0;
    transform: scale(0.985);
    transition: opacity 220ms var(--ease-enter), transform 220ms var(--ease-enter), overlay 220ms allow-discrete, display 220ms allow-discrete;
}

.lightbox[open] {
    opacity: 1;
    transform: scale(1);
}

.lightbox.is-closing {
    opacity: 0;
    transform: scale(0.985);
    transition-duration: 150ms;
}

@starting-style {
    .lightbox[open] {
        opacity: 0;
        transform: scale(0.985);
    }
}

.lightbox::backdrop {
    background: rgba(0, 0, 0, 0.84);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 220ms var(--ease-enter), overlay 220ms allow-discrete, display 220ms allow-discrete;
}

.lightbox[open]::backdrop {
    opacity: 1;
}

.lightbox.is-closing::backdrop {
    opacity: 0;
    transition-duration: 150ms;
}

@starting-style {
    .lightbox[open]::backdrop {
        opacity: 0;
    }
}

.lightbox figure {
    position: relative;
    display: grid;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
    place-items: center;
}

.lightbox figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 1;
    transform: scale(1);
    transition: opacity 160ms ease, transform 220ms var(--ease-enter);
}

.lightbox.is-loading figure img {
    opacity: 0.28;
    transform: scale(0.995);
}

.lightbox figcaption {
    position: absolute;
    bottom: 18px;
    left: 50%;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    transform: translateX(-50%);
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.52);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: background-color 140ms ease, border-color 140ms ease, transform 140ms var(--ease-enter);
}

.lightbox__close {
    top: 16px;
    right: 16px;
    font-size: 1.5rem;
}

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

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.gallery-wall__item button:focus-visible .gallery-wall__zoom {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 0ms;
}

@media (hover: hover) and (pointer: fine) {
    .button:hover {
        transform: translateY(-2px);
    }

    .button--primary:hover {
        background: var(--accent-strong);
    }

    .button--glass:hover {
        background: rgba(20, 13, 7, 0.72);
        border-color: rgba(255, 255, 255, 0.62);
    }

    .button--outline:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .text-link:hover {
        border-color: var(--accent);
        color: var(--accent);
    }

    .gallery-preview__item:hover img {
        transform: scale(1.015);
    }

    .gallery-preview__item:hover::after {
        opacity: 0.9;
    }

    .gallery-preview__item:hover .gallery-preview__caption {
        color: var(--accent-strong);
        transform: translateY(-3px);
    }

    .gallery-wall__item button:hover img {
        transform: translateZ(0) scale(1.012);
    }

    .gallery-wall__item button:hover .gallery-wall__zoom {
        opacity: 1;
        transform: translateY(0);
    }

    .lightbox__close:hover,
    .lightbox__nav:hover {
        border-color: rgba(255, 255, 255, 0.54);
        background: rgba(0, 0, 0, 0.76);
    }

    .lightbox__close:hover {
        transform: scale(1.04);
    }

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

.empty-state {
    margin-bottom: 120px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    color: var(--ink-muted);
}

.contact-page {
    display: grid;
    min-height: 100dvh;
    grid-template-columns: minmax(320px, 0.72fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: clamp(54px, 9vw, 130px);
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 90px;
}

.contact-page h1 {
    font-size: clamp(3.6rem, 4.8vw, 5.4rem);
}

.contact-page__lead {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--ink-muted);
}

.contact-page dl div {
    grid-template-columns: 110px 1fr;
}

.contact-page dd {
    text-align: left;
}

.contact-page dd a {
    color: var(--accent);
    text-decoration: none;
}

.contact-page .button {
    margin-top: 32px;
}

.contact-page__map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.location__map::after,
.contact-page__map::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 26px;
    height: 26px;
    border: 8px solid var(--accent);
    border-radius: 50% 50% 50% 0;
    background: var(--canvas);
    box-shadow: 0 10px 24px rgba(26, 19, 12, 0.2);
    transform: translate(-50%, -90%) rotate(-45deg);
    pointer-events: none;
}

.location__map iframe,
.contact-page__map iframe {
    position: relative;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.map-link {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    width: fit-content;
    border-color: rgba(255, 255, 255, 0.34);
    background: #0a0806;
    color: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.map-link:hover {
    background: #1d150e;
    color: #ffffff;
}

.tour-page {
    padding-top: calc(var(--header-height) + 44px);
}

.tour-page__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 42px;
    padding-block: 52px 38px;
}

.tour-page__header h1 {
    font-size: clamp(3.6rem, 7vw, 7rem);
}

.tour-page__frame {
    position: relative;
    width: min(1600px, calc(100vw - 32px));
    height: calc(100dvh - 238px);
    min-height: 620px;
    margin-inline: auto;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: #000000;
}

.tour-page__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    opacity: 0;
    transition: opacity 260ms ease;
}

.tour-page__frame.is-ready iframe {
    opacity: 1;
}

.tour-page__status {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    padding: 32px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: radial-gradient(circle at 50% 40%, #2a2117 0, #090705 70%);
    color: #ffffff;
    text-align: left;
}

.tour-page__status[hidden] {
    display: none;
}

.tour-page__status-copy {
    display: grid;
    max-width: 390px;
    gap: 4px;
}

.tour-page__status-copy strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 400;
}

.tour-page__status-copy span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.tour-page__spinner {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.22);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: tour-spin 800ms linear infinite;
}

.tour-page__frame.has-error .tour-page__status {
    flex-wrap: wrap;
}

.tour-page__frame.has-error .tour-page__spinner {
    display: none;
}

.tour-page__retry {
    flex: 0 0 auto;
}

@keyframes tour-spin {
    to { transform: rotate(1turn); }
}

.prose {
    max-width: 780px;
    padding-bottom: 120px;
}

.prose h2,
.prose h3 {
    color: var(--ink-strong);
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1;
}

.prose h2 { font-size: 3.4rem; }
.prose h3 { font-size: 2.4rem; }
.prose p { color: var(--ink-muted); }

.not-found {
    display: grid;
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 80px;
    align-content: center;
}

.not-found > p:not(.eyebrow) {
    max-width: 520px;
    margin: 28px 0 0;
    color: var(--ink-muted);
}

.not-found__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.motion-ready .reveal {
    transform: translateY(12px);
    transition: transform 460ms var(--ease-enter);
}

.motion-ready .reveal.is-visible {
    transform: translateY(0);
}

.motion-ready .gallery-wall__item.reveal,
.motion-ready .gallery-wall__item.reveal.is-visible {
    transform: none;
    transition: none;
}

.motion-ready .gallery-preview__item.reveal,
.motion-ready .water-story__visual.reveal,
.motion-ready .location__map.reveal {
    filter: none;
    transform: translateY(10px) scale(0.985);
}

.motion-ready .gallery-preview__item.reveal.is-visible,
.motion-ready .water-story__visual.reveal.is-visible,
.motion-ready .location__map.reveal.is-visible {
    transform: translateY(0) scale(1);
}

.motion-ready .experience__list li:nth-child(2),
.motion-ready .gallery-preview__item:nth-child(2) { transition-delay: 40ms; }
.motion-ready .experience__list li:nth-child(3),
.motion-ready .gallery-preview__item:nth-child(3) { transition-delay: 80ms; }
.motion-ready .experience__list li:nth-child(4),
.motion-ready .gallery-preview__item:nth-child(4) { transition-delay: 120ms; }
.motion-ready .experience__list li:nth-child(5),
.motion-ready .gallery-preview__item:nth-child(5) { transition-delay: 160ms; }
.motion-ready .gallery-preview__item:nth-child(6) { transition-delay: 200ms; }

.motion-ready .hero .reveal,
.motion-ready .hero__index {
    transform: translateY(18px);
    transition: transform 620ms var(--ease-expo);
}

.motion-ready.page-entered .hero .reveal,
.motion-ready.page-entered .hero__index {
    transform: translateY(0);
}

.motion-ready.page-entered .hero__title { transition-delay: 80ms; }
.motion-ready.page-entered .hero__lead { transition-delay: 180ms; }
.motion-ready.page-entered .hero__actions { transition-delay: 260ms; }
.motion-ready.page-entered .hero__index { transition-delay: 340ms; }

.motion-ready .page-hero--compact > *,
.motion-ready .page-hero__content > *,
.motion-ready .tour-page__header > *,
.motion-ready .contact-page__copy,
.motion-ready .contact-page__map {
    transform: translateY(14px);
    transition: transform 520ms var(--ease-expo);
}

.motion-ready.page-entered .page-hero--compact > *,
.motion-ready.page-entered .page-hero__content > *,
.motion-ready.page-entered .tour-page__header > *,
.motion-ready.page-entered .contact-page__copy,
.motion-ready.page-entered .contact-page__map {
    transform: translateY(0);
}

.motion-ready.page-entered .page-hero--compact > h1,
.motion-ready.page-entered .page-hero__content > h1,
.motion-ready.page-entered .tour-page__header > .button,
.motion-ready.page-entered .contact-page__map {
    transition-delay: 70ms;
}

.motion-ready.page-entered .page-hero--compact > p:last-child,
.motion-ready.page-entered .page-hero__content > p:last-child {
    transition-delay: 140ms;
}

::view-transition-old(root) {
    z-index: 1;
    animation: none;
}

::view-transition-new(root) {
    z-index: 2;
    animation: theme-reveal 460ms var(--ease-expo);
}

@media (max-width: 1120px) {
    :root {
        --shell: min(100% - 40px, 1060px);
    }

    .site-header__inner {
        gap: 20px;
    }

    .site-nav__list,
    .site-nav > ul {
        gap: 14px;
    }

    .header-phone {
        display: none;
    }

    .gallery-preview__grid {
        min-height: 800px;
    }

    .manifesto__layout,
    .experience__inner,
    .water-story,
    .pricing,
    .location,
    .editorial-split,
    .extras,
    .price-sheet,
    .contact-page {
        grid-template-columns: 1fr;
        gap: 62px;
    }

    .experience__sticky {
        position: static;
    }

    .manifesto__copy,
    .pricing__intro,
    .editorial-split__copy,
    .extras__content,
    .price-sheet__heading,
    .location__copy {
        max-width: 720px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 68px;
    }

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

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        align-items: center;
        min-height: 44px;
        gap: 10px;
        padding: 8px 0;
        border: 0;
        background: transparent;
        color: #ffffff;
        cursor: pointer;
        transition: color var(--header-reveal);
    }

    html[data-theme="light"] .site-header.is-scrolled .nav-toggle {
        color: var(--ink-strong);
    }

    html[data-theme="light"] body:not(.home) .site-header:not(.is-scrolled) .nav-toggle {
        color: var(--ink-strong);
    }

    .nav-toggle__label {
        font-size: 0.75rem;
        font-weight: 700;
    }

    .nav-toggle__lines {
        display: grid;
        width: 26px;
        gap: 6px;
    }

    .nav-toggle__lines i {
        display: block;
        height: 1px;
        background: currentColor;
        transition: transform 220ms ease;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__lines i:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        width: 100vw;
        max-width: none;
        height: calc(100dvh - var(--header-height));
        padding: 36px max(20px, calc((100vw - 1060px) / 2));
        visibility: hidden;
        justify-self: stretch;
        align-content: start;
        background: color-mix(in srgb, var(--canvas) 96%, transparent);
        opacity: 0;
        transform: translateY(-12px);
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
        backdrop-filter: blur(20px);
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav__list,
    .site-nav > ul {
        display: grid;
        gap: 0;
    }

    .site-nav a {
        padding-block: 15px;
        border-bottom: 1px solid var(--line);
        color: var(--ink-strong);
        font-family: var(--font-display);
        font-size: 2.6rem;
        font-weight: 400;
        line-height: 1;
    }

    .site-nav a::after {
        display: none;
    }

    .site-header__actions {
        order: 4;
    }

    .hero__title {
        max-width: 620px;
        font-size: clamp(4.7rem, 12vw, 6rem);
    }

    .page-hero--pricing {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 48px;
        padding-block: 88px;
    }

    .price-hero__visual {
        width: min(100%, 430px);
        justify-self: start;
    }

    .manifesto__layout,
    .experience__inner,
    .water-story,
    .pricing,
    .location,
    .editorial-split,
    .extras,
    .price-sheet,
    .contact-page {
        grid-template-columns: 1fr;
    }

    .manifesto__copy {
        max-width: 560px;
    }

    .experience__sticky {
        position: static;
    }

    .water-story__visual {
        min-height: 580px;
    }

    .water-story__visual img:first-child {
        min-height: 520px;
    }

    .gallery-preview__grid {
        min-height: 680px;
    }

    .pricing__intro {
        max-width: 620px;
    }

    .location__map,
    .contact-page__map {
        min-height: 520px;
    }

    .service-catalog {
        grid-template-columns: 1fr;
    }

    .editorial-split__image img,
    .extras__visual img {
        min-height: 520px;
    }

    .gallery-wall {
        columns: 2;
    }

    .contact-page {
        padding-top: calc(var(--header-height) + 90px);
    }

    .tour-page__header {
        align-items: start;
        flex-direction: column;
    }

    .tour-page__frame {
        height: 72dvh;
        min-height: 540px;
    }

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

@media (max-width: 640px) {
    :root {
        --shell: calc(100vw - 32px);
        --radius-md: 16px;
        --radius-lg: 16px;
    }

    .section {
        padding-block: 84px;
    }

    .display-title {
        font-size: clamp(2.8rem, 13vw, 4.25rem);
        line-height: 1;
    }

    .experience__sticky .display-title,
    .gallery-preview__header .display-title,
    .pricing__intro .display-title,
    .tour-band__content .display-title,
    .location__copy .display-title,
    .editorial-split__copy .display-title,
    .extras__content .display-title,
    .price-sheet__heading .display-title {
        font-size: clamp(2.8rem, 13vw, 4.25rem);
        line-height: 1;
    }

    .site-header__inner {
        gap: 12px;
    }

    .brand__name {
        font-size: 1.7rem;
    }

    .brand__suffix {
        font-size: 1.435rem;
    }

    .nav-toggle {
        grid-column: 3;
        grid-row: 1;
    }

    .site-header__actions {
        display: flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .theme-toggle {
        width: 44px;
        height: 44px;
    }

    .hero {
        min-height: 100svh;
        align-items: flex-start;
    }

    .hero__image {
        object-position: 58% center;
    }

    .hero__veil {
        background: linear-gradient(0deg, rgba(12, 8, 4, 0.94), rgba(12, 8, 4, 0.42) 72%, rgba(12, 8, 4, 0.58));
    }

    .hero__content {
        padding-top: clamp(150px, 26vh, 220px);
    }

    .hero__title {
        max-width: 420px;
        font-size: clamp(3.8rem, 16vw, 5.2rem);
        line-height: 0.9;
    }

    .page-hero--pricing {
        gap: 36px;
        padding-top: 86px;
        padding-bottom: 70px;
    }

    .price-hero__visual {
        width: 100%;
        max-height: 470px;
    }

    .hero__lead {
        max-width: 340px;
        margin-top: 22px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 360px);
        gap: 8px;
        margin-top: 26px;
    }

    .hero__actions .button {
        min-width: 0;
        padding-inline: 18px;
        font-size: 0.84rem;
    }

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

    .hero__index div {
        min-width: 0;
    }

    .hero__index strong {
        font-size: 1.35rem;
    }

    .hero__index span {
        font-size: 0.58rem;
        line-height: 1.25;
    }

    .manifesto__layout,
    .experience__inner,
    .water-story,
    .pricing,
    .location,
    .editorial-split,
    .extras,
    .price-sheet,
    .contact-page {
        gap: 46px;
    }

    .experience__list li {
        grid-template-columns: 30px 1fr;
        gap: 12px;
        padding-block: 26px;
    }

    .experience__list h3 {
        font-size: 2.35rem;
    }

    .water-story__visual {
        min-height: 440px;
    }

    .water-story__visual img:first-child {
        width: 92%;
        min-height: 410px;
    }

    .water-story__visual img:last-child {
        bottom: -24px;
        width: 42%;
        height: 220px;
        border-width: 5px;
    }

    .feature-facts {
        gap: 10px;
    }

    .feature-facts dd {
        font-size: 0.78rem;
    }

    .gallery-preview__header {
        display: grid;
        margin-bottom: 36px;
    }

    .gallery-preview__grid {
        min-height: 0;
        grid-template-columns: 1.15fr 0.85fr;
        grid-template-rows: 280px 210px 230px 220px;
        gap: 8px;
    }

    .gallery-preview__item--1 { grid-column: 1 / 3; grid-row: 1; }
    .gallery-preview__item--2 { grid-column: 1; grid-row: 2; }
    .gallery-preview__item--3 { grid-column: 2; grid-row: 2 / 4; }
    .gallery-preview__item--4 { grid-column: 1; grid-row: 3; }
    .gallery-preview__item--5 { grid-column: 1 / 3; grid-row: 4; }
    .gallery-preview__item--6 { display: none; }

    .gallery-preview__caption {
        right: 14px;
        bottom: 13px;
        left: 14px;
        font-size: 1.35rem;
    }

    .pricing__panel {
        padding: 24px 18px;
    }

    .pricing__discount {
        align-items: center;
    }

    .pricing__discount strong {
        font-size: 5rem;
    }

    .price-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .price-row > span:last-child {
        justify-content: space-between;
    }

    .tour-band {
        min-height: 78dvh;
    }

    .location__map,
    .contact-page__map {
        min-height: 430px;
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 38px;
        padding-block: 54px;
    }

    .site-footer__bottom {
        display: grid;
    }

    .page-hero {
        min-height: 78dvh;
    }

    .page-hero--compact {
        min-height: 0;
        padding-top: 110px;
        padding-bottom: 70px;
    }

    .page-hero h1,
    .contact-page h1,
    .tour-page__header h1,
    .not-found h1 {
        font-size: clamp(3.35rem, 14vw, 5.2rem);
        line-height: 0.95;
    }

    .service-catalog__item { grid-template-columns: minmax(0, 1fr); }

    .editorial-split__image img,
    .extras__visual img {
        min-height: 400px;
    }

    .price-sheet__row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .price-sheet__row > span:last-child {
        justify-items: start;
    }

    .extras__content dl div,
    .contact-page dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .extras__content dd,
    .contact-page dd {
        text-align: left;
    }

    .gallery-wall {
        columns: 1;
        column-gap: 0;
    }

    .gallery-wall__item:nth-child(n) img {
        aspect-ratio: auto;
    }

    .lightbox {
        width: calc(100vw - 16px);
        height: calc(100dvh - 16px);
    }

    .lightbox__nav {
        top: auto;
        bottom: 14px;
        transform: none;
    }

    .contact-page {
        min-height: 0;
        padding-top: 120px;
    }

    .contact-page dl div {
        padding-block: 15px;
    }

    .tour-page {
        padding-top: var(--header-height);
    }

    .tour-page__header {
        padding-block: 48px 28px;
    }

    .tour-page__frame {
        width: 100%;
        height: 72dvh;
        min-height: 460px;
        border-radius: 0;
    }
}

/* Photographic composition and shared finishing details. */
#space {
    scroll-margin-top: var(--header-height);
}

.hero__title span {
    display: block;
    color: #efc777;
}

.hero__lead {
    max-width: 430px;
    color: #ede6dc;
}

.hero__explore {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 24px;
    color: #eee5d6;
    font-size: 0.82rem;
    text-decoration: none;
}

.hero__explore span { font-size: 1.4rem; }

.hero__tour {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 20px;
    border: 1px solid #c9b89966;
    border-radius: 8px;
    background: #17120de8;
    text-decoration: none;
    transition: background-color 200ms ease, border-color 200ms ease;
}

.hero__tour img {
    width: 108px;
    height: 76px;
    border-radius: 4px;
    object-fit: cover;
}

.hero__tour > span { display: grid; gap: 6px; }
.hero__tour small { color: #c9baa4; font-size: 0.72rem; }
.hero__tour strong { color: #fffaf1; font-size: 1.6rem; }
.hero__tour .hero__tour-icon { margin-left: 12px; color: #efc777; font-size: 1.5rem; }
.hero__tour:hover { background: #241b12; border-color: #efc777; }

.visit-details {
    border-bottom: 1px solid var(--line);
    background: var(--canvas-soft);
}

.visit-details__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 28px;
    padding-block: 26px;
    color: var(--ink);
    font-size: 0.84rem;
}

.visit-details__inner span { display: flex; align-items: center; gap: 12px; }
.visit-details__inner span::before { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); content: ''; }

.manifesto .display-title { font-size: clamp(3.2rem, 5.5vw, 5.5rem); }
.manifesto__copy { max-width: 420px; }
.experience__sticky .display-title { font-size: clamp(3rem, 4.7vw, 4.6rem); line-height: 1.04; }
.experience__backdrop { opacity: 0.3; }

.experience__link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 24px;
    align-items: center;
    gap: 24px;
    border-radius: 6px;
    text-decoration: none;
}

.experience__link img {
    width: 112px;
    height: 90px;
    border-radius: 6px;
    object-fit: cover;
}

.experience__list p { margin-top: 8px; font-size: 0.88rem; }
.experience__arrow { color: var(--accent); font-size: 1.4rem; transition: transform 200ms var(--ease-enter); }
.experience__link:hover .experience__arrow { transform: translate(3px, -3px); }
.experience__link:hover h3 { color: var(--accent-strong); }
.gallery-preview__link { display: block; height: 100%; }
.gallery-preview__link:focus-visible { outline-offset: -6px; }
.gallery-preview__caption::after { float: right; content: '↗'; font-family: var(--font-body); font-size: 1.1rem; }
.pricing__panel .fine-print { color: var(--ink-muted); max-width: 40ch; }
.pricing__intro .display-title { font-size: clamp(3rem, 4.5vw, 4.6rem); line-height: 1.04; }
.tour-band__content .display-title { max-width: 650px; font-size: clamp(3.2rem, 5.5vw, 5.5rem); line-height: 1.04; }
.tour-band__content > p:not(.tour-band__counter) { color: #eee5d6; }
.tour-band__counter { display: grid; width: 76px; height: 76px; place-items: center; border: 1px solid #efc77788; border-radius: 50%; font-size: 1.7rem; }
.location__copy .display-title { font-size: clamp(3rem, 4.5vw, 4.6rem); line-height: 1.04; }
.page-hero--compact { padding-block: 80px 64px; }
.site-footer__main { padding-block: 52px; }

@media (min-width: 1121px) {
    .service-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 64px; }
    .service-catalog__item h2 { font-size: 2.3rem; }
}

@media (min-width: 641px) and (max-width: 1120px) {
    .manifesto__layout { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 36px; }
    .gallery-preview__grid { min-height: 0; grid-template-rows: 200px 170px 190px; }
    .water-story { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 36px; }
    .water-story__visual { min-height: 400px; }
    .water-story__visual img:first-child { min-height: 0; height: 370px; }
    .water-story__visual img:last-child { height: 190px; }
    .water-story__copy .display-title { font-size: clamp(2.6rem, 4.8vw, 3.5rem); line-height: 1.05; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100vw - 40px); --radius-md: 12px; }
    .section { padding-block: 64px; }
    .brand__name, .brand__suffix { font-size: 1.65rem; }
    .hero { min-height: max(780px, 100svh); align-items: center; }
    .hero__content { padding-block: 138px 235px; }
    .hero__title { font-size: clamp(3.5rem, 15vw, 5rem); line-height: 1.04; }
    .hero__lead { font-size: 1rem; max-width: 30ch; }
    .hero__veil { background: linear-gradient(90deg, #100b07cc, #100b0755), linear-gradient(0deg, #100b07ee, transparent 65%, #100b0777); }
    .hero__index { bottom: 24px; display: flex; flex-direction: column; align-items: stretch; gap: 12px; }
    .hero__explore { font-size: 0.75rem; justify-content: space-between; }
    .hero__tour { gap: 14px; padding-right: 16px; }
    .hero__tour img { width: 88px; height: 62px; }
    .hero__tour strong { font-size: 1.45rem; }
    .hero__tour .hero__tour-icon { margin-left: auto; }
    .visit-details__inner { display: grid; padding-block: 22px; font-size: 0.8rem; }
    .manifesto .display-title, .experience__sticky .display-title,
    .pricing__intro .display-title, .tour-band__content .display-title,
    .location__copy .display-title { font-size: clamp(2.6rem, 11.5vw, 3.7rem); line-height: 1.05; }
    .manifesto__layout { gap: 28px; }
    .experience__inner { gap: 32px; }
    .experience__list li { padding-block: 18px; }
    .experience__link { grid-template-columns: minmax(0, 1fr) 18px; gap: 14px; }
    .experience__link img { width: 76px; height: 84px; }
    .experience__list h3 { font-size: 1.65rem; line-height: 1.1; }
    .experience__list p { font-size: 0.8rem; line-height: 1.6; }
    .water-story__visual { min-height: 390px; }
    .water-story__visual img:first-child { width: 88%; min-height: 0; height: 350px; }
    .water-story__visual img:last-child { bottom: 0; height: 190px; }
    .gallery-preview__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 180px 180px 210px; gap: 10px; }
    .gallery-preview__item--3 { grid-column: 2; grid-row: 2; }
    .gallery-preview__item--4 { grid-column: 1; grid-row: 3; }
    .gallery-preview__item--5 { grid-column: 2; grid-row: 3; }
    .gallery-preview__item--6 { display: block; grid-column: 1 / 3; grid-row: 4; }
    .gallery-preview__caption { left: 12px; right: 12px; font-size: 1.25rem; line-height: 1.1; }
    .gallery-preview__caption::after { display: none; }
    .pricing__discount strong { font-size: 3.4rem; }
    .tour-band { min-height: 540px; }
    .location__map, .contact-page__map { min-height: 360px; }
    .service-catalog { gap: 28px; }
    .page-hero--compact { padding-block: 64px 48px; }
}

/* Curated photography: four deliberate images, no repeated thumbnails. */
.water-story__visual--single { min-height: 0; }
.water-story__visual--single img:only-child {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    border: 0;
    border-radius: var(--radius-md);
    transform: none;
}

.gallery-preview__grid--pair {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: clamp(16px, 3vw, 40px);
    max-width: 960px;
}
.gallery-preview__grid--pair .gallery-preview__item {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1066 / 1475;
}
.gallery-preview__grid--pair img { filter: none; }
.tour-band--quiet {
    min-height: 0;
    color: var(--ink);
    background: var(--canvas-soft);
    border-block: 1px solid var(--line);
}
.tour-band--quiet .tour-band__content > p:not(.tour-band__counter) { color: var(--ink-muted); }
.tour-band--quiet .display-title { color: var(--ink-strong); }
.tour-band--quiet .tour-band__counter { color: var(--accent-strong); border-color: var(--line); }

@media (max-width: 640px) {
    .gallery-preview__grid--pair { grid-template-columns: 1fr; max-width: 420px; }
}

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

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

    .motion-ready .reveal {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .motion-ready .site-header__inner,
    .motion-ready .hero .reveal,
    .motion-ready .hero__index {
        opacity: 1;
        filter: none;
        transform: none;
    }

    ::view-transition-old(root),
    ::view-transition-new(root) {
        animation: none !important;
    }

    .site-header::after {
        display: none;
    }

    .site-header::before {
        transition: opacity 140ms linear !important;
    }

    .brand,
    .brand__suffix,
    .site-nav a,
    .header-phone,
    .nav-toggle {
        transition-duration: 0.01ms !important;
    }

    .theme-toggle {
        transition-duration: 0.01ms !important;
    }

    .tour-page__frame iframe {
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-reduced-transparency: reduce) {
    .site-header.is-scrolled::before,
    .button--glass,
    .site-nav {
        background: var(--canvas);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
