:root {
    --bg: #0a0a0b;
    --bg-soft: #121214;
    --bg-card: #161618;
    --ink: #ece9e2;
    --muted: rgba(236, 233, 226, 0.6);
    --accent: #c8b287;
    --line: rgba(236, 233, 226, 0.14);
    --display: 'Jost', 'Century Gothic', Arial, sans-serif;
    --sans: 'Montserrat', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
}

h1, h2, h3 {
    font-family: var(--display);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-wrap: balance;
}

.display {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.heading {
    font-size: clamp(1.7rem, 3.4vw, 2.9rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lead {
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    color: var(--muted);
    font-weight: 300;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 38px;
    border: 1px solid rgba(236, 233, 226, 0.45);
    background: transparent;
    color: var(--ink);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn:hover {
    background: var(--ink);
    color: #0a0a0b;
    border-color: var(--ink);
}

.btn-solid {
    background: var(--ink);
    color: #0a0a0b;
    border-color: var(--ink);
}

.btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.btn-gold {
    border-color: rgba(200, 178, 135, 0.7);
    color: var(--accent);
}

.btn-gold:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0b;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 4vw;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo {
    font-family: var(--sans);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--ink);
    text-align: center;
    white-space: nowrap;
    padding-left: 0.42em;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 50%;
    color: rgba(236, 233, 226, 0.85);
    transition: border-color 0.3s ease, color 0.3s ease;
}

.icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.burger {
    display: flex;
    align-items: center;
    gap: 14px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
    justify-self: start;
    color: var(--ink);
}

.burger-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.burger-lines span {
    width: 26px;
    height: 1px;
    background: var(--ink);
    transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
}

.burger:hover .burger-lines span:nth-child(2) {
    width: 18px;
}

.burger-label {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(236, 233, 226, 0.85);
    transition: color 0.3s ease;
}

.burger:hover .burger-label {
    color: var(--accent);
}

.burger.active .burger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active .burger-lines span:nth-child(2) {
    opacity: 0;
}

.burger.active .burger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.site-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(8, 8, 9, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 7vh, 70px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site-menu.open {
    opacity: 1;
    visibility: visible;
}

.site-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 3vh, 26px);
}

.site-menu-links a {
    font-family: var(--display);
    font-size: clamp(1.5rem, 3.4vh, 2.1rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(236, 233, 226, 0.88);
    position: relative;
    padding: 2px 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease;
}

.site-menu.open .site-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.site-menu-links a:nth-child(1) { transition-delay: 0.05s; }
.site-menu-links a:nth-child(2) { transition-delay: 0.1s; }
.site-menu-links a:nth-child(3) { transition-delay: 0.15s; }
.site-menu-links a:nth-child(4) { transition-delay: 0.2s; }
.site-menu-links a:nth-child(5) { transition-delay: 0.25s; }
.site-menu-links a:nth-child(6) { transition-delay: 0.3s; }
.site-menu-links a:nth-child(7) { transition-delay: 0.35s; }

.site-menu-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.35s ease, left 0.35s ease;
}

.site-menu-links a:hover {
    color: var(--accent);
}

.site-menu-links a:hover::after {
    width: 100%;
    left: 0;
}

.site-menu-contact {
    display: flex;
    align-items: center;
    gap: clamp(20px, 4vw, 40px);
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
}

.site-menu.open .site-menu-contact {
    opacity: 1;
}

.site-menu-contact a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color 0.3s ease;
}

.site-menu-contact a:hover {
    color: var(--accent);
}

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.6) 0%, rgba(10, 10, 11, 0.35) 40%, rgba(10, 10, 11, 0.92) 100%);
}

.hero-content,
.tile-content,
.cta-band .container {
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.75);
}

.nowrap {
    white-space: nowrap;
}

