/*
Theme Name: Onyx Prestige
Theme URI: https://onyxprestige.com.au
Author: Onyx Prestige
Author URI: https://onyxprestige.com.au
Description: Immersive dark-luxury theme for Onyx Prestige — European Prestige & Performance Specialists, Coolum Beach, Sunshine Coast. Cinematic scroll experience with GSAP + Lenis.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: onyx
Tags: one-column, custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
    --onyx-black: #0a0a09;
    --onyx-coal: #111110;
    --onyx-surface: #161615;
    --onyx-line: rgba(201, 169, 97, 0.16);
    --onyx-line-soft: rgba(237, 237, 230, 0.08);
    --onyx-gold: #c9a961;
    --onyx-gold-bright: #e3c887;
    --onyx-gold-dim: #8f7a4a;
    --onyx-text: #edede6;
    --onyx-muted: #8a887f;
    --onyx-serif: "Cormorant Garamond", "Times New Roman", serif;
    --onyx-sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-lux: cubic-bezier(0.65, 0.05, 0, 1);
    --gutter: clamp(1.25rem, 4vw, 4rem);
    --maxw: 88rem;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

body {
    background: var(--onyx-black);
    color: var(--onyx-text);
    font-family: var(--onyx-sans);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    cursor: pointer;
}

ul, ol {
    list-style: none;
}

::selection {
    background: var(--onyx-gold);
    color: var(--onyx-black);
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--onyx-black);
}
::-webkit-scrollbar-thumb {
    background: #2a2a26;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--onyx-gold-dim);
}

:focus-visible {
    outline: 2px solid var(--onyx-gold);
    outline-offset: 3px;
}

.skip-link {
    position: fixed;
    top: -100%;
    left: 1rem;
    z-index: 1000;
    padding: 0.75rem 1.25rem;
    background: var(--onyx-gold);
    color: var(--onyx-black);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 1rem;
}

/* ============================================================
   3. PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--onyx-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}
.preloader__logo {
    width: clamp(72px, 10vw, 110px);
    opacity: 0;
    transform: scale(0.85);
}
.preloader__count {
    font-family: var(--onyx-serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--onyx-gold);
    font-variant-numeric: tabular-nums;
}
.preloader__bar {
    width: clamp(160px, 24vw, 280px);
    height: 1px;
    background: var(--onyx-line-soft);
    position: relative;
    overflow: hidden;
}
.preloader__bar span {
    position: absolute;
    inset: 0;
    background: var(--onyx-gold);
    transform: scaleX(0);
    transform-origin: left;
}
.preloader__word {
    position: absolute;
    bottom: 2rem;
    font-size: 0.65rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--onyx-muted);
}

/* ============================================================
   4. TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--onyx-gold);
}
.eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: var(--onyx-gold);
    opacity: 0.6;
}

.display {
    font-family: var(--onyx-serif);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.01em;
}
.display em {
    font-style: italic;
    font-weight: 300;
    color: var(--onyx-gold-bright);
}

/* Line-reveal animation primitives (JS-driven) */
.rl {
    display: block;
    overflow: hidden;
}
.rl > span {
    display: block;
    transform: translateY(110%);
    will-change: transform;
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.15rem 2.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.45s var(--ease-lux), background 0.45s var(--ease-lux), border-color 0.45s var(--ease-lux);
    overflow: hidden;
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--onyx-gold-bright);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-lux);
    z-index: 0;
}
.btn:hover::after {
    transform: scaleY(1);
}
.btn > * {
    position: relative;
    z-index: 1;
}
.btn--solid {
    background: var(--onyx-gold);
    color: var(--onyx-black);
}
.btn--solid:hover {
    color: var(--onyx-black);
}
.btn--ghost {
    border: 1px solid var(--onyx-gold-dim);
    color: var(--onyx-gold);
}
.btn--ghost:hover {
    color: var(--onyx-black);
    border-color: var(--onyx-gold-bright);
}
.btn--ghost::after {
    background: var(--onyx-gold);
}

