/* ==========================================================
   ORO DOORS — 2026 Max-Effort Design Layer
   Loaded AFTER styles.css + editorial.css. Owns:
   1. Warm token refinement (no pure neutral black)
   2. Hanken Grotesk body type
   3. Real render wiring (assets/renders/)
   4. New sections: Mechanism, Natural Stone, Technical Pack
   5. Motion: scroll-driven drift, tactile buttons, marquee polish
   6. Performance + reduced-motion + a11y
   Rollback: remove this one <link> tag.
   ========================================================== */

/* ---------- 1 · Tokens: warm the palette ---------- */
:root {
    --black: #0c0a07;
    --black-rich: #080604;
    --black-soft: #14110c;
    --black-card: #171410;
    --black-border: #262017;
    --black-hover: #1c1812;

    --bronze: #9a7b4f;
    --cream: #f2ece1;

    --font-body: 'Hanken Grotesk', -apple-system, 'Segoe UI', sans-serif;

    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background:
        radial-gradient(1200px 800px at 85% -10%, rgba(201, 168, 76, 0.04), transparent 60%),
        var(--black);
    letter-spacing: 0.005em;
}

/* Film grain — fixed, non-scrolling, pointer-transparent */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* ---------- 2 · Type polish ---------- */
.hero-title {
    letter-spacing: -0.015em;
}

.hero-title em,
.manifesto-title em,
.laminam-title em,
.pullquote-text em {
    color: var(--gold-light);
}

.hero-desc,
.philosophy-text,
.door-description,
.custom-text,
.arch-text,
.contact-desc {
    max-width: 62ch;
    color: var(--gray-200);
}

.section-subtitle { letter-spacing: 0.32em; }

/* ---------- 3 · Real renders ---------- */

/* Showroom carousel — six commissioned projects */
.showroom-card-img { overflow: hidden; }
.showroom-card-img-inner {
    transition: transform 1.4s var(--ease-expo), filter 1.4s var(--ease-expo);
    will-change: transform;
}
.showroom-card:hover .showroom-card-img-inner {
    transform: scale(1.055);
}
/* showroom cards: NO pictures by Oleg's call — the original gradient
   panels show through until real install photos exist; an elegant note
   sits in each panel meanwhile */
.showroom-card-img { position: relative; }
.showroom-card-img::after {
    content: 'New Gallery\A Photography in progress';
    white-space: pre-line;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    line-height: 2.4;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.72);
    z-index: 2;
    pointer-events: none;
}

/* AURUM flagship showcase */
.pivot-render {
    background: url('assets/renders/oro-aurum-flagship.jpg') center/cover no-repeat;
}
.showcase-image { overflow: hidden; }
.showcase-image .door-3d-render {
    transition: transform 1.6s var(--ease-expo);
}
.showcase-visual:hover .door-3d-render { transform: scale(1.04); }

/* Collection cards */
.door-card-image { overflow: hidden; }
.door-visual {
    transition: transform 1.4s var(--ease-expo);
    will-change: transform;
}
.door-card:hover .door-visual { transform: scale(1.05); }
.pivot-glass {
    background: url('assets/renders/oro-lumen-card.jpg') center/cover no-repeat;
}
.security-door {
    background: url('assets/renders/oro-fortis-card.jpg') center/cover no-repeat;
}

/* Architects */
.arch-image {
    background: url('assets/renders/oro-arch-atelier.jpg') center/cover no-repeat;
    border: 1px solid var(--black-border);
}

/* Customization stack — craft details */
.custom-img-1 { background: url('assets/renders/oro-craft-bronze.jpg') center/cover no-repeat; }
.custom-img-2 { background: url('assets/editorial-door-2.jpg') center/cover no-repeat; }
.custom-img-3 { background: url('assets/laminam-ossido-bruno-natural.avif') center/cover no-repeat; }

/* ---------- Editorial spreads: gallery drama, zero-crop door frames ----------
   The 3/4 image frame matches the render ratio (0.747): the door can never be
   cut at any viewport. Drama comes from asymmetry, ghost numerals, gallery
   framing and ambient light, not from cover-cropping. */
.editorial { position: relative; }
.editorial::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(820px 560px at 18% 22%, rgba(201, 168, 76, 0.055), transparent 62%),
        radial-gradient(820px 560px at 84% 78%, rgba(154, 123, 79, 0.05), transparent 62%);
}

.editorial-spread {
    display: grid;
    grid-template-columns: 7fr 5fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 5.5rem);
    min-height: unset;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(4.5rem, 9vw, 8.5rem);
}
.editorial-spread.reversed { grid-template-columns: 5fr 7fr; }

.editorial-spread-image {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 88vh;
    overflow: hidden;
    box-shadow: 0 40px 90px -38px rgba(0, 0, 0, 0.85);
}

/* gallery mat: inner gold hairline */
.editorial-spread-image::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(201, 168, 76, 0.30);
    pointer-events: none;
    z-index: 3;
}

/* veil → caption-readability vignette only */
.editorial-spread-image::before,
.editorial-spread.reversed .editorial-spread-image::before {
    background: linear-gradient(to top, rgba(8, 8, 6, 0.55) 0%, transparent 24%);
}

.editorial-spread-text {
    position: relative;
    max-width: 560px;
    padding: clamp(1.5rem, 3vw, 3rem) 0;
    z-index: 2;
}
.editorial-spread.reversed .editorial-spread-text { margin-left: auto; }

/* bigger voice on the quotes */
.ed-quote {
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    line-height: 1.32;
}

/* text pulls INTO the image: collage overlap */
.editorial-spread:not(.reversed) .editorial-spread-text { margin-left: clamp(-4.5rem, -4vw, -1.5rem); padding-left: 0.5rem; }
.editorial-spread.reversed .editorial-spread-text { margin-right: clamp(-4.5rem, -4vw, -1.5rem); padding-right: 0.5rem; }

/* staggered vertical rhythm between the two spreads */
.editorial-spread:not(.reversed) .editorial-spread-text { padding-top: clamp(3rem, 7vw, 6rem); }
.editorial-spread.reversed .editorial-spread-text { padding-bottom: clamp(3rem, 7vw, 6rem); }

/* slow living image inside its safe frame (door has margins; 4% never reaches it) */
.editorial-spread-image:hover .editorial-img-bg { transform: scale(1.04); }

/* real catalog photography, frame ratio matched per image below */
.ed-img-1 {
    background-image: url('assets/renders/oro-editorial-white-pivot.jpg?v=2');
    background-position: center;
}

/* eyebrow numbers carry no meaning for visitors — labels alone orient */
.editorial-eyebrow .num { display: none; }

/* ---------- Projects: gallery-in-preparation band ---------- */
.projects-note {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    background:
        radial-gradient(820px 460px at 80% 20%, rgba(201, 168, 76, 0.06), transparent 62%),
        var(--black-rich);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.projects-note-inner { max-width: 820px; }
.projects-note-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    line-height: 1.1;
    color: var(--white);
    margin: 1.1rem 0 1.2rem;
}
.projects-note-title em { font-style: italic; color: var(--gold-light); }
.projects-note-text { color: var(--gray-200); max-width: 56ch; margin-bottom: 2rem; }
.projects-note-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.ed-img-2 {
    background-image: url('assets/renders/oro-corten-steel.jpg?v=2');
    background-position: center;
}

