:root {
    --bg: #050505;
    --bg-elevated: #0d0d0d;
    --bg-panel: rgba(255, 255, 255, 0.045);
    --bg-panel-strong: rgba(255, 255, 255, 0.075);
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(201, 162, 79, 0.4);
    --text: #f5f1e8;
    --text-soft: rgba(245, 241, 232, 0.75);
    --text-muted: rgba(245, 241, 232, 0.5);
    --gold: #c9a24f;
    --gold-soft: #e6c980;
    --gold-deep: #8a6b2d;
    --shadow-lg: 0 32px 100px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.35);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 12px;
    --container: min(1440px, calc(100vw - 64px));
    --viewport-zoom-factor: 0.72;
    --header-height: 92px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.24s var(--ease);
    --transition: 0.45s var(--ease);
    --transition-slow: 0.9s var(--ease);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    zoom: 0.72;
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

@media (max-width: 1080px) {
    html {
        zoom: 1;
        overflow-x: hidden;
    }
}

body {
    font-family: "Jost", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(201, 162, 79, 0.12), transparent 30%),
        radial-gradient(circle at 85% 15%, rgba(201, 162, 79, 0.08), transparent 20%),
        linear-gradient(180deg, #050505 0%, #070707 48%, #050505 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 110px 110px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    opacity: 0.45;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.025), transparent 25%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.018), transparent 30%);
    opacity: 0.7;
    z-index: -1;
}

body.menu-open {
    overflow: hidden;
}

body.cursor-enabled,
body.cursor-enabled a,
body.cursor-enabled button,
body.cursor-enabled .tilt {
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
select,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
    background: none;
    color: inherit;
}

img,
svg {
    display: block;
}

::selection {
    background: rgba(201, 162, 79, 0.28);
    color: var(--text);
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    color: var(--gold-soft);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-head-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: end;
    max-width: none;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 0.95;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.section-description {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 1.06rem;
    line-height: 1.8;
    max-width: 700px;
}

.section-description-right {
    justify-self: end;
    max-width: 520px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    letter-spacing: 0.18em;
    font-size: 0.78rem;
    text-transform: uppercase;
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover {
    transform: translateY(-4px);
}

.btn-gold {
    color: #111;
    background: linear-gradient(135deg, var(--gold-soft), var(--gold), #a67e31);
    box-shadow: 0 18px 45px rgba(201, 162, 79, 0.28);
}

.btn-gold::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 60%);
}

.btn-gold:hover::before {
    opacity: 1;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    backdrop-filter: blur(14px);
}

.btn-ghost:hover {
    border-color: rgba(201, 162, 79, 0.45);
    background: rgba(255, 255, 255, 0.075);
}

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 1200;
    opacity: 0;
    transition: opacity 0.12s ease;
    mix-blend-mode: screen;
    will-change: transform;
}

.cursor.visible {
    opacity: 1;
}

.cursor-dot,
.cursor-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-soft);
    box-shadow: 0 0 12px rgba(201, 162, 79, 0.8);
}

.cursor-ring {
    border: 1px solid rgba(201, 162, 79, 0.78);
    background: radial-gradient(circle, rgba(201, 162, 79, 0.2) 0%, rgba(201, 162, 79, 0.05) 58%, transparent 72%);
    box-shadow: 0 0 24px rgba(201, 162, 79, 0.18);
    transition: transform 0.1s ease, border-color 0.1s ease, background-color 0.1s ease, box-shadow 0.1s ease;
}

.cursor.active .cursor-ring {
    transform: scale(1.55);
    border-color: rgba(230, 201, 128, 0.95);
    background: radial-gradient(circle, rgba(201, 162, 79, 0.28) 0%, rgba(201, 162, 79, 0.08) 58%, transparent 76%);
    box-shadow: 0 0 28px rgba(201, 162, 79, 0.28);
}

/* ───────────────── LOADING SCREEN ───────────────── */

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    place-items: center;
    background: #050505;
    overflow: hidden;
    transition: transform 1.15s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.6s ease 0.72s;
}

.loading-screen.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Subtle ambient gold glow */
.ls-veil {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(201, 162, 79, 0.07) 0%, transparent 70%),
        radial-gradient(circle at 16% 84%, rgba(201, 162, 79, 0.025), transparent 36%),
        radial-gradient(circle at 84% 14%, rgba(201, 162, 79, 0.025), transparent 32%);
    pointer-events: none;
}

/* Corner bracket decorations */
.ls-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0;
    animation: lsCornerReveal 0.8s var(--ease) 1.45s forwards;
}

.ls-corner-tl {
    top: 32px;
    left: 32px;
    border-top: 1px solid rgba(201, 162, 79, 0.5);
    border-left: 1px solid rgba(201, 162, 79, 0.5);
}

.ls-corner-tr {
    top: 32px;
    right: 32px;
    border-top: 1px solid rgba(201, 162, 79, 0.5);
    border-right: 1px solid rgba(201, 162, 79, 0.5);
}

.ls-corner-bl {
    bottom: 32px;
    left: 32px;
    border-bottom: 1px solid rgba(201, 162, 79, 0.5);
    border-left: 1px solid rgba(201, 162, 79, 0.5);
}

.ls-corner-br {
    bottom: 32px;
    right: 32px;
    border-bottom: 1px solid rgba(201, 162, 79, 0.5);
    border-right: 1px solid rgba(201, 162, 79, 0.5);
}

@keyframes lsCornerReveal {
    to { opacity: 1; }
}

/* Center composition */
.ls-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    padding: 0 32px;
}

/* "Private Atelier" eyebrow */
.ls-eyebrow {
    opacity: 0;
    font-size: 0.7rem;
    letter-spacing: 0.44em;
    padding-left: 0.44em;
    text-transform: uppercase;
    color: rgba(201, 162, 79, 0.75);
    animation: lsFadeSlideUp 1s var(--ease) 0.06s forwards;
}

/* Ornamental rule with diamond */
.ls-rule-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: lsFadeIn 0.5s ease 0.26s forwards;
}

.ls-rule {
    display: block;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lsRuleExpand 1.1s cubic-bezier(0.4, 0, 0.2, 1) 0.48s forwards;
}

@keyframes lsRuleExpand {
    to { width: 68px; }
}

.ls-diamond {
    width: 5px;
    height: 5px;
    background: var(--gold-soft);
    transform: rotate(45deg) scale(0);
    animation: lsDiamondPop 0.6s var(--ease) 0.98s forwards;
}

@keyframes lsDiamondPop {
    to { transform: rotate(45deg) scale(1); }
}

/* MANSORY — letter-by-letter cinematic reveal */
.ls-logotype {
    display: flex;
    align-items: flex-end;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.6rem, 13.5vw, 9.5rem);
    font-weight: 300;
    letter-spacing: 0.32em;
    color: var(--text);
    line-height: 1;
    overflow: hidden;
    padding-left: 0.32em;
}

.ls-logotype span {
    display: inline-block;
    opacity: 0;
    transform: translateY(58%) skewY(6deg);
    animation: lsLetterReveal 0.9s var(--ease) calc(0.6s + var(--i) * 0.08s) forwards;
}

@keyframes lsLetterReveal {
    to {
        opacity: 1;
        transform: translateY(0) skewY(0deg);
    }
}

/* Micro tagline */
.ls-tagline {
    opacity: 0;
    font-size: 0.6rem;
    letter-spacing: 0.34em;
    padding-left: 0.34em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.26);
    margin-top: -4px;
    animation: lsFadeSlideUp 1s var(--ease) 1.42s forwards;
}

@keyframes lsFadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lsFadeIn {
    to { opacity: 1; }
}