.hero-content {
    position: relative;
    width: min(1200px, 92%);
    margin: 0 auto;
    padding-bottom: clamp(80px, 14vh, 150px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.hero-sub {
    max-width: 640px;
    color: rgba(236, 233, 226, 0.78);
    font-weight: 300;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-short {
    min-height: 72svh;
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, var(--accent), transparent);
    animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 1; }
}

.tiles {
    display: flex;
    flex-direction: column;
}

.tile {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.32) 0%, rgba(10, 10, 11, 0.1) 38%, rgba(10, 10, 11, 0.52) 74%, rgba(10, 10, 11, 0.88) 100%);
}

.tile-content {
    position: relative;
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 0 0 clamp(60px, 9vh, 110px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.tile:nth-child(even) .tile-content {
    align-items: flex-end;
    text-align: right;
}

.tile h2 {
    font-size: clamp(2.1rem, 4.6vw, 3.8rem);
    max-width: 14em;
}

.tile p {
    max-width: 520px;
    color: rgba(236, 233, 226, 0.75);
    font-weight: 300;
}

.section {
    padding: clamp(90px, 13vh, 160px) 0;
}

.section-soft {
    background: var(--bg-soft);
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto clamp(50px, 8vh, 90px);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 44px);
}

.step {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.step:hover .step-media img {
    transform: scale(1.05);
}

.step h3 {
    font-size: 1.6rem;
    letter-spacing: 0.04em;
}

.step p {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.98rem;
}

.step-num {
    font-family: var(--display);
    font-size: 0.95rem;
    color: var(--accent);
    letter-spacing: 0.2em;
}

.cta-band {
    position: relative;
    padding: clamp(90px, 14vh, 170px) 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 10, 11, 0.45) 0%, rgba(10, 10, 11, 0.72) 100%);
}

.cta-band .container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.prose {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.prose p {
    color: rgba(236, 233, 226, 0.78);
    font-weight: 300;
    font-size: clamp(1rem, 1.35vw, 1.13rem);
}

.prose .accent-line {
    font-family: var(--display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    color: var(--ink);
    line-height: 1.4;
}

.media-full {
    width: min(1400px, 100%);
    margin: 0 auto;
}

.media-full img {
    width: 100%;
    height: auto;
}

.media-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 36px);
    width: min(1400px, 96%);
    margin: 0 auto;
}

.media-duo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(14px, 2vw, 28px);
    width: min(1400px, 96%);
    margin: 0 auto;
}

.gallery-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 4;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: clamp(24px, 3vw, 44px);
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.car-card:hover {
    border-color: rgba(200, 178, 135, 0.5);
    transform: translateY(-4px);
}

.car-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

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

.car-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.car-tag {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

.car-body h3 {
    font-size: 1.55rem;
}

.car-body p {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.95rem;
    flex: 1;
}

.car-link {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1px solid var(--accent);
    align-self: flex-start;
    padding-bottom: 4px;
}

.contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.5vw, 32px);
    max-width: 820px;
    margin: 0 auto clamp(60px, 9vh, 100px);
}

