/* ==========================================================================
   MT COMING SOON PRO - ULTRA LUXURY STYLESHEET (v2.0 Hyper-Customizable Edition)
   Author: MT Creazioni Web di Truzzi Mattia
   URI: https://www.mtcreazioniweb.it
   ========================================================================== */

:root {
    --mtcs-champagne: #dfc19c;
    --mtcs-champagne-light: #f4e3cf;
    --mtcs-champagne-dark: #b89369;
    --mtcs-bg: #0b0c10;
    --mtcs-bg-glass: rgba(15, 17, 23, 0.65);
    --mtcs-card-glass: rgba(255, 255, 255, 0.05);
    --mtcs-border-glass: rgba(223, 193, 156, 0.3);
    --mtcs-text: #f5f5f7;
    --mtcs-text-muted: #a1a1a6;
    --mtcs-frame-width: 24px;
    --mtcs-transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    
    --mtcs-bg-blur: 0px;
    --mtcs-overlay-color: #0b0c10;
    --mtcs-overlay-opacity: 50;

    --mtcs-col-header-bg: rgba(11, 12, 16, 0.6);
    --mtcs-col-footer-bg: rgba(11, 12, 16, 0.6);
    --mtcs-col-card-bg: rgba(255, 255, 255, 0.05);
    --mtcs-col-title: #ffffff;
    --mtcs-col-subtitle: #dfc19c;
    --mtcs-col-claim: #dfc19c;
    --mtcs-col-hamburger-line: #dfc19c;

    --mtcs-btn-primary-bg: #dfc19c;
    --mtcs-btn-primary-text: #0b0c10;
    --mtcs-btn-outline-border: #dfc19c;
    --mtcs-btn-outline-text: #dfc19c;

    --mtcs-col-overlay-bg: #0b0c10;
    --mtcs-op-overlay-bg: 94;
    --mtcs-overlay-blur: 25px;
    --mtcs-col-menu-num: #dfc19c;
    --mtcs-col-menu-text: #ffffff;
    --mtcs-col-menu-hover: #dfc19c;

    --mtcs-col-firm-link: #dfc19c;
}

/* PRESET THEME OVERRIDES */
body.mtcs-preset-light {
    --mtcs-bg: #f8f9fa;
    --mtcs-bg-glass: rgba(255, 255, 255, 0.9);
    --mtcs-col-card-bg: rgba(255, 255, 255, 0.88);
    --mtcs-border-glass: rgba(223, 193, 156, 0.45);
    --mtcs-text: #111318;
    --mtcs-text-muted: #4a5056;
    --mtcs-col-title: #111318;
    --mtcs-col-subtitle: #b89369;
    --mtcs-col-header-bg: rgba(255, 255, 255, 0.75);
    --mtcs-col-footer-bg: rgba(255, 255, 255, 0.75);
    --mtcs-col-firm-link: #8f6738;
}

body.mtcs-preset-royal_gold {
    --mtcs-bg: #0c0a06;
    --mtcs-champagne: #d4af37;
    --mtcs-col-title: #f7e7ce;
    --mtcs-col-subtitle: #d4af37;
    --mtcs-col-firm-link: #d4af37;
}

body.mtcs-preset-emerald {
    --mtcs-bg: #041512;
    --mtcs-champagne: #50c878;
    --mtcs-col-title: #ffffff;
    --mtcs-col-subtitle: #50c878;
    --mtcs-col-firm-link: #50c878;
}