/* ============================================================
   6. HEADER / NAV
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    transition: transform 0.6s var(--ease-lux), background 0.6s, backdrop-filter 0.6s, padding 0.6s var(--ease-lux);
}
.site-header.is-scrolled {
    background: rgba(10, 10, 9, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid var(--onyx-line-soft);
}
.site-header.is-hidden {
    transform: translateY(-110%);
}
.site-header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}
.site-header__logo img {
    height: clamp(34px, 4vw, 46px);
    width: auto;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
}
.site-nav a,
.site-nav button {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--onyx-text);
    position: relative;
    padding: 0.35rem 0;
    transition: color 0.35s;
}
.site-nav a::after,
.site-nav button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--onyx-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s var(--ease-lux);
}
.site-nav a:hover,
.site-nav button:hover {
    color: var(--onyx-gold-bright);
}
.site-nav a:hover::after,
.site-nav button:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.site-nav__home {
    color: var(--onyx-text);
}
.site-nav__home.is-current {
    color: var(--onyx-gold);
}
.site-nav__home.is-current::after {
    transform: scaleX(1);
    transform-origin: left;
}
.site-nav__dropdown {
    position: relative;
}
.site-nav__dropdown > button {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.site-nav__dropdown > button::before {
    content: "";
    position: absolute;
    inset: -0.6rem -0.6rem -0.6rem -1rem;
}
.site-nav__menu {
    position: absolute;
    top: 100%;
    left: -1rem;
    min-width: 14rem;
    background: rgba(10,10,9,0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--onyx-line);
    padding: 0.6rem 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.3s, transform 0.3s var(--ease-lux);
    z-index: 100;
}
.site-nav__dropdown:hover .site-nav__menu,
.site-nav__dropdown:focus-within .site-nav__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.site-nav__menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: none;
    white-space: nowrap;
    border: none;
}
.site-nav__menu a::after { display: none; }
.site-nav__menu a:hover {
    background: rgba(255,255,255,0.04);
    padding-left: 1.5rem;
}
.site-header__cta {
    padding: 0.85rem 1.7rem;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 10px;
    width: 24px;
    height: 1.5px;
    background: var(--onyx-text);
    transition: transform 0.4s var(--ease-lux), opacity 0.3s, top 0.4s var(--ease-lux);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: var(--onyx-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--gutter);
    clip-path: inset(0 0 100% 0);
    visibility: hidden;
    transition: clip-path 0.7s var(--ease-lux), visibility 0s 0.7s;
}
.mobile-menu.is-open {
    clip-path: inset(0 0 0% 0);
    visibility: visible;
    transition: clip-path 0.7s var(--ease-lux);
}
.mobile-menu a,
.mobile-menu button {
    font-family: var(--onyx-serif);
    font-size: clamp(2.2rem, 9vw, 4rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--onyx-text);
    text-align: left;
    border-bottom: 1px solid var(--onyx-line-soft);
    padding: 0.6rem 0;
    transition: color 0.3s, padding-left 0.4s var(--ease-lux);
}
.mobile-menu a:hover,
.mobile-menu button:hover {
    color: var(--onyx-gold);
    padding-left: 1rem;
}
.mobile-menu .btn {
    margin-top: 2.5rem;
    align-self: flex-start;
    font-family: var(--onyx-sans);
    font-size: 0.72rem;
}

/* ============================================================
   7. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--gutter) clamp(3rem, 7vh, 5.5rem);
    overflow: hidden;
}
.hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__media img,
.hero__media video {
    width: 100%;
    height: 112%;
    object-fit: cover;
    object-position: center 30%;
    will-change: transform;
}
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--onyx-black) 4%, rgba(10, 10, 9, 0.55) 38%, rgba(10, 10, 9, 0.25) 60%, rgba(10, 10, 9, 0.45) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: var(--maxw);
    width: 100%;
    margin: 0 auto;
}
.hero__eyebrow {
    margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
}
.hero__title {
    font-size: clamp(3rem, 9.2vw, 8.5rem);
    margin-bottom: clamp(1.4rem, 3.5vh, 2.4rem);
    max-width: 14ch;
}
.hero__sub {
    max-width: 34rem;
    color: rgba(237, 237, 230, 0.82);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    font-weight: 300;
    margin-bottom: clamp(1.8rem, 4vh, 2.8rem);
}
.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero__scroll {
    position: absolute;
    right: var(--gutter);
    bottom: clamp(3rem, 7vh, 5.5rem);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--onyx-muted);
    writing-mode: vertical-rl;
}
.hero__scroll::after {
    content: "";
    width: 1px;
    height: 3.2rem;
    background: linear-gradient(var(--onyx-gold), transparent);
    animation: scroll-pulse 2.2s var(--ease-lux) infinite;
}
@keyframes scroll-pulse {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   8. MARQUEE
   ============================================================ */
