:root {
    --bg: #0e0d0c;
    --bg-soft: #1a1817;
    --bg-card: #161413;
    --ink: #f7f3ec;
    --ink-soft: #b8aea3;
    --muted: #6e655d;
    --gold: #d4a574;
    --gold-soft: #c4956a;
    --gold-deep: #b08654;
    --rose: #f5d5e0;
    --line: #2a2724;
    --line-soft: #1f1d1b;
    --serif: 'Playfair Display', 'Times New Roman', serif;
    --sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ol, ul { list-style: none; }
button { border: 0; background: 0; cursor: pointer; font-family: inherit; color: inherit; }

/* ---------- Typography ---------- */
.display {
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.05;
    color: var(--ink);
}
h1.display { font-size: clamp(2.8rem, 6.5vw, 5.8rem); }
h2.display { font-size: clamp(2.2rem, 4.5vw, 4rem); }
.kicker {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 28px;
}
p { color: var(--ink-soft); font-weight: 300; }
::selection { background: var(--gold); color: var(--bg); }

.frame { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 36px; }

/* ---------- Section heads ---------- */
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 72px;
}
.section-head > div:first-child { max-width: 720px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: all .3s;
    cursor: pointer;
    border: 1px solid transparent;
    font-family: var(--sans);
}
.btn-gold {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn-link {
    font-size: .78rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    display: inline-block;
}
.btn-link:hover { color: var(--ink); border-color: var(--ink); }

/* ---------- Top bar ---------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(14, 13, 12, 0.92);
    backdrop-filter: saturate(160%) blur(10px);
    border-bottom: 1px solid var(--line-soft);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.2rem;
    border-radius: 50%;
}
.logo-text {
    font-family: var(--serif);
    font-size: 1.25rem;
    letter-spacing: 0;
    color: var(--ink);
}
.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}
.nav a {
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.nav a:hover { color: var(--gold); }
.nav-cta {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 10px 22px;
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--bg) !important;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}
.burger span {
    width: 26px; height: 1.5px;
    background: var(--ink);
}

/* ---------- Hero slider ---------- */
.hero {
    position: relative;
    height: 92vh;
    min-height: 640px;
    overflow: hidden;
    background: var(--bg);
}
.hero-slides {
    position: absolute;
    inset: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease, transform 8s ease-out;
    display: flex;
    align-items: center;
    pointer-events: none;
    transform: scale(1.04);
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}
.hero-content {
    max-width: 720px;
    color: var(--ink);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s ease .3s, transform 1.4s ease .3s;
}
.hero-slide.is-active .hero-content {
    opacity: 1;
    transform: none;
}
.hero-eyebrow { color: var(--gold); }
.hero h1 {
    margin-bottom: 28px;
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(247, 243, 236, 0.85);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 300;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px; height: 56px;
    background: rgba(14, 13, 12, 0.5);
    border: 1px solid rgba(247, 243, 236, 0.25);
    color: var(--ink);
    font-size: 1.6rem;
    font-family: var(--serif);
    font-weight: 400;
    transition: all .25s;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.slider-arrow:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.slider-arrow-prev { left: 36px; }
.slider-arrow-next { right: 36px; }

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 5;
}
.slider-dot {
    width: 28px; height: 2px;
    background: rgba(247, 243, 236, 0.3);
    transition: all .3s;
    padding: 0;
}
.slider-dot.is-active { background: var(--gold); width: 48px; }
.slider-dot:hover { background: rgba(247, 243, 236, 0.6); }

.hero-counter {
    position: absolute;
    bottom: 40px;
    right: 36px;
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: .95rem;
    z-index: 5;
    letter-spacing: .08em;
}
.hero-counter-sep { color: rgba(247, 243, 236, 0.4); margin: 0 8px; }

/* ---------- Intro ---------- */
.intro { padding: 140px 0; text-align: center; background: var(--bg); }
.intro-grid {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.intro-body {
    font-size: 1.18rem;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-top: 24px;
}
.ornament {
    display: block;
    margin-top: 48px;
    color: var(--gold);
    letter-spacing: 1em;
    font-size: .8rem;
}

/* ---------- Collection carousel ---------- */
.collection {
    padding: 120px 0;
    background: var(--bg-soft);
}
.carousel-nav { display: flex; gap: 8px; }
.carousel-btn {
    width: 52px; height: 52px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.1rem;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.carousel-btn:disabled { opacity: .35; cursor: not-allowed; }
.carousel-btn:disabled:hover { background: transparent; color: var(--ink); border-color: var(--line); }

.carousel {
    overflow: hidden;
    padding-left: max(36px, calc((100vw - 1320px) / 2 + 36px));
}
.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform .7s cubic-bezier(.22, .9, .34, 1);
    padding-right: 36px;
}
.product {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
}
.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-card);
    margin-bottom: 22px;
    display: block;
}
.product-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(.22,.9,.34,1), filter .4s;
    filter: brightness(.92);
}
.product-media:hover img { transform: scale(1.06); filter: brightness(1); }
.product-cat {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(14, 13, 12, 0.85);
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 1px solid var(--gold);
}
.product-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 6px;
}
.product h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.35rem;
    color: var(--ink);
}
.product-price {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--gold);
}
.product-body p { font-size: .94rem; }