@media (max-width: 560px) {
    .ls-corner {
        width: 22px;
        height: 22px;
    }

    .ls-corner-tl { top: 22px; left: 22px; }
    .ls-corner-tr { top: 22px; right: 22px; }
    .ls-corner-bl { bottom: 22px; left: 22px; }
    .ls-corner-br { bottom: 22px; right: 22px; }

    .ls-center {
        width: min(320px, calc(100vw - 48px));
        gap: 16px;
        padding: 34px 18px 30px;
        border: 1px solid rgba(201, 162, 79, 0.12);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
            radial-gradient(circle at top, rgba(201, 162, 79, 0.06), transparent 58%);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.38);
    }

    .ls-logotype {
        position: relative;
        width: 100%;
        min-height: 60px;
        justify-content: center;
        align-items: center;
        font-size: 0;
        letter-spacing: 0;
        gap: 0;
        padding-left: 0;
        overflow: visible;
    }

    .ls-logotype::before {
        content: "RAM KFZ";
        display: block;
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.72rem, 13vw, 3.7rem);
        font-weight: 300;
        letter-spacing: 0.22em;
        padding-left: 0;
        line-height: 1;
        color: var(--text);
        opacity: 0;
        transform: translateY(16px);
        animation: lsFadeSlideUp 0.95s var(--ease) 0.6s forwards;
        white-space: nowrap;
    }

    .ls-logotype span {
        display: none;
    }

    .ls-rule-wrap {
        gap: 10px;
    }

    .ls-rule {
        animation-name: lsRuleExpandMobile;
    }

    @keyframes lsRuleExpandMobile {
        to { width: 44px; }
    }

    .ls-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.32em;
        padding-left: 0;
    }

    .ls-tagline {
        max-width: 20ch;
        font-size: 0.54rem;
        line-height: 1.7;
        letter-spacing: 0.24em;
        padding-left: 0;
        margin-top: 2px;
    }
}

/* ───────────────── END LOADING SCREEN ───────────────── */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: background-color var(--transition-fast), backdrop-filter var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.header.is-scrolled {
    background: rgba(7, 7, 7, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.header-inner {
    width: var(--container);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.2em;
}

.logo-icon {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 79, 0.4);
    background: rgba(201, 162, 79, 0.08);
    color: var(--gold-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
}

.logo-word {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.55rem;
    color: var(--gold-soft);
    white-space: nowrap;
}

.nav {
    position: relative;
    justify-self: center;
}

.nav-list {
    position: relative;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 22px 46px rgba(0, 0, 0, 0.24);
}

.nav-list::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(201, 162, 79, 0.08), transparent 28%, transparent 72%, rgba(201, 162, 79, 0.05));
}

.nav-list > li {
    position: relative;
    z-index: 1;
}

.nav-link {
    position: relative;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
    padding: 11px 16px;
    border-radius: 999px;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top center, rgba(201, 162, 79, 0.22), rgba(201, 162, 79, 0.04) 62%, transparent 75%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 7px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-fast);
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text);
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
    opacity: 1;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    transform: scaleX(1);
}

.nav-link-arrow::before {
    content: "+";
    margin-right: 6px;
    color: var(--gold);
}

.mega-drop {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translate(-50%, 12px);
    min-width: 460px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 30px 32px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.96), rgba(7, 7, 7, 0.98));
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.44);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
}

.has-mega:hover .mega-drop,
.has-mega:focus-within .mega-drop {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.mega-col h5 {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 16px;
}

.mega-col a {
    display: block;
    padding: 8px 0;
    color: var(--text-soft);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.mega-col a:hover {
    color: var(--text);
    transform: translateX(6px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid rgba(201, 162, 79, 0.34);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    display: inline-flex;
    align-items: center;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: var(--gold-soft);
    transition: border-color var(--transition-fast), background-color var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    transform: translateY(-3px);
    background: rgba(201, 162, 79, 0.08);
    border-color: rgba(201, 162, 79, 0.5);
}

.hamburger {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 79, 0.28);
    display: none;
    place-items: center;
    background: rgba(201, 162, 79, 0.04);
    color: var(--gold-soft);
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hamburger:hover {
    background: rgba(201, 162, 79, 0.11);
    border-color: rgba(201, 162, 79, 0.55);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.56);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
    z-index: 1005;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(460px, 100vw);
    height: 100vh;
    padding: 0 28px 28px;
    background: rgba(6, 6, 6, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition), visibility var(--transition-fast);
    visibility: hidden;
    z-index: 1010;
}

.mobile-menu-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-menu-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    letter-spacing: 0.22em;
    color: var(--gold-soft);
    pointer-events: none;
}

.mobile-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}

.mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 79, 0.28);
    background: rgba(201, 162, 79, 0.06);
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
    flex-shrink: 0;
}

.mobile-close:hover {
    background: rgba(201, 162, 79, 0.14);
    border-color: rgba(201, 162, 79, 0.55);
}

body.menu-open .hamburger {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
}

.mobile-nav {
    margin-top: 28px;
    overflow-y: auto;
    flex: 1;
}

.mobile-nav ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.mobile-link {
    display: block;
    padding: 16px 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 8vw, 3.4rem);
    line-height: 0.95;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-footer {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.mobile-socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.hero {
    position: relative;
    height: calc(100vh / 0.72);
    min-height: calc(760px / 0.72);
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.56)),
        radial-gradient(circle at 20% 30%, rgba(201, 162, 79, 0.1), transparent 26%),
        url("images/car1.webp") center center / cover no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.04);
    transition: transform 6.5s var(--ease), filter 1.1s var(--ease);
    filter: saturate(1.02) contrast(1.03) brightness(0.88);
    will-change: transform;
    opacity: 0;
    transition: transform 6.5s var(--ease), filter 1.1s var(--ease), opacity 0.8s ease;
}

.hero.hero-video-ready .hero-video {
    opacity: 1;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 15%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.78) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.62) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.58) 75%, rgba(0, 0, 0, 0.84));
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 18vw 18vw;
    opacity: 0.13;
    mask-image: linear-gradient(180deg, transparent, black 20%, black 80%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: var(--container);
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: var(--header-height);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 26px;
    animation: fadeRise 1s var(--ease) 0.15s both;
}

.hero-badge-line {
    width: 58px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.9), transparent);
}