.marquee {
    border-top: 1px solid var(--onyx-line);
    border-bottom: 1px solid var(--onyx-line);
    padding: 1.35rem 0;
    overflow: hidden;
    background: var(--onyx-coal);
}
.marquee__track {
    display: flex;
    width: max-content;
    animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track {
    animation-play-state: paused;
}
.marquee__item {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    padding-right: 2.6rem;
    font-family: var(--onyx-serif);
    font-size: clamp(1.05rem, 1.8vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    white-space: nowrap;
}
.marquee__item::after {
    content: "◆";
    font-size: 0.5em;
    color: var(--onyx-gold-dim);
}
@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ============================================================
   9. SHARED SECTION LAYOUT
   ============================================================ */
.section {
    padding: clamp(5rem, 12vh, 9rem) var(--gutter);
    position: relative;
}
.section__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.section__head {
    margin-bottom: clamp(3rem, 7vh, 5rem);
    max-width: 56rem;
}
.section__head .display {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    margin-top: 1.4rem;
}
.section__lead {
    margin-top: 1.6rem;
    color: var(--onyx-muted);
    max-width: 40rem;
    font-weight: 300;
}

/* ============================================================
   10. DIFFERENCE (sticky split)
   ============================================================ */
.difference {
    background: var(--onyx-black);
}
.difference__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}
.difference__sticky {
    position: sticky;
    top: 16vh;
}
.difference__sticky .display {
    font-size: clamp(2.4rem, 4.6vw, 4.2rem);
    margin-top: 1.4rem;
}
.difference__sticky p {
    margin-top: 1.6rem;
    color: var(--onyx-muted);
    font-weight: 300;
    max-width: 26rem;
}
.difference__progress {
    margin-top: 2.4rem;
    width: 100%;
    max-width: 16rem;
    height: 1px;
    background: var(--onyx-line-soft);
    position: relative;
}
.difference__progress span {
    position: absolute;
    inset: 0;
    background: var(--onyx-gold);
    transform: scaleX(0);
    transform-origin: left;
}
.diff-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(1.4rem, 3vw, 2.6rem);
    padding: clamp(1.8rem, 3.5vh, 2.6rem) 0;
    border-top: 1px solid var(--onyx-line-soft);
}
.diff-item:last-child {
    border-bottom: 1px solid var(--onyx-line-soft);
}
.diff-item__num {
    font-family: var(--onyx-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    color: var(--onyx-gold);
    line-height: 1.2;
    min-width: 3.2rem;
}
.diff-item h3 {
    font-family: var(--onyx-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    margin-bottom: 0.55rem;
    transition: color 0.35s;
}
.diff-item:hover h3 {
    color: var(--onyx-gold-bright);
}
.diff-item p {
    color: var(--onyx-muted);
    font-size: 0.98rem;
    font-weight: 300;
    max-width: 34rem;
}

/* ============================================================
   11. SERVICES
   ============================================================ */
.services {
    background: var(--onyx-coal);
    border-top: 1px solid var(--onyx-line-soft);
}
.services__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
}
.service-feature {
    position: relative;
    border: 1px solid var(--onyx-line);
    background: var(--onyx-surface);
    padding: clamp(2rem, 4vw, 3.2rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.service-feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201, 169, 97, 0.09), transparent 45%);
    pointer-events: none;
}
.service-feature__tag {
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    margin-bottom: 1.6rem;
}
.service-feature h3 {
    font-family: var(--onyx-serif);
    font-weight: 300;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 0.7rem;
}
.service-feature__warranty {
    font-family: var(--onyx-serif);
    font-style: italic;
    color: var(--onyx-gold-bright);
    font-size: 1.15rem;
    margin-bottom: 1.4rem;
}
.service-feature__body {
    color: var(--onyx-muted);
    font-weight: 300;
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
}
.service-feature__list {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2.2rem;
}
.service-feature__list li {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: rgba(237, 237, 230, 0.85);
}
.service-feature__list li::before {
    content: "✓";
    color: var(--onyx-gold);
    font-size: 0.8rem;
}
.service-feature .btn {
    margin-top: auto;
    align-self: flex-start;
}
.service-feature__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--onyx-line);
    border-top: 0;
    margin: 0 calc(clamp(2rem, 4vw, 3.2rem) * -1) calc(clamp(2rem, 4vw, 3.2rem) * -1);
    margin-top: 2.4rem;
}
.service-feature__stats > div {
    padding: 1.4rem 1rem;
    text-align: center;
}
.service-feature__stats > div + div {
    border-left: 1px solid var(--onyx-line);
}
.stat-num {
    font-family: var(--onyx-serif);
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    color: var(--onyx-gold);
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--onyx-muted);
}
.service-menu {
    border: 1px solid var(--onyx-line-soft);
    background: rgba(10, 10, 9, 0.5);
    padding: clamp(1.6rem, 3vw, 2.6rem);
    display: flex;
    flex-direction: column;
}
.service-menu__tag {
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--onyx-muted);
    margin-bottom: 1.4rem;
}
.service-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
    flex: 1;
}
.service-menu__grid li {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--onyx-line-soft);
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(237, 237, 230, 0.88);
    transition: color 0.3s, padding-left 0.35s var(--ease-lux);
}
.service-menu__grid li::before {
    content: "·";
    color: var(--onyx-gold);
    font-size: 1.6rem;
    line-height: 0;
    position: relative;
    top: 0.18rem;
}
.service-menu__grid li:hover {
    color: var(--onyx-gold-bright);
    padding-left: 0.5rem;
}
.service-menu__note {
    margin-top: 1.6rem;
    color: var(--onyx-muted);
    font-size: 0.9rem;
    font-weight: 300;
}
.service-menu .btn {
    margin-top: 1.6rem;
    align-self: flex-start;
}

/* ============================================================
   12. WORK — HORIZONTAL GALLERY
   ============================================================ */
