@font-face {
    font-family: "Inter";
    src:
        url("../fonts/InterVariable.woff2") format("woff2-variations"),
        url("../fonts/InterVariable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    color-scheme: light;
    --bg: #f4ede2;
    --surface: rgba(255, 251, 245, 0.78);
    --surface-strong: #fffdfa;
    --surface-soft: #f7f0e5;
    --text: #241912;
    --text-soft: #685846;
    --text-on-dark: #f8f3ea;
    --primary: #927037;
    --primary-strong: #775727;
    --secondary: #4f705a;
    --secondary-strong: #3f5b49;
    --border: rgba(146, 112, 55, 0.18);
    --border-strong: rgba(79, 112, 90, 0.24);
    --shadow: 0 26px 70px rgba(57, 36, 15, 0.18);
    --radius: 28px;
    --radius-sm: 18px;
    --container: 1120px;
    --content-narrow: 680px;
}

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

html {
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-optical-sizing: auto;
    background:
        radial-gradient(circle at top left, rgba(146, 112, 55, 0.12), transparent 35%),
        radial-gradient(circle at top right, rgba(79, 112, 90, 0.1), transparent 28%),
        linear-gradient(180deg, #faf6ef 0%, #f3eadf 100%);
    color: var(--text);
}

body {
    margin: 0;
    min-height: 100vh;
    background: transparent;
}

#main-content:focus {
    outline: none;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

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

.container.narrow {
    width: min(calc(100% - 2rem), 760px);
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(36, 25, 18, 0.94);
    color: #fff;
    text-decoration: none;
    transform: translateY(-140%);
    transition: transform 180ms ease;
}

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

.section {
    padding: 6rem 0;
}

.home-page {
    overflow: clip;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(255, 248, 240, 0.72);
    backdrop-filter: blur(14px);
}

.site-footer__inner,
.hero__actions,
.form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__inner {
    justify-content: space-between;
    padding: 1rem 0;
}

/* ── Hero ─────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center 40%;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
    animation: heroKenBurns 24s ease-out 1 forwards;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18, 14, 10, 0.34) 0%,
            rgba(18, 14, 10, 0.16) 24%,
            rgba(18, 14, 10, 0.22) 56%,
            rgba(18, 14, 10, 0.62) 100%
        ),
        linear-gradient(90deg,
            rgba(18, 14, 10, 0.56) 0%,
            rgba(18, 14, 10, 0.34) 26%,
            rgba(18, 14, 10, 0.14) 48%,
            transparent 68%
        ),
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.06) 0%, transparent 34%);
}

.hero__layout {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4.5rem) clamp(3rem, 6vw, 5rem);
}

.hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 24rem);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: end;
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
}

.hero__text {
    max-width: 38rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 0.65rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.96);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(18, 14, 10, 0.16);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.hero__text h1 {
    margin: 0 0 1rem;
    max-width: 7ch;
    font-size: clamp(3.2rem, 7.5vw, 6.5rem);
    line-height: 0.95;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    hyphens: manual;
    text-wrap: balance;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
}

.hero__lead {
    margin: 0 0 2rem;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.65;
    color: rgba(248, 243, 234, 0.88);
    max-width: 34rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn-glass {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.btn-glass:hover,
.btn-glass:focus-visible {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

/* ── Glass Facts Panel ────────────────────────── */

.hero__glass {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    box-shadow: 0 20px 45px rgba(18, 14, 10, 0.18);
}

.hero__glass-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.22rem;
    min-height: 5.25rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.hero__glass-value {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}

.hero__glass-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: normal;
}

.hero__glass-divider {
    display: none;
}

@supports ((-webkit-backdrop-filter: blur(18px)) or (backdrop-filter: blur(18px))) {
    .hero__eyebrow {
        background: rgba(255, 255, 255, 0.12);
        -webkit-backdrop-filter: blur(14px) saturate(130%);
        backdrop-filter: blur(14px) saturate(130%);
    }

    .hero__glass {
        background: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(18px) saturate(135%);
        backdrop-filter: blur(18px) saturate(135%);
    }

    .hero__glass-item {
        background: rgba(255, 255, 255, 0.08);
    }
}

/* ── Scroll Indicator ─────────────────────────── */

.hero__scroll {
    position: absolute;
    bottom: clamp(1.5rem, 3vw, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    z-index: 2;
}

.hero__scroll-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
}

.hero__scroll-indicator {
    position: relative;
    width: 1.8rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 24px rgba(18, 14, 10, 0.14);
}

.hero__scroll-dot {
    position: absolute;
    top: 0.5rem;
    left: 50%;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    transform: translateX(-50%);
    animation: scrollDot 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@supports ((-webkit-backdrop-filter: blur(14px)) or (backdrop-filter: blur(14px))) {
    .hero__scroll-indicator {
        background: rgba(255, 255, 255, 0.06);
        -webkit-backdrop-filter: blur(12px) saturate(125%);
        backdrop-filter: blur(12px) saturate(125%);
    }
}

/* ── Shared Typography ────────────────────────── */

.eyebrow {
    margin: 0 0 0.9rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--secondary);
}

h1,
h2 {
    margin: 0 0 1rem;
    line-height: 1.04;
    hyphens: auto;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    max-width: 16ch;
    text-wrap: balance;
}

.lead,
p {
    color: var(--text-soft);
    line-height: 1.7;
}

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

.btn,
.text-link {
    border: 0;
    background: none;
    padding: 0;
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    transition:
        background-color 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--primary-strong);
}



