:root {
    --bg: #f7f6f3;
    --surface: #ffffff;
    --ink: #1c1c1c;
    --muted: #6b6b6b;
    --line: #e7e4dc;
    --accent: #8c6f4a;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.10);
    --shadow-sm: 0 14px 36px rgba(0, 0, 0, 0.08);
}

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

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.65;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-locked {
    overflow: hidden;
}

.mt-12 {
    margin-top: 12px;
}

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

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

a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

main {
    display: block;
}

.agb-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 28px 96px;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0 10px;
}

.logo {
    text-align: center;
    user-select: none;
}

.logo .brand {
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
}

.logo .sub {
    margin: 6px 0 0;
    font-size: 0.75rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    padding: 14px 0 18px;
    border-bottom: 1px solid var(--line);
    margin: 0 0 44px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    color: rgba(28, 28, 28, 0.78);
}

.site-nav a {
    padding: 8px 6px;
    border-bottom: 1px solid transparent;
}

.site-nav a[aria-current="page"] {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.hero {
    position: relative;
    min-height: 64vh;
    background: #0f0f0f;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 520px at 22% 60%, rgba(15, 15, 15, 0.84) 0%, rgba(15, 15, 15, 0.42) 55%, rgba(15, 15, 15, 0.10) 78%, rgba(15, 15, 15, 0.00) 100%),
        linear-gradient(180deg, rgba(15, 15, 15, 0.78) 0%, rgba(15, 15, 15, 0.60) 45%, rgba(15, 15, 15, 0.84) 100%);
}

.hero__inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 110px 28px 88px;
    color: #ffffff;
}

.hero__eyebrow {
    margin: 0 0 14px;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.80);
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
}

.hero__title {
    margin: 0;
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.62);
}

.hero__subtitle {
    margin: 18px 0 0;
    max-width: 52ch;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    user-select: none;
}

.btn:active {
    transform: translateY(1px);
}

.btn--primary {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.26);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(6px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.36);
    transform: translateY(-1px);
}

.section {
    padding: 84px 0;
}

.section--tight {
    padding: 64px 0;
}

.section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.kicker {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.65);
    margin: 0 0 10px;
}

h1, h2, h3 {
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.02em;
}

h2 {
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    line-height: 1.15;
}

p.lead {
    margin: 0;
    max-width: 68ch;
    color: rgba(28, 28, 28, 0.72);
    font-size: 1.02rem;
}

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

.card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid rgba(28, 28, 28, 0.10);
    box-shadow: var(--shadow-sm);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(28, 28, 28, 0.16);
}

.card__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.gallery {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111;
}

.gallery__track {
    height: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.gallery__track::-webkit-scrollbar {
    display: none;
}

.gallery__slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    position: relative;
}

.gallery__tap {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    display: block;
    cursor: zoom-in;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    cursor: zoom-in;
}

.gallery__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 15, 15, 0.35);
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.gallery:hover .gallery__btn,
.gallery:focus-within .gallery__btn {
    opacity: 1;
    pointer-events: auto;
}

.gallery__btn:hover {
    background: rgba(15, 15, 15, 0.48);
    border-color: rgba(255, 255, 255, 0.36);
}

.gallery__btn--prev {
    left: 12px;
}

.gallery__btn--next {
    right: 12px;
}

.gallery__btn::before {
    content: "";
    position: relative;
    width: 18px;
    height: 18px;
    background: center / 18px 18px no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M9%206l6%206-6%206%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.gallery__btn--prev::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M15%206l-6%206%206%206%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272.6%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.gallery__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    pointer-events: none;
}

.gallery__dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
    pointer-events: auto;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.gallery__dot.is-active {
    background: rgba(255, 255, 255, 0.92);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: none;
}

.lightbox.is-open {
    display: block;
}

.lightbox__backdrop {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(10, 10, 10, 0.42);
    backdrop-filter: blur(18px) saturate(1.05);
    -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.lightbox__ui {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.lightbox__track {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    outline: none;
}

.lightbox__track::-webkit-scrollbar {
    display: none;
}

.lightbox__slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 76px 18px 66px;
}

.lightbox__img {
    max-width: min(1200px, 100%);
    max-height: 86vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    background: #0f0f0f;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(15, 15, 15, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.lightbox__close::before,
.lightbox__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background: rgba(255, 255, 255, 0.92);
    transform-origin: center;
}

.lightbox__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(15, 15, 15, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.lightbox__btn:hover {
    background: rgba(15, 15, 15, 0.55);
    border-color: rgba(255, 255, 255, 0.34);
}

.lightbox__btn--prev {
    left: 14px;
}

.lightbox__btn--next {
    right: 14px;
}

.lightbox__btn::before {
    content: "";
    position: relative;
    width: 20px;
    height: 20px;
    background: center / 20px 20px no-repeat url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M9%206l6%206-6%206%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.lightbox__btn--prev::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%2024%2024%27%3E%3Cpath%20d%3D%27M15%206l-6%206%206%206%27%20fill%3D%27none%27%20stroke%3D%27%23fff%27%20stroke-width%3D%272.8%27%20stroke-linecap%3D%27round%27%20stroke-linejoin%3D%27round%27/%3E%3C/svg%3E");
}

.lightbox__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
}

.lightbox__dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    border: 0;
    padding: 0;
    cursor: pointer;
}