body.mtcs-preset-apple_light {
    --mtcs-bg: #ffffff;
    --mtcs-bg-glass: rgba(255, 255, 255, 0.95);
    --mtcs-col-card-bg: rgba(248, 249, 250, 0.95);
    --mtcs-border-glass: rgba(0, 0, 0, 0.08);
    --mtcs-text: #111318;
    --mtcs-text-muted: #555555;
    --mtcs-col-title: #111318;
    --mtcs-col-subtitle: #b89369;
    --mtcs-col-header-bg: rgba(255, 255, 255, 0.9);
    --mtcs-col-footer-bg: rgba(255, 255, 255, 0.9);
    --mtcs-col-firm-link: #111318;
    --mtcs-col-hamburger-line: #111318;
    --mtcs-col-claim: #b89369;
    --mtcs-btn-primary-bg: #111318;
    --mtcs-btn-primary-text: #ffffff;
    --mtcs-btn-outline-border: #111318;
    --mtcs-btn-outline-text: #111318;
    --mtcs-overlay-color: #ffffff;
}

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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--mtcs-bg);
    color: var(--mtcs-text);
    font-family: var(--mtcs-font-body), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* BILINGUAL VISIBILITY */
html[data-lang="it"] .mtcs-lang-en {
    display: none !important;
}
html[data-lang="en"] .mtcs-lang-it {
    display: none !important;
}

/* BACKGROUND & FOCUS BLUR CONTROL */
.mtcs-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: var(--mtcs-bg);
}

.mtcs-bg-image {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(var(--mtcs-bg-blur));
    transform: scale(1.06);
    transition: filter 0.5s ease;
}

.mtcs-bg-default {
    background: var(--mtcs-bg);
}

.mtcs-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mtcs-overlay-color);
    opacity: calc(var(--mtcs-overlay-opacity) / 100);
}

.mtcs-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* LUXURY FRAMED LAYOUT */
.mtcs-frame {
    position: fixed;
    top: var(--mtcs-frame-width);
    left: var(--mtcs-frame-width);
    right: var(--mtcs-frame-width);
    bottom: var(--mtcs-frame-width);
    z-index: 10;
    border: 1px solid var(--mtcs-border-glass);
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px var(--mtcs-frame-border-color, var(--mtcs-champagne)), 0 0 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--mtcs-bg-glass);
    backdrop-filter: blur(var(--mtcs-bg-page-blur, 0px));
    -webkit-backdrop-filter: blur(var(--mtcs-bg-page-blur, 0px));
}

/* HEADER (3 ZONES) */
.mtcs-header {
    height: 85px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--mtcs-border-glass);
    z-index: 20;
    background: var(--mtcs-col-header-bg);
}

/* ZONE 1: LEFT */
.mtcs-header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.mtcs-logo-sub img {
    max-height: 40px;
    width: auto;
    display: block;
}

.mtcs-claim {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mtcs-col-claim);
    font-weight: 600;
}

.mtcs-lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--mtcs-col-lang-bg, rgba(255, 255, 255, 0.08));
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    border: 1px solid var(--mtcs-col-lang-border, var(--mtcs-border-glass));
}

.mtcs-lang-btn {
    background: none;
    border: none;
    color: var(--mtcs-col-lang-inactive, var(--mtcs-text-muted));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 2px 4px;
}

.mtcs-lang-btn.active, .mtcs-lang-btn:hover {
    color: var(--mtcs-col-lang-active, var(--mtcs-champagne));
}

.mtcs-lang-divider {
    color: var(--mtcs-border-glass);
    font-size: 0.75rem;
}

/* ZONE 2: CENTER (PRIMARY LOGO) */
.mtcs-header-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}

.mtcs-logo-main img {
    max-height: 52px;
    width: auto;
    display: block;
}

.mtcs-brand-text {
    font-family: var(--mtcs-font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mtcs-text);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mtcs-brand-badge {
    font-family: var(--mtcs-font-body);
    font-size: 0.65rem;
    padding: 2px 7px;
    background: var(--mtcs-champagne);
    color: #0b0c10;
    border-radius: 2px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* ZONE 3: RIGHT (HAMBURGER - ALWAYS VISIBLE) */
.mtcs-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    flex: 1;
}

.mtcs-logo-right-img img {
    max-height: 36px;
    width: auto;
}

.mtcs-hamburger {
    background: var(--mtcs-col-hamburger-bg, rgba(223, 193, 156, 0.15));
    border: 1px solid var(--mtcs-col-hamburger-border, var(--mtcs-border-glass));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s var(--mtcs-transition-smooth);
}

.mtcs-hamburger:hover {
    background: var(--mtcs-champagne);
    border-color: var(--mtcs-champagne);
}

.mtcs-hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--mtcs-col-hamburger-line);
    transition: all 0.3s ease;
}