@media (max-width: 860px) {
    .editorial-spread,
    .editorial-spread.reversed { grid-template-columns: 1fr; gap: 1.5rem; }
    .editorial-spread-image { aspect-ratio: 3 / 4; max-height: none; order: -1; }
    .editorial-spread-text,
    .editorial-spread.reversed .editorial-spread-text {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

/* real-photography frames: ratio == the photo's own (zero crop) —
   placed after the media query so it wins at every viewport */
.ed-frame-1 { aspect-ratio: 2046 / 1848; }
.ed-frame-2 { aspect-ratio: 2046 / 1848; }

/* "Pictured" caption: real material language under each system story */
.sys-pictured {
    margin-top: 1.6rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-400);
}
.sys-pictured .gold-dot { color: var(--gold-light); }

/* Hero backdrop — deepen the stage behind the video */
.hero-slide[data-slide="0"] {
    background:
        radial-gradient(ellipse at 72% 42%, rgba(201, 168, 76, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 110%, rgba(154, 123, 79, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0d0b08 0%, #171208 38%, #0d0a06 62%, #090806 100%);
}

/* ---------- 4 · Marquee polish ---------- */
.marquee-section {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-section:hover .marquee-content { animation-play-state: paused; }

/* ---------- 4b · Nav emblem (gold ORO mark) ---------- */
.nav-logo { display: flex; align-items: center; }
.nav-emblem {
    height: 42px;
    width: auto;
    display: block;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}
.footer-logo .nav-emblem { height: 52px; }
@media (max-width: 600px) {
    .nav-emblem { height: 34px; }
}

/* ---------- 5 · Buttons: tactile + focus ---------- */
.btn {
    transition: transform 0.45s var(--ease-expo), background 0.45s var(--ease-expo),
                color 0.45s var(--ease-expo), border-color 0.45s var(--ease-expo),
                box-shadow 0.45s var(--ease-expo);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn-gold:hover { box-shadow: 0 14px 38px -14px rgba(201, 168, 76, 0.45); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 3px;
}

/* ---------- 5b · Customization page hero + bridge + CTA ---------- */
.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: calc(var(--nav-height) + clamp(3.5rem, 8vw, 7rem)) 0 clamp(2.5rem, 6vw, 5rem);
    background:
        radial-gradient(1100px 620px at 82% -6%, rgba(201, 168, 76, 0.13), transparent 58%),
        radial-gradient(760px 520px at 6% 6%, rgba(201, 168, 76, 0.05), transparent 60%),
        var(--black);
}
/* Atmospheric ORO-marble wash behind the title — dark + masked so body copy stays clean (v74) */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: url('assets/renders/stone3d-marble.jpg') center top / cover no-repeat;
    opacity: 0.30;
    /* texture visible across the top, dissolving out BEFORE the bottom so the section junction stays one flat color */
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 12%, transparent 90%);
            mask-image: linear-gradient(180deg, #000 0%, #000 12%, transparent 90%);
}
/* Subtle grounding fade at the bottom edge */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: none;
}
.page-hero > .container { position: relative; z-index: 2; }
/* Thin gold rule dividing the two columns (desktop only) */
@media (min-width: 901px) {
    .philosophy-right { border-left: 1px solid rgba(201,168,76,0.16); padding-left: clamp(2rem, 4vw, 3.5rem); }
}
/* Hero + next section share ONE uniform near-black so the marble hero reads as one seamless picture — a constant color has no seam (v77) */
.customization { background: linear-gradient(180deg, #000 0%, #000 2%, rgba(0,0,0,0) 17%) !important; }

.custom-bridge {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    background:
        radial-gradient(800px 440px at 12% 30%, rgba(154, 123, 79, 0.06), transparent 60%),
        var(--black-rich);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}
.custom-bridge-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.custom-bridge-text {
    color: var(--gray-200);
    max-width: 56ch;
    margin-top: 1.1rem;
}
.custom-bridge-actions {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    align-items: flex-start;
    justify-self: end;
}
@media (max-width: 900px) {
    .custom-bridge-inner { grid-template-columns: 1fr; }
    .custom-bridge-actions { justify-self: start; flex-direction: row; flex-wrap: wrap; }
}

.custom-cta {
    padding: clamp(4.5rem, 9vw, 8rem) 0;
    text-align: center;
    background:
        radial-gradient(700px 400px at 50% 100%, rgba(201, 168, 76, 0.06), transparent 65%),
        var(--black-rich);
    border-top: 1px solid var(--black-border);
}
.custom-cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    color: var(--white);
    line-height: 1.08;
}
.custom-cta-title em { font-style: italic; color: var(--gold-light); }
.custom-cta-text { color: var(--gray-200); margin: 1rem auto 2rem; max-width: 50ch; }
.custom-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- 6 · NEW SECTION — The Mechanism ---------- */
.mechanism {
    padding: clamp(5rem, 10vw, 9rem) 0;
    background:
        radial-gradient(900px 500px at 8% 20%, rgba(154, 123, 79, 0.05), transparent 60%),
        var(--black-rich);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.mechanism-grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.mechanism-visual {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--black-border);
}

.mechanism-img {
    position: absolute;
    inset: 0;
    background: url('assets/renders/oro-mechanism-pivot.jpg') center/cover no-repeat;
    transition: transform 1.8s var(--ease-expo);
}
.mechanism-visual:hover .mechanism-img { transform: scale(1.045); }

.mechanism-chip {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    padding: 0.75rem 1.1rem;
    background: rgba(12, 10, 7, 0.82);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201, 168, 76, 0.28);
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}
.mechanism-chip strong {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    line-height: 1;
}
.mechanism-chip span {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray-300);
}

.mechanism-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: var(--white);
    margin: 1.1rem 0 1.25rem;
}
.mechanism-title em {
    font-style: italic;
    color: var(--gold-light);
}

.mechanism-lede {
    color: var(--gray-200);
    max-width: 56ch;
    margin-bottom: 2.2rem;
}

.mech-specs { border-top: 1px solid var(--black-border); }
.mech-spec {
    display: grid;
    grid-template-columns: 9.5rem 1fr;
    gap: 1.25rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--black-border);
    align-items: baseline;
}
.mech-spec dt {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    color: var(--gold);
}
.mech-spec dd {
    font-size: 0.92rem;
    color: var(--gray-200);
}

.mechanism-foot {
    margin-top: 1.6rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gray-400);
}

/* ---------- 7 · NEW SECTION — Natural Stone ---------- */
.stone-section {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}

.stone-bg {
    position: absolute;
    inset: -12% 0;
    background: url('assets/renders/oro-stone-door.jpg?v=4') center/cover no-repeat;
    z-index: -2;
}

.stone-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        rgba(12, 10, 7, 0.55) 0%,
        rgba(12, 10, 7, 0.18) 38%,
        rgba(12, 10, 7, 0.86) 100%);
}

.stone-inner {
    width: 100%;
    padding-bottom: clamp(3rem, 7vw, 6rem);
    padding-top: clamp(8rem, 16vw, 13rem);
}