.btn-outline {
    color: var(--primary);
    border: 1px solid var(--border-strong);
    background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(146, 112, 55, 0.08);
    border-color: var(--primary);
}

.text-link {
    color: var(--secondary);
    text-underline-offset: 0.22em;
}

.text-link:focus-visible {
    outline: 2px solid rgba(79, 112, 90, 0.72);
    outline-offset: 4px;
    border-radius: 6px;
}

/* ── Legal Pages ─────────────────────────────── */

.legal-page {
    min-height: 100vh;
}

.page-hero {
    position: relative;
    min-height: clamp(14rem, 34vh, 19rem);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    isolation: isolate;
}

.page-hero--error {
    min-height: 100svh;
}

.page-hero--error .page-hero__inner {
    align-items: center;
    padding-block: clamp(2.5rem, 6vw, 4rem);
}

.page-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(18, 14, 10, 0.38) 0%,
            rgba(18, 14, 10, 0.22) 28%,
            rgba(18, 14, 10, 0.58) 100%
        ),
        radial-gradient(circle at center, rgba(18, 14, 10, 0.14) 0%, rgba(18, 14, 10, 0.36) 58%, rgba(18, 14, 10, 0.56) 100%);
}

.page-hero__inner {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
    padding: clamp(3.6rem, 7vw, 4.8rem) 0 clamp(2rem, 4vw, 2.6rem);
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-hero__panel {
    width: min(100%, 58rem);
    text-align: center;
}

.page-hero__panel h1 {
    margin: 0 0 0.9rem;
    max-width: none;
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.page-hero__panel .hero__eyebrow {
    margin-inline: auto;
}

.page-hero__panel .hero__lead {
    margin: 0 auto;
    max-width: 44rem;
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
}

.page-hero .hero__actions {
    justify-content: center;
    margin-top: 1.5rem;
}

.section--legal {
    padding-top: 3.6rem;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(18rem, 23rem) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.legal-card,
.legal-prose {
    background: rgba(255, 251, 245, 0.78);
    border: 1px solid rgba(146, 112, 55, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(57, 36, 15, 0.08);
}

.legal-card {
    padding: 1.35rem 1.35rem 1.45rem;
    position: sticky;
    top: 1.5rem;
}

.legal-card h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    max-width: 12ch;
}

.legal-facts {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.legal-facts li {
    color: var(--text-soft);
    line-height: 1.55;
}

.legal-prose {
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.legal-prose > :first-child {
    margin-top: 0;
}

.legal-prose h2 {
    margin-top: 2.3rem;
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    max-width: none;
}

.legal-prose h3 {
    margin: 1.4rem 0 0.6rem;
    font-size: 1.1rem;
    color: var(--text);
}

.legal-prose p,
.legal-prose li {
    color: var(--text-soft);
    line-height: 1.72;
}

.legal-prose ul {
    padding-left: 1.2rem;
}

.legal-prose a {
    color: var(--secondary);
    text-underline-offset: 0.18em;
}

.legal-backlink {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(146, 112, 55, 0.12);
}

.legal-content {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    background: rgba(255, 251, 245, 0.82);
    border: 1px solid rgba(146, 112, 55, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 22px 60px rgba(57, 36, 15, 0.08);
}

.legal-intro {
    margin: 0 0 1.6rem;
    font-size: clamp(1.06rem, 1.55vw, 1.18rem);
    line-height: 1.8;
    color: var(--text);
}

.legal-content > h2:first-child,
.legal-content > .legal-intro + h2 {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.legal-content h2 {
    margin-top: 2.4rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(146, 112, 55, 0.12);
    font-size: clamp(1.55rem, 2.5vw, 2.35rem);
    max-width: none;
}

.legal-content h3 {
    margin: 1.5rem 0 0.55rem;
    font-size: 1.08rem;
    color: var(--text);
}

.legal-content p,
.legal-content li {
    color: var(--text-soft);
    line-height: 1.76;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content p + ul {
    margin-top: 0.95rem;
}

.legal-content ul {
    margin: 0.8rem 0 1rem;
    padding-left: 1.2rem;
}

.legal-content ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.legal-content li + li {
    margin-top: 0.35rem;
}

.legal-content strong {
    color: var(--text);
}

.legal-content a {
    color: var(--secondary);
    text-underline-offset: 0.18em;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.split-layout,
.info-layout {
    display: grid;
    gap: 2rem 4rem;
}

.split-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
}

.story-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
    position: relative;
    z-index: 1;
}

.story-intro {
    position: sticky;
    top: 2rem;
}

.story-lead {
    max-width: 38rem;
    font-size: 1.08rem;
    color: var(--text);
}

.story-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.story-facts span {
    display: inline-flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 249, 241, 0.68);
    border: 1px solid rgba(196, 166, 116, 0.28);
    color: #5b4732;
    font-size: 0.92rem;
    box-shadow: 0 10px 30px rgba(57, 36, 15, 0.07);
}

.story-content {
    display: grid;
    gap: 1rem;
}

.story-card {
    padding: clamp(1.35rem, 2vw, 1.75rem);
    border-radius: var(--radius);
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid rgba(146, 112, 55, 0.16);
    box-shadow: 0 20px 44px rgba(57, 36, 15, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.story-card h3 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1.2;
    color: var(--text);
}

.story-card p {
    margin: 0;
}

.story-card p + p,
.story-card p + .story-list {
    margin-top: 1rem;
}

.story-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.story-list li {
    padding: 0.9rem 0 0.9rem 1rem;
    border-top: 1px solid rgba(146, 112, 55, 0.12);
    color: var(--text);
    position: relative;
}

.story-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.35rem;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 0 6px rgba(79, 112, 90, 0.12);
}

.section-copy {
    max-width: 42rem;
}

.section--story {
    position: relative;
    padding-bottom: 8rem;
    background: #eadcc8;
}

.shape-divider {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    line-height: 0;
    pointer-events: none;
}

.shape-divider svg {
    display: block;
    width: 100%;
    height: clamp(72px, 9vw, 132px);
}

.shape-divider--story {
    color: var(--bg);
}

.shape-divider--story path {
    fill: currentColor;
}

.section--details {
    padding-top: 4rem;
}

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

.info-block {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.info-list li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(146, 112, 55, 0.1);
    color: var(--text);
}

.final-cta {
    max-width: 52rem;
    text-align: center;
    margin: 0 auto;
}

.section--final {
    position: relative;
    padding: clamp(7rem, 12vw, 10rem) 0 clamp(5rem, 8vw, 7rem);
    background: var(--primary);
    color: var(--text-on-dark);
}

.section--final p {
    max-width: 40rem;
    margin-inline: auto;
    color: rgba(248, 243, 234, 0.86);
}

.section--final .eyebrow {
    color: rgba(248, 243, 234, 0.72);
}

.section--final h2 {
    max-width: 16ch;
    margin-inline: auto;
    color: #fff;
}

.section--final .hero__actions {
    justify-content: center;
}

.section--final .btn-primary {
    background: rgba(255, 255, 255, 0.96);
    color: var(--primary);
}

.section--final .btn-primary:hover,
.section--final .btn-primary:focus-visible {
    background: #fff;
}

.section--final .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
}

.section--final .btn-outline:hover,
.section--final .btn-outline:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.52);
}

.shape-divider--final {
    top: -1px;
    bottom: auto;
    color: var(--bg);
    transform: rotate(180deg);
}

.shape-divider--final path {
    fill: currentColor;
}

/* ── Gallery ───────────────────────────────────── */

.section--gallery {
    background: var(--bg);
    padding-bottom: 4rem;
}

.gallery-title {
    margin-bottom: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 0;
    padding: 0;
    background: transparent;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 14, 10, 0.2) 100%);
    opacity: 0;
    transition: opacity 300ms ease;
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item::before {
    content: attr(data-caption);
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
    background: rgba(18, 14, 10, 0.52);
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.45;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ── Lightbox ──────────────────────────────────── */

.lightbox[hidden] {
    display: none;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 4rem 1.5rem 2rem;
}

.lightbox__close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: color 200ms ease;
}

.lightbox__close:hover {
    color: #fff;
}

.lightbox__close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
    border-radius: 999px;
}

.lightbox__stage {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
}

.lightbox__image {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 300ms ease forwards;
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    line-height: 1;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 200ms ease, color 200ms ease;
    z-index: 3;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.lightbox__nav:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

.lightbox__nav--prev {
    left: clamp(0.75rem, 3vw, 2.5rem);
}

.lightbox__nav--next {
    right: clamp(0.75rem, 3vw, 2.5rem);
}

.lightbox__counter {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}

.lightbox__caption {
    margin: 1rem 0 0;
    max-width: min(100%, 60rem);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.6;
    text-align: center;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.25rem;
    overflow-y: auto;
    overflow-x: hidden;
    isolation: isolate;
}

.modal__backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at center, rgba(146, 112, 55, 0.16) 0%, rgba(27, 22, 16, 0.32) 38%, rgba(27, 22, 16, 0.62) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 820px);
    margin: auto 0;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.98) 0%, rgba(250, 243, 235, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: var(--radius);
    box-shadow: 0 36px 90px rgba(30, 18, 9, 0.28);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.modal__content {
    padding: clamp(1.5rem, 3vw, 2.75rem);
}

.modal__dialog:focus {
    outline: none;
}

.modal__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid rgba(146, 112, 55, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    font-size: 1.35rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(57, 36, 15, 0.08);
}

.modal__close:focus-visible {
    outline: 2px solid rgba(146, 112, 55, 0.72);
    outline-offset: 4px;
}

.modal__intro {
    max-width: 38rem;
    padding-right: 3.5rem;
}

.modal__intro h2 {
    max-width: 12ch;
}

.modal__intro p:last-child {
    margin: 0;
    color: var(--text-soft);
}

.contact-form {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}

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

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

.form-field label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
}

