@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&display=swap');

@font-face {
    font-family: 'Eurostile';
    src: url('/assets/web/fonts/eurostile.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Protrakt';
    src: url('/assets/web/fonts/Protrakt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Protrakt-Semi-Bold-Exp-One';
    src: url('/assets/web/fonts/protrakt-semi-bold-exp-one.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

:root {
    /* Palette */
    --color-obsidian: #16181D; 
    --color-gunmetal: #353E43; 
    --color-pearl: #F2F0EF;    
    --color-accent-pearl: #F2F0EF;

    /* Typography */
    --font-brand: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    --font-body: 'Eurostile', sans-serif;

    /* Typography Scale */
    --h1-size: clamp(2.5rem, 8vw, 5rem);
    --h2-size: clamp(1.5rem, 5vw, 2.5rem);
    --h3-size: clamp(1.2rem, 4vw, 1.8rem);

    /* Mobile Typography Scale */
    --h1-size-mobile: clamp(1.5rem, 12vw, 2.5rem);
    --h2-size-mobile: clamp(1.2rem, 8vw, 1.8rem);
    --h3-size-mobile: clamp(1.0rem, 6vw, 1.4rem);

    /* Layout & Spacing */
    --section-padding: clamp(80px, 15vw, 140px);
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Components */
    --slider-base-max-width: 1400px;
    --care-container-min-height: 600px;

    /* Shadows */
    --shadow-luxury: 0 30px 60px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 10px 20px rgba(242, 240, 239, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);

    /* Radii */
    --radius-standard: 8px;
    --radius-pill: 50px;
    --radius-large: 24px;

    /* Transitions */
    --transition-smooth: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

section {
    position: relative;
    margin-bottom: var(--space-xl);
    clear: both;
    scroll-margin-top: 100px;
}

.global-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/web/images/website-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

body {
    background-color: var(--color-obsidian);
    margin: 0;
    padding: 0;
}

/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    box-sizing: border-box;
}

.site-header.header-scrolled {
    background: rgba(22, 24, 29, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-pearl);
    z-index: 1001;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 40px;
    height: 40px;
    transition: var(--transition-base);
}

.mobile-menu-toggle:hover {
    color: var(--color-accent-pearl);
    transform: scale(1.1);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search, .nav-login {
    color: var(--color-pearl);
    font-size: 1.2rem;
    transition: var(--transition-base);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search:hover, .nav-login:hover {
    color: var(--color-accent-pearl);
    transform: scale(1.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-pearl);
    cursor: pointer;
    z-index: 2100;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-links a {
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-pearl);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-base);
}

.mobile-nav-links a:hover {
    color: var(--color-accent-pearl);
}

/* Mobile Dropdown Styles */
.mobile-nav-item-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mobile-dropdown-toggle {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.8rem;
    color: var(--color-pearl);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-dropdown-toggle:hover {
    color: var(--color-accent-pearl);
}

.mobile-dropdown-toggle i {
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.mobile-dropdown-content.active {
    max-height: 300px;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mobile-dropdown-content a {
    font-size: 1.2rem !important;
    letter-spacing: 0.1em !important;
    opacity: 0.7;
}

.mobile-dropdown-content a:hover {
    opacity: 1;
    color: var(--color-accent-pearl);
}

.mobile-login-btn {
    margin-top: 20px;

    padding: 15px 40px;
    border: 1px solid var(--color-accent-pearl);
    color: var(--color-accent-pearl) !important;
    font-size: 1rem !important;
    border-radius: 50px;
}

.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    overflow: hidden;
}


.hero-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(22, 24, 29, 0.4) 0%, var(--color-obsidian) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
    width: auto;
    max-width: 1100px;
    padding: 0;
    text-align: left;
    margin: 0;
}

.hero-title {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    font-weight: 600;
    font-size: var(--h1-size);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .site-header {
        justify-content: space-between;
    }

    .nav-login {
        display: none;
    }

    .main-nav {
        order: 2;
    }

    .logo-container {
        order: 1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-menu-toggle {
        order: 0;
    }

    .hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }


    .hero-title {
        font-size: var(--h1-size-mobile);
        letter-spacing: 0.08em;
        margin-bottom: var(--space-md);
    }
    .lead-text {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }

    .section-title,
    .legacy-title,
    .emit-care-title {
        font-size: var(--h2-size-mobile);
    }

    .talks-subtitle {
        font-size: var(--h2-size-mobile);
    }

    .model-info h3 {
        font-size: var(--h3-size-mobile);
    }

    .quote-header h2 {
        font-size: var(--h2-size-mobile);
    }
}

.lead-text {
    font-size: 1.4rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 20px 45px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-brand);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 50px;
    margin: 0 15px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
    transition: var(--transition-base);
}

.btn-statement {
    background-color: var(--color-accent-pearl);
    color: var(--color-obsidian);
    border: 1px solid var(--color-accent-pearl);
    font-weight: 700;
}

.btn-statement:hover {
    background-color: var(--color-pearl);
    border-color: var(--color-pearl);
    color: var(--color-obsidian);
}

#cta-bespoke {
    font-family: var(--font-body);
}

.btn-ghost {
    background-color: transparent;
    color: var(--color-pearl);
    border: 1px solid var(--color-pearl);
    transition: var(--transition-smooth);
}

.btn-ghost:hover {
    background-color: rgba(242, 240, 239, 0.1);
    color: var(--color-accent-pearl);
    border-color: var(--color-accent-pearl);
    transform: translateY(-3px);
    box-shadow: var(--shadow-accent);
}

/* Value Proposition Section */
.vp-section {
    padding: var(--section-padding) 5%;
    background-color: transparent;
}

.vp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 992px) {
    .vp-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.vp-image-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.vp-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vp-text-container {
    padding: 40px;
}

.vp-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-pearl);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.vp-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-obsidian);
    opacity: 0.8;
}

/* Legacy Section */
.legacy-section {
    padding: var(--section-padding) 5%;
    background-color: transparent;
    text-align: center;
}

.legacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.legacy-title {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    color: var(--color-pearl);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: var(--h2-size);
    margin-bottom: 30px;
    text-wrap: balance;
}

.legacy-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    line-height: 2;
    font-weight: 300;
    opacity: 0.7;
    text-align: justify;
}