.stone-content { max-width: 760px; }

.stone-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.4rem, 5.2vw, 4.4rem);
    line-height: 1.04;
    color: var(--cream);
    margin: 1.1rem 0 1.2rem;
}
.stone-title em { font-style: italic; color: var(--gold-light); }

.stone-text {
    color: var(--gray-100);
    max-width: 58ch;
    margin-bottom: 1.8rem;
}

.stone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 2.2rem;
}
.stone-tag {
    padding: 0.45rem 1rem;
    border: 1px solid rgba(242, 236, 225, 0.28);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(12, 10, 7, 0.35);
    backdrop-filter: blur(4px);
}

/* ---------- 8 · Technical Pack (replaces dead downloads) ---------- */
.techpack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
    padding: clamp(2.5rem, 5vw, 4.5rem);
    border: 1px solid var(--black-border);
    background:
        radial-gradient(700px 400px at 100% 0%, rgba(201, 168, 76, 0.05), transparent 60%),
        var(--black-card);
}

.techpack-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    line-height: 1.1;
    color: var(--white);
    margin: 0.9rem 0 1.1rem;
}
.techpack-title em { font-style: italic; color: var(--gold-light); }

.techpack-desc { color: var(--gray-200); max-width: 48ch; margin-bottom: 1.9rem; }

.techpack-list { list-style: none; border-top: 1px solid var(--black-border); margin-bottom: 0; }
.techpack-list li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--black-border);
    color: var(--gray-100);
    font-size: 0.95rem;
}
.techpack-list svg { flex: none; color: var(--gold); }

.techpack-note {
    margin-top: 1.2rem;
    font-size: 0.78rem;
    color: var(--gray-400);
    letter-spacing: 0.04em;
}

/* ---------- 8a · Collection: system showcases (equal expression) ---------- */
.system-show { padding: clamp(3rem, 7vw, 6rem) 0; }
.system-show + .system-show { border-top: 1px solid var(--black-border); }

.system-show-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}
.system-show:nth-of-type(even) .system-show-grid { grid-template-columns: 5fr 7fr; }
.system-show:nth-of-type(even) .system-media { order: 2; }

.system-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--black-card);
    box-shadow: 0 36px 80px -36px rgba(0, 0, 0, 0.85);
}
.system-media::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(201, 168, 76, 0.28);
    pointer-events: none;
    z-index: 2;
}
.sys-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sys-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* portrait media: the frame takes the photo's EXACT ratio (1025x1387) —
   frame shape = picture shape, so it fills fully with zero crop.
   Photo rests at transform scale 1 — any perpetual zoom keeps the
   bitmap resampled and reads as soft. */
.system-media--portrait {
    aspect-ratio: 1025 / 1387;
    max-width: 600px;
    width: 100%;
    justify-self: center;
}
/* interior media: same zero-crop rule — frame ratio == photo ratio (2046x1847) */
.system-media--interior {
    aspect-ratio: 2046 / 1847;
    max-width: 640px;
    width: 100%;
    justify-self: center;
}
/* lumen media: zero-crop frame for the glass-pivot photo (1688x1847) */
.system-media--lumen {
    aspect-ratio: 1688 / 1847;
    max-width: 600px;
    width: 100%;
    justify-self: center;
}
@media (max-width: 900px) {
    .system-media--portrait { max-width: 100%; justify-self: stretch; }
    .system-media--interior { max-width: 100%; justify-self: stretch; }
    .system-media--lumen { max-width: 100%; justify-self: stretch; }
}
.system-flag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.95rem;
    background: rgba(10, 8, 6, 0.82);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    font-size: 0.64rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-light);
}
.system-cta-row {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin-top: 1.7rem;
}

@media (max-width: 900px) {
    .system-show-grid,
    .system-show:nth-of-type(even) .system-show-grid { grid-template-columns: 1fr; gap: 1.6rem; }
    .system-show:nth-of-type(even) .system-media { order: 0; }
}

/* ---------- 8a2 · Media reveal: fade, settle, scroll depth ----------
   Premium-gallery treatment (researched 2026-06-10): frames fade in
   while the picture settles from a slight zoom; in browsers with
   scroll-driven animations the picture also keeps a barely-there
   vertical drift inside its fixed frame (architectural depth), and
   the gold mat line arrives as a quiet second beat. Built ONLY from
   compositor-safe properties (opacity / scale / translate) — worst
   failure mode is a static, fully visible image. */
.system-media[data-animate],
.editorial-spread-image[data-animate] {
    opacity: 0;
    transform: none !important;
    transition: opacity 1s var(--ease-expo) 0.05s;
}
.system-media[data-animate].visible,
.editorial-spread-image[data-animate].visible {
    opacity: 1;
}

/* settle uses the individual `scale` property so it composes with the
   scroll-driven `translate` below; legacy transform hover-zooms are
   neutralized (big-panel hover zoom reads cheap, not luxury) */
.system-media[data-animate] .sys-video,
.system-media[data-animate] .sys-img,
.editorial-spread-image[data-animate] .editorial-img-bg {
    transform: none !important;
    scale: 1.07;
    transition: scale 1.8s var(--ease-expo) 0.05s;
}
.system-media[data-animate].visible .sys-video,
.system-media[data-animate].visible .sys-img,
.editorial-spread-image[data-animate].visible .editorial-img-bg {
    scale: 1;
}

/* gold mat line: second beat, after the picture has begun to show */
.system-media[data-animate]::after {
    opacity: 0;
    transition: opacity 0.9s ease 0.55s;
}
.system-media[data-animate].visible::after {
    opacity: 1;
}

/* scroll depth: ~2% drift inside the frame as the section crosses the
   viewport. Needs a permanent bleed, so the resting scale is 1.05 here
   — only where view-timelines exist; everywhere else the picture rests
   at exact scale 1 (above) for a pixel-crisp still. */
@supports (animation-timeline: view()) {
    .system-media[data-animate] .sys-video,
    .system-media[data-animate] .sys-img,
    .editorial-spread-image[data-animate] .editorial-img-bg {
        scale: 1.09;
        animation: oroDepth linear both;
        animation-timeline: view(block);
    }
    .system-media[data-animate].visible .sys-video,
    .system-media[data-animate].visible .sys-img,
    .editorial-spread-image[data-animate].visible .editorial-img-bg {
        scale: 1.05;
    }
}
@keyframes oroDepth {
    from { translate: 0 2%; }
    to   { translate: 0 -2%; }
}