.hero-title {
    display: grid;
    gap: 0;
    font-family: "Cormorant Garamond", serif;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-title-name {
    font-size: clamp(4rem, 8vw, 9rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: 0.22em;
    padding-left: 0.22em;
    text-transform: uppercase;
    color: var(--text);
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.hero-title-rule {
    display: block;
    width: min(240px, 52%);
    height: 1px;
    margin: 22px 0 20px;
    background: linear-gradient(90deg, var(--gold-soft), rgba(201, 162, 79, 0.18), transparent);
    opacity: 0;
    animation: lsFadeIn 0.9s var(--ease) 0.42s forwards;
}

.hero-title-desc {
    font-size: clamp(1.6rem, 2.6vw, 3rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--gold-soft);
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-title-line {
    display: block;
    opacity: 0;
    transform: translateY(56px);
    animation: fadeRise 1s var(--ease) forwards;
    text-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.hero-title-line:nth-child(1) { animation-delay: 0.22s; }
.hero-title-line:nth-child(2) { animation-delay: 0.34s; }
.hero-title-line:nth-child(3) { animation-delay: 0.46s; }

.hero-title-line-italic {
    font-style: italic;
    color: var(--gold-soft);
}

.hero-subline {
    max-width: 620px;
    margin-top: 26px;
    color: var(--text-soft);
    font-size: 1.14rem;
    letter-spacing: 0.18em;
    line-height: 1.45;
    text-transform: uppercase;
    animation: fadeRise 1s var(--ease) 0.6s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
    animation: fadeRise 1s var(--ease) 0.72s both;
}

.hero-scroll-hint {
    position: absolute;
    left: max(32px, calc((100vw - var(--container)) / 2));
    bottom: 180px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero-scroll-track {
    position: relative;
    width: 1px;
    height: 78px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.hero-scroll-dot {
    position: absolute;
    top: 0;
    left: 50%;
    width: 5px;
    height: 18px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--gold-soft), transparent);
    animation: scrollHint 1.7s ease-in-out infinite;
}

@keyframes scrollHint {
    0% { transform: translate(-50%, 0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(-50%, 62px); opacity: 0; }
}

@keyframes fadeRise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticker {
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    z-index: 4;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.ticker::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.34), transparent);
    pointer-events: none;
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    padding: 22px 0 38px;
    width: max-content;
    animation: tickerMove 32s linear infinite;
}

.ticker-track span,
.ticker-track em {
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-size: 1rem;
    font-style: normal;
}

.ticker-track em {
    color: var(--gold-soft);
}

@keyframes tickerMove {
    to {
        transform: translateX(-50%);
    }
}

.search-section,
.atelier-section,
.gallery-section,
.craft-section,
.news-section,
.about-section,
.contact-section {
    padding: 140px 0;
}

.search-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(201, 162, 79, 0.14), transparent 24%),
        radial-gradient(circle at 86% 78%, rgba(145, 96, 41, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(11, 10, 8, 0.98), rgba(17, 12, 8, 0.9) 45%, rgba(8, 8, 8, 0.98));
}

.search-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 18px;
    padding: 28px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(201, 162, 79, 0.08), rgba(255, 255, 255, 0.05) 24%, rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
}

.search-field {
    display: grid;
    gap: 12px;
}

.search-field label {
    color: var(--gold-soft);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.search-select {
    min-height: 62px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
}

.search-select:focus {
    border-color: rgba(201, 162, 79, 0.42);
    box-shadow: 0 0 0 4px rgba(201, 162, 79, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.search-submit {
    align-self: end;
}

.stats-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stats-background,
.quote-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 50%, rgba(201, 162, 79, 0.18), transparent 26%),
        radial-gradient(circle at 82% 24%, rgba(112, 44, 29, 0.18), transparent 24%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(8, 7, 10, 0.48), rgba(0, 0, 0, 0.84));
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.stat-card {
    padding: 34px 28px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(118, 75, 31, 0.22), rgba(255, 255, 255, 0.045));
    backdrop-filter: blur(14px);
}

.stat-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.7rem, 4vw, 4rem);
    color: var(--gold-soft);
    line-height: 0.9;
}

.stat-label {
    margin-top: 14px;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.atelier-section {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.38), transparent 14%, transparent 86%, rgba(119, 92, 54, 0.05)),
        repeating-linear-gradient(90deg, transparent 0 210px, rgba(123, 97, 58, 0.03) 210px 211px),
        radial-gradient(circle at 14% 18%, rgba(201, 162, 79, 0.16), transparent 20%),
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.22), transparent 16%),
        radial-gradient(circle at 82% 76%, rgba(156, 131, 97, 0.12), transparent 22%),
        linear-gradient(180deg, #efe3d4 0%, #faf4eb 28%, #f0e5d6 62%, #e5d8c6 100%);
    border-top: 1px solid rgba(201, 162, 79, 0.14);
    border-bottom: 1px solid rgba(122, 96, 58, 0.1);
}

.atelier-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(circle at 50% -10%, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, transparent 82%, rgba(119, 92, 54, 0.06));
    opacity: 0.72;
}

.atelier-section .container,
.atelier-track-wrap {
    position: relative;
    z-index: 1;
}

.atelier-section .eyebrow {
    color: rgba(132, 100, 41, 0.94);
}

.atelier-section .eyebrow::before {
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.84), transparent);
}

.atelier-section .section-title {
    color: #17110d;
}

.atelier-section .section-description {
    color: rgba(40, 31, 24, 0.74);
}

.atelier-track-wrap {
    position: relative;
    width: min(1600px, calc(100vw - 40px));
    margin: 0 auto;
}

.atelier-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 420px);
    gap: 24px;
    overflow-x: auto;
    padding: 8px 0 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.atelier-track::-webkit-scrollbar {
    display: none;
}

.atelier-card {
    position: relative;
    scroll-snap-align: start;
    border: 1px solid rgba(134, 106, 63, 0.16);
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 236, 225, 0.98));
    box-shadow: 0 24px 58px rgba(52, 36, 15, 0.08);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.atelier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.92), transparent);
    z-index: 2;
}

.atelier-card::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.atelier-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 79, 0.34);
    box-shadow: 0 32px 72px rgba(56, 39, 16, 0.14);
}

.atelier-image {
    position: relative;
    aspect-ratio: 1 / 1.08;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.atelier-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.16) 38%, rgba(0, 0, 0, 0.56));
}

.atelier-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 79, 0.34);
    background: rgba(251, 246, 238, 0.76);
    backdrop-filter: blur(10px);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #4a361d;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.atelier-hover {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: start;
    padding: 26px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.atelier-card:hover .atelier-hover {
    opacity: 1;
}

.atelier-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    color: #1c1712;
    box-shadow: 0 10px 24px rgba(15, 10, 5, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.atelier-content {
    position: relative;
    padding: 26px 24px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(245, 236, 225, 0.96));
}

.atelier-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 162, 79, 0.12), rgba(255, 255, 255, 0.82), rgba(201, 162, 79, 0.12));
}

.atelier-category {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #8a6b2d;
}

.atelier-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
    color: #17110d;
}

.atelier-content p {
    color: rgba(43, 32, 22, 0.76);
    line-height: 1.75;
}

.atelier-controls {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}

.atelier-button {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(134, 106, 63, 0.18);
    background: rgba(255, 255, 255, 0.72);
    color: #2a2016;
    display: grid;
    place-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 12px 24px rgba(35, 22, 8, 0.08);
}

.atelier-progress {
    width: min(420px, 48vw);
    height: 1px;
    background: rgba(137, 109, 61, 0.24);
    overflow: hidden;
}

.atelier-progress-fill {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-soft));
}

.quote-section {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at 24% 32%, rgba(167, 52, 37, 0.22), transparent 24%),
    radial-gradient(circle at 72% 68%, rgba(201, 162, 79, 0.12), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(14, 9, 10, 0.42) 45%, rgba(0, 0, 0, 0.84)),
        radial-gradient(circle at center, transparent, rgba(0, 0, 0, 0.38));
}

.quote-box {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 46px 48px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(94, 33, 28, 0.22), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
}

.gallery-section {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 14%, transparent 84%, rgba(119, 92, 54, 0.05)),
        repeating-linear-gradient(90deg, transparent 0 220px, rgba(123, 97, 58, 0.028) 220px 221px),
        radial-gradient(circle at 16% 18%, rgba(201, 162, 79, 0.16), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.2), transparent 16%),
        radial-gradient(circle at 84% 80%, rgba(122, 108, 84, 0.12), transparent 22%),
        linear-gradient(180deg, #f1e7d8 0%, #faf5ed 28%, #efe4d5 62%, #e5d9c8 100%);
    border-top: 1px solid rgba(201, 162, 79, 0.12);
    border-bottom: 1px solid rgba(122, 96, 58, 0.08);
}

.gallery-section .eyebrow,
.news-section .eyebrow {
    color: rgba(132, 100, 41, 0.94);
}

.gallery-section .eyebrow::before,
.news-section .eyebrow::before {
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.82), transparent);
}