/* Slider Base */
.slider-base {
    position: relative;
    width: 100%;
    max-width: var(--slider-base-max-width);
    margin: 0 auto;
    z-index: 20;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-pearl);
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: rgba(242, 240, 239, 0.2);
    border-color: var(--color-accent-pearl);
    color: var(--color-accent-pearl);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Model Showcase Slider */
.models-section {
    padding: var(--section-padding) 0;
    background-color: transparent;
    overflow: hidden;
}

.model-slider-container {
    position: relative;
    width: 100%;
    max-width: var(--slider-base-max-width);
    margin: 0 auto;
    z-index: 20;
}

.model-slider {
    display: flex;
    overflow: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.model-slider::-webkit-scrollbar {
    display: none;
}

.model-slide {
    min-width: 100%;
    width: 100%;
    scroll-snap-align: start;
    height: 80vh;
    height: 80svh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.model-video-wrapper {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}

.model-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--color-pearl);
    z-index: 2;
}

.model-info h3 {
    font-family: var(--font-brand);
    font-size: var(--h3-size);
    margin-bottom: 10px;
    color: var(--color-accent-pearl);
}

.model-info p {
    font-size: 1.2rem;
    opacity: 0.8;
}

.slider-hints {
    text-align: center;
    margin-top: 40px;
    color: var(--color-pearl);
    opacity: 0.4;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Model Detail Panels */
.model-details-container {
    margin-top: 40px;
    margin-bottom: 60px;
}

.model-detail-panel {
    display: none;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 240, 239, 0.1);
    border-radius: var(--radius-large);
    padding: clamp(30px, 5vw, 60px);
    transition: border-color 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
}

.model-detail-panel.active {
    display: block;
}

.model-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.model-detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.5;
    color: var(--color-pearl);
}

.detail-value {
    font-family: var(--font-brand);
    font-size: var(--text-base);
    color: var(--color-accent-pearl);
    letter-spacing: 0.03em;
}