@media (prefers-reduced-motion: reduce) {
    .system-media[data-animate] {
        opacity: 1 !important;
        transition: none !important;
    }
    .editorial-spread-image[data-animate] {
        opacity: 1 !important;
        transition: none !important;
    }
    .system-media[data-animate]::after {
        opacity: 1 !important;
        transition: none !important;
    }
    .system-media[data-animate] .sys-video,
    .system-media[data-animate] .sys-img,
    .editorial-spread-image[data-animate] .editorial-img-bg {
        scale: none !important;
        translate: none !important;
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

/* ---------- 8b · Contact: panel, focus, validation, success ---------- */
.contact-form-wrapper {
    position: relative;
    background:
        radial-gradient(640px 380px at 100% 0%, rgba(201, 168, 76, 0.05), transparent 60%),
        var(--black-card);
    border: 1px solid var(--black-border);
    box-shadow: 0 34px 80px -40px rgba(0, 0, 0, 0.8);
}

.contact-form {
    transition: opacity 0.35s var(--ease-expo), transform 0.35s var(--ease-expo);
}
.contact-form.form-hidden { opacity: 0; transform: translateY(10px); }

.form-group input,
.form-group select,
.form-group textarea { caret-color: var(--gold); }

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label { color: var(--gold-light); }

.form-group .form-line { transition: box-shadow 0.4s var(--ease-expo); }
.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line { box-shadow: 0 1px 10px -2px rgba(201, 168, 76, 0.5); }

/* gold chevron on selects */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c9a84c' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 26px;
    cursor: pointer;
}

/* gentle invalid hint after interaction */
.form-group input:user-invalid + label,
.form-group textarea:user-invalid + label { color: #b3674f; }
.form-group input:user-invalid ~ .form-line,
.form-group textarea:user-invalid ~ .form-line { background: #b3674f; }

/* submit: arrow life */
.btn-full svg { transition: transform 0.45s var(--ease-expo); }
.btn-full:hover svg { transform: translateX(6px); }

.form-note {
    margin-top: 0.9rem;
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    color: var(--gray-400);
}

/* success state */
.form-success {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
    padding: 2.5rem 2rem;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s var(--ease-expo), transform 0.6s var(--ease-expo);
}
.form-success[hidden] { display: none; }
.form-success.visible { opacity: 1; transform: none; }
.form-success h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.1rem;
    color: var(--white);
    margin-top: 0.9rem;
}
.form-success p { color: var(--gray-200); }
.success-check {
    stroke-dasharray: 44;
    stroke-dashoffset: 44;
}
.form-success.visible .success-check {
    animation: oroCheck 0.7s 0.25s var(--ease-expo) forwards;
}
@keyframes oroCheck { to { stroke-dashoffset: 0; } }
.form-again {
    margin-top: 1.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.4);
    padding-bottom: 2px;
    cursor: none;
    transition: color 0.3s, border-color 0.3s;
}
.form-again:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* contact info micro-interactions */
.contact-item { transition: transform 0.45s var(--ease-expo); }
.contact-item:hover { transform: translateX(5px); }
.contact-item svg { color: var(--gold); }
.contact-link {
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}
.contact-link:hover { color: var(--gold-light); border-bottom-color: rgba(201, 168, 76, 0.5); }
.social-link { transition: transform 0.45s var(--ease-expo), background 0.45s, color 0.45s, border-color 0.45s; }
.social-link:hover { transform: translateY(-4px); }

/* ---------- 9 · Scroll-driven enhancement (progressive) ---------- */
/* Editorial images: NO scroll zoom — any scale crops the door subject
   at the frame edge. Doors stay fully framed, exactly as shot. */
@supports (animation-timeline: view()) {
    .stone-bg {
        animation: oroParallax linear both;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
    }
}

@keyframes oroParallax {
    from { transform: translateY(-5%); }
    to   { transform: translateY(5%); }
}

/* ---------- 10 · Performance ---------- */
.materials-section,
.laminam-section,
.architects,
.catalogues,
.contact,
.mechanism {
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
}

/* ---------- 11 · Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .marquee-content { animation: none !important; }
    .cursor, .cursor-dot { display: none !important; }
    body { cursor: auto; }
    body::after { display: none; }
}

/* ---------- 12 · Responsive: new sections ---------- */
@media (max-width: 900px) {
    .mechanism-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .mech-spec { grid-template-columns: 7.5rem 1fr; gap: 0.9rem; }
    .techpack { grid-template-columns: 1fr; }
    .stone-section { min-height: 64vh; }
}

@media (max-width: 600px) {
    .mechanism-chip strong { font-size: 1.2rem; }
    .stone-tags { gap: 0.45rem; }
    .stone-tag { padding: 0.4rem 0.75rem; font-size: 0.66rem; }
}

/* ---------- 9 · Product finish stage (aurum.html) ----------
   The benched configurator render stacks become the product page's
   interactive finish section: real textures pick, real photographs
   answer. Compositor-safe opacity swaps only. */
.pfin-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 2.4rem; align-items: stretch; }
.pfin-stage { position: relative; overflow: hidden; aspect-ratio: 7 / 10; max-height: 80vh; background: #0d0b08; }
.pfin-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s var(--ease-expo); }
.pfin-stage img.on { opacity: 1; }
.pfin-views { position: absolute; right: 1rem; bottom: 1rem; display: flex; border: 1px solid rgba(255,255,255,0.2); background: rgba(10,9,7,0.5); backdrop-filter: blur(8px); z-index: 2; }
.pfin-view { background: none; border: none; color: var(--gray-300); font-family: var(--font-accent); font-size: 0.66rem; letter-spacing: 0.18em; padding: 0.5rem 1rem; cursor: pointer; transition: all 0.3s; }
.pfin-view:hover { color: var(--gray-200); }
.pfin-view.sel { background: var(--gold); color: #141008; }
.pfin-cap { position: absolute; left: 1.1rem; bottom: 1.1rem; z-index: 2; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-200); text-shadow: 0 1px 8px rgba(0,0,0,0.65); }
.pfin-cap .gold-dot { color: var(--gold-light); }
.pfin-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.pfin-chip { display: flex; align-items: center; gap: 0.7rem; background: none; border: 1px solid rgba(255,255,255,0.09); padding: 0.5rem; cursor: pointer; transition: border-color 0.3s, background 0.3s; text-align: left; }
.pfin-chip:hover { border-color: var(--gray-400); }
.pfin-chip.sel { border-color: var(--gold); background: rgba(201,168,76,0.1); }
.pfin-chip .pc-tex { width: 46px; height: 56px; background-size: cover; background-position: center; flex-shrink: 0; }
.pfin-chip .pc-name { font-family: var(--font-accent); font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gray-200); line-height: 1.3; }
.pfin-chip.sel .pc-name { color: var(--gold-light); }
.pfin-note { margin-top: 1.3rem; font-size: 0.74rem; line-height: 1.65; color: var(--gray-400); }
.pfin-cta { margin-top: 1.3rem; }
@media (max-width: 900px) {
    .pfin-grid { grid-template-columns: 1fr; }
    .pfin-stage { max-height: 66vh; }
}

/* ---------- 10 · Coplanar banner (aurum.html) ----------
   A cinematic band: macro of the leaf-facade junction, the visible
   core about half the screen, melting to page black left and right. */