.work {
    background: var(--onyx-black);
    overflow: hidden;
}
.work__pin {
    position: relative;
}
.work__head {
    padding: clamp(5rem, 12vh, 8rem) var(--gutter) clamp(2rem, 4vh, 3rem);
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}
.work__head .display {
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    margin-top: 1.4rem;
}
.work__count {
    font-family: var(--onyx-serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--onyx-muted);
    white-space: nowrap;
}
.work__count b {
    color: var(--onyx-gold);
    font-weight: 400;
}
.work__track {
    display: flex;
    gap: clamp(1.2rem, 2.5vw, 2.2rem);
    padding: 0 var(--gutter) clamp(4rem, 9vh, 7rem);
    width: max-content;
    will-change: transform;
}
.work-card {
    position: relative;
    width: clamp(300px, 62vw, 780px);
    aspect-ratio: 16 / 10;
    overflow: hidden;
    flex-shrink: 0;
    display: block;
    text-decoration: none;
    color: inherit;
}
.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 1.2s var(--ease-lux);
    will-change: transform;
}
.work-card:hover img {
    transform: scale(1.12);
}
.work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 9, 0.72), transparent 45%);
}
.work-card__caption {
    position: absolute;
    left: 1.6rem;
    right: 1.6rem;
    bottom: 1.4rem;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.work-card__caption h3 {
    font-family: var(--onyx-serif);
    font-weight: 300;
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    line-height: 1.15;
}
.work-card__index {
    font-family: var(--onyx-serif);
    font-style: italic;
    color: var(--onyx-gold);
    font-size: 1.05rem;
    white-space: nowrap;
}

/* ============================================================
   13. STORY
   ============================================================ */
.story {
    background: var(--onyx-coal);
    border-top: 1px solid var(--onyx-line-soft);
}
.story__grid {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}
.story__body .display {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
    margin: 1.4rem 0 2rem;
}
.story__body > p {
    color: var(--onyx-muted);
    font-weight: 300;
    margin-bottom: 1.3rem;
    max-width: 40rem;
}
.story__body > p strong {
    color: var(--onyx-text);
    font-weight: 500;
}
.story__sig {
    margin: 2.2rem 0;
    padding-left: 1.2rem;
    border-left: 2px solid var(--onyx-gold);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--onyx-gold);
}
.story__media {
    display: grid;
    gap: 1.4rem;
}
.story__photo {
    position: relative;
    overflow: hidden;
}
.story__photo img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.05);
    will-change: transform;
}
.story__photo figcaption {
    position: absolute;
    left: 1.2rem;
    bottom: 1rem;
    z-index: 2;
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--onyx-gold);
}
.story__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 9, 0.55), transparent 40%);
}
.story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--onyx-line);
}
.story__stats > div {
    padding: 1.5rem 0.8rem;
    text-align: center;
}
.story__stats > div + div {
    border-left: 1px solid var(--onyx-line);
}

/* ============================================================
   14. REVIEWS
   ============================================================ */
.reviews {
    background: var(--onyx-black);
    border-top: 1px solid var(--onyx-line);
}
.reviews__head {
    text-align: center;
    margin-bottom: 1.5rem;
}
.reviews__head .eyebrow {
    justify-content: center;
    margin-bottom: 1rem;
}
.reviews__summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 3rem;
    font-size: 0.85rem;
    color: var(--onyx-muted);
}
.reviews__stars {
    display: flex;
    gap: 2px;
}
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--onyx-line);
    border-radius: 0;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    will-change: transform, opacity;
}
.review-card__stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}
.review-card__text {
    font-family: var(--onyx-serif);
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.65;
    color: var(--onyx-text);
    flex: 1;
}
.review-card__footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--onyx-line-soft);
}
.review-card__author {
    font-size: 0.8rem;
    font-weight: 500;
    font-style: normal;
    color: var(--onyx-gold);
}
.review-card__meta {
    font-size: 0.7rem;
    color: var(--onyx-muted);
}
@media (max-width: 900px) {
    .reviews__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        padding: 1.4rem;
    }
}

/* ============================================================
   15. PARTNER BAND + SOCIAL
   ============================================================ */
.partner {
    background: var(--onyx-black);
}
.partner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: stretch;
}
.partner__card {
    border: 1px solid var(--onyx-line);
    background: var(--onyx-surface);
    padding: clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.partner__card img {
    height: 44px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}
.partner__card h3 {
    font-family: var(--onyx-serif);
    font-weight: 300;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}
.partner__card p {
    color: var(--onyx-muted);
    font-weight: 300;
    font-size: 0.96rem;
}
.partner__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: auto;
    padding-top: 1rem;
}
.partner__tags span {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    border: 1px solid var(--onyx-line);
    padding: 0.5rem 0.9rem;
}
.social-card__links {
    display: grid;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
}
.social-card__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid var(--onyx-line-soft);
    padding: 1rem 1.2rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: border-color 0.35s, color 0.35s, padding-right 0.35s var(--ease-lux);
}
.social-card__links a:hover {
    border-color: var(--onyx-gold);
    color: var(--onyx-gold-bright);
    padding-right: 0.8rem;
}
.social-card__links a::after {
    content: "→";
    color: var(--onyx-gold);
}

/* ============================================================
   15. CTA
   ============================================================ */
.cta {
    position: relative;
    text-align: center;
    padding: clamp(7rem, 18vh, 13rem) var(--gutter);
    overflow: hidden;
    border-top: 1px solid var(--onyx-line-soft);
}
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201, 169, 97, 0.1), transparent 70%);
    pointer-events: none;
}
.cta__inner {
    position: relative;
    max-width: 60rem;
    margin: 0 auto;
}
.cta .display {
    font-size: clamp(2.8rem, 7vw, 6.2rem);
    margin: 1.6rem 0 1.8rem;
}
.cta p {
    color: var(--onyx-muted);
    font-weight: 300;
    max-width: 34rem;
    margin: 0 auto 2.6rem;
}

/* ============================================================
   16. LOCATION
   ============================================================ */