.model-detail-desc {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-pearl);
    opacity: 0.85;
    max-width: 800px;
    margin: 0;
    letter-spacing: 0.02em;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .model-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .model-detail-desc {
        font-size: var(--text-xs);
    }
    .model-detail-panel {
        padding: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    color: var(--color-pearl);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: var(--h2-size);
    text-wrap: balance;
}

@media (max-width: 480px) {
    .section-title,
    .legacy-title,
    .emit-care-title {
        letter-spacing: 0.02em;
    }

}

@media (max-width: 360px) {
    .section-title,
    .legacy-title,
    .emit-care-title {
        letter-spacing: 0;
        font-size: 0.65rem;
    }
}

/* EMIT Talks Section */
/* --- Emit Talks Section (Reference Match) --- */
.talks-section {
    padding: var(--section-padding) 5%;
}

.talks-row {
    max-width: 1100px;
    margin: 0 auto;
}

.talks-main-img {
    border-radius: var(--radius-large) !important;
    box-shadow: var(--shadow-luxury);
    width: 100%;
    height: auto;
}

.talks-enjoy-heading {
    font-family: var(--font-brand);
    font-size: var(--h2-size);
    color: var(--color-accent-pearl);
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.talks-lead {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-pearl);
    opacity: 0.85;
    margin-bottom: 16px;
}

.talks-body {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--color-pearl);
    opacity: 0.7;
    margin-bottom: 24px;
}

.talks-cards-row {
    margin-top: 10px;
}

.talks-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 240, 239, 0.1);
    border-radius: var(--radius-standard);
    overflow: hidden;
    transition: var(--transition-base);
    position: relative;
}

.talks-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    cursor: pointer;
    text-align: left;
}

.talks-card-link:focus-visible {
    outline: 2px solid var(--color-accent-pearl);
    outline-offset: 2px;
    border-radius: var(--radius-standard);
}

.talks-card-link:hover .talks-card {
    border-color: rgba(242, 240, 239, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.talks-thumb {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.talks-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
    line-height: 1;
}

.talks-card-link:hover .talks-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    color: #ff0000;
}

@media (max-width: 992px) {
    .talks-text-col {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .talks-section .section-header {
        margin-bottom: 30px;
    }
    .talks-enjoy-heading {
        font-size: var(--h3-size);
        margin-bottom: 14px;
    }
    .talks-lead {
        font-size: 1rem;
    }
    .talks-body {
        font-size: var(--text-xs);
        margin-bottom: 18px;
    }
    .talks-cards-row > div {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .talks-cards-row > div:first-child {
        margin-bottom: 12px;
    }
    .talks-play-overlay {
        font-size: 2.5rem;
    }
}

/* Lifestyle Gallery */

/* Lifestyle Gallery */
.lifestyle-section {
    padding: var(--section-padding) 5%;
}

.lifestyle-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 20;
}

.lifestyle-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.lifestyle-slider::-webkit-scrollbar {
    display: none;
}

.lifestyle-item {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: 0;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: var(--radius-standard);
    cursor: pointer;
    scroll-snap-align: start;
    background: #000;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius-standard);
    transition: var(--transition-smooth);
    filter: grayscale(30%);
}

.lifestyle-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.lifestyle-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.lifestyle-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .lifestyle-item {
        flex: 0 0 100%;
    }
}

/* Lifestyle Slider Arrow Positioning */
.lifestyle-slider-container .slider-arrow.prev {
    left: 5px;
    top: 48%;
}

.lifestyle-slider-container .slider-arrow.next {
    right: 5px;
    top: 48%;
}

/* EMIT Care - Immersive Experience */
.emit-care-section {
    padding: var(--section-padding) 5%;
}

.emit-care-container {
    position: relative;
    width: 100%;
    min-height: var(--care-container-min-height);
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.emit-care-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/assets/web/images/emit-care/emit-care.JPG') center / cover no-repeat;
    z-index: 1;
}

.care-frame {
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(242, 240, 239, 0.4);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
    border-radius: var(--radius-standard);
    transition: var(--transition-smooth);
}

.emit-care-bg {
    display: none;
}

.emit-care-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(22, 24, 29, 0.2) 0%, 
        rgba(22, 24, 29, 0.6) 60%, 
        rgba(22, 24, 29, 0.9) 100%
    );
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
    color: var(--color-pearl);
}