.coplanar-band { position: relative; padding: clamp(2.5rem, 6vw, 5rem) 0; background: #0a0a0a; overflow: hidden; }
.cb-media { position: relative; width: 100%; }
.cb-media img {
    display: block; width: 100%;
    height: clamp(320px, 52vh, 580px);
    object-fit: cover; object-position: center;
}
/* fade the band top + bottom into the page background so it reads as one picture (v83) */
.cb-media::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, #0a0a0a 0%, rgba(10,10,10,0) 18%, rgba(10,10,10,0) 82%, #0a0a0a 100%); }
.cb-caption { position: absolute; left: 50%; bottom: clamp(1.2rem, 4.5vh, 2.6rem); transform: translateX(-50%); text-align: center; z-index: 2; width: max-content; max-width: 90vw; }
.cb-caption .cb-eyebrow { font-family: var(--font-accent); font-size: 0.66rem; letter-spacing: 0.3em; color: var(--gold-light); display: block; margin-bottom: 0.45rem; text-transform: uppercase; }
.cb-caption .cb-line { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 2.2vw, 1.95rem); color: var(--white); text-shadow: 0 2px 16px rgba(0,0,0,0.75); }
.cb-caption .cb-line em { font-style: italic; color: var(--gold-light); }

/* ---------- 11 · Grouped spec accordions (product pages) ----------
   Twenty-plus flat rows become five quiet chapters; the first stands
   open, the rest wait. Native details/summary, no JS. */
.specs-grouped { border-top: 1px solid rgba(255,255,255,0.09); }
.spec-group { border-bottom: 1px solid rgba(255,255,255,0.09); }
.spec-group summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 1.1rem; padding: 1.2rem 0.2rem; }
.spec-group summary::-webkit-details-marker { display: none; }
.sg-title { font-family: var(--font-accent); font-size: 0.88rem; letter-spacing: 0.2em; color: var(--white); text-transform: uppercase; transition: color 0.3s; }
.sg-teaser { margin-left: auto; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gray-400); text-align: right; }
.sg-chev { width: 9px; height: 9px; border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold); transform: rotate(45deg) translateY(-2px); transition: transform 0.35s var(--ease-expo); flex-shrink: 0; }
.spec-group[open] .sg-chev { transform: rotate(225deg) translateY(-2px); }
.spec-group[open] .sg-title,
.spec-group summary:hover .sg-title { color: var(--gold-light); }
.sg-rows { padding: 0 0.2rem 1rem; }
.sg-rows .specs-row { border-bottom: 1px solid rgba(255,255,255,0.05); }
.sg-rows .specs-row:last-child { border-bottom: none; }
@media (max-width: 700px) {
    .sg-teaser { display: none; }
}

/* ---------- 12 · Mechanism in motion (product pages) ----------
   The CSS top-view diagrams retire; the real door does the talking. */
.mech-motion { position: relative; border: 1px solid rgba(255,255,255,0.09); overflow: hidden; box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.mech-motion video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.mech-motion .mm-cap { position: absolute; left: 1rem; bottom: 0.85rem; margin: 0; font-family: var(--font-accent); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-200); text-shadow: 0 1px 8px rgba(0,0,0,0.7); }
.mech-motion .mm-cap b { color: var(--gold-light); font-weight: 400; }

/* ---------- 13 · Pivot simulator: the drawn mechanism ----------
   A fine-line plan view; the leaf follows the visitor's hand.
   Pure vector, gold on ink, drafting language. */
.pivot-sim {
    position: relative;
    border: 1px solid rgba(255,255,255,0.09);
    background:
        radial-gradient(420px 300px at 64% 38%, rgba(201,168,76,0.05), transparent 70%),
        #0c0b09;
    padding: clamp(0.8rem, 2vw, 1.6rem);
    cursor: crosshair;
    touch-action: none;
}
.pivot-sim svg { display: block; width: 100%; height: auto; }
.pivot-sim-cap {
    margin-top: 0.8rem;
    font-family: var(--font-accent);
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-400);
    text-align: center;
}
.pivot-sim-cap b { color: var(--gold-light); font-weight: 400; }

/* technical pack panel replaces fake download cards */
.techpack-panel { border: 1px solid rgba(255,255,255,0.09); padding: clamp(1.6rem, 4vw, 3rem); display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; background: rgba(255,255,255,0.02); }
.techpack-panel h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 0.6rem; }
.techpack-panel p { font-size: 0.85rem; line-height: 1.65; color: var(--gray-300); max-width: 52ch; }
.techpack-actions { display: flex; flex-direction: column; gap: 0.7rem; align-items: stretch; }
@media (max-width: 820px) { .techpack-panel { grid-template-columns: 1fr; } }

/* ---------- 14 - Closed model pages (FORTIS / LUMEN, pre-approval) ----------
   Hero stays; below it a single quiet statement: the door is earning its
   Florida approval. No empty shelves, no dead links - one message, two doors out. */