.gallery-section .section-title,
.news-section .section-title {
    color: #17110d;
}

.gallery-section .section-description,
.news-section .section-description {
    color: rgba(40, 31, 24, 0.74);
}

.quote-mark {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--gold-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    line-height: 0.8;
}

.quote-box blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: 0.02em;
}

.quote-divider {
    width: 110px;
    height: 1px;
    margin: 28px 0 18px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.quote-author {
    color: var(--text-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.9fr;
    grid-auto-rows: 260px;
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(137, 109, 61, 0.16);
    background-size: cover;
    background-position: center;
    min-height: 260px;
    box-shadow: 0 18px 44px rgba(40, 28, 12, 0.08);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.gallery-item::before,
.news-image::before,
.about-media-main::before,
.about-media-small::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.78));
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 79, 0.28);
    box-shadow: 0 28px 62px rgba(55, 38, 16, 0.14);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-layer {
    position: absolute;
    inset: auto 24px 24px 24px;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.gallery-layer h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.gallery-layer a {
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.craft-section {
    overflow: hidden;
    background:
    radial-gradient(circle at 18% 60%, rgba(125, 55, 100, 0.14), transparent 24%),
    radial-gradient(circle at 85% 20%, rgba(201, 162, 79, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(14, 8, 14, 0.96), rgba(22, 10, 18, 0.92) 46%, rgba(7, 6, 9, 0.98));
}

.catalog-marquee {
    position: relative;
    overflow: hidden;
    padding: 8px 0 6px;
    padding-inline: max(20px, calc((100vw - var(--container)) / 2));
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    touch-action: none;
    overscroll-behavior-x: contain;
    cursor: grab;
}

.catalog-marquee.is-dragging {
    cursor: grabbing;
}

.catalog-track {
    display: flex;
    gap: 22px;
    width: max-content;
    will-change: transform;
    animation: catalogScroll 55s linear infinite;
}

@keyframes catalogScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .catalog-track { animation: none; }
}

.catalog-card {
    position: relative;
    width: clamp(270px, 22vw, 350px);
    aspect-ratio: 0.8;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(171, 103, 148, 0.16);
    background: linear-gradient(180deg, rgba(77, 33, 66, 0.28), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-md);
}

.news-section {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 14%, transparent 84%, rgba(119, 92, 54, 0.06)),
        repeating-linear-gradient(90deg, transparent 0 220px, rgba(123, 97, 58, 0.03) 220px 221px),
        radial-gradient(circle at 16% 16%, rgba(201, 162, 79, 0.18), transparent 20%),
        radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.18), transparent 16%),
        radial-gradient(circle at 84% 74%, rgba(130, 108, 74, 0.12), transparent 22%),
        linear-gradient(180deg, #eee1d0 0%, #f8f2e8 26%, #efe2d1 62%, #e2d2bd 100%);
    border-top: 1px solid rgba(201, 162, 79, 0.14);
    border-bottom: 1px solid rgba(120, 96, 58, 0.1);
}

.news-section .section-bg {
    opacity: 0.035;
    mix-blend-mode: multiply;
    filter: saturate(0.82) contrast(0.96);
}

.catalog-card-wide {
    width: clamp(360px, 30vw, 500px);
}

.catalog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.82)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 45%, rgba(0, 0, 0, 0.22));
}

.catalog-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    z-index: 1;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.catalog-card:hover::after {
    opacity: 1;
}

.catalog-card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.catalog-card:hover .catalog-card-image {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.catalog-card-content {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 1;
}

.catalog-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold-soft);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.catalog-card-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 2.4vw, 2.8rem);
    line-height: 0.95;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.news-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(124, 98, 52, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 240, 230, 0.96));
    box-shadow: 0 24px 60px rgba(43, 27, 8, 0.08);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 79, 0.38);
    box-shadow: 0 30px 70px rgba(56, 34, 10, 0.12);
}

.news-section .news-image::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.44));
}

.news-image {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.news-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(249, 243, 235, 0.8);
    border: 1px solid rgba(201, 162, 79, 0.34);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #47331b;
    backdrop-filter: blur(12px);
}

.news-content {
    padding: 26px 24px 30px;
}

.news-date {
    color: #8a6b2d;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.news-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 14px;
    line-height: 1;
    color: #17110d;
}

.news-content p:last-of-type {
    color: rgba(43, 32, 22, 0.74);
    line-height: 1.75;
}

.news-link {
    display: inline-flex;
    margin-top: 20px;
    color: #1a140f;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.72rem;
    position: relative;
    transition: color var(--transition-fast);
}

.news-link:hover {
    color: #8a6b2d;
}

.news-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 162, 79, 0.12));
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-section {
    position: relative;
    background:
        radial-gradient(circle at 86% 18%, rgba(201, 162, 79, 0.13), transparent 24%),
        radial-gradient(circle at 14% 74%, rgba(96, 74, 28, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(12, 10, 7, 0.98), rgba(18, 15, 9, 0.92) 46%, rgba(8, 7, 6, 0.98));
}

.about-media {
    position: relative;
    min-height: 680px;
}

.about-media-main,
.about-media-small {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-media-main {
    inset: 0 90px 70px 0;
}

.about-media-small {
    width: 280px;
    height: 320px;
    right: 0;
    bottom: 0;
}

.about-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 24px 26px;
    border-radius: 22px;
    background: rgba(6, 6, 6, 0.72);
    border: 1px solid rgba(201, 162, 79, 0.2);
    backdrop-filter: blur(14px);
}

.about-badge strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    color: var(--gold-soft);
    line-height: 0.9;
}

.about-badge span {
    display: block;
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-text {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    gap: 18px;
    margin: 32px 0 36px;
}

.about-feature {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    align-items: start;
    padding: 20px 22px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(83, 64, 21, 0.22), rgba(255, 255, 255, 0.03));
}

.contact-section {
    position: relative;
    background:
        radial-gradient(circle at 18% 22%, rgba(158, 61, 39, 0.14), transparent 24%),
        radial-gradient(circle at 84% 78%, rgba(201, 162, 79, 0.1), transparent 24%),
        linear-gradient(180deg, rgba(12, 8, 8, 0.98), rgba(20, 10, 9, 0.92) 48%, rgba(7, 6, 6, 0.98));
}

/* ── Section background images ── */
.section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    opacity: 0.14;
    pointer-events: none;
}

.search-section > :not(.section-bg),
.craft-section > :not(.section-bg),
.news-section > :not(.section-bg),
.about-section > :not(.section-bg),
.contact-section > :not(.section-bg) {
    position: relative;
    z-index: 1;
}

.about-feature-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 79, 0.3);
    display: grid;
    place-items: center;
    color: var(--gold-soft);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
}

.about-feature h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.about-feature p {
    color: var(--text-soft);
    line-height: 1.75;
}