.form-field label span[aria-hidden="true"] {
    color: var(--primary);
}

.form-checkbox {
    display: grid;
    gap: 0.45rem;
    color: var(--text);
}

.form-hint {
    margin: -0.1rem 0 0.1rem;
    font-size: 0.86rem;
    line-height: 1.5;
    color: var(--text-soft);
}

.form-field input,
.form-field textarea {
    width: 100%;
    margin-top: 0.55rem;
    border: 1px solid rgba(146, 112, 55, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    padding: 0.95rem 1rem;
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(146, 112, 55, 0.42);
    box-shadow: 0 0 0 4px rgba(146, 112, 55, 0.12);
    background: #fff;
}

.form-field textarea {
    min-height: 9rem;
    resize: vertical;
}

.form-checkbox {
    margin: 0;
    grid-template-columns: auto 1fr;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(146, 112, 55, 0.12);
    cursor: pointer;
}

.form-checkbox input {
    width: 1.08rem;
    height: 1.08rem;
    margin: 0;
    appearance: none;
    border: 1.5px solid rgba(146, 112, 55, 0.34);
    border-radius: 0.34rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    position: relative;
    flex: 0 0 auto;
    cursor: pointer;
}

.form-checkbox input::after {
    content: "";
    position: absolute;
    inset: 0.17rem;
    border-radius: 0.18rem;
    background: var(--primary);
    transform: scale(0);
    transition: transform 160ms ease;
}

.form-checkbox input:checked {
    border-color: rgba(146, 112, 55, 0.66);
    background: rgba(255, 255, 255, 0.98);
}

.form-checkbox input:checked::after {
    transform: scale(1);
}

.form-checkbox input:focus-visible {
    outline: none;
    border-color: rgba(146, 112, 55, 0.56);
    box-shadow: 0 0 0 4px rgba(146, 112, 55, 0.12);
}

.form-checkbox__text {
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox--altcha {
    grid-template-columns: 1fr;
    justify-items: start;
}

.form-security__widget {
    justify-self: start;
    width: 100%;
}

.form-security__widget altcha-widget {
    display: block;
    --altcha-border-radius: 18px;
    --altcha-border-width: 0px;
    --altcha-max-width: 280px;
    --altcha-color-base: transparent;
    --altcha-color-border: rgba(146, 112, 55, 0.24);
    --altcha-color-border-focus: rgba(146, 112, 55, 0.56);
    --altcha-color-text: #241912;
    --altcha-color-active: #927037;
    --altcha-color-footer-bg: transparent;
    width: 100%;
}

.form-checkbox--altcha .altcha {
    border: 0;
    background: transparent;
    max-width: none;
}

.form-checkbox--altcha .altcha-main {
    gap: 0.6rem;
    padding: 0;
    justify-content: flex-start;
}

.form-checkbox--altcha .altcha-footer,
.form-checkbox--altcha .altcha-logo {
    display: none !important;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    color: var(--text-soft);
}

.form-status.is-success {
    color: var(--secondary-strong);
}

.form-status.is-error {
    color: #8a2a2a;
}

.is-invalid,
altcha-widget.is-invalid {
    border-color: #b33d3d !important;
    box-shadow: 0 0 0 3px rgba(179, 61, 61, 0.12);
    border-radius: 18px;
}

/* ── Keyframes ─────────────────────────────────── */

@keyframes heroKenBurns {
    0% {
        transform: scale(1.06) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.12) translate3d(-1%, -0.5%, 0);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    20% {
        opacity: 1;
    }
    70% {
        opacity: 1;
        transform: translateX(-50%) translateY(1rem);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(1.3rem);
    }
}

/* ── Responsive ────────────────────────────────── */

@media (max-width: 900px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-card {
        position: static;
    }

    .hero__glass {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

    .story-panel,
    .split-layout,
    .info-layout {
        grid-template-columns: 1fr;
    }

    .story-intro {
        position: static;
    }
}

@media (max-width: 760px) {
    .skip-link {
        left: 0.75rem;
        right: 0.75rem;
        width: fit-content;
        max-width: calc(100% - 1.5rem);
    }

    .section {
        padding: 4.5rem 0;
    }

    .page-hero__panel {
        width: min(100%, 42rem);
    }

    .page-hero__panel h1 {
        font-size: clamp(2.1rem, 9vw, 3.1rem);
    }

    .legal-content {
        padding: 1.25rem 1rem 1.5rem;
    }

    .site-footer__inner,
    .hero__actions,
    .form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero__actions .btn,
    .form-actions .btn,
    .form-actions .text-link {
        width: 100%;
    }

    .hero__layout {
        padding: 1.5rem 1.25rem 2rem;
    }

    .hero__glass {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
        padding: 0.85rem;
    }

    .hero__glass-item {
        min-height: 4.5rem;
        padding: 0.8rem 0.9rem;
    }

    .hero__scroll {
        display: none;
    }

    .modal {
        padding: 0.75rem;
    }

    .modal__content {
        padding: 1.25rem 1rem 1.1rem;
    }

    .modal__intro {
        padding-right: 2.75rem;
    }

    .form-checkbox--altcha {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .form-security__widget {
        justify-self: stretch;
    }

    .form-security__widget altcha-widget {
        --altcha-max-width: 100%;
        max-width: 100%;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .story-facts {
        gap: 0.5rem;
    }

    .story-facts span {
        font-size: 0.88rem;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .lightbox__nav {
        width: 2.75rem;
        height: 2.75rem;
        font-size: 1.8rem;
    }

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

@media (max-width: 560px) {
    .hero__text h1 {
        max-width: 6ch;
    }

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

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

    .hero__media {
        transform: none;
        animation: none;
    }

    .hero__content,
    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