.lightbox__dot.is-active {
    background: rgba(255, 255, 255, 0.92);
}

.card__body {
    padding: 22px 22px 20px;
}

.card__title {
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.15;
    margin: 0;
}

.card__meta {
    margin: 10px 0 0;
    color: rgba(28, 28, 28, 0.66);
    font-size: 0.95rem;
}

.card__text {
    margin: 12px 0 0;
    color: rgba(28, 28, 28, 0.75);
}

.card__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn--outline {
    background: transparent;
    border-color: rgba(28, 28, 28, 0.20);
    color: var(--ink);
}

.btn--outline:hover {
    background: rgba(28, 28, 28, 0.04);
    transform: translateY(-1px);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.split__media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(28, 28, 28, 0.10);
    background: #111;
}

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

.split__text p {
    margin: 14px 0 0;
    color: rgba(28, 28, 28, 0.74);
    max-width: 66ch;
}

.panel {
    background: var(--surface);
    border: 1px solid rgba(28, 28, 28, 0.10);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

label {
    font-size: 0.85rem;
    color: rgba(28, 28, 28, 0.70);
}

input,
select,
textarea {
    font: inherit;
    color: var(--ink);
    background: rgba(247, 246, 243, 0.60);
    border: 1px solid rgba(28, 28, 28, 0.14);
    border-radius: 14px;
    padding: 14px 14px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(140, 111, 74, 0.55);
    box-shadow: 0 0 0 4px rgba(140, 111, 74, 0.14);
    background: rgba(247, 246, 243, 0.85);
}

.form-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.hint {
    margin: 0;
    color: rgba(28, 28, 28, 0.62);
    font-size: 0.92rem;
}

.footer {
    border-top: 1px solid var(--line);
    margin-top: 72px;
    padding: 46px 0 60px;
}

.footer__inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 26px;
}

.footer__brand {
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.footer__small {
    margin: 10px 0 0;
    color: rgba(28, 28, 28, 0.70);
}

.footer h4 {
    margin: 0 0 10px;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(28, 28, 28, 0.70);
}

.footer p {
    margin: 6px 0;
    color: rgba(28, 28, 28, 0.74);
}

.footer a {
    color: rgba(28, 28, 28, 0.78);
}

.footer a:hover {
    color: var(--ink);
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom));
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-banner__inner {
    max-width: 1120px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(28, 28, 28, 0.14);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    backdrop-filter: blur(10px);
}

.cookie-banner__text {
    margin: 0;
    color: rgba(28, 28, 28, 0.74);
    font-size: 0.92rem;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-banner .btn {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.88rem;
}

.cookie-banner .btn--primary {
    background: var(--ink);
    color: #ffffff;
    box-shadow: none;
}

.cookie-banner .btn--primary:hover {
    background: #101010;
    transform: translateY(-1px);
}

.cookie-banner .btn--outline {
    background: transparent;
    border-color: rgba(28, 28, 28, 0.20);
}

.cookie-banner .btn--outline:hover {
    background: rgba(28, 28, 28, 0.05);
}

.page-hero {
    padding: 22px 0 34px;
}

.page-hero h1 {
    font-family: "Fraunces", ui-serif, Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    line-height: 1.1;
    margin: 0;
}

.page-hero p {
    margin: 12px 0 0;
    color: rgba(28, 28, 28, 0.72);
    max-width: 70ch;
    font-size: 1.02rem;
}

.prose {
    background: var(--surface);
    border: 1px solid rgba(28, 28, 28, 0.10);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.prose h2 {
    margin-top: 30px;
    font-size: 1.35rem;
}

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

.prose p {
    margin: 12px 0;
    color: rgba(28, 28, 28, 0.76);
}

.prose ul {
    margin: 12px 0 0 18px;
    color: rgba(28, 28, 28, 0.76);
}

@media (max-width: 960px) {
    .split {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 720px) {
    .agb-container {
        padding: 28px 18px 78px;
    }

    .site-nav {
        flex-wrap: wrap;
        row-gap: 6px;
        gap: 14px;
        font-size: 0.72rem;
    }

    .site-nav a {
        padding: 10px 10px;
    }

    .bleed {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .hero__inner {
        padding: 86px 18px 66px;
    }

    .section {
        padding: 64px 0;
    }

    .section__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .panel {
        padding: 18px;
    }

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

    input,
    select,
    textarea {
        font-size: 16px;
        padding: 12px 12px;
        border-radius: 12px;
    }

    textarea {
        min-height: 120px;
    }

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

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

    .form-actions .hint {
        width: 100%;
        font-size: 0.9rem;
        order: 99;
    }

    .prose {
        padding: 18px;
    }

    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        justify-content: stretch;
    }

    .cookie-banner .btn {
        width: 100%;
    }

    .gallery__btn {
        opacity: 1;
        pointer-events: auto;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 420px) {
    .site-nav {
        letter-spacing: 0.12em;
    }

    .logo .brand {
        letter-spacing: 0.12em;
    }

    .logo .sub {
        letter-spacing: 0.18em;
    }
}