.contact-panel,
.contact-form {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background: linear-gradient(180deg, rgba(97, 38, 29, 0.22), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(16px);
}

.contact-block + .contact-block {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-block h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.contact-block p {
    color: var(--text-soft);
    line-height: 1.85;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-field {
    position: relative;
    margin-bottom: 18px;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
    width: 100%;
    padding: 22px 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-field textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-field-select {
    position: relative;
}

.contact-field-select label {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-field-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 38px 16px 0;
    font: inherit;
    color: var(--text);
    cursor: pointer;
}

.contact-field-select::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 54px;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid rgba(201, 162, 79, 0.78);
    border-bottom: 1.5px solid rgba(201, 162, 79, 0.78);
    transform: rotate(45deg);
    pointer-events: none;
}

.contact-field select option,
.contact-field select optgroup {
    color: #16110f;
}

.contact-field label {
    position: absolute;
    left: 0;
    top: 21px;
    color: var(--text-muted);
    pointer-events: none;
    transition: transform var(--transition-fast), font-size var(--transition-fast), color var(--transition-fast);
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus,
.contact-field input:not(:placeholder-shown),
.contact-field textarea:not(:placeholder-shown) {
    border-color: rgba(201, 162, 79, 0.55);
}

.contact-field select:valid {
    border-color: rgba(201, 162, 79, 0.55);
}

.contact-field input:focus + label,
.contact-field textarea:focus + label,
.contact-field input:not(:placeholder-shown) + label,
.contact-field textarea:not(:placeholder-shown) + label {
    transform: translateY(-16px);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.contact-field-select label {
    position: static;
    left: auto;
    top: auto;
    display: block;
    margin-bottom: 12px;
    transform: none;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    pointer-events: none;
}

.destinations-section {
    position: relative;
    padding: 120px 0 110px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 14%, transparent 84%, rgba(119, 92, 54, 0.06)),
        repeating-linear-gradient(90deg, transparent 0 220px, rgba(123, 97, 58, 0.03) 220px 221px),
        radial-gradient(circle at 18% 20%, rgba(201, 162, 79, 0.16), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 16%),
        linear-gradient(180deg, #eee1cf 0%, #faf4ea 28%, #eee2d2 62%, #e2d2bd 100%);
    color: #17110d;
}

.destinations-section .eyebrow {
    color: rgba(132, 100, 41, 0.94);
}

.destinations-section .eyebrow::before {
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.82), transparent);
}

.destinations-section .section-title {
    color: #17110d;
}

.destinations-section .section-description {
    color: rgba(39, 29, 22, 0.76);
}

.destinations-section .destination-card,
.destinations-section .destination-card * {
    color: var(--text);
}

.destinations-section .destination-card h3 {
    color: var(--text);
}

.destinations-section .destination-card p {
    color: var(--text-soft);
}

.destinations-section .destination-card-kicker,
.destinations-section .destination-card-link {
    color: var(--gold-soft);
}

.destination-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1.15fr;
    gap: 22px;
}

.destination-card {
    position: relative;
    min-height: 430px;
    padding: 28px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        var(--destination-image, linear-gradient(180deg, rgba(10, 10, 10, 0.8), rgba(5, 5, 5, 0.95)));
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 4, 4, 0.18), rgba(4, 4, 4, 0.82)),
        linear-gradient(90deg, rgba(4, 4, 4, 0.22), transparent 45%, rgba(4, 4, 4, 0.2));
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.destination-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 79, 0.3);
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.4);
}

.destination-card:hover::after {
    opacity: 1;
}

.destination-card-large {
    min-height: 500px;
}

.destination-card-content {
    position: relative;
    z-index: 1;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.destination-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.destination-card-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.destination-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.92;
}

.destination-card p {
    max-width: 28ch;
    color: var(--text-soft);
    line-height: 1.75;
}

.destination-card-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.destination-card-link::after {
    content: "";
    width: 34px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.subpage-main {
    overflow: hidden;
}

.page-hero {
    position: relative;
    min-height: 100vh;
    min-height: max(calc(760px / var(--viewport-zoom-factor)), calc(100svh / var(--viewport-zoom-factor)));
    overflow: hidden;
    background: #050505;
}

.page-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.56)),
        radial-gradient(circle at 18% 26%, rgba(201, 162, 79, 0.12), transparent 24%),
    var(--page-hero-poster, url("images/car2.webp")) center center / cover no-repeat;
}

.page-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--page-hero-position, center center);
    transform: scale(1.04);
    filter: saturate(1.04) contrast(1.04) brightness(0.86);
    opacity: 0;
    transition: transform 6.5s var(--ease), filter 1.1s var(--ease), opacity 0.8s ease;
    will-change: transform;
}

.page-hero.hero-video-ready .page-hero-video {
    opacity: 1;
}

.page-hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.22) 58%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.16) 44%, rgba(0, 0, 0, 0.74) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.58) 72%, rgba(0, 0, 0, 0.88));
}

.page-hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 16vw 16vw;
    opacity: 0.11;
    mask-image: linear-gradient(180deg, transparent, black 16%, black 84%, transparent);
}

.page-hero-shell {
    position: relative;
    z-index: 1;
    width: var(--container);
    min-height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 96px) 0 76px;
}

.page-hero-layout {
    width: 100%;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 44px;
    align-items: end;
}

.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.74rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.page-kicker::before,
.page-kicker::after {
    content: "";
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.88), transparent);
}

.page-title {
    font-family: "Cormorant Garamond", serif;
    display: grid;
    gap: 0;
}

.page-title em {
    font-style: italic;
    color: var(--gold-soft);
}

.page-title-main {
    font-size: clamp(3.2rem, 5.8vw, 6.4rem);
    font-weight: 300;
    line-height: 0.88;
    letter-spacing: 0.2em;
    padding-left: 0.2em;
    text-transform: uppercase;
    color: var(--text);
    display: block;
    opacity: 0;
    transform: translateY(42px);
    animation: fadeRise 1s var(--ease) 0.18s forwards;
}

.page-title-rule {
    display: block;
    width: min(200px, 48%);
    height: 1px;
    margin: 18px 0 16px;
    background: linear-gradient(90deg, var(--gold-soft), rgba(201, 162, 79, 0.18), transparent);
    opacity: 0;
    animation: lsFadeIn 0.9s var(--ease) 0.38s forwards;
}

.page-title-sub {
    font-size: clamp(1.4rem, 2.2vw, 2.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--gold-soft);
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeRise 1s var(--ease) 0.36s forwards;
}

.page-lead {
    max-width: 34ch;
    margin-top: 26px;
    color: var(--text-soft);
    font-size: 1.04rem;
    line-height: 1.9;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.page-meta-panel {
    display: grid;
    gap: 18px;
}

.page-meta-card {
    padding: 26px 28px;
    border-radius: 24px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
}

.page-meta-card span {
    display: block;
    color: var(--gold-soft);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-meta-card strong {
    display: block;
    margin-top: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.page-meta-card p {
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.75;
}

.page-section {
    position: relative;
    padding: 120px 0;
}

.page-section-dark {
    background:
        radial-gradient(circle at 16% 18%, rgba(201, 162, 79, 0.1), transparent 24%),
        radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.05), transparent 16%),
        linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(12, 11, 10, 0.94) 46%, rgba(6, 6, 6, 0.98));
}

.page-section-ivory {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 14%, transparent 84%, rgba(119, 92, 54, 0.06)),
        repeating-linear-gradient(90deg, transparent 0 220px, rgba(123, 97, 58, 0.03) 220px 221px),
        radial-gradient(circle at 18% 20%, rgba(201, 162, 79, 0.16), transparent 20%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.18), transparent 16%),
        linear-gradient(180deg, #eee1cf 0%, #faf4ea 28%, #eee2d2 62%, #e2d2bd 100%);
    color: #17110d;
}

.page-section-ivory .section-title,
.page-section-ivory .section-description,
.page-section-ivory .page-card p,
.page-section-ivory .feature-list li,
.page-section-ivory .timeline-entry p,
.page-section-ivory .page-note {
    color: rgba(39, 29, 22, 0.76);
}

.page-section-ivory .eyebrow {
    color: rgba(132, 100, 41, 0.94);
}

.page-section-ivory .eyebrow::before {
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.82), transparent);
}

.page-section-ivory .section-title,
.page-section-ivory .page-card h3,
.page-section-ivory .video-feature-content h3,
.page-section-ivory .timeline-entry h4,
.page-section-ivory .cta-band h3 {
    color: #17110d;
}