.mtcs-hamburger:hover .mtcs-hamburger-line {
    background-color: #0b0c10;
}

/* MAIN & SLIDER TRACK */
.mtcs-main {
    flex: 1;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.mtcs-slider-track {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.8s var(--mtcs-transition-smooth);
    will-change: transform;
}

.mtcs-slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
    overflow-y: auto;
}

.mtcs-slide-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* SLIDE 1: HOME STYLES */
.mtcs-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    background: rgba(223, 193, 156, 0.15);
    border: 1px solid var(--mtcs-border-glass);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mtcs-col-label, var(--mtcs-champagne));
    margin-bottom: 2rem;
    font-weight: 600;
}

.mtcs-pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--mtcs-champagne);
    box-shadow: 0 0 10px var(--mtcs-champagne);
    animation: mtcsPulse 2s infinite;
}

@keyframes mtcsPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 193, 156, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(223, 193, 156, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(223, 193, 156, 0); }
}

.mtcs-title-sculptural {
    font-family: var(--mtcs-font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--mtcs-col-title);
    margin-bottom: 1.2rem;
}

.mtcs-subtitle-italic {
    font-family: var(--mtcs-font-heading);
    font-style: italic;
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    color: var(--mtcs-col-subtitle);
    margin-bottom: 1.5rem;
}

.mtcs-teaser {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--mtcs-col-text, var(--mtcs-text));
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.mtcs-cta-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.mtcs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2.4rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--mtcs-transition-smooth);
    text-decoration: none;
    border: none;
}

.mtcs-btn-primary {
    background: var(--mtcs-col-btn1-bg, var(--mtcs-btn-primary-bg));
    color: var(--mtcs-col-btn1-text, var(--mtcs-btn-primary-text));
}

.mtcs-btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(223, 193, 156, 0.3);
}

.mtcs-btn-outline {
    background: var(--mtcs-col-btn2-bg, transparent);
    border: 1px solid var(--mtcs-col-btn2-border, var(--mtcs-btn-outline-border));
    color: var(--mtcs-col-btn2-text, var(--mtcs-btn-outline-text));
}

.mtcs-btn-outline:hover {
    filter: brightness(1.15);
    transform: translateY(-2px);
}

/* SLIDE 2 & 3 GRID FLEXIBILITY */
.mtcs-grid-editorial,
.mtcs-grid-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mtcs-grid-single {
    grid-template-columns: 1fr !important;
    max-width: 750px;
    margin: 0 auto;
}

.mtcs-section-num {
    font-family: var(--mtcs-font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    color: var(--mtcs-col-label, var(--mtcs-champagne));
    display: block;
    margin-bottom: 0.8rem;
}

.mtcs-section-title {
    font-family: var(--mtcs-font-heading);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    color: var(--mtcs-col-title);
}

.mtcs-section-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--mtcs-col-text, var(--mtcs-text));
    margin-bottom: 2rem;
}

.mtcs-manifesto {
    padding-left: 1.5rem;
    border-left: 2px solid var(--mtcs-col-label, var(--mtcs-champagne));
    font-family: var(--mtcs-font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--mtcs-col-subtitle);
}

/* COUNTDOWN CARD */
.mtcs-countdown-card {
    background: var(--mtcs-col-card-bg);
    backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    -webkit-backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    border: 1px solid var(--mtcs-border-glass);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.mtcs-countdown-header {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mtcs-champagne);
    margin-bottom: 2rem;
    font-weight: 600;
}

.mtcs-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mtcs-time-box {
    background: rgba(11, 12, 16, 0.4);
    border: 1px solid var(--mtcs-border-glass);
    padding: 1.2rem 0.5rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mtcs-time-num {
    font-family: var(--mtcs-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--mtcs-col-title);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.mtcs-time-label {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mtcs-text-muted);
}

.mtcs-date-badge {
    display: inline-block;
    padding: 0.35rem 1.1rem;
    background: rgba(223, 193, 156, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--mtcs-champagne);
    font-weight: 600;
}

/* SLIDE 3: CONTATTI */
.mtcs-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.mtcs-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mtcs-info-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mtcs-col-label, var(--mtcs-champagne));
    font-weight: 600;
}