/* ---------- About ---------- */
.about { padding: 140px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}
.about-text p { margin-bottom: 1.2em; font-size: 1.04rem; max-width: 480px; }
.about-text .btn-link { margin-top: 20px; }
.about-media {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-media-main {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-card);
    grid-column: 1 / 2;
    align-self: start;
}
.about-media-side {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-card);
    grid-column: 2 / 3;
    align-self: end;
    transform: translateY(80px);
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Services ---------- */
.services { padding: 140px 0; background: var(--bg-soft); }
.services-head { display: block; text-align: center; }
.services-head { margin-bottom: 80px; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.service {
    padding: 56px 48px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .3s;
}
.service:hover { background: var(--bg-card); }
.service-num {
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 28px;
}
.service h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.15;
}
.service p { font-size: .98rem; }

/* ---------- Testimonial slider ---------- */
.quotes { padding: 140px 0; background: var(--bg); position: relative; }
.quotes-kicker { display: block; text-align: center; margin-bottom: 64px; }
.quotes-stage {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 380px;
}
.quote-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    opacity: 0;
    transition: opacity .8s ease;
    pointer-events: none;
}
.quote-slide.is-active { opacity: 1; pointer-events: auto; }
.quote-photo {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--bg-card);
}
.quote-photo img { width: 100%; height: 100%; object-fit: cover; }
.quote-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.quote-mark {
    font-family: var(--serif);
    font-size: 8rem;
    line-height: .6;
    color: var(--gold);
    opacity: .35;
    position: absolute;
    top: -30px;
    left: -30px;
    font-style: italic;
}
.quote-body blockquote {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    font-size: 1.7rem;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 36px;
    letter-spacing: -0.005em;
}
.quote-name {
    display: block;
    font-size: .9rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 6px;
}
.quote-role {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    font-style: italic;
    font-family: var(--serif);
}
.quotes-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 56px;
}
.quotes-arrow {
    width: 44px; height: 44px;
    border: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
    transition: all .25s;
}
.quotes-arrow:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.quotes-dots {
    display: flex;
    gap: 10px;
}
.quotes-dots .slider-dot {
    background: rgba(247, 243, 236, 0.25);
    width: 24px;
}
.quotes-dots .slider-dot.is-active {
    background: var(--gold);
    width: 36px;
}