.page-grid {
    display: grid;
    gap: 22px;
}

.page-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-card {
    position: relative;
    padding: 28px;
    border-radius: 28px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.page-section-ivory .page-card {
    border-color: rgba(134, 106, 63, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 225, 0.98));
    box-shadow: 0 24px 58px rgba(52, 36, 15, 0.08);
}

.page-card-media {
    position: relative;
    aspect-ratio: 1 / 1.05;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 22px;
}

.page-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.56));
}

.page-card-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.page-section-ivory .page-card-kicker {
    color: #8a6b2d;
}

.page-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 12px;
}

.page-card p {
    color: var(--text-soft);
    line-height: 1.8;
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    color: var(--text-soft);
    line-height: 1.7;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 8px;
    height: 1px;
    background: var(--gold-soft);
}

.page-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.video-feature {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 32px;
    align-items: center;
}

.video-feature-media {
    position: relative;
    min-height: 540px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(201, 162, 79, 0.16);
    box-shadow: var(--shadow-lg);
    background: rgba(8, 8, 8, 0.9);
}

.page-section-ivory .video-feature-media {
    border-color: rgba(134, 106, 63, 0.16);
    box-shadow: 0 30px 72px rgba(52, 36, 15, 0.12);
}

.video-feature-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.56)),
        linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 46%, rgba(0, 0, 0, 0.16));
    pointer-events: none;
}

.video-feature-content {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-md);
}

.page-section-ivory .video-feature-content {
    border-color: rgba(134, 106, 63, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 225, 0.98));
    box-shadow: 0 24px 58px rgba(52, 36, 15, 0.08);
}

.video-feature-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 0.96;
}

.video-feature-content p {
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.85;
}