.emit-care-title {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    color: var(--color-pearl);
    font-size: var(--h2-size);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-wrap: balance;
}

.emit-care-text {
    max-width: 800px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.care-badge {
    position: absolute;
    bottom: 60px;
    right: 60px;
    background: rgba(22, 24, 29, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(242, 240, 239, 0.6);
    padding: 18px 30px;
    border-radius: var(--radius-pill);
    z-index: 4;
    text-align: right;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(242, 240, 239, 0.1);
    transition: var(--transition-smooth);
}

.care-badge:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent-pearl);
    background: rgba(22, 24, 29, 0.6);
}

.care-badge .badge-label {
    display: block;
    font-family: var(--font-brand);
    font-size: 0.9rem;
    color: var(--color-accent-pearl);
    font-weight: 700;
}

.care-badge .badge-sub {
    display: block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-pearl);
    opacity: 0.7;
}

/* Request Quote Section */
.quote-section {
    padding: var(--section-padding) 5%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(242, 240, 239, 0.05) 0%, transparent 70%);
}

.quote-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 240, 239, 0.1);
    padding: clamp(40px, 8vw, 80px);
    max-width: 1000px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-smooth);
}

.quote-header {
    margin-bottom: 60px;
}

.quote-header h2 {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: uppercase;
    color: var(--color-pearl);
    font-size: var(--h2-size);
    margin-bottom: 15px;
}

.quote-header p {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.6;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.sophisticated-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.input-group {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.input-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    color: var(--color-accent-pearl);
    font-family: var(--font-brand);
    transition: var(--transition-base);
}

.input-group input, .input-group select, .input-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-pearl);
    padding: 12px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-align: left;
}

/* Textarea: no resize handle, auto-expands with content */
textarea {
    resize: none;
    overflow-y: hidden;
    min-height: 80px;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent-pearl);
    padding-left: 10px;
}

.input-group input::placeholder, .input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.quote-card:hover {
    border-color: rgba(242, 240, 239, 0.3);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .quote-card {
        padding: 40px 20px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Section --- */
.faq-section {
    padding: var(--section-padding) 5%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(242, 240, 239, 0.03) 0%, transparent 70%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(242, 240, 239, 0.06);
    border-radius: var(--radius-large);
    overflow: hidden;
}

.faq-item {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    border: none;
    transition: background 0.3s ease;
}

.faq-item[open] {
    background: rgba(10, 10, 10, 0.8);
}

.faq-question {
    font-family: 'Protrakt-Semi-Bold-Exp-One', sans-serif;
    font-size: var(--text-base);
    letter-spacing: 0.08em;
    color: var(--color-pearl);
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--color-accent-pearl);
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-family: monospace;
    line-height: 1;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
    opacity: 1;
}

.faq-question:hover {
    color: var(--color-accent-pearl);
}

.faq-answer {
    padding: 0 32px 24px;
    color: var(--color-pearl);
    opacity: 0.8;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--color-accent-pearl);
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.faq-answer a:hover {
    opacity: 1;
}

.faq-answer strong {
    color: var(--color-accent-pearl);
    opacity: 1;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: var(--text-sm);
    }
    .faq-answer {
        padding: 0 20px 18px;
        font-size: var(--text-xs);
    }
}

/* Footer */
.site-footer {
    font-family: var(--font-body);
    padding: var(--section-padding) 5% 60px;
    background-color: transparent;
    border-top: 1px solid #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.footer-links, .footer-secondary-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.footer-links a, .footer-secondary-links a {
    color: var(--color-pearl);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.4;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a:hover, .footer-secondary-links a:hover {
    opacity: 1;
    color: var(--color-accent-pearl);
}

.footer-social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.5rem;
}

.footer-social-icons a {
    color: var(--color-pearl);
    opacity: 0.5;
    transition: var(--transition-smooth);
    text-decoration: none;
    line-height: 1;
}