/* ---------- Gallery + lightbox ---------- */
.gallery { padding: 140px 0; background: var(--bg-soft); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-tile {
    overflow: hidden;
    background: var(--bg-card);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    position: relative;
}
.gallery-tile-0 { aspect-ratio: 1 / 1.4; grid-column: span 1; grid-row: span 2; }
.gallery-tile-1 { aspect-ratio: 1 / 1; }
.gallery-tile-2 { aspect-ratio: 1.4 / 1; grid-column: span 2; }
.gallery-tile-3 { aspect-ratio: 1 / 1; }
.gallery-tile-4 { aspect-ratio: 1 / 1; }
.gallery-tile-5 { aspect-ratio: 1 / 1; }
.gallery-tile img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .8s cubic-bezier(.22,.9,.34,1), filter .3s;
    filter: brightness(.9);
}
.gallery-tile:hover img { transform: scale(1.05); filter: brightness(1); }

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(14, 13, 12, 0.95);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox-stage {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}
.lightbox-close,
.lightbox-arrow {
    position: absolute;
    color: var(--ink);
    font-size: 2.4rem;
    width: 56px; height: 56px;
    border: 1px solid rgba(247, 243, 236, 0.2);
    transition: all .25s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-family: var(--serif);
}
.lightbox-close { top: 32px; right: 32px; }
.lightbox-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lightbox-prev { left: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 32px; top: 50%; transform: translateY(-50%); }
.lightbox-arrow:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lightbox-caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--ink-soft);
    font-size: .85rem;
    font-family: var(--serif);
    font-style: italic;
}

/* ---------- Contact ---------- */
.contact { padding: 140px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}
.contact-body { margin: 24px 0 44px; font-size: 1.04rem; max-width: 460px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    font-size: .98rem;
}
.contact-list li:last-child { border: 0; }
.contact-list span {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
}
.contact-list div { color: var(--ink-soft); }
.contact-list a:hover { color: var(--gold); }

.contact-form {
    background: var(--bg-soft);
    padding: 52px 48px;
    border: 1px solid var(--line);
}
.contact-form h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.7rem;
    color: var(--ink);
    margin-bottom: 32px;
}
.contact-form label {
    display: block;
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-family: var(--sans);
    font-size: 1rem;
    color: var(--ink);
    transition: border-color .25s;
}
.contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4a574' stroke-width='1' fill='none'/%3E%3C/svg%3E") right .5em center / 12px no-repeat;
    padding-right: 24px;
}
.contact-form select option { background: var(--bg-soft); color: var(--ink); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 12px; }
.form-status { color: var(--gold); margin-top: 16px; font-size: .92rem; font-style: italic; font-family: var(--serif); }

/* ---------- Footer ---------- */
.footer {
    padding: 64px 0 36px;
    background: var(--bg);
    border-top: 1px solid var(--line-soft);
    color: var(--ink-soft);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.footer-brand { display: flex; gap: 18px; align-items: center; }
.footer-name {
    font-family: var(--serif);
    color: var(--ink);
    font-size: 1.05rem;
    margin: 0 0 2px;
}
.footer-tag {
    font-size: .82rem;
    font-style: italic;
    font-family: var(--serif);
    color: var(--muted);
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 28px;
    justify-content: center;
    font-size: .82rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.footer-links a:hover { color: var(--gold); }
.footer-meta {
    text-align: right;
    font-size: .82rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--muted);
}
.footer-admin {
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}
.footer-admin:hover { color: var(--gold); }
.footer-legal {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.footer-legal a {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
}
.footer-legal a:hover { color: var(--gold); }

/* ---------- Brand logo ---------- */
.brand-logo {
    height: 36px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    opacity: .9;
}

/* ---------- Partners carousel ---------- */
.partners {
    padding: 60px 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.partners-eyebrow {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 32px;
    text-align: center;
}
.partners-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.partners-track {
    display: inline-flex;
    gap: 72px;
    animation: partners-scroll 32s linear infinite;
    will-change: transform;
}
.partners-track:hover { animation-play-state: paused; }
@keyframes partners-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 10px 0;
    color: var(--ink-soft);
    transition: color .2s;
}
.partner img {
    height: 32px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.5);
    transition: filter .3s;
}
.partner:hover img { filter: grayscale(0) brightness(1); }
.partner-name {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    white-space: nowrap;
    color: var(--ink-soft);
    transition: color .2s;
}
.partner:hover .partner-name { color: var(--gold); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1713;
    border-top: 1px solid var(--line);
    color: var(--bg);
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 200;
    font-size: .88rem;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { color: rgba(244, 241, 235, 0.75); margin: 0; font-size: .88rem; }
.cookie-banner-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}
.cookie-banner-actions a {
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s;
}
.cookie-banner-actions a:hover { color: var(--gold); }
#cookie-accept {
    background: transparent;
    border: 1px solid var(--gold-soft);
    color: var(--gold-soft);
    padding: 9px 20px;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s;
}
#cookie-accept:hover { background: var(--gold-soft); color: #0e0d0c; }