.location {
    background: var(--onyx-coal);
    border-top: 1px solid var(--onyx-line-soft);
}
.location__grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: stretch;
}
.location__info .display {
    font-size: clamp(2.2rem, 4.6vw, 3.8rem);
    margin: 1.4rem 0 1.6rem;
}
.location__info > p {
    color: var(--onyx-muted);
    font-weight: 300;
    max-width: 30rem;
    margin-bottom: 2.2rem;
}
.location__cards {
    display: grid;
    gap: 1rem;
}
.location-card {
    border: 1px solid var(--onyx-line-soft);
    background: rgba(10, 10, 9, 0.5);
    padding: 1.5rem 1.6rem;
}
.location-card h3 {
    font-size: 0.62rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    margin-bottom: 0.9rem;
    font-weight: 500;
}
.location-card p {
    font-weight: 300;
    color: rgba(237, 237, 230, 0.88);
    font-size: 0.98rem;
}
.location-card a {
    display: inline-block;
    margin-top: 0.7rem;
    color: var(--onyx-gold);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
}
.location-card a:hover {
    color: var(--onyx-gold-bright);
}
.location-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
}
.location-card__row span:first-child {
    color: var(--onyx-muted);
}
.location__map {
    position: relative;
    min-height: 420px;
    border: 1px solid var(--onyx-line);
    overflow: hidden;
}
.onyx-map {
    width: 100%;
    height: 100%;
    min-height: 420px;
    filter: grayscale(0.85) contrast(1.05) brightness(0.9);
}
.onyx-map .leaflet-popup-content-wrapper {
    border-radius: 0;
    background: var(--onyx-black);
    color: var(--onyx-text);
    border: 1px solid var(--onyx-line);
    font-family: var(--onyx-sans);
    font-size: 0.85rem;
}
.onyx-map .leaflet-popup-tip {
    background: var(--onyx-black);
    border: 1px solid var(--onyx-line);
    border-top: none;
    border-right: none;
}
.onyx-map .leaflet-popup-content {
    margin: 1rem 1.2rem;
    line-height: 1.6;
}
.onyx-map .leaflet-popup-content b {
    color: var(--onyx-gold);
    font-family: var(--onyx-serif);
    font-weight: 400;
    font-size: 1rem;
}
/* Custom red marker */
.onyx-marker {
    background: transparent;
    border: none;
}
.onyx-marker__pin {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #e63946;
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-45deg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    z-index: 2;
}
.onyx-marker__pulse {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: rgba(230, 57, 70, 0.25);
    border-radius: 50%;
    animation: marker-pulse 2s ease-out infinite;
    z-index: 1;
}
@keyframes marker-pulse {
    0% { transform: translateX(-50%) scale(0.5); opacity: 1; }
    100% { transform: translateX(-50%) scale(1.8); opacity: 0; }
}
.onyx-map .leaflet-control-attribution {
    background: rgba(10,10,9,0.7);
    color: var(--onyx-muted);
    font-size: 0.6rem;
}
.onyx-map .leaflet-control-attribution a {
    color: var(--onyx-gold-dim);
}

/* ============================================================
   17. SOCIAL PROOF GALLERY
   ============================================================ */
.social-proof {
    background: var(--onyx-black);
    border-top: 1px solid var(--onyx-line);
}
.social-proof__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.social-proof__head .eyebrow {
    justify-content: center;
}
.social-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}
.social-proof__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}
.social-proof__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-lux);
}
.social-proof__item:hover img {
    transform: scale(1.08);
}
.social-proof__label {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--onyx-text);
    background: rgba(10,10,9,0.7);
    padding: 0.3rem 0.6rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.social-proof__links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}
.social-proof__links a {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    transition: color 0.3s;
}
.social-proof__links a:hover {
    color: var(--onyx-gold-bright);
}
@media (max-width: 768px) {
    .social-proof__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .social-proof__links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* ============================================================
   18. CONTACT FORM
   ============================================================ */
.contact-section {
    background: var(--onyx-black);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 22rem;
    gap: 3rem;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) var(--gutter);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.contact-form__field label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--onyx-muted);
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--onyx-line);
    color: var(--onyx-text);
    font-family: var(--onyx-sans);
    font-size: 0.9rem;
    padding: 0.85rem 1rem;
    transition: border-color 0.3s, background 0.3s;
    border-radius: 0;
    -webkit-appearance: none;
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
    outline: none;
    border-color: var(--onyx-gold);
    background: rgba(255,255,255,0.05);
}
.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
    color: var(--onyx-muted);
    opacity: 0.6;
}
.contact-form__field select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238A887F' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}
.contact-form__field select option {
    background: var(--onyx-black);
    color: var(--onyx-text);
}
.contact-form__field textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form__submit {
    align-self: flex-start;
    min-width: 180px;
}
.contact-form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.contact-form__feedback {
    font-size: 0.85rem;
    min-height: 1.2em;
}
.contact-form__feedback--success {
    color: #4caf50;
}
.contact-form__feedback--error {
    color: #e63946;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-info__card {
    padding: 1.5rem;
    border: 1px solid var(--onyx-line);
    background: rgba(255,255,255,0.015);
}
.contact-info__card h3 {
    font-family: var(--onyx-serif);
    font-size: 1rem;
    font-weight: 400;
    color: var(--onyx-gold);
    margin-bottom: 0.5rem;
}
.contact-info__card p {
    font-size: 0.85rem;
    color: var(--onyx-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.contact-info__card a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    transition: color 0.3s;
}
.contact-info__card a:hover {
    color: var(--onyx-gold-bright);
}
.contact-info__social {
    display: flex;
    gap: 1.5rem;
}
.contact-info__social a {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--onyx-gold);
    transition: color 0.3s;
}
.contact-info__social a:hover {
    color: var(--onyx-gold-bright);
}
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form__row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   19. INSTAGRAM FEED
   ============================================================ */