.mtcs-info-val {
    font-size: 1.15rem;
    color: var(--mtcs-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.mtcs-info-val:hover {
    color: var(--mtcs-champagne);
}

.mtcs-social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.mtcs-social-links a {
    color: var(--mtcs-text-muted);
    font-size: 0.88rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mtcs-social-links a:hover {
    color: var(--mtcs-champagne);
}

/* NEWSLETTER CARD */
.mtcs-newsletter-card {
    background: var(--mtcs-col-card-bg);
    backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    -webkit-backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    border: 1px solid var(--mtcs-border-glass);
    padding: 3rem 2.5rem;
    border-radius: 12px;
}

.mtcs-newsletter-card h3 {
    font-family: var(--mtcs-font-heading);
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
    color: var(--mtcs-col-title);
}

.mtcs-newsletter-sub {
    font-size: 0.95rem;
    color: var(--mtcs-text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.mtcs-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
}

.mtcs-input-wrapper input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(11, 12, 16, 0.3);
    border: 1px solid var(--mtcs-border-glass);
    border-radius: 8px;
    color: var(--mtcs-text);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.mtcs-input-wrapper input:focus {
    border-color: var(--mtcs-champagne);
}

.mtcs-input-wrapper label {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    color: var(--mtcs-text-muted);
    font-size: 0.9rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mtcs-input-wrapper input:focus ~ label,
.mtcs-input-wrapper input:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 0.8rem;
    font-size: 0.75rem;
    background: var(--mtcs-bg);
    padding: 0 6px;
    color: var(--mtcs-champagne);
}

.mtcs-form-feedback {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: var(--mtcs-champagne);
    text-align: center;
}

/* SLIDE 4: VETRINA CUSTOM (SHOWCASE) STYLES */
.mtcs-showcase-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.mtcs-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--mtcs-border-glass);
    margin-bottom: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mtcs-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mtcs-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mtcs-showcase-card {
    background: var(--mtcs-col-card-bg);
    backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    -webkit-backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    border: 1px solid var(--mtcs-border-glass);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s var(--mtcs-transition-smooth);
}

.mtcs-showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--mtcs-champagne);
}

.mtcs-card-img {
    height: 170px;
    background-size: cover;
    background-position: center;
}

.mtcs-card-content {
    padding: 1.5rem;
}

.mtcs-card-content h4 {
    font-family: var(--mtcs-font-heading);
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--mtcs-col-title);
}

.mtcs-card-content p {
    font-size: 0.88rem;
    color: var(--mtcs-text-muted);
    line-height: 1.6;
}

.mtcs-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
}

.mtcs-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: var(--mtcs-col-card-bg);
    backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    -webkit-backdrop-filter: blur(var(--mtcs-card-blur, 0px));
    border: 1px solid var(--mtcs-border-glass);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--mtcs-text);
}

.mtcs-feature-icon {
    color: var(--mtcs-champagne);
}

/* NAV CONTROLS / DOTS */
.mtcs-nav-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 30;
}

.mtcs-dot {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s var(--mtcs-transition-smooth);
}

.mtcs-dot.active {
    background: var(--mtcs-col-dots, var(--mtcs-champagne));
    width: 50px;
}

/* FOOTER (3 ZONES INSIDE FRAME) */
.mtcs-footer {
    height: 65px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--mtcs-border-glass);
    font-size: 0.8rem;
    color: var(--mtcs-text-muted);
    z-index: 20;
    background: var(--mtcs-col-footer-bg);
}

.mtcs-footer-left {
    flex: 1;
}

.mtcs-footer-center {
    flex: 2;
    text-align: center;
    font-weight: 500;
}