.model-closed { padding: clamp(5rem, 13vh, 9rem) 0 clamp(6rem, 15vh, 10rem); background: #0a0a0a; text-align: center; }
.mc-inner { max-width: 720px; margin: 0 auto; }
.mc-rule { display: block; width: 1px; height: 64px; margin: 0 auto 2.1rem; background: linear-gradient(to bottom, transparent, #C9A84C); }
.mc-eyebrow { font-family: var(--font-accent); font-size: 0.68rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; }
.mc-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.14; margin-bottom: 1.4rem; color: var(--white); }
.mc-copy { font-size: 0.95rem; line-height: 1.78; color: var(--gray-300); max-width: 58ch; margin: 0 auto 2.3rem; }
.mc-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.mc-foot { font-size: 0.8rem; color: var(--gray-400); }
.mc-foot a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .mc-actions { flex-direction: column; align-items: center; } }

/* ---------- 15 - Product gallery tiles: resolution-independent crops ----------
   product.css ships .pgallery-img without background-size, so tiles drew images
   at natural pixel size and any resolution change re-framed them (the zoomed-
   ceiling bug). Cover + center makes the crop geometric, not incidental. */
.pgallery-img { background-size: cover; background-position: center; background-repeat: no-repeat; }

/* ---------- 16 - Hardware cards: drawn diagrams (photo renders rejected take 76) ----------
   Same drawing language as the pivot simulator: ivory leaf lines, gold handle,
   dashed leaders, a TOP SECTION detail. SVG = crisp at any size, perfect labels. */
.hw-visual { display: flex; align-items: center; justify-content: center; padding: 8px; }
.hw-coplanar, .hw-cortina, .hw-jumbo, .hw-ceg {
    background: radial-gradient(150px 200px at 46% 38%, rgba(201, 168, 76, 0.06), transparent 70%) #0c0b09;
}
.hw-visual svg { width: 100%; height: 100%; display: block; }
.hwd-cap { font: 8px 'Hanken Grotesk', sans-serif; letter-spacing: 2px; fill: rgba(154, 148, 136, 0.6); }
.hwd-label { font: 9.5px 'Hanken Grotesk', sans-serif; letter-spacing: 0.5px; fill: rgba(212, 185, 100, 0.95); }
.hwd-label2 { font: 8px 'Hanken Grotesk', sans-serif; letter-spacing: 0.4px; fill: rgba(154, 148, 136, 0.85); }
.hwd-leaf { fill: rgba(201, 168, 76, 0.04); stroke: rgba(245, 240, 232, 0.4); stroke-width: 1.2; }
.hwd-floor { stroke: rgba(245, 240, 232, 0.22); stroke-width: 1; }
.hwd-gold { fill: rgba(212, 185, 100, 0.22); stroke: #D4B964; stroke-width: 1.6; }
.hwd-gold-soft { fill: rgba(0, 0, 0, 0.45); stroke: rgba(212, 185, 100, 0.55); stroke-width: 1.1; }
.hwd-goldline { fill: none; stroke: #D4B964; stroke-width: 1.6; stroke-linecap: round; }
.hwd-goldhair { stroke: rgba(212, 185, 100, 0.7); stroke-width: 1; }
.hwd-leader { fill: none; stroke: rgba(201, 168, 76, 0.45); stroke-width: 1; stroke-dasharray: 3 4; }
.hwd-detail { fill: rgba(255, 255, 255, 0.015); stroke: rgba(245, 240, 232, 0.25); stroke-width: 1; }

/* ---------- 17 - Mechanism: drawn cutaway replaces the render (take 77) ---------- */
.mechanism-img { background: radial-gradient(300px 260px at 40% 46%, rgba(201, 168, 76, 0.07), transparent 70%) #0c0b09; display: flex; align-items: center; justify-content: center; padding: 14px; }
.mechanism-img svg { width: 100%; height: 100%; display: block; }

/* ---------- 18 - Material Library cards: real textures over gradients (take 79) ---------- */
.mat-corten  { background: url('assets/renders/tex-corten.jpg') center/cover no-repeat !important; }
.mat-stone   { background: url('assets/renders/tex-stone.jpg') center/cover no-repeat !important; }
.mat-wood    { background: url('assets/renders/tex-walnut.jpg') center/cover no-repeat !important; }
.mat-bronze  { background: url('assets/renders/tex-dark-bronze.jpg') center/cover no-repeat !important; }
.mat-glass   { background: url('assets/renders/tex-glass.jpg?v=6') center/cover no-repeat !important; }
.mat-leather { background: url('assets/renders/tex-leather.jpg?v=2') center/cover no-repeat !important; }
.mat-cement  { background: url('assets/renders/lam-calce-grigio.jpg') center/cover no-repeat !important; }

/* ---------- 19 - Showroom invitation: feel the materials in person (take 85) ---------- */
.showroom-invite { position: relative; padding: clamp(4rem, 9vw, 7rem) 0; background:
    radial-gradient(720px 420px at 22% 24%, rgba(201,168,76,0.07), transparent 64%), #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); overflow: hidden; }
.si-inner { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem);
    display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.si-eyebrow { font-family: var(--font-accent); font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.1rem; }
.si-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; color: var(--white); margin-bottom: 1.2rem; }
.si-title em { font-style: italic; color: var(--gold-light); }
.si-text { font-size: 0.95rem; line-height: 1.75; color: var(--gray-300); max-width: 50ch; }
.si-card { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.02); padding: clamp(1.6rem, 3vw, 2.2rem); }
.si-card-label { font-family: var(--font-accent); font-size: 0.6rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gray-400); display: block; margin-bottom: 0.7rem; }
.si-addr { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); line-height: 1.4; margin-bottom: 0.5rem; }
.si-hours { font-size: 0.82rem; color: var(--gray-300); margin-bottom: 1.4rem; }
.si-actions { display: flex; flex-direction: column; gap: 0.7rem; }
.si-actions .btn { width: 100%; text-align: center; }
@media (max-width: 820px) { .si-inner { grid-template-columns: 1fr; gap: 2rem; } }

.contact-sub { display: block; font-size: 0.74rem; color: var(--gray-400); margin-top: 0.35rem; }

.cta-showroom { margin-top: 1.4rem; font-size: 0.82rem; color: var(--gray-400); }
.cta-showroom a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- 20 - Smart Access feature: the ORO key-card (take 90) ---------- */
.access-feature { display: grid; grid-template-columns: 1fr 1.12fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.access-feature.flip { grid-template-columns: 1.12fr 1fr; }
.access-feature.flip .access-feature-copy { order: 2; }
.access-feature.flip .access-card-stage { order: 1; }
.access-feature-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0.4rem 0 1.1rem; color: var(--white); }
.access-feature-lead { font-size: 0.95rem; line-height: 1.75; color: var(--gray-300); max-width: 46ch; margin-bottom: 1.2rem; }
.access-feature-note { font-family: var(--font-accent); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray-400); }
.access-feature-note .gold-dot { color: var(--gold-light); }
.spec-link { display: flex; width: fit-content; align-items: center; gap: 0.6rem; margin-top: 1.4rem; padding: 0.78rem 1.45rem; border: 1px solid rgba(201,168,76,0.55); border-radius: 100px; background: linear-gradient(135deg, rgba(201,168,76,0.14), rgba(201,168,76,0.035)); font-family: var(--font-accent); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light, #d4b964); text-decoration: none; transition: border-color .4s var(--ease-expo, ease), background .4s var(--ease-expo, ease), transform .4s var(--ease-expo, ease), box-shadow .4s var(--ease-expo, ease); }
.spec-link:hover { border-color: var(--gold, #c9a84c); background: linear-gradient(135deg, rgba(201,168,76,0.24), rgba(201,168,76,0.07)); color: #f0dca0; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.4); }
.spec-link svg { flex: 0 0 auto; width: 17px; height: 17px; }
.access-card-stage { position: relative; margin: 0; overflow: visible; }
/* the card photo sits in the framed box (the box + shine effect Oleg liked) */
.access-card-box { position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px -28px rgba(0,0,0,0.85), 0 0 0 1px rgba(201,164,92,0.16) inset; }
.access-card-box img { display: block; width: 100%; height: auto; transition: transform 1.1s var(--ease-expo); }
.access-card-stage:hover .access-card-box img { transform: scale(1.03); }
.access-card-box::after { content: ''; position: absolute; top: 0; left: -75%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.14), transparent); transform: skewX(-18deg); pointer-events: none; opacity: 0; }
.access-card-stage:hover .access-card-box::after { animation: accCardShine 1.25s var(--ease-expo) forwards; }
@keyframes accCardShine { 0% { left: -75%; opacity: 0; } 12% { opacity: 1; } 100% { left: 130%; opacity: 0; } }

/* the wording: real HTML type, flat (off the card plane) and breaking out of the box */
.access-card-plate { position: absolute; left: -5%; bottom: 9%; z-index: 4; display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem; pointer-events: none; }
.access-card-plate .acc-emblem { width: 74px; height: auto; margin-bottom: 0.35rem; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.65)); }
.access-card-plate .acc-welcome { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(2.5rem, 4.2vw, 3.7rem); line-height: 0.92; color: #ecd49a; background: linear-gradient(180deg, #f4e4b6 0%, #d6ad63 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 6px 30px rgba(0,0,0,0.45); }
.access-card-plate .acc-sub { font-family: var(--font-accent); font-size: 0.64rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.15rem; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
@media (max-width: 820px) { .access-feature { grid-template-columns: 1fr; gap: 1.6rem; } .access-feature.flip { grid-template-columns: 1fr; } .access-feature.flip .access-feature-copy, .access-feature.flip .access-card-stage { order: 0; } .access-card-plate { left: 4%; bottom: 7%; } .access-card-plate .acc-welcome { font-size: clamp(2.2rem, 9vw, 3rem); } }

/* === Hero showroom "feel it in person" callout (customization) === */
.hero-touch { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2.4rem; padding: 0.95rem 1.4rem 0.95rem 1.05rem; border: 1px solid rgba(201,164,92,0.35); border-radius: 16px; background: linear-gradient(135deg, rgba(201,164,92,0.09), rgba(201,164,92,0.02)); text-decoration: none; transition: border-color .5s var(--ease-expo), background .5s var(--ease-expo), transform .5s var(--ease-expo); max-width: 31rem; }
.hero-touch:hover { border-color: rgba(201,164,92,0.62); background: linear-gradient(135deg, rgba(201,164,92,0.15), rgba(201,164,92,0.04)); transform: translateY(-2px); }
.hero-touch-ico { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(201,164,92,0.42); color: var(--gold-light); transition: transform .5s var(--ease-expo); }
.hero-touch:hover .hero-touch-ico { transform: scale(1.06); }
.hero-touch-txt { display: flex; flex-direction: column; gap: 3px; font-size: 0.88rem; line-height: 1.45; color: var(--gray-300); }
.hero-touch-txt strong { color: var(--white); font-weight: 600; font-size: 0.96rem; letter-spacing: 0.01em; }
.hero-touch-arrow { flex: 0 0 auto; color: var(--gold-light); transition: transform .4s var(--ease-expo); }
.hero-touch:hover .hero-touch-arrow { transform: translateX(4px); }
@media (max-width: 600px) { .hero-touch { margin-top: 1.7rem; gap: 0.8rem; padding: 0.85rem 1.1rem; } .hero-touch-txt { font-size: 0.82rem; } }

/* === "Designed By You" interactive steps + cross-fade stage === */
.custom-options[data-custom-tabs] { display: flex; flex-direction: column; gap: 0; }
.custom-option { width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid var(--black-border); font: inherit; color: inherit; cursor: pointer; -webkit-appearance: none; appearance: none; position: relative; align-items: flex-start; }
.custom-option::after { content: ''; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: width .6s var(--ease-expo); }
.custom-option.is-active::after { width: 100%; }
.custom-option .option-number { transition: color .4s var(--ease-expo), transform .5s var(--ease-expo); }
.custom-option .option-content h4 { transition: color .4s var(--ease-expo); }
.custom-option:not(.is-active) .option-content h4 { color: var(--gray-300); }
.custom-option.is-active .option-number { color: var(--gold-light); transform: translateX(3px); }
.custom-option.is-active .option-content h4 { color: var(--white); }
.custom-option:focus-visible { outline: 2px solid rgba(201,164,92,0.6); outline-offset: 3px; border-radius: 6px; }

.custom-stage { position: relative; width: 100%; aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; background: #15110c; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.85), 0 0 0 1px rgba(201,164,92,0.14) inset; }
.custom-stage .cstage { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity 1s var(--ease-expo), transform 7s linear; }
.custom-stage .cstage.is-active { opacity: 1; transform: scale(1); }
.custom-stage::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,9,7,0.6) 0%, transparent 42%); pointer-events: none; z-index: 2; }
.custom-stage-cap { position: absolute; left: 20px; bottom: 22px; z-index: 3; font-family: var(--font-accent); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,0.75); }
.custom-stage-cap::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--gold-light); vertical-align: middle; margin-right: 11px; }
.custom-stage-bar { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: rgba(255,255,255,0.08); z-index: 3; }
.custom-stage-bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
@media (max-width: 900px) { .custom-stage { aspect-ratio: 16 / 11; max-height: 420px; } }