/* ---------- Legal pages ---------- */
.legal-body-bg { background: var(--bg); }
.legal-page { padding: 80px 0 120px; }
.legal-frame {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 80px;
    align-items: start;
}
.legal-aside {
    position: sticky;
    top: 100px;
}
.legal-aside h3 {
    font-family: var(--sans);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--muted);
    font-weight: 300;
    margin-bottom: 20px;
}
.legal-aside ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.legal-aside a {
    display: block;
    padding: 8px 14px;
    font-size: .88rem;
    color: var(--ink-soft);
    border-left: 1px solid var(--line);
    transition: all .2s;
    letter-spacing: .04em;
}
.legal-aside a:hover { color: var(--gold); border-color: var(--gold); }
.legal-aside a.is-active { color: var(--bg); border-color: var(--gold-soft); font-weight: 400; }
.legal-article h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 8px;
}
.legal-updated {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 44px;
}
.legal-content h2 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ink);
    margin: 36px 0 12px;
}
.legal-content p { color: var(--ink-soft); margin-bottom: 1em; line-height: 1.8; }
.legal-content ul { padding-left: 20px; margin-bottom: 1em; }
.legal-content li { color: var(--ink-soft); margin-bottom: .4em; list-style: disc; }

/* ---------- Maintenance page ---------- */
.maintenance-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
}
.maintenance { text-align: center; max-width: 500px; padding: 40px; }
.maintenance-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold-soft);
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: 1.4rem;
    border-radius: 50%;
    margin-bottom: 32px;
}
.maintenance h1 {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 20px;
}
.maintenance p { color: var(--ink-soft); font-size: 1.05rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 64px; }
    .about-media-side { transform: none; }
    .quote-slide { grid-template-columns: 220px 1fr; gap: 48px; }
    .quote-body blockquote { font-size: 1.35rem; }
    .quotes-stage { min-height: 320px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-tile-0 { grid-row: span 1; aspect-ratio: 1/1; }
    .gallery-tile-2 { grid-column: span 1; aspect-ratio: 1/1; }
}
@media (max-width: 760px) {
    .frame { padding: 0 22px; }
    .topbar-inner { min-height: 70px; }
    .burger { display: flex; }
    .nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 18px;
        border-bottom: 1px solid var(--line);
        display: none;
    }
    .nav.open { display: flex; }
    .hero { height: 84vh; min-height: 540px; }
    .hero-sub { font-size: 1rem; }
    .slider-arrow { display: none; }
    .hero-counter { right: 22px; }
    .slider-dots { left: 22px; transform: none; }
    .intro, .collection, .about, .services, .quotes, .gallery, .contact { padding: 90px 0; }
    .section-head { flex-direction: column; align-items: flex-start; gap: 28px; margin-bottom: 48px; }
    .carousel { padding-left: 22px; }
    .product { flex: 0 0 250px; }
    .quote-slide { grid-template-columns: 1fr; gap: 28px; }
    .quote-photo { aspect-ratio: 4/3; max-width: 280px; }
    .quote-mark { display: none; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service { padding: 36px 28px; }
    .contact-form { padding: 32px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
    .footer-links { justify-content: center; }
    .footer-meta { text-align: center; align-items: center; }
    .legal-frame { grid-template-columns: 1fr; gap: 36px; }
    .legal-aside { position: static; }
    .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cookie-banner-actions { align-self: stretch; justify-content: space-between; }
}