.mtcs-firm-link,
.mtcs-footer-center a {
    color: var(--mtcs-col-firm-link) !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
    transition: color 0.3s ease;
    display: inline-block;
}

.mtcs-firm-link:hover,
.mtcs-footer-center a:hover {
    filter: brightness(1.2);
}

.mtcs-footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.mtcs-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: var(--mtcs-col-badge-bg, rgba(223, 193, 156, 0.18));
    border: 1px solid var(--mtcs-border-glass);
    border-radius: 50px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--mtcs-col-badge-text, var(--mtcs-champagne));
    text-transform: uppercase;
    font-weight: 700;
}

.mtcs-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--mtcs-col-badge-text, var(--mtcs-champagne));
}

/* FULLSCREEN HAMBURGER MENU OVERLAY */
.mtcs-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.5rem 4.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--mtcs-transition-smooth);
}

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

.mtcs-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--mtcs-col-overlay-bg);
    opacity: calc(var(--mtcs-op-overlay-bg) / 100);
    backdrop-filter: blur(var(--mtcs-overlay-blur));
    z-index: -1;
}

.mtcs-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mtcs-overlay-brand {
    font-family: var(--mtcs-font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--mtcs-col-overlay-brand, var(--mtcs-champagne));
    font-weight: 600;
}

.mtcs-close-btn {
    background: var(--mtcs-col-close-btn-bg);
    border: 1px solid var(--mtcs-border-glass);
    color: var(--mtcs-col-close-btn-icon);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mtcs-close-btn:hover {
    background: var(--mtcs-champagne);
    color: #0b0c10;
}

.mtcs-overlay-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.mtcs-overlay-nav li {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--mtcs-transition-smooth);
    transition-delay: calc(var(--stagger) * 0.1s);
}

.mtcs-menu-overlay.active .mtcs-overlay-nav li {
    opacity: 1;
    transform: translateY(0);
}

.mtcs-menu-link {
    font-family: var(--mtcs-font-heading);
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: var(--mtcs-col-menu-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.mtcs-menu-link.active, .mtcs-menu-link:hover {
    color: var(--mtcs-col-menu-hover);
    transform: translateX(18px);
}

.mtcs-link-num {
    font-size: 1.3rem;
    color: var(--mtcs-col-menu-num);
    font-weight: 600;
}

.mtcs-overlay-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--mtcs-border-glass);
    padding-top: 1.8rem;
    font-size: 0.85rem;
}

.mtcs-overlay-lang {
    display: flex;
    gap: 0.8rem;
    color: var(--mtcs-text-muted);
}

.mtcs-overlay-credits a {
    color: var(--mtcs-col-firm-link);
    text-decoration: underline;
    font-weight: 700;
}