/* === Laminam collection: refined material grid === */
.lam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: clamp(2rem, 5vw, 3.5rem); }
.lam-card { display: flex; flex-direction: column; }
.lam-card-media { position: relative; aspect-ratio: 4 / 5; border-radius: 4px; overflow: hidden; background: #15110c; cursor: zoom-in; border: 1px solid rgba(245,240,232,0.08); transition: border-color .5s var(--ease-expo), transform .5s var(--ease-expo), box-shadow .5s var(--ease-expo); }
.lam-card-media:hover { transform: translateY(-4px); border-color: rgba(201,164,92,0.5); box-shadow: 0 26px 50px -30px rgba(0,0,0,0.85); }
.lam-card-img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease-expo); }
.lam-card-media:hover .lam-card-img { transform: scale(1.04); }
.lam-card-frame { position: absolute; inset: 0; box-shadow: 0 0 0 1px rgba(201,164,92,0.18) inset; pointer-events: none; }
.lam-card-zoom { position: absolute; top: 0.7rem; right: 0.7rem; z-index: 2; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(12,10,7,0.5); border: 1px solid rgba(201,164,92,0.42); color: var(--gold-light); opacity: 0; transform: scale(0.85); transition: all .4s var(--ease-expo); backdrop-filter: blur(3px); }
.lam-card-media:hover .lam-card-zoom { opacity: 1; transform: scale(1); }
.lam-card-foot { padding: 0.85rem 0.1rem 0; }
.lam-card-cat { font-family: var(--font-accent); font-size: 0.56rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-light); }
.lam-card-name { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 1.3rem; color: var(--white); margin: 0.15rem 0 0.6rem; line-height: 1.1; }
.lam-card-dots { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.lam-dot { width: 21px; height: 21px; border-radius: 50%; background-size: cover; background-position: center; cursor: pointer; box-shadow: 0 0 0 1px rgba(245,240,232,0.18) inset; transition: box-shadow .3s var(--ease-expo), transform .3s var(--ease-expo); }
.lam-dot:hover { transform: scale(1.14); }
.lam-dot.is-active { box-shadow: 0 0 0 2px var(--gold-light), 0 0 0 4px rgba(201,164,92,0.22); }
.lam-card-empty { font-size: 0.78rem; color: var(--gray-400); }
.lam-card-empty a { color: var(--gold-light); }
@media (max-width: 900px) { .lam-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 520px) { .lam-card-name { font-size: 1.08rem; } }

.lamzoom { position: fixed; inset: 0; z-index: 100000; background: rgba(6,5,4,0.94); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; }
.lamzoom[hidden] { display: none; }
.lamzoom-stage { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; touch-action: none; cursor: grab; }
.lamzoom-stage:active { cursor: grabbing; }
.lamzoom-img { max-width: 92vw; max-height: 84vh; will-change: transform; transform-origin: center center; user-select: none; -webkit-user-drag: none; box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9); }
.lamzoom-close { position: absolute; top: 1.4rem; right: 1.5rem; z-index: 4; width: 58px; height: 58px; border-radius: 50%; border: 1px solid rgba(201,164,92,0.55); background: rgba(20,17,12,0.72); color: var(--gold-light); font-size: 2rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: all .35s var(--ease-expo); backdrop-filter: blur(5px); }
.lamzoom-close:hover { background: var(--gold-light); color: #0c0a07; transform: rotate(90deg); border-color: var(--gold-light); }
.lamzoom-bar { position: absolute; left: 0; right: 0; bottom: 1.2rem; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.3rem; pointer-events: none; }
.lamzoom-name { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.lamzoom-tip { font-family: var(--font-accent); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-400); }
@media (max-width: 600px) { .lam-panels { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.7rem; } }


/* ===== Natural Stone -- full-bleed hero banner (v62) ===== */
.stone-section { position: relative; min-height: 82vh; display: flex; align-items: center; overflow: hidden; isolation: isolate; padding: 0; background: #0b0908; }
.stone-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; transition: opacity .5s var(--ease-expo, ease); }
.stone-section::before { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none; display: block; background: linear-gradient(180deg, #0c0a07 0%, rgba(12,10,7,0) 17%), linear-gradient(0deg, #0c0a07 0%, rgba(12,10,7,0.85) 9%, rgba(12,10,7,0.4) 18%, rgba(12,10,7,0) 32%), linear-gradient(100deg, rgba(8,7,5,0.92) 0%, rgba(8,7,5,0.55) 34%, rgba(8,7,5,0.06) 64%, rgba(8,7,5,0) 100%); }
.stone-inner { position: relative; z-index: 3; width: 100%; padding: clamp(4rem,7vw,6rem) 0; }
.stone-content { max-width: 600px; }
.stone-stage-name { position: absolute; right: clamp(1.2rem,4vw,3rem); bottom: clamp(1.2rem,4vw,2.4rem); z-index: 3; font-family: var(--font-display,'Cormorant Garamond',serif); font-style: italic; font-size: 1.35rem; color: var(--gold-light,#d4b964); letter-spacing: .02em; text-shadow: 0 2px 16px rgba(0,0,0,.9); pointer-events: none; }
.stone-tabs { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.6rem 0 2.2rem; }
.stone-tab { padding: .55rem 1.05rem; border: 1px solid rgba(201,164,92,0.4); background: rgba(12,10,7,0.35); color: rgba(255,255,255,.82); font-family: inherit; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; border-radius: 30px; cursor: pointer; backdrop-filter: blur(4px); transition: all .3s var(--ease-expo, ease); }
.stone-tab:hover { border-color: rgba(212,185,100,.75); color: #fff; }
.stone-tab.is-active { background: var(--gold-light,#d4b964); border-color: var(--gold-light,#d4b964); color: #0c0a07; }
@media (max-width: 860px) { .stone-section { min-height: 68vh; } .stone-content { max-width: none; } }
@media (prefers-reduced-motion: reduce) { .stone-bg { transition: none; } }

/* Seamless full-bleed Natural Stone hero: kill the 1px divider seam sitting on top of the render (v72) */
.materials-section { border-bottom: 0 !important; }


/* ===== Laminam panels -- cursor loupe magnifier (v60) ===== */
.lam-loupe { position: fixed; z-index: 90; width: 150px; height: 150px; margin: -75px 0 0 -75px; border-radius: 50%; border: 2px solid rgba(212,185,100,0.85); box-shadow: 0 12px 30px rgba(0,0,0,0.55), inset 0 0 20px rgba(0,0,0,0.45); background-repeat: no-repeat; pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.lam-loupe.on { opacity: 1; }
@media (hover: none) { .lam-loupe { display: none; } }


/* ===== Smart Access - minimalist tabbed feature rail (v82) ===== */
.access-rail { max-width: 1120px; margin: 0 auto; padding: 0 clamp(1.5rem,4vw,3rem); }
.access-rail-head { max-width: 640px; margin-bottom: clamp(2.4rem,5vw,3.6rem); }
.access-rail-title { font-family: var(--font-display,'Cormorant Garamond',serif); font-weight: 400; font-size: clamp(2rem,4vw,3rem); line-height: 1.08; color: var(--white,#f3f0ea); margin: .55rem 0 1.1rem; }
.access-rail-title em { font-style: italic; color: var(--gold-light,#d4b964); }
.access-rail-intro { color: var(--gray-300,#b9b3a8); max-width: 54ch; line-height: 1.7; font-size: 1rem; }
.access-rail-body { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.access-tabs { display: flex; flex-direction: column; }
.access-tab { position: relative; display: flex; align-items: baseline; gap: 1rem; width: 100%; padding: 1.15rem 0 1.15rem 1.25rem; background: none; border: 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: left; cursor: pointer; }
.access-tabs .access-tab:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.access-tab::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%) scaleY(0); transform-origin: center; width: 2px; height: 56%; background: var(--gold,#c9a84c); transition: transform .45s var(--ease-expo,ease); }
.access-tab.is-active::before { transform: translateY(-50%) scaleY(1); }
.access-tab-num { font-family: var(--font-accent,'Hanken Grotesk',sans-serif); font-size: .68rem; letter-spacing: .22em; color: var(--gray-500,#6b665d); transition: color .4s ease; }
.access-tab-name { font-family: var(--font-display,serif); font-size: 1.5rem; font-weight: 400; color: var(--gray-400,#8a857b); letter-spacing: .01em; transition: color .4s ease; }
.access-tab:hover .access-tab-name { color: var(--gray-200,#d8d3c9); }
.access-tab.is-active .access-tab-name { color: var(--white,#f3f0ea); }
.access-tab.is-active .access-tab-num { color: var(--gold-light,#d4b964); }
.access-stage { margin: 0; }
.access-stage-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border: 1px solid rgba(255,255,255,0.07); transition: opacity .4s var(--ease-expo,ease); }
.access-stage-cap { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; margin-top: 1.4rem; }
.access-stage-desc { color: var(--gray-300,#b9b3a8); max-width: 46ch; line-height: 1.65; font-size: .95rem; margin: 0; }
.access-stage-spec { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .45rem; font-family: var(--font-accent,sans-serif); font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light,#d4b964); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.32); padding-bottom: 4px; transition: color .35s ease, border-color .35s ease; }
.access-stage-spec:hover { color: var(--gold,#c9a84c); border-color: var(--gold,#c9a84c); }
.access-stage-spec svg { flex: 0 0 auto; }
@media (max-width: 820px) {
  .access-rail-body { grid-template-columns: 1fr; gap: 2rem; }
  .access-tab-name { font-size: 1.3rem; }
  .access-stage-cap { flex-direction: column; gap: 1rem; }
}


/* ===== ONE uniform page background - no visible transitions between sections (v86) ===== */
body { background-color: #0c0a07 !important; }
.page-hero, .custom-bridge, .customization, .materials-section, .stone-section,
.laminam-section, .showroom-invite, .custom-cta, .configurations, .access-control, .coplanar-band {
    background-color: #0c0a07 !important;
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
}
.customization { background-image: none !important; }


/* ===== Deeper seamless pass: kill wrapper gradients, section glows, structural borders (v87) ===== */
/* darker diagonal gradient band inside Designed By You */
.custom-bg { display: none !important; }
/* remove the radial gold glows so no section reads lighter/warmer than the next (marble heroes are ::before / child imgs, untouched) */
.page-hero, .custom-bridge, .customization, .materials-section, .stone-section, .laminam-section,
.showroom-invite, .custom-cta, .configurations, .access-control, .coplanar-band, .architects, .catalogues, .mechanism {
    background-image: none !important;
}
/* every remaining structural divider line */
.laminam-statement, .footer, .footer-top, .architects, .catalogues, .custom-bridge, .custom-cta,
.showroom-invite, .configurations, .mechanism, .materials-section {
    border-top-width: 0 !important; border-bottom-width: 0 !important;
}
.footer { background-color: #0c0a07 !important; }