.footer-social-icons a:hover {
    opacity: 1;
    color: var(--color-accent-pearl);
}

.footer-bottom {
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.3;
    padding-top: 40px;
    border-top: 1px solid #111;
    width: 100%;
    max-width: 800px;
}

.footer-legal-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

.footer-legal-links a {
    color: var(--color-pearl);
    text-decoration: none;
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    opacity: 1;
    color: var(--color-accent-pearl);
}

.footer-legal-sep {
    opacity: 0.3;
    font-size: 0.5rem;
}

.powered-by {
    display: block;
    margin-top: 10px;
    font-style: italic;
}

/* Luxury Hero Reveal Animations */
@keyframes hero-reveal-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-reveal {
    opacity: 0;
    animation: hero-reveal-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-reveal-delayed {
    opacity: 0;
    animation: hero-reveal-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

/* Scroll reveal for all sections */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-overlay-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2rem;
    color: var(--color-pearl);
    cursor: pointer;
    z-index: 3100;
    transition: var(--transition-base);
}

.search-overlay-close:hover {
    color: var(--color-accent-pearl);
    transform: rotate(90deg);
}

.search-container {
    width: 90%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid rgba(242, 240, 239, 0.2);
    padding-bottom: 10px;
    transition: var(--transition-base);
}

.search-input-wrapper:focus-within {
    border-bottom-color: var(--color-accent-pearl);
}

.search-input-wrapper i {
    color: var(--color-pearl);
    font-size: 1.5rem;
}

.search-input-wrapper input {
    background: transparent;
    border: none;
    color: var(--color-pearl);
    font-family: var(--font-body);
    font-size: 2rem;
    width: 100%;
    outline: none;
    letter-spacing: 0.1em;
}

.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 10px;
}

.search-results::-webkit-scrollbar {
    width: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: rgba(242, 240, 239, 0.2);
    border-radius: 10px;
}

.search-result-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 240, 239, 0.1);
    padding: 20px;
    border-radius: var(--radius-standard);
    color: var(--color-pearl);
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search-result-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent-pearl);
    transform: translateY(-5px);
}

.search-result-item h4 {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    margin: 0;
    color: var(--color-accent-pearl);
    text-transform: uppercase;
}

.search-result-item p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.7;
}

.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.5;
    padding: 40px 0;
}

/* --- Video Modal --- */
.video-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: videoModalFadeIn 0.3s ease;
}

.video-modal-overlay.active {
    display: flex;
}

.video-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-pearl);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    line-height: 1;
}

.video-modal-close:hover {
    opacity: 1;
}

.video-modal-container {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    max-height: 80vh;
}

.video-modal-wrapper {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-large);
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.video-modal-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes videoModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .video-modal-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }
    .video-modal-container {
        width: 95%;
    }
}

/* --- Charter Section --- */
.charter-section {
    padding: var(--section-padding) 5%;
    background: radial-gradient(circle at center, rgba(242, 240, 239, 0.03) 0%, transparent 70%);
}

.charter-card-row {
    max-width: 1100px;
    margin: 0 auto;
}

.charter-nav {
    font-size: 30pt;
    color: var(--color-pearl);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.charter-nav:hover {
    opacity: 0.7;
}

.charter-date-day {
    font-family: var(--font-brand);
    color: var(--color-accent-pearl);
    font-size: var(--h2-size);
    margin: 0;
    line-height: 1.1;
}

.charter-date-month {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-size: var(--text-sm);
}

.charter-image-card {
    border-radius: var(--radius-standard);
    overflow: hidden;
    height: 400px;
    background: #000;
}

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

.charter-info-card {
    border: 1px solid rgba(242, 240, 239, 0.15);
    padding: 28px;
    height: 400px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.6);
}

.charter-meta {
    margin-bottom: 4px;
}

.charter-meta-label {
    font-family: var(--font-brand);
    color: var(--color-pearl);
    font-size: var(--h5-size);
    letter-spacing: 0.03em;
}