/* RESPONSIVE DESIGN (MOBILE & TABLET) */
@media (max-width: 992px) {
    :root {
        --mtcs-frame-width: 12px;
    }

    .mtcs-header {
        height: 72px;
        padding: 0 1.2rem;
    }

    .mtcs-claim {
        display: none;
    }

    .mtcs-grid-editorial,
    .mtcs-grid-contact {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .mtcs-slide {
        padding: 2rem 1.2rem;
    }

    .mtcs-footer {
        padding: 0.8rem 1.2rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.4rem;
        height: auto;
        min-height: 90px;
    }

    .mtcs-footer-left,
    .mtcs-footer-center,
    .mtcs-footer-right {
        display: flex !important;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: 0.72rem;
    }

    .mtcs-lang-switcher {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .mtcs-btn {
        padding: 10px 22px;
        font-size: 0.78rem;
    }

    .mtcs-menu-overlay {
        padding: 2rem 1.5rem;
    }

    .mtcs-menu-overlay .mtcs-overlay-credits {
        display: none !important;
    }
}

/* ==========================================================================
   v4.0 BACKGROUND MEDIA ENGINE (SLIDESHOW & VIDEO)
   ========================================================================== */
.mtcs-bg-slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.mtcs-slide-bg {
    position: absolute;
    inset: -10px;
    background-size: cover;
    background-position: center;
    filter: blur(var(--mtcs-bg-blur));
    transform: scale(1.06);
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.mtcs-slide-bg.active {
    opacity: 1;
}

.mtcs-bg-video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.mtcs-bg-video-wrapper video,
.mtcs-bg-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.2);
    object-fit: cover;
    filter: blur(var(--mtcs-bg-blur));
    pointer-events: none;
}

/* ==========================================================================
   v3.0 MULTI-LAYOUT & MINIMALIST HAUTE COUTURE (APPLE / PRADA STYLE)
   ========================================================================== */

/* Responsive Logo Alignment */
body.mtcs-logo-align-left .mtcs-header-center {
    margin-right: auto;
    margin-left: 0;
}
body.mtcs-logo-align-right .mtcs-header-center {
    margin-left: auto;
    margin-right: 0;
}

/* Header Inline Navigation Bar */
.mtcs-nav-inline {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.mtcs-inline-link {
    color: var(--mtcs-text);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.75;
}

.mtcs-inline-link:hover,
.mtcs-inline-link.active {
    opacity: 1;
    color: var(--mtcs-col-subtitle);
}

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

/* APPLE / PRADA MINIMALIST LAYOUT (body.mtcs-layout-minimal_apple) */
body.mtcs-layout-minimal_apple {
    --mtcs-frame-width: 0px;
}

body.mtcs-layout-minimal_apple,
body.mtcs-layout-minimal_apple html {
    overflow-y: auto !important;
}

body.mtcs-layout-minimal_apple .mtcs-frame {
    border: none;
    height: auto;
    min-height: 100vh;
}

body.mtcs-layout-minimal_apple .mtcs-main {
    height: auto;
    overflow: visible;
}

body.mtcs-layout-minimal_apple .mtcs-slider-track {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    transform: none !important;
}

body.mtcs-layout-minimal_apple .mtcs-slide {
    width: 100% !important;
    min-height: auto !important;
    padding: 3rem 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.mtcs-layout-minimal_apple .mtcs-slide-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto !important;
}

body.mtcs-layout-minimal_apple .mtcs-nav-controls {
    display: none !important;
}

body.mtcs-preset-light.mtcs-layout-minimal_apple .mtcs-slide,
body.mtcs-preset-apple_light.mtcs-layout-minimal_apple .mtcs-slide {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.mtcs-layout-minimal_apple .mtcs-bg-image {
    display: none;
}

/* Contained Hero Image Frame */
.mtcs-hero-contained-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 1.8rem 0 2.8rem 0;
}

.mtcs-hero-contained-box {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--mtcs-border-glass);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--mtcs-col-card-bg);
}

.mtcs-hero-contained-box.mtcs-ratio-16-9 {
    aspect-ratio: 16 / 9;
}
.mtcs-hero-contained-box.mtcs-ratio-4-3 {
    aspect-ratio: 4 / 3;
}
.mtcs-hero-contained-box.mtcs-ratio-1-1 {
    aspect-ratio: 1 / 1;
}
.mtcs-hero-contained-box.mtcs-ratio-21-9 {
    aspect-ratio: 21 / 9;
}

.mtcs-hero-contained-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(var(--mtcs-bg-blur));
    transform: scale(1.03);
}

.mtcs-hero-contained-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--mtcs-overlay-color);
    opacity: calc(var(--mtcs-overlay-opacity) / 100);
    pointer-events: none;
}

/* SPLIT LUXURY EDITORIAL LAYOUT (body.mtcs-layout-split_editorial) */
@media (min-width: 992px) {
    body.mtcs-layout-split_editorial,
    body.mtcs-layout-split_editorial html {
        overflow: hidden;
    }

    body.mtcs-layout-split_editorial .mtcs-main {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    body.mtcs-layout-split_editorial .mtcs-slider-track {
        display: block;
        width: 100% !important;
        transform: none !important;
        overflow-y: auto;
    }

    body.mtcs-layout-split_editorial .mtcs-slide {
        width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
        padding: 4rem 3rem;
        min-height: auto;
    }
}