.contact-action {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: clamp(30px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: border-color 0.35s ease, transform 0.35s ease;
}

.contact-action:hover {
    border-color: rgba(200, 178, 135, 0.55);
    transform: translateY(-4px);
}

.contact-action svg {
    color: var(--accent);
}

.contact-action h3 {
    font-size: 1.4rem;
}

.contact-action span {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

.form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

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

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

.field label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
}

.field label b {
    color: var(--accent);
    font-weight: 500;
}

.field input,
.field textarea,
.field select {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(236, 233, 226, 0.3);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    padding: 10px 2px;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.field select {
    appearance: none;
    cursor: pointer;
}

.field select option {
    background: var(--bg-soft);
    color: var(--ink);
}

.field textarea {
    resize: vertical;
    min-height: 120px;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--accent);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 18px;
    font-weight: 300;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.captcha-row {
    display: flex;
    align-items: flex-end;
    gap: 18px;
}

.captcha-question {
    font-family: var(--display);
    font-size: 1.3rem;
    color: var(--ink);
    white-space: nowrap;
    padding-bottom: 8px;
}

.captcha-row .field {
    flex: 1;
}

.field-error {
    display: none;
    color: #d98c8c;
    font-size: 0.82rem;
    font-weight: 300;
}

.field-error.show {
    display: block;
}

.form-success {
    display: none;
    border: 1px solid rgba(200, 178, 135, 0.5);
    padding: 40px;
    text-align: center;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.form-success.show {
    display: flex;
}

.showroom-box {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: clamp(40px, 6vw, 70px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.showroom-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #070708;
    padding: clamp(60px, 8vh, 90px) 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(30px, 4vw, 60px);
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand .logo {
    text-align: left;
    font-size: 1rem;
}

.footer-brand p {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 22px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: rgba(236, 233, 226, 0.7);
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 300;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(20px);
    width: min(680px, 92%);
    background: rgba(18, 18, 20, 0.97);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    padding: 26px 30px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cookie-banner p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(236, 233, 226, 0.8);
}

.cookie-banner p a {
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 178, 135, 0.4);
}

.cookie-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-actions .btn {
    padding: 12px 26px;
    font-size: 10px;
}

.cursor-ring {
    display: none;
}

@media (hover: hover) and (pointer: fine) {
    * {
        cursor: none !important;
    }

    input,
    textarea,
    select {
        cursor: auto !important;
    }

    .cursor-ring {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border: 1px solid rgba(236, 233, 226, 0.75);
        border-radius: 50%;
        pointer-events: none;
        z-index: 500;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    }

    .cursor-ring.grow {
        width: 34px;
        height: 34px;
        border-color: rgba(200, 178, 135, 0.9);
        background: rgba(200, 178, 135, 0.08);
    }

    .cursor-ring.hidden {
        opacity: 0;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.page-intro {
    padding-top: clamp(140px, 20vh, 220px);
}

.auth-wrap {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 4vw 60px;
}

.auth-card {
    width: min(440px, 100%);
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: clamp(36px, 5vw, 56px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    text-align: center;
}

.auth-card h1 {
    font-size: 1.9rem;
}

.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 22px;
    text-align: left;
}

.auth-error {
    display: none;
    color: #d98c8c;
    font-size: 0.85rem;
    font-weight: 300;
}

.auth-error.show {
    display: block;
}

.auth-note {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
}

.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    background: var(--accent);
    color: #0a0a0b;
    text-align: center;
    padding: 11px 52px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.announce-bar button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #0a0a0b;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
}

.announce-modal {
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(5, 5, 6, 0.75);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.announce-modal-box {
    width: min(520px, 100%);
    background: var(--bg-card);
    border: 1px solid rgba(200, 178, 135, 0.45);
    padding: clamp(34px, 5vw, 54px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.announce-modal-box h3 {
    font-size: 1.6rem;
}

.announce-modal-box p {
    color: rgba(236, 233, 226, 0.82);
    font-weight: 300;
    white-space: pre-line;
}

.panel-wrap {
    padding: 140px 0 80px;
    min-height: 100svh;
}

.panel-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--line);
    margin-bottom: 44px;
}

.panel-tab {
    background: none;
    border: 0;
    border-bottom: 1px solid transparent;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 18px;
    cursor: pointer;
    margin-bottom: -1px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.panel-tab:hover {
    color: var(--ink);
}

.panel-tab.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.panel-tab-section {
    display: none;
}

.panel-tab-section.active {
    display: block;
}

.panel-card {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 640px;
}

.panel-card h3 {
    font-size: 1.35rem;
}

.panel-card .hint {
    font-size: 0.82rem;
    color: var(--muted);
    font-weight: 300;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(236, 233, 226, 0.85);
}

.check-row input {
    width: 17px;
    height: 17px;
    accent-color: var(--accent);
    cursor: pointer;
}

.panel-saved {
    display: none;
    color: #9ec89e;
    font-size: 0.85rem;
    font-weight: 300;
}

.panel-saved.show {
    display: block;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.panel-notice {
    border: 1px solid rgba(200, 178, 135, 0.4);
    background: rgba(200, 178, 135, 0.06);
    padding: 18px 24px;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(236, 233, 226, 0.85);
    margin-bottom: 40px;
}

.panel-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

.panel-form {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 120px;
}

.panel-form h3 {
    font-size: 1.3rem;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.panel-item {
    display: grid;
    grid-template-columns: 130px 1fr auto;
    gap: 20px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 16px;
}

.panel-item img {
    width: 130px;
    height: 82px;
    object-fit: cover;
}

.panel-item h4 {
    font-family: var(--display);
    font-size: 1.15rem;
    font-weight: 400;
}

.panel-item small {
    color: var(--muted);
    font-weight: 300;
    display: block;
    font-size: 0.8rem;
}

.panel-item-actions {
    display: flex;
    gap: 10px;
}

.panel-section {
    margin-top: 70px;
}

.panel-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.panel-section-head h2 {
    font-size: 1.7rem;
}

.msg-item {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msg-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
}

.msg-top h4 {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 400;
}

.msg-date {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
    letter-spacing: 0.08em;
}

.msg-item p {
    color: rgba(236, 233, 226, 0.8);
    font-weight: 300;
    font-size: 0.95rem;
}

.msg-meta {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 400;
}

.msg-item .mini-btn {
    align-self: flex-start;
    margin-top: 8px;
}

.panel-empty {
    border: 1px dashed var(--line);
    padding: 40px;
    text-align: center;
    color: var(--muted);
    font-weight: 300;
    font-size: 0.95rem;
}

.mini-btn {
    background: none;
    border: 1px solid var(--line);
    color: var(--muted);
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.mini-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.mini-btn.danger:hover {
    border-color: #d98c8c;
    color: #d98c8c;
}

.legal-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin-top: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-weight: 300;
    font-size: 0.97rem;
}

.legal-content ul {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.soon-wrap {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.soon-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 11, 0.88);
}

.soon-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    width: min(680px, 92%);
    padding: 140px 0 80px;
}

.tile-content,
.tile:nth-child(even) .tile-content {
    align-items: center;
    text-align: center;
}

.tile .label {
    align-self: center;
}

.tile h2 {
    max-width: 18em;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 300;
    color: var(--ink);
}

.tile p {
    max-width: 580px;
    color: rgba(236, 233, 226, 0.9);
}

.tile.lead {
    min-height: 100svh;
}

.subhero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 140px 6vw clamp(60px, 9vh, 110px);
}

.subhero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.52) 0%, rgba(10, 10, 11, 0.16) 38%, rgba(10, 10, 11, 0.78) 80%, var(--bg) 100%);
}

.subhero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1000px;
}

.subhero h1 {
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.08em;
    font-size: clamp(2rem, 4.6vw, 3.9rem);
}

.editorial {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editorial-text {
    width: min(760px, 90%);
    margin: 0 auto;
    padding: clamp(58px, 9vh, 116px) 0;
    text-align: justify;
    hyphens: auto;
}

.editorial-text p {
    color: rgba(236, 233, 226, 0.82);
    font-weight: 300;
    font-size: clamp(1rem, 1.35vw, 1.14rem);
    margin-bottom: 22px;
}

.editorial-text p:last-child {
    margin-bottom: 0;
}

.editorial-title {
    width: min(920px, 90%);
    margin: 0 auto;
    padding: clamp(54px, 8vh, 104px) 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.08em;
    font-size: clamp(1.7rem, 3.6vw, 3rem);
    line-height: 1.3;
    color: var(--ink);
}

.editorial-media {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.editorial-media img {
    width: 100%;
    height: clamp(320px, 60vh, 700px);
    object-fit: cover;
    object-position: center 45%;
}

.editorial-media.tall img {
    height: clamp(420px, 82vh, 900px);
}

.editorial-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.editorial-duo img {
    width: 100%;
    height: clamp(320px, 56vh, 680px);
    object-fit: cover;
    object-position: center 45%;
}

.cinema {
    position: relative;
    min-height: 82svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding: 100px 6vw;
}

.cinema::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.6), rgba(10, 10, 11, 0.5));
}

.cinema-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.cinema-inner p {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--ink);
}

.section-head.left {
    align-items: flex-start;
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.heading-upper {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.heading-quiet {
    display: block;
    margin-top: 0.55em;
    font-size: 0.5em;
    font-weight: 200;
    letter-spacing: 0.14em;
    color: rgba(236, 233, 226, 0.68);
}

.newsletter-modal {
    position: fixed;
    inset: 0;
    z-index: 260;
    background: rgba(5, 5, 6, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.newsletter-modal.show {
    opacity: 1;
    visibility: visible;
}

.newsletter-box {
    position: relative;
    width: min(520px, 100%);
    background: linear-gradient(180deg, #17161a, #0d0d0f);
    border: 1px solid rgba(200, 178, 135, 0.4);
    padding: clamp(40px, 5vw, 62px) clamp(28px, 5vw, 58px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateY(22px);
    transition: transform 0.55s ease;
}

.newsletter-modal.show .newsletter-box {
    transform: translateY(0);
}

.newsletter-box .logo {
    font-size: 0.9rem;
    color: var(--accent);
}

.newsletter-box h3 {
    text-transform: uppercase;
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.newsletter-box p {
    color: rgba(236, 233, 226, 0.72);
    font-weight: 300;
    font-size: 0.98rem;
    max-width: 40ch;
}

.newsletter-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: 0;
    color: var(--muted);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.newsletter-close:hover {
    color: var(--accent);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-top: 6px;
}

.newsletter-form input[type="email"] {
    background: transparent;
    border: 1px solid rgba(236, 233, 226, 0.28);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 300;
    padding: 15px 18px;
    text-align: center;
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent);
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    font-size: 0.74rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
}

.newsletter-consent input {
    margin-top: 3px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.newsletter-consent a {
    color: var(--accent);
    border-bottom: 1px solid rgba(200, 178, 135, 0.4);
}

.newsletter-error {
    display: none;
    color: #d98c8c;
    font-size: 0.82rem;
    font-weight: 300;
}

.newsletter-error.show {
    display: block;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.subscriber-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 16px 20px;
}

.subscriber-item span {
    font-weight: 300;
    font-size: 0.95rem;
    word-break: break-all;
}

.subscriber-item small {
    color: var(--muted);
    font-size: 0.78rem;
    display: block;
    margin-top: 4px;
}

.news-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 260;
    background: rgba(5, 5, 6, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
}

.news-preview-modal.show {
    display: flex;
}

.news-preview-box {
    width: min(680px, 100%);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--line);
}

.news-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
}

.news-preview-head h3 {
    font-size: 1.1rem;
}

.news-preview-frame {
    border: 0;
    width: 100%;
    flex: 1;
    min-height: 60vh;
    background: #0a0a0b;
}

.media-preview {
    border: 1px solid var(--line);
    background: var(--bg-card);
    padding: 16px;
}

.media-preview img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 12px;
}

.media-preview small {
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.stagger {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: clamp(40px, 7vh, 90px) 0 clamp(50px, 9vh, 110px);
    display: flex;
    align-items: flex-start;
    gap: clamp(18px, 2.4vw, 38px);
}

.stagger-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(18px, 2.4vw, 38px);
}

.stagger-col:nth-child(2) {
    margin-top: clamp(46px, 9vh, 104px);
}

.stagger-item img {
    width: 100%;
    height: auto;
    display: block;
}

.stagger-caption {
    display: block;
    margin-top: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
}

.site-menu-links a {
    font-size: clamp(1.05rem, 2.1vh, 1.35rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 300;
}

.tls-loader {
    position: fixed;
    inset: 0;
    z-index: 400;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.tls-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.tls-loader-mark {
    position: relative;
    width: 92px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tls-loader-mark img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    mix-blend-mode: screen;
    animation: markPulse 2s ease-in-out infinite;
}

.tls-loader-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(200, 178, 135, 0.25);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: ringSpin 1.1s linear infinite;
}

@keyframes ringSpin {
    to { transform: rotate(360deg); }
}

@keyframes markPulse {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 1; }
}

.footer-signet {
    display: flex;
    justify-content: flex-start;
    margin-top: 4px;
}

.footer-signet img {
    display: block;
    width: auto;
    height: 36px;
    mix-blend-mode: screen;
    opacity: 0.85;
}

.abstract-band {
    position: relative;
    overflow: hidden;
    padding: clamp(110px, 20vh, 240px) 6vw;
    text-align: center;
    background: #0b0b0c;
}

.abstract-bg {
    position: absolute;
    inset: -60px;
    background-size: cover;
    background-position: center;
    filter: blur(42px);
    opacity: 0.5;
    z-index: 0;
}

.abstract-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(200, 178, 135, 0.16), transparent 62%);
    z-index: 1;
}

.abstract-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.abstract-quote {
    font-family: var(--display);
    font-weight: 300;
    font-size: clamp(1.6rem, 3.4vw, 2.9rem);
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-wrap: balance;
}

.mobile-dock {
    display: none;
}

.mobile-dock a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
    color: rgba(236, 233, 226, 0.85);
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-dock a svg {
    width: 20px;
    height: 20px;
}

.mobile-dock a:active {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .panel-grid {
        grid-template-columns: 1fr;
    }

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

    .panel-form {
        position: static;
    }

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

@media (max-width: 860px) {
    .burger-label {
        display: none;
    }

    .stagger {
        width: 100%;
        flex-direction: column;
        gap: 26px;
        padding: clamp(30px, 6vh, 60px) 0;
    }

    .stagger-col {
        margin-top: 0 !important;
        gap: 26px;
    }

    .stagger-item {
        width: 84%;
    }

    .stagger-item:nth-child(odd) {
        align-self: flex-start;
    }

    .stagger-item:nth-child(even) {
        align-self: flex-end;
    }

    .stagger-caption {
        padding: 14px 5vw 40px;
        margin-top: 0;
        text-align: center;
    }

    .mobile-dock {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 130;
        display: flex;
        background: rgba(10, 10, 11, 0.94);
        backdrop-filter: blur(14px);
        border-top: 1px solid var(--line);
    }

    body {
        padding-bottom: 64px;
    }

    .cookie-banner {
        bottom: 80px;
    }

    .header-inner {
        padding: 18px 4vw;
        gap: 10px;
    }

    .logo {
        font-size: 0.82rem;
        letter-spacing: 0.26em;
        padding-left: 0.26em;
    }

    .burger {
        padding: 8px 8px 8px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .media-duo {
        grid-template-columns: 1fr;
    }

    .media-duo img {
        aspect-ratio: 4 / 3;
    }

    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .gallery-strip img {
        aspect-ratio: 4 / 3;
    }

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

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

    .tile {
        min-height: 100svh;
    }

    .editorial-duo {
        grid-template-columns: 1fr;
    }

    .editorial-text {
        text-align: left;
        hyphens: none;
    }

    .step-media {
        aspect-ratio: 16 / 10;
    }

    .panel-item {
        grid-template-columns: 1fr;
    }

    .panel-item img {
        width: 100%;
        height: 160px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        gap: 20px;
    }

    .btn {
        padding: 14px 28px;
    }
}