.instagram-feed {
    background: var(--onyx-black);
    border-top: 1px solid var(--onyx-line);
    padding: clamp(3rem, 8vh, 5rem) var(--gutter);
}
.instagram-feed__head {
    text-align: center;
    margin-bottom: 2rem;
}
.instagram-feed__head .eyebrow {
    justify-content: center;
}
.instagram-feed__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: var(--maxw);
    margin: 0 auto;
}
.instagram-feed__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
    background: rgba(255,255,255,0.03);
}
.instagram-feed__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-lux);
}
.instagram-feed__item:hover img {
    transform: scale(1.08);
}
.instagram-feed__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10,10,9,0);
    transition: background 0.4s;
    pointer-events: none;
}
.instagram-feed__item:hover::after {
    background: rgba(10,10,9,0.3);
}
.instagram-feed__placeholder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: var(--maxw);
    margin: 0 auto;
}
.instagram-feed__ph {
    aspect-ratio: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--onyx-line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--onyx-muted);
}
@media (max-width: 768px) {
    .instagram-feed__grid,
    .instagram-feed__placeholder {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   20. COOKIE CONSENT
   ============================================================ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: rgba(10,10,9,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--onyx-line);
    padding: 1.2rem var(--gutter);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-lux);
}
.cookie-consent.is-visible {
    transform: translateY(0);
}
.cookie-consent__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.cookie-consent__text {
    flex: 1;
    min-width: 280px;
    font-size: 0.82rem;
    color: var(--onyx-muted);
    line-height: 1.6;
}
.cookie-consent__text a {
    color: var(--onyx-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-consent__actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}
.cookie-consent__btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    border: 1px solid var(--onyx-gold-dim);
    background: transparent;
    color: var(--onyx-gold);
    cursor: pointer;
    transition: all 0.3s;
}
.cookie-consent__btn--accept {
    background: var(--onyx-gold);
    color: var(--onyx-black);
}
.cookie-consent__btn--accept:hover {
    background: var(--onyx-gold-bright);
}
.cookie-consent__btn--decline:hover {
    border-color: var(--onyx-gold);
}
@media (max-width: 600px) {
    .cookie-consent__inner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-consent__actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-consent__btn {
        width: 100%;
    }
}

/* ============================================================
   21. FOCUS & ACCESSIBILITY
   ============================================================ */
:focus-visible {
    outline: 2px solid var(--onyx-gold);
    outline-offset: 3px;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--onyx-gold);
    color: var(--onyx-black);
    padding: 0.8rem 1.5rem;
    z-index: 9999;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.3s;
}
.skip-link:focus {
    top: 0;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   22. LAZY LOAD BLUR-UP
   ============================================================ */
.lazy-blur {
    filter: blur(20px);
    transform: scale(1.05);
    transition: filter 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
}
.lazy-blur.is-loaded {
    filter: blur(0);
    transform: scale(1);
}

/* ============================================================
   23. WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1500;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37,211,102,0.35);
    transition: transform 0.3s var(--ease-lux), box-shadow 0.3s;
    cursor: pointer;
}
.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 32px rgba(37,211,102,0.5);
}
.whatsapp-fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.4);
    animation: whatsapp-pulse 2s ease-out infinite;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-fab__tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,9,0.92);
    color: var(--onyx-text);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(8px);
}
.whatsapp-fab:hover .whatsapp-fab__tooltip {
    opacity: 1;
}
.cookie-consent.is-visible ~ .whatsapp-fab {
    bottom: 6rem;
}
@media (max-width: 600px) {
    .whatsapp-fab {
        bottom: 1rem;
        right: 1rem;
        width: 52px;
        height: 52px;
    }
    .whatsapp-fab__tooltip {
        display: none;
    }
}

/* ============================================================
   24. VEHICLE SELECTOR
   ============================================================ */
.vehicle-selector {
    background: var(--onyx-coal);
    border-top: 1px solid var(--onyx-line);
    border-bottom: 1px solid var(--onyx-line);
    padding: clamp(3rem, 8vh, 5rem) var(--gutter);
}
.vehicle-selector__head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.vehicle-selector__head .eyebrow {
    justify-content: center;
}
.vehicle-selector__pickers {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}
.vs-select {
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--onyx-line);
    color: var(--onyx-text);
    font-family: var(--onyx-sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 0.85rem 2.5rem 0.85rem 1rem;
    cursor: pointer;
    transition: border-color 0.3s;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%238A887F' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    min-width: 200px;
}
.vs-select:focus {
    outline: none;
    border-color: var(--onyx-gold);
}
.vs-select option {
    background: var(--onyx-black);
    color: var(--onyx-text);
}
.vs-results {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.vs-results.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.vs-results__title {
    font-family: var(--onyx-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--onyx-gold);
    margin-bottom: 1rem;
    text-align: center;
}
.vs-results__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    list-style: none;
    margin-bottom: 1.5rem;
}
.vs-results__list li {
    font-size: 0.82rem;
    color: var(--onyx-muted);
    padding: 0.6rem 1rem;
    border: 1px solid var(--onyx-line-soft);
    background: rgba(255,255,255,0.015);
    transition: border-color 0.3s, color 0.3s;
}
.vs-results__list li:hover {
    border-color: var(--onyx-gold-dim);
    color: var(--onyx-text);
}
.vs-results__cta {
    text-align: center;
}
@media (max-width: 600px) {
    .vs-results__list {
        grid-template-columns: 1fr;
    }
    .vehicle-selector__pickers {
        flex-direction: column;
        align-items: stretch;
    }
    .vs-select {
        min-width: 0;
        width: 100%;
    }
}

/* ============================================================
   25. FOOTER CTA
   ============================================================ */
.footer-cta {
    border-top: 1px solid var(--onyx-line);
    background: linear-gradient(135deg, rgba(10,10,9,1) 0%, rgba(18,16,12,1) 100%);
    padding: clamp(3rem, 8vh, 6rem) var(--gutter);
    text-align: center;
}
.footer-cta__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.footer-cta .eyebrow {
    justify-content: center;
}
.footer-cta .display {
    font-size: clamp(2rem, 5vw, 3.5rem);
}
.footer-cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width: 600px) {
    .footer-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    .footer-cta__actions .btn {
        width: 100%;
    }
}

/* ============================================================
   18. SITE FOOTER
   ============================================================ */
.site-footer {
    border-top: 1px solid var(--onyx-line);
    background: var(--onyx-black);
    padding: clamp(3rem, 7vh, 5rem) var(--gutter) 2rem;
}
.site-footer__inner {
    max-width: var(--maxw);
    margin: 0 auto;
}
.site-footer__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    padding-bottom: 2.4rem;
    border-bottom: 1px solid var(--onyx-line-soft);
}
.site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.8rem;
}
.site-footer__nav a,
.site-footer__nav button {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--onyx-muted);
    transition: color 0.3s;
}
.site-footer__nav a:hover,
.site-footer__nav button:hover {
    color: var(--onyx-gold);
}
.site-footer__social {
    display: flex;
    gap: 1.4rem;
}
.site-footer__social a {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--onyx-muted);
    transition: color 0.3s;
}
.site-footer__social a:hover {
    color: var(--onyx-gold);
}
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    font-size: 0.78rem;
    color: var(--onyx-muted);
    font-weight: 300;
}
.site-footer__bottom strong {
    color: var(--onyx-text);
    font-weight: 500;
}
.site-footer__seo {
    max-width: var(--maxw);
    margin: 1.6rem auto 0;
    font-size: 0.72rem;
    color: rgba(138, 136, 127, 0.6);
    font-weight: 300;
}

/* ============================================================
   18. PAGE TEMPLATES (service / marque / area sub-pages)
   ============================================================ */
.page-hero {
    position: relative;
    min-height: 60vh;
    min-height: 60svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 var(--gutter) clamp(3rem, 7vh, 5rem);
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.page-hero__bg img {
    width: 100%;
    height: 112%;
    object-fit: cover;
    will-change: transform;
}
.page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--onyx-black) 4%, rgba(10,10,9,0.55) 38%, rgba(10,10,9,0.25) 60%, rgba(10,10,9,0.45) 100%);
}
.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: var(--maxw);
    margin: 0 auto;
    width: 100%;
}
.page-hero__eyebrow {
    margin-bottom: 0.6rem;
}
.page-hero .display {
    font-size: clamp(2.6rem, 6vw, 5rem);
    margin-top: 1rem;
}
.page-hero__sub {
    max-width: 36rem;
    margin-top: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--onyx-muted);
}
.page-hero__actions {
    margin-top: 1.8rem;
}
.page-content {
    display: grid;
    grid-template-columns: 1fr 22rem;
    gap: 3rem;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(3rem, 8vh, 6rem) var(--gutter);
    font-weight: 300;
    color: rgba(237, 237, 230, 0.85);
}
.page-content__body {
    min-width: 0;
}
.page-content__body h2,
.page-content__body h3,
.page-content__body h4 {
    font-family: var(--onyx-serif);
    font-weight: 400;
    color: var(--onyx-text);
    margin: 2.2rem 0 1rem;
    line-height: 1.2;
}
.page-content__body h2 { font-size: 2rem; }
.page-content__body h3 { font-size: 1.6rem; }
.page-content__body p { margin-bottom: 1.2rem; }
.page-content__body ul,
.page-content__body ol {
    margin: 0 0 1.2rem 1.4rem;
    list-style: disc;
}
.page-content__body ol { list-style: decimal; }
.page-content__body a {
    color: var(--onyx-gold);
    border-bottom: 1px solid var(--onyx-line);
    transition: color 0.3s;
}
.page-content__body a:hover {
    color: var(--onyx-gold-bright);
}
.page-list {
    margin: 2.5rem 0;
    padding: 1.8rem;
    border: 1px solid var(--onyx-line);
    background: rgba(255,255,255,0.015);
}
.page-list h3 {
    font-family: var(--onyx-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--onyx-gold);
    margin-bottom: 1rem;
}
.page-list ul {
    list-style: none;
    margin: 0;
}
.page-list li {
    padding: 0.45rem 0 0.45rem 1.4rem;
    position: relative;
    border-bottom: 1px solid var(--onyx-line-soft);
}
.page-list li:last-child { border-bottom: none; }
.page-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--onyx-gold-dim);
}
.page-faq { margin: 2.5rem 0; }
.page-faq h3 {
    font-family: var(--onyx-serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--onyx-gold);
    margin-bottom: 1.5rem;
}
.page-faq__item {
    border-bottom: 1px solid var(--onyx-line-soft);
    padding: 0.8rem 0;
}
.page-faq__item summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--onyx-text);
    padding: 0.3rem 0;
    transition: color 0.3s;
}
.page-faq__item summary:hover { color: var(--onyx-gold); }
.page-faq__item p {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: var(--onyx-muted);
    padding-left: 0.5rem;
}
.page-cta-card {
    position: sticky;
    top: 7rem;
    padding: 1.8rem;
    border: 1px solid var(--onyx-line);
    background: rgba(255,255,255,0.02);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.page-cta-card h3 {
    font-family: var(--onyx-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--onyx-gold);
}
.page-cta-card p {
    font-size: 0.85rem;
    color: var(--onyx-muted);
}
.page-cta-card .btn { align-self: flex-start; }

/* Case study extras */
.case-study {
    max-width: 52rem;
}
.case-study__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--onyx-line);
    background: rgba(255,255,255,0.015);
    font-size: 0.85rem;
    color: var(--onyx-muted);
}
.case-study__meta strong {
    color: var(--onyx-gold);
    font-weight: 500;
}
.case-study__quote {
    margin: 2.5rem 0;
    padding: 1.8rem 2rem;
    border-left: 2px solid var(--onyx-gold-dim);
    background: rgba(255,255,255,0.02);
}
.case-study__quote p {
    font-family: var(--onyx-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--onyx-text);
    line-height: 1.65;
    margin-bottom: 0.8rem;
}
.case-study__quote cite {
    font-size: 0.85rem;
    font-style: normal;
    color: var(--onyx-gold);
}
.case-study__cta {
    margin-top: 3rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--onyx-line);
    background: rgba(255,255,255,0.015);
}
.case-study__cta h3 {
    font-family: var(--onyx-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--onyx-gold);
    margin-bottom: 0.5rem;
}
.case-study__cta p {
    color: var(--onyx-muted);
    margin-bottom: 1.2rem;
}

/* ============================================================
   MARQUE GALLERY
   ============================================================ */
.marque-gallery {
    background: var(--onyx-black);
    border-top: 1px solid var(--onyx-line);
}
.marque-gallery__title {
    text-align: center;
    margin-bottom: 2.5rem;
}
.marque-gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.marque-gallery__item {
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.marque-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-lux);
}
.marque-gallery__item:hover img {
    transform: scale(1.06);
}
@media (max-width: 600px) {
    .marque-gallery__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 900px) {
    .page-content {
        grid-template-columns: 1fr;
    }
    .page-cta-card {
        position: static;
    }
}

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .difference__grid,
    .services__grid,
    .story__grid,
    .partner__grid,
    .location__grid {
        grid-template-columns: 1fr;
    }
    .difference__sticky {
        position: static;
    }
    .hero__scroll {
        display: none;
    }
}

@media (max-width: 768px) {
    .site-nav,
    .site-header__cta {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .hero__title {
        font-size: clamp(2.6rem, 12.5vw, 4.5rem);
    }
    .hero__actions .btn {
        width: 100%;
    }
    .service-menu__grid {
        grid-template-columns: 1fr;
    }
    .work-card {
        width: 82vw;
        aspect-ratio: 4 / 3;
    }
    .work__head {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-feature__stats,
    .story__stats {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .marquee__item {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    /* Stats: stack vertically on small mobile */
    .service-feature__stats,
    .story__stats {
        grid-template-columns: 1fr;
    }
    .service-feature__stats > div + div,
    .story__stats > div + div {
        border-left: 0;
        border-top: 1px solid var(--onyx-line);
    }

    /* Work gallery: native horizontal scroll on mobile */
    .work__track {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .work__track::-webkit-scrollbar {
        display: none;
    }
    .work-card {
        scroll-snap-align: start;
    }

    /* Reviews grid: single column on small mobile */
    .reviews__grid {
        grid-template-columns: 1fr;
    }

    /* Service feature layout */
    .service-feature__body {
        font-size: 0.88rem;
    }
    .service-menu__grid {
        grid-template-columns: 1fr;
    }

    /* Instagram feed: 2 columns on small mobile */
    .instagram-feed__grid,
    .instagram-feed__placeholder {
        grid-template-columns: 1fr 1fr;
    }

    /* Footer CTA: stack */
    .footer-cta__inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-cta__actions {
        flex-direction: column;
        width: 100%;
    }
    .footer-cta__actions .btn {
        width: 100%;
    }
    .site-footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .site-footer__bottom {
        flex-direction: column;
        gap: 1rem;
    }

    /* Preloader */
    .preloader__count {
        font-size: 2rem;
    }

    /* Section padding */
    .section {
        padding: 3rem var(--gutter);
    }

    /* Location cards */
    .location__cards {
        grid-template-columns: 1fr;
    }

    /* Page hero */
    .page-hero__title {
        font-size: clamp(2.2rem, 11vw, 3.6rem);
    }

    /* Reviews summary */
    .reviews__summary {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* ============================================================
   20. IMAGE GRADING
   ============================================================ */
.onyx-img {
    filter: contrast(1.04) saturate(1.06) brightness(0.95);
}

/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .grain,
    .preloader {
        display: none;
    }
    .marquee__track {
        animation: none;
        width: auto;
        flex-wrap: wrap;
    }
    .rl > span {
        transform: none;
    }
}