.charter-meta-sub {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.5;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.charter-spacer {
    flex: 1;
}

.charter-title {
    font-family: var(--font-brand);
    font-size: var(--h3-size);
    color: var(--color-accent-pearl);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.charter-desc {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.7;
    font-size: var(--text-sm);
}

.charter-body-text {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.7;
    font-size: var(--text-xs);
    line-height: 1.7;
    margin-top: 16px;
    text-align: left;
}

@media (max-width: 992px) {
    .charter-image-card, .charter-info-card {
        height: 300px;
    }
    .charter-date-col {
        display: none;
    }
    .charter-nav-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .charter-card-row {
        flex-direction: column;
        gap: 0;
    }
    .charter-card-row > .charter-image-col,
    .charter-card-row > .charter-info-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .charter-image-card {
        height: 220px;
        border-radius: var(--radius-standard) var(--radius-standard) 0 0;
        border: 1px solid rgba(242, 240, 239, 0.15);
        border-bottom: none;
    }
    .charter-info-card {
        height: auto;
        min-height: 280px;
        border-radius: 0 0 var(--radius-standard) var(--radius-standard);
        padding: 20px;
    }
    .charter-meta-label {
        font-size: var(--text-base);
    }
    .charter-body-text {
        font-size: var(--text-xs);
    }
}

/* --- Events Section --- */
.events-section {
    padding: var(--section-padding) 5%;
}

.events-card-row {
    max-width: 1100px;
    margin: 0 auto;
}

.events-nav {
    font-size: 30pt;
    color: var(--color-pearl);
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.events-nav:hover {
    opacity: 0.7;
}

.events-date-day {
    font-family: var(--font-brand);
    color: var(--color-accent-pearl);
    font-size: var(--h2-size);
    margin: 0;
    line-height: 1.1;
}

.events-date-month {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    font-size: var(--text-sm);
}

.events-image-card {
    border-radius: var(--radius-standard);
    overflow: hidden;
    height: 400px;
    background: url('/assets/web/images/events/events.jpg') center / cover no-repeat #000;
    position: relative;
}

.events-img {
    display: none;
}

.events-info-card {
    border: 1px solid rgba(242, 240, 239, 0.15);
    padding: 28px;
    height: 400px;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 10, 0.6);
}

.events-meta {
    margin-bottom: 4px;
}

.events-meta-label {
    font-family: var(--font-brand);
    color: var(--color-pearl);
    font-size: var(--h5-size);
    letter-spacing: 0.03em;
}

.events-meta-sub {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.5;
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.events-spacer {
    flex: 1;
}

.events-title {
    font-family: var(--font-brand);
    font-size: var(--h3-size);
    color: var(--color-accent-pearl);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.events-body-text {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.7;
    font-size: var(--text-xs);
    line-height: 1.7;
    margin-top: 16px;
    text-align: justify;
}

@media (max-width: 992px) {
    .events-image-card, .events-info-card {
        height: 300px;
    }
    .events-date-col {
        display: none;
    }
    .events-nav-col {
        display: none;
    }
}

@media (max-width: 768px) {
    .events-card-row {
        flex-direction: column;
        gap: 0;
    }
    .events-card-row > .events-image-col,
    .events-card-row > .events-info-col {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
    .events-image-card {
        height: 220px;
        border-radius: var(--radius-standard) var(--radius-standard) 0 0;
        border: 1px solid rgba(242, 240, 239, 0.15);
        border-bottom: none;
    }
    .events-info-card {
        height: auto;
        min-height: 280px;
        border-radius: 0 0 var(--radius-standard) var(--radius-standard);
        padding: 20px;
    }
    .events-meta-label {
        font-size: var(--text-base);
    }
    .events-body-text {
        font-size: var(--text-xs);
    }
}

.toast {
    min-width: 300px;
    max-width: 450px;
    padding: 16px 24px;
    border-radius: var(--radius-standard);
    background: rgba(22, 24, 29, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(242, 240, 239, 0.1);
    color: var(--color-pearl);
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-luxury);
    animation: toast-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.4s ease;
    pointer-events: auto;
}

.toast.exit {
    opacity: 0;
    transform: translateX(50px);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success { border-left: 4px solid #4CAF50; }
.toast.error { border-left: 4px solid #f44336; }
.toast.warning { border-left: 4px solid #ffeb3b; }
.toast.info { border-left: 4px solid #2196F3; }

@keyframes toast-in {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}

/* Global Confirmation Modal */
.global-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.global-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.global-modal-card {
    background: var(--color-obsidian);
    border: 1px solid rgba(242, 240, 239, 0.1);
    padding: 40px;
    border-radius: var(--radius-large);
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-luxury);
}

.global-modal-title {
    font-family: var(--font-brand);
    color: var(--color-pearl);
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.global-modal-text {
    font-family: var(--font-body);
    color: var(--color-pearl);
    opacity: 0.7;
    margin-bottom: 30px;
    line-height: 1.6;
}

.global-modal-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-confirm-cancel {
    background: transparent;
    border: 1px solid rgba(242, 240, 239, 0.3);
    color: var(--color-pearl);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 0.8rem;
    transition: var(--transition-base);
}

.btn-confirm-cancel:hover {
    background: rgba(242, 240, 239, 0.1);
}

.btn-confirm-ok {
    background: var(--color-accent-pearl);
    border: 1px solid var(--color-accent-pearl);
    color: var(--color-obsidian);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-brand);
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition-base);
}
.btn-confirm-ok:hover {
    background: var(--color-pearl);
    transform: translateY(-2px);
}

/* Section Navigation Dots */
.section-nav {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 14px;
    pointer-events: none;
}

.section-nav a {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(242, 240, 239, 0.25);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    position: relative;
}

.section-nav a::after {
    content: attr(data-label);
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-pearl);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.section-nav a:hover::after {
    opacity: 0.6;
}

.section-nav a.active {
    background: var(--color-pearl);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(242, 240, 239, 0.3);
}

@media (max-width: 768px) {
    .section-nav {
        display: none;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(242, 240, 239, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(242, 240, 239, 0.2);
    color: var(--color-pearl);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: rgba(242, 240, 239, 0.2);
    border-color: var(--color-accent-pearl);
    color: var(--color-accent-pearl);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   ANTI-CLONING / CONTENT PROTECTION LAYER
   Multi-layer CSS protection against scraping, cloning, and theft.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Layer 1: Selection Prevention ──────────────────────────────────── */
/* Prevent text selection on all content (forms excluded below) */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
}

/* Allow text selection inside input fields and textareas (forms must remain usable) */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Allow selection on FAQ elements for readability */
details summary,
details p,
details div {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* ── Layer 2: Image Protection ──────────────────────────────────────── */
/* Prevent image dragging and saving */
img {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none; /* iOS long-press context menu */
    pointer-events: auto;        /* Keep clickable, just not draggable */
}

/* Image shield overlay — subtle diagonal lines that interfere with OCR/cropping */
.emit-img-shield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(242, 240, 239, 0.015) 40px,
        rgba(242, 240, 239, 0.015) 80px
    );
}

/* ── Layer 3: Print Protection ──────────────────────────────────────── */
/* Base print protection — content is hidden via JS-injected stylesheet */
/* This CSS rule ensures print protection covers ALL pages */
@media print {
    body * {
        display: none !important;
    }
    body:after {
        display: block !important;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-family: 'Eurostile', sans-serif;
        color: #333;
        content: "This document is proprietary intellectual property of EMIT Yachts. \A Reproduction or distribution without written consent is prohibited. \A \A © 2026 EMIT Yachts. All rights reserved.";
        white-space: pre-wrap;
        font-size: 16px;
        line-height: 1.6;
        padding: 40px;
        max-width: 80%;
    }
    .emit-img-shield {
        display: none !important;
    }
}

/* ── Layer 4: Selection Styling ──────────────────────────────────────── */
/* Make selected text on forms visually subtle (no blue highlight) */
input::selection,
textarea::selection {
    background: rgba(242, 240, 239, 0.2);
    color: #F2F0EF;
}

/* ── Layer 5: External Embed Prevention (CSP backup) ────────────────── */
/* If somehow loaded in an iframe, make the page invisible */
body {
    -webkit-animation: page-protect 0.1s;
    animation: page-protect 0.1s;
}

@-webkit-keyframes page-protect {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes page-protect {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