.page-timeline {
    display: grid;
    gap: 18px;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 24px;
    border: 1px solid rgba(201, 162, 79, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.page-section-ivory .timeline-entry {
    border-color: rgba(134, 106, 63, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 225, 0.96));
}

.timeline-step {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(201, 162, 79, 0.3);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: var(--gold-soft);
}

.page-section-ivory .timeline-step {
    color: #8a6b2d;
    border-color: rgba(134, 106, 63, 0.22);
}

.timeline-entry h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.timeline-entry p {
    color: var(--text-soft);
    line-height: 1.78;
}

.cta-band {
    padding: 40px 42px;
    border-radius: 32px;
    border: 1px solid rgba(201, 162, 79, 0.18);
    background:
        radial-gradient(circle at 18% 26%, rgba(201, 162, 79, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-md);
}

.page-section-ivory .cta-band {
    border-color: rgba(134, 106, 63, 0.16);
    background:
        radial-gradient(circle at 18% 26%, rgba(201, 162, 79, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 236, 225, 0.98));
    box-shadow: 0 24px 58px rgba(52, 36, 15, 0.08);
}

.cta-band h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    line-height: 0.96;
}

.cta-band p {
    max-width: 52ch;
    margin-top: 18px;
    color: var(--text-soft);
    line-height: 1.85;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.footer-top {
    padding: 90px 0 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

.footer-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    color: var(--gold-soft);
    margin-bottom: 12px;
}

.footer-brand p {
    max-width: 420px;
    color: var(--text-soft);
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-column h5 {
    color: var(--gold-soft);
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.footer-column a {
    color: var(--text-soft);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-column a:hover,
.footer-socials a:hover {
    color: var(--text);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    color: var(--gold-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast), background-color var(--transition-fast);
    z-index: 900;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(201, 162, 79, 0.12);
}

.mobile-quick-actions {
    position: fixed;
    right: 16px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 880;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.mobile-quick-actions-title {
    margin: 0 4px 0 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(201, 162, 79, 0.26);
    background: rgba(8, 8, 8, 0.78);
    color: var(--gold-soft);
    font-size: 0.64rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.mobile-quick-actions-list {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.mobile-quick-action {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    border: 0;
    background: none;
    color: inherit;
    transition: transform var(--transition-fast), filter var(--transition-fast);
}

.mobile-quick-action-label {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(201, 162, 79, 0.2);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.94), rgba(30, 26, 19, 0.88));
    color: var(--text);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    white-space: nowrap;
}

.mobile-quick-action-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201, 162, 79, 0.28);
    background: linear-gradient(145deg, rgba(16, 16, 16, 0.98), rgba(37, 31, 22, 0.95));
    color: var(--gold-soft);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(14px);
}

.mobile-quick-action-icon svg {
    width: 22px;
    height: 22px;
}

.mobile-quick-action:hover,
.mobile-quick-action:focus-visible {
    transform: translateX(-4px);
    filter: brightness(1.06);
}

.mobile-quick-action:focus-visible {
    outline: none;
}

.mobile-quick-action:focus-visible .mobile-quick-action-label,
.mobile-quick-action:focus-visible .mobile-quick-action-icon {
    border-color: rgba(230, 201, 128, 0.72);
}

body.menu-open .mobile-quick-actions {
    opacity: 0;
    transform: translate3d(18px, 0, 0);
    pointer-events: none;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    min-width: min(480px, calc(100vw - 40px));
    padding: 18px 24px;
    border-radius: 18px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(201, 162, 79, 0.22);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-md);
    color: var(--text);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1100;
}

.contact-form.is-submitting {
    opacity: 0.96;
}

.contact-form button[disabled] {
    cursor: wait;
    opacity: 0.74;
}

.toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.toast.is-success {
    border-color: rgba(201, 162, 79, 0.34);
}

.toast.is-error {
    border-color: rgba(232, 92, 92, 0.42);
    background: rgba(22, 10, 10, 0.94);
}

.reveal-up,
.reveal-fade {
    opacity: 0;
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal-up {
    transform: translateY(42px);
}

.reveal-fade {
    transform: translateY(24px) scale(0.985);
    filter: saturate(0.8);
}

.reveal-up.is-visible,
.reveal-fade.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
}

.tilt {
    transform-style: preserve-3d;
    will-change: transform;
}

@media (max-width: 1280px) {
    .nav-list {
        gap: 18px;
    }

    .page-hero-layout,
    .video-feature {
        grid-template-columns: 1fr;
    }

    .destinations-section,
    .page-section {
        padding: 100px 0;
    }

    .page-hero {
        min-height: max(calc(760px / var(--viewport-zoom-factor)), calc(100svh / var(--viewport-zoom-factor)));
    }

    .page-hero-shell {
        align-items: flex-end;
        padding: calc(var(--header-height) + 72px) 0 42px;
    }

    .page-title {
        font-size: inherit;
    }

    .page-title-main {
        font-size: clamp(2.6rem, 9vw, 4.2rem);
        letter-spacing: 0.14em;
        padding-left: 0.14em;
    }

    .page-title-sub {
        font-size: clamp(1.1rem, 2vw, 2rem);
    }

    .page-title-rule {
        margin: 14px 0 12px;
    }

    .page-lead {
        max-width: 36ch;
        font-size: 0.98rem;
    }

    .page-actions {
        margin-top: 28px;
    }

    .page-meta-panel,
    .page-grid-2,
    .page-grid-3,
    .page-grid-4,
    .destination-grid {
        grid-template-columns: 1fr;
    }

    .destination-card,
    .destination-card-large {
        min-height: 340px;
    }

    .video-feature-media {
        min-height: 380px;
    }

    .cta-band {
        padding: 34px 28px;
    }

    .search-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .search-submit {
        grid-column: span 2;
        width: 100%;
    }

    .stats-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    :root {
        --container: min(1440px, calc(100vw - 36px));
        --viewport-zoom-factor: 1;
    }

    .nav,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: grid;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .hero {
        height: 100vh;
        min-height: 720px;
    }

    .hero-content {
        justify-content: flex-end;
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 108px;
    }

    .hero-title-name {
        font-size: clamp(3.4rem, 7.5vw, 6rem);
        letter-spacing: 0.14em;
        padding-left: 0.14em;
    }

    .hero-title-desc {
        font-size: clamp(1.2rem, 2.4vw, 2rem);
    }

    .hero-title-rule {
        margin: 16px 0 14px;
    }

    .hero-subline {
        max-width: 440px;
        font-size: 0.84rem;
        letter-spacing: 0.16em;
        margin-top: 22px;
    }

    .hero-actions {
        margin-top: 28px;
        gap: 14px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .section-head-split,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    .about-media {
        min-height: 560px;
    }

    .about-media-main {
        inset: 0 70px 70px 0;
    }

    .about-media-small {
        width: 220px;
        height: 260px;
    }
}

@media (max-width: 780px) {
    :root {
        --header-height: 82px;
    }

    .mobile-quick-actions {
        display: flex;
    }

    .back-to-top {
        display: none;
    }

    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: stretch;
    }

    .video-feature {
        grid-template-columns: 1fr;
    }

    .destination-card,
    .destination-card-large {
        min-height: 300px;
        padding: 22px;
        border-radius: 24px;
    }

    .destination-card h3 {
        font-size: 2rem;
    }

    .page-hero-shell {
        padding: calc(var(--header-height) + 56px) 0 28px;
    }

    .page-hero-video {
        transform: scale(1.08);
    }

    .page-hero-vignette {
        background:
            radial-gradient(circle at center, transparent 15%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.78) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.62) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.58) 75%, rgba(0, 0, 0, 0.84));
    }

    .page-kicker {
        gap: 10px;
        font-size: 0.62rem;
    }

    .page-kicker::before,
    .page-kicker::after {
        width: 28px;
    }

    .page-title {
        font-size: inherit;
    }

    .page-title-main {
        font-size: clamp(2.2rem, 10vw, 3.6rem);
        letter-spacing: 0.1em;
        padding-left: 0.1em;
    }

    .page-title-sub {
        font-size: clamp(1rem, 2.8vw, 1.7rem);
    }

    .page-title-rule {
        margin: 12px 0 10px;
        width: min(160px, 44%);
    }

    .page-lead {
        font-size: 0.92rem;
        line-height: 1.8;
    }

    .page-meta-panel {
        gap: 14px;
    }

    .page-meta-card strong {
        font-size: 1.8rem;
    }

    .page-actions,
    .cta-band-actions {
        width: 100%;
        flex-direction: column;
    }

    .page-actions .btn,
    .cta-band-actions .btn {
        width: 100%;
    }

    .page-card,
    .page-meta-card,
    .video-feature-content,
    .cta-band {
        padding: 24px 22px;
        border-radius: 22px;
    }

    .page-card-media {
        margin-bottom: 18px;
        border-radius: 20px;
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 20px 18px;
        border-radius: 20px;
    }

    .video-feature-media {
        min-height: 300px;
        border-radius: 24px;
    }

    .video-feature {
        gap: 20px;
    }

    .hero {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: auto;
        min-height: 740px;
        min-height: max(740px, 100svh);
        padding-bottom: 28px;
    }

    .hero-content {
        flex: 1 1 auto;
        width: var(--container);
        margin: 0 auto;
        height: auto;
        min-height: 0;
        align-items: flex-start;
        justify-content: center;
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 30px;
    }

    .hero-title-name {
        font-size: clamp(3rem, 9.5vw, 5rem);
        letter-spacing: 0.1em;
        padding-left: 0.1em;
    }

    .hero-title-desc {
        font-size: clamp(1.1rem, 3.2vw, 1.8rem);
    }

    .hero-title-rule {
        margin: 14px 0 12px;
        width: min(180px, 46%);
    }

    .hero-subline {
        font-size: 0.92rem;
        letter-spacing: 0.16em;
        max-width: 420px;
    }

    .hero-scroll-hint {
        display: none;
    }

    .search-section,
    .atelier-section,
    .gallery-section,
    .craft-section,
    .news-section,
    .about-section,
    .contact-section {
        padding: 100px 0;
    }

    .search-panel,
    .news-grid,
    .gallery-grid,
    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-bg {
        background-attachment: scroll;
    }

    .search-submit,
    .gallery-item-wide {
        grid-column: auto;
    }

    .gallery-item-tall {
        grid-row: auto;
    }

    .quote-box {
        padding: 34px 26px;
    }

    .quote-box blockquote {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
    }

    .atelier-track {
        grid-auto-columns: minmax(280px, 86vw);
    }

    .catalog-track {
        gap: 16px;
        animation-duration: 42s;
    }

    .catalog-card,
    .catalog-card-wide {
        width: clamp(240px, 78vw, 320px);
    }

    .about-media {
        min-height: 460px;
    }

    .about-media-main {
        inset: 0 40px 40px 0;
    }

    .about-media-small {
        width: 180px;
        height: 210px;
    }

    .contact-panel,
    .contact-form {
        padding: 26px 22px;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    :root {
        --container: calc(100vw - 24px);
    }

    .contact-field-select {
        margin-bottom: 22px;
    }

    .contact-field-select label {
        margin-bottom: 10px;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
        line-height: 1.35;
    }

    .contact-field-select select {
        min-height: 54px;
        padding: 12px 34px 14px 0;
        font-size: 0.94rem;
        line-height: 1.45;
        text-overflow: ellipsis;
    }

    .contact-field-select::after {
        top: 46px;
        right: 4px;
        width: 9px;
        height: 9px;
    }

    .mobile-quick-actions {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        gap: 10px;
    }

    .mobile-quick-actions-title {
        padding: 7px 12px;
        font-size: 0.58rem;
        letter-spacing: 0.2em;
    }

    .mobile-quick-actions-list {
        gap: 10px;
    }

    .mobile-quick-action {
        gap: 8px;
    }

    .mobile-quick-action-label {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.72rem;
    }

    .mobile-quick-action-icon {
        width: 50px;
        height: 50px;
    }

    .page-section {
        padding: 84px 0;
    }

    .page-hero {
        min-height: max(calc(720px / var(--viewport-zoom-factor)), calc(100svh / var(--viewport-zoom-factor)));
    }

    .logo-word {
        font-size: 1.3rem;
    }

    .page-hero-shell {
        padding: calc(var(--header-height) + 46px) 0 24px;
    }

    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-meta-panel {
        gap: 12px;
    }

    .page-kicker,
    .page-card-kicker,
    .page-meta-card span,
    .page-note {
        font-size: 0.66rem;
        letter-spacing: 0.18em;
    }

    .page-meta-card strong {
        font-size: 1.72rem;
    }

    .page-card p,
    .page-meta-card p,
    .feature-list li,
    .timeline-entry p,
    .video-feature-content p,
    .cta-band p {
        font-size: 0.94rem;
        line-height: 1.72;
    }

    .video-feature-content h3,
    .cta-band h3 {
        font-size: clamp(2rem, 10vw, 2.9rem);
    }

    .video-feature {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .timeline-step {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
    }

    .hero-badge {
        font-size: 0.62rem;
        gap: 10px;
    }

    .hero-badge-line {
        width: 28px;
    }

    .hero-title-name {
        font-size: clamp(2.6rem, 10.5vw, 4rem);
        letter-spacing: 0.08em;
        padding-left: 0.08em;
    }

    .hero-title-desc {
        font-size: clamp(1rem, 3.4vw, 1.6rem);
    }

    .hero-title-rule {
        margin: 12px 0 10px;
        width: min(150px, 42%);
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-title {
        font-size: clamp(2.2rem, 12vw, 3rem);
    }

    .search-panel,
    .stat-card,
    .contact-panel,
    .contact-form,
    .quote-box {
        border-radius: 22px;
    }

    .atelier-controls {
        gap: 12px;
    }

    .atelier-progress {
        width: 42vw;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .contact-field-select label {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .contact-field-select select {
        min-height: 52px;
        padding: 11px 30px 13px 0;
        font-size: 0.9rem;
    }

    .contact-field-select::after {
        top: 44px;
        right: 2px;
    }

    .hero {
        min-height: max(720px, 100svh);
        padding-bottom: 22px;
    }

    .page-hero {
        min-height: max(calc(640px / var(--viewport-zoom-factor)), calc(100svh / var(--viewport-zoom-factor)));
    }

    .page-hero-shell {
        padding: calc(var(--header-height) + 30px) 0 22px;
    }

    .page-hero-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-hero-grid-lines {
        background-size: 32vw 32vw;
        opacity: 0.08;
    }

    .page-hero-video {
        transform: scale(1.1);
        filter: saturate(1.02) contrast(1.03) brightness(0.88);
    }

    .page-hero-vignette {
        background:
            radial-gradient(circle at center, transparent 15%, rgba(0, 0, 0, 0.18) 58%, rgba(0, 0, 0, 0.78) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.56) 100%),
            linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.56) 75%, rgba(0, 0, 0, 0.82));
    }

    .page-title {
        font-size: inherit;
    }

    .page-title-main {
        font-size: clamp(1.6rem, 10vw, 2.4rem);
        letter-spacing: 0.06em;
        padding-left: 0.06em;
    }

    .page-title-sub {
        font-size: clamp(0.85rem, 2.6vw, 1.2rem);
    }

    .page-title-rule {
        margin: 8px 0 7px;
        width: min(110px, 36%);
    }

    .page-lead {
        max-width: none;
        margin-top: 18px;
        font-size: 0.88rem;
        line-height: 1.72;
    }

    .page-card h3,
    .timeline-entry h4 {
        font-size: 1.65rem;
    }

    .page-section,
    .contact-section {
        padding: 72px 0;
    }

    .page-meta-card strong {
        font-size: 1.55rem;
    }

    .page-card,
    .page-meta-card,
    .video-feature-content,
    .cta-band,
    .contact-panel,
    .contact-form {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .page-card-media,
    .video-feature-media {
        border-radius: 20px;
    }

    .video-feature {
        grid-template-columns: 1fr;
    }

    .video-feature-media {
        min-height: 240px;
    }

    .timeline-entry {
        padding: 18px 16px;
    }

    .timeline-step {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .page-actions .btn,
    .cta-band-actions .btn {
        justify-content: center;
    }

    .hero-content {
        padding-top: calc(var(--header-height) + 22px);
        padding-bottom: 22px;
    }

    .hero-title-name {
        font-size: clamp(2.2rem, 9.5vw, 3.2rem);
        letter-spacing: 0.06em;
        padding-left: 0.06em;
    }

    .hero-title-desc {
        font-size: clamp(0.95rem, 3vw, 1.4rem);
    }

    .hero-title-rule {
        margin: 10px 0 8px;
        width: min(120px, 38%);
    }

    .search-section,
    .atelier-section,
    .gallery-section,
    .craft-section,
    .news-section,
    .about-section,
    .contact-section {
        padding: 72px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 24px 20px;
    }

    .news-image {
        height: 200px;
    }

    .atelier-track {
        grid-auto-columns: minmax(250px, 80vw);
    }

    .catalog-card,
    .catalog-card-wide {
        width: clamp(210px, 72vw, 290px);
    }

    .about-media {
        min-height: 360px;
    }

    .about-media-main {
        inset: 0 28px 28px 0;
    }

    .about-media-small {
        width: 140px;
        height: 170px;
    }

    .footer-top {
        padding: 56px 0 36px;
    }

    .footer-grid {
        gap: 24px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item-tall,
    .gallery-item-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .section-title {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up,
    .reveal-fade {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .cursor {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   RAM DESIGN REFINEMENTS — Phase 2
   Professional · Contained · Luxuriös · Klar
   ═══════════════════════════════════════════════════════════════════ */

/* ── Header: Phone link ─────────────────────────────────────────── */
.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 18px;
    margin-right: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-soft);
    white-space: nowrap;
    transition: color var(--transition-fast);
}

.nav-phone:hover {
    color: var(--gold-soft);
}

.nav-phone-icon {
    width: 14px;
    height: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── Nav-link: Gold underline slide on hover ────────────────────── */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
    pointer-events: none;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* ── Section padding: reduced for more compact layout ──────────── */
.search-section,
.gallery-section,
.news-section,
.about-section,
.contact-section {
    padding: 88px 0;
}

.atelier-section {
    padding: 88px 0;
}

.craft-section {
    padding: 80px 0;
}

.destinations-section {
    padding: 88px 0 80px;
}

.quote-section {
    min-height: 440px;
}

.page-section {
    padding: 88px 0;
}

/* ── Section frame: bounded, elevated container ─────────────────
   Usage: Add class "section-frame" to a .container or inner div.
   Creates a visually confined card-like presentation.              */
.section-frame {
    border: 1px solid rgba(201, 162, 79, 0.2);
    border-radius: 32px;
    padding: 48px 52px 52px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 24px 64px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.section-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 79, 0.45), transparent);
    pointer-events: none;
}

.page-section-ivory .section-frame {
    border-color: rgba(134, 106, 63, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(245, 236, 225, 0.88) 100%);
    box-shadow: 0 20px 52px rgba(52, 36, 15, 0.08);
}

.page-section-ivory .section-frame::before {
    background: linear-gradient(90deg, transparent, rgba(134, 106, 63, 0.35), transparent);
}

/* ── Stats: horizontal inline strip ────────────────────────────── */
.stats-strip {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(201, 162, 79, 0.22);
    border-radius: 28px;
    overflow: hidden;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(118, 75, 31, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.stats-strip .stat-card {
    flex: 1;
    border: none;
    border-radius: 0;
    border-right: 1px solid rgba(201, 162, 79, 0.14);
    background: transparent;
    text-align: center;
    padding: 38px 20px;
}

.stats-strip .stat-card:last-child {
    border-right: none;
}

/* ── Image areas: more compact ──────────────────────────────────── */
.atelier-image {
    aspect-ratio: 1 / 0.9;
}

.gallery-grid {
    grid-auto-rows: 220px;
}

.news-image {
    height: 215px;
}

.about-media {
    min-height: 510px;
}

.video-feature-media {
    min-height: 460px;
}

.destination-card {
    min-height: 360px;
}

.destination-card-large {
    min-height: 420px;
}

/* ── Footer: tighter vertical padding ──────────────────────────── */
.footer-top {
    padding: 68px 0 44px;
}

/* ── Nav: hide phone on small screens ──────────────────────────── */
@media (max-width: 1080px) {
    .nav-phone {
        display: none;
    }
}

/* ── Section frame responsive ──────────────────────────────────── */
@media (max-width: 780px) {
    .section-frame {
        padding: 34px 28px 38px;
        border-radius: 22px;
    }

    .stats-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 22px;
    }

    .stats-strip .stat-card {
        border-right: 1px solid rgba(201, 162, 79, 0.14);
        border-bottom: 1px solid rgba(201, 162, 79, 0.1);
    }

    .stats-strip .stat-card:nth-child(2n) {
        border-right: none;
    }

    .stats-strip .stat-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 560px) {
    .section-frame {
        padding: 26px 18px 30px;
        border-radius: 18px;
    }
}