/**
 * Immersion Elementor Addon - Styles des widgets
 */

/* ===== VARIABLES ===== */
:root {
    --cream: #F2EBD9;
    --cream-dark: #E8DCCA;
    --ink: #1A1612;
    --ink-soft: #3A332B;
    --terra: #B5612A;
    --terra-light: #C97A47;
    --forest: #2C4A35;
    --gold: #9A7A42;
    --serif: 'Spectral', Georgia, serif;
    --display: 'Cinzel', serif;
    --sans: 'DM Sans', sans-serif;
}

/* ===== HERO SECTION ===== */
.immersion-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.immersion-hero .hero-bg {
    position: absolute;
    inset: 0;
    animation: heroImageFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.immersion-hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.immersion-hero .hero-img.active {
    opacity: 1;
}

/* Si une seule image, pas besoin de transition */
.immersion-hero .hero-bg .hero-img:only-child {
    opacity: 1;
    animation: heroSlowZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.06); }
    to { transform: scale(1.0); }
}

@keyframes heroSlowZoom {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.06); }
}

@keyframes heroImageFadeIn {
    from {
        opacity: 0;
        transform: scale(1.08);
    }
    to {
        opacity: 1;
        transform: scale(1.0);
    }
}

.immersion-hero .hero-overlay {
    position: absolute;
    inset: 0;
}

.immersion-hero .hero-coords {
    position: absolute;
    top: 100px;
    right: 64px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: right;
}

.immersion-hero .hero-coords span {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: rgba(242,235,217,0.3);
    text-transform: uppercase;
}

.immersion-hero .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 72px 88px;
    max-width: 780px;
}

.immersion-hero .hero-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terra-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.immersion-hero .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 1px;
    background: var(--terra-light);
}

.immersion-hero .hero-title {
    font-family: var(--display);
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 400;
    color: var(--cream);
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}

.immersion-hero .hero-title p,
.immersion-hero .hero-title div,
.immersion-hero .hero-title span {
    margin: 0 !important;
    padding: 0 !important;
    line-height: inherit !important;
}

.immersion-hero .hero-title br {
    content: '';
    display: block;
    line-height: inherit;
}

.immersion-hero .hero-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    color: rgba(242,235,217,0.75);
    letter-spacing: 0;
}

.immersion-hero .hero-sub {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(242,235,217,0.72);
    max-width: 440px;
    margin-bottom: 40px;
}

.immersion-hero .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.immersion-hero .hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(242,235,217,0.1);
}

.immersion-hero .hero-trust-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.immersion-hero .hero-trust-num {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.immersion-hero .hero-trust-label {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,235,217,0.4);
}

.immersion-hero .hero-trust-sep {
    width: 1px;
    height: 32px;
    background: rgba(242,235,217,0.12);
}

.immersion-hero .hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 64px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.immersion-hero .hero-scroll span {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(242,235,217,0.4);
    writing-mode: vertical-lr;
}

.immersion-hero .hero-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(242,235,217,0.2);
    position: relative;
    overflow: hidden;
}

.immersion-hero .hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 1px;
    height: 60px;
    background: var(--terra-light);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { top: -60px; }
    100% { top: 60px; }
}

/* Hero Fade In Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.immersion-hero .hero-content .hero-eyebrow,
.immersion-hero .hero-content .hero-title,
.immersion-hero .hero-content .hero-sub,
.immersion-hero .hero-content .hero-actions,
.immersion-hero .hero-content .hero-trust {
    opacity: 0;
    animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.immersion-hero .hero-content .hero-eyebrow {
    animation-delay: 0.2s;
}

.immersion-hero .hero-content .hero-title {
    animation-delay: 0.4s;
}

.immersion-hero .hero-content .hero-sub {
    animation-delay: 0.6s;
}

.immersion-hero .hero-content .hero-actions {
    animation-delay: 0.8s;
}

.immersion-hero .hero-content .hero-trust {
    animation-delay: 1s;
}

.immersion-hero .hero-coords,
.immersion-hero .hero-scroll {
    opacity: 0;
    animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 1.2s;
}

/* ===== INTRO STRIP ===== */
.immersion-intro-strip {
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.immersion-intro-strip .intro-strip-tag {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--terra-light);
    white-space: nowrap;
    margin-bottom: 16px;
}

.immersion-intro-strip .intro-strip-line {
    width: 80px;
    height: 1px;
    background: rgba(242,235,217,0.15);
    margin: 24px auto;
}

.immersion-intro-strip .intro-strip-text {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(242,235,217,0.72);
    letter-spacing: 0.04em;
    max-width: 720px;
    margin: 0 auto;
}

/* ===== CITATION BLOCK ===== */
.immersion-citation-block {
    padding: 80px 64px 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--ink);
}

.immersion-citation-block .bali-citation {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
}

.immersion-citation-block .citation-ornament {
    font-size: 24px;
    color: var(--terra-light);
    margin-bottom: 24px;
}

.immersion-citation-block .citation-text {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 38px);
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 32px;
}

.immersion-citation-block .citation-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.immersion-citation-block .citation-line {
    display: inline-block;
    width: 36px;
    height: 1px;
    background: rgba(242,235,217,0.2);
}

.immersion-citation-block .citation-author {
    font-family: var(--display);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terra-light);
}

.immersion-citation-block .citation-sub {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    color: rgba(242,235,217,0.64);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 440px;
}

.immersion-citation-block .citation-cta {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--terra-light);
    text-decoration: none;
    transition: letter-spacing 0.25s, color 0.25s;
}

.immersion-citation-block .citation-cta:hover {
    letter-spacing: 0.3em;
    color: var(--cream);
}

/* ===== CATEGORY CARDS ===== */
.immersion-categories {
    padding: 0 64px 96px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: start;
}


.immersion-categories .cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 16px;
    height: 540px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-categories .cat-card:hover {
    transform: translateY(-6px);
}

.immersion-categories .cat-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-categories .cat-card:hover .cat-photo {
    transform: scale(1.06);
}

.immersion-categories .cat-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s;
}

.immersion-categories .cat-card--gold .cat-overlay {
    background: linear-gradient(to top, rgba(20,10,4,0.92) 0%, rgba(20,10,4,0.55) 28%, rgba(30,15,5,0.1) 60%, transparent 100%);
}

.immersion-categories .cat-card--green .cat-overlay {
    background: linear-gradient(to top, rgba(8,16,8,0.92) 0%, rgba(8,16,8,0.55) 28%, rgba(15,30,10,0.1) 60%, transparent 100%);
}

.immersion-categories .cat-card--blue .cat-overlay {
    background: linear-gradient(to top, rgba(4,10,20,0.92) 0%, rgba(4,10,20,0.55) 28%, rgba(8,20,40,0.1) 60%, transparent 100%);
}

.immersion-categories .cat-ikat {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 3;
}

.immersion-categories .cat-card--gold .cat-ikat {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, rgba(212,175,55,0.7) 6px, rgba(212,175,55,0.7) 8px, transparent 8px, transparent 14px, rgba(242,235,217,0.3) 14px, rgba(242,235,217,0.3) 16px);
}

.immersion-categories .cat-card--green .cat-ikat {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, rgba(120,190,80,0.6) 6px, rgba(120,190,80,0.6) 8px, transparent 8px, transparent 14px, rgba(242,235,217,0.25) 14px, rgba(242,235,217,0.25) 16px);
}

.immersion-categories .cat-card--blue .cat-ikat {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, rgba(80,150,210,0.6) 6px, rgba(80,150,210,0.6) 8px, transparent 8px, transparent 14px, rgba(242,235,217,0.25) 14px, rgba(242,235,217,0.25) 16px);
}

.immersion-categories .cat-ghost-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: var(--display);
    font-size: 100px;
    font-weight: 600;
    color: rgba(242,235,217,0.04);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    user-select: none;
}

.immersion-categories .cat-card:hover .cat-ghost-num {
    color: rgba(212,175,55,0.12);
    transform: translateY(-4px) scale(1.02);
}

.immersion-categories .cat-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.immersion-categories .cat-top-tag {
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,235,217,0.95);
    background: rgba(26,22,18,0.6);
    border: 1px solid rgba(242,235,217,0.12);
    padding: 6px 14px;
    border-radius: 100px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.immersion-categories .cat-card:hover .cat-top-tag {
    background: rgba(26,22,18,0.75);
    border-color: rgba(212,175,55,0.25);
}

.immersion-categories .cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px 24px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.immersion-categories .cat-number {
    font-family: var(--display);
    font-size: 9px;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
    display: inline-block;
    padding: 5px 12px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.immersion-categories .cat-card--gold .cat-number {
    background: rgba(212,175,55,0.22);
    border: 1px solid rgba(212,175,55,0.45);
    color: #E8D080;
}

.immersion-categories .cat-card--green .cat-number {
    background: rgba(80,160,60,0.2);
    border: 1px solid rgba(120,190,80,0.45);
    color: #A8D888;
}

.immersion-categories .cat-card--blue .cat-number {
    background: rgba(40,100,180,0.2);
    border: 1px solid rgba(80,150,210,0.45);
    color: #88B8D8;
}

/* Purple color scheme */
.immersion-categories .cat-card--purple .cat-overlay {
    background: linear-gradient(to top, rgba(20,8,28,0.92) 0%, rgba(20,8,28,0.55) 28%, rgba(40,15,55,0.1) 60%, transparent 100%);
}

.immersion-categories .cat-card--purple .cat-ikat {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, rgba(150,100,180,0.6) 6px, rgba(150,100,180,0.6) 8px, transparent 8px, transparent 14px, rgba(242,235,217,0.25) 14px, rgba(242,235,217,0.25) 16px);
}

.immersion-categories .cat-card--purple .cat-number {
    background: rgba(120,80,160,0.2);
    border: 1px solid rgba(150,100,180,0.45);
    color: #C8A8D8;
}

/* Red color scheme */
.immersion-categories .cat-card--red .cat-overlay {
    background: linear-gradient(to top, rgba(28,8,8,0.92) 0%, rgba(28,8,8,0.55) 28%, rgba(55,15,15,0.1) 60%, transparent 100%);
}

.immersion-categories .cat-card--red .cat-ikat {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, rgba(180,80,80,0.6) 6px, rgba(180,80,80,0.6) 8px, transparent 8px, transparent 14px, rgba(242,235,217,0.25) 14px, rgba(242,235,217,0.25) 16px);
}

.immersion-categories .cat-card--red .cat-number {
    background: rgba(160,60,60,0.2);
    border: 1px solid rgba(180,80,80,0.45);
    color: #D8A8A8;
}

.immersion-categories .cat-name {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transition: transform 0.4s ease;
}

.immersion-categories .cat-card:hover .cat-name {
    transform: translateY(-2px);
}

.immersion-categories .cat-name-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(242,235,217,0.7);
    margin-bottom: 12px;
    display: block;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.immersion-categories .cat-divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(212,175,55,0.6) 0%, rgba(212,175,55,0.1) 100%);
    margin-bottom: 12px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
}

.immersion-categories .cat-card:hover .cat-divider {
    width: 60px;
}

.immersion-categories .cat-desc {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(242,235,217,0.85);
    margin-bottom: 16px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease 0.1s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.immersion-categories .cat-card:hover .cat-desc {
    max-height: 70px;
    opacity: 1;
}

.immersion-categories .cat-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(242,235,217,0.9);
    text-decoration: none;
    background: rgba(242,235,217,0.1);
    border: 1px solid rgba(242,235,217,0.18);
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.35s ease;
}

.immersion-categories .cat-card:hover .cat-tag {
    color: var(--cream);
    background: var(--terra);
    border-color: var(--terra);
    gap: 12px;
}

.immersion-categories .cat-tag::after {
    content: '\2192';
    transition: transform 0.3s ease;
}

.immersion-categories .cat-card:hover .cat-tag::after {
    transform: translateX(3px);
}

/* ===== EXPERIENCE MODULE ===== */
.immersion-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 680px;
    position: relative;
    margin: 0 64px 24px;
    border-radius: 16px; /* Valeur par defaut, modifiable dans Elementor */
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.immersion-experience .exp-image {
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.immersion-experience .exp-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
    filter: brightness(1);
}

.immersion-experience:hover .exp-image img {
    transform: scale(1.04);
    filter: brightness(1.03);
}

.immersion-experience .exp-badge {
    position: absolute;
    bottom: 32px;
    left: 28px;
    background: rgba(242,235,217,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 20px;
    z-index: 2;
    transform: rotate(-1.5deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(212,175,55,0.1);
    border-radius: 8px;
    max-width: 150px;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.immersion-experience:hover .exp-badge {
    transform: rotate(-1.5deg) translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 0 0 1px rgba(212,175,55,0.15);
}

.immersion-experience .exp-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #C9A73C 100%);
    margin: 0 auto 10px;
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

.immersion-experience .exp-badge-text {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    font-weight: 400;
    color: var(--ink);
    display: block;
    line-height: 1.25;
    margin-bottom: 6px;
}

.immersion-experience .exp-badge-nights {
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    display: block;
}

.immersion-experience .exp-content {
    background: #1C1208;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.immersion-experience .exp-eyebrow {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.immersion-experience .exp-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, rgba(212,175,55,0.3) 100%);
    border-radius: 1px;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-eyebrow::before {
    width: 32px;
}

.immersion-experience .exp-title {
    font-family: var(--display);
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.04em;
    color: var(--cream);
    margin-bottom: 20px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-title {
    transform: translateX(4px);
}

/* Force l'héritage des styles pour les balises WYSIWYG */
.immersion-experience .exp-title p,
.immersion-experience .exp-title pre,
.immersion-experience .exp-title span,
.immersion-experience .exp-title div,
.immersion-experience .exp-title h1,
.immersion-experience .exp-title h2,
.immersion-experience .exp-title h3,
.immersion-experience .exp-title h4,
.immersion-experience .exp-title h5,
.immersion-experience .exp-title h6 {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
    text-transform: inherit !important;
    margin: 0;
    padding: 0;
}

.immersion-experience .exp-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
}

.immersion-experience .exp-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37 0%, rgba(212,175,55,0.2) 100%);
    margin-bottom: 16px;
    border-radius: 1px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-divider {
    width: 56px;
}

.immersion-experience .exp-body {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    line-height: 1.75;
    color: rgba(242,235,217,0.65);
    margin-bottom: 20px;
    max-width: 420px;
    transition: color 0.4s ease;
}

.immersion-experience:hover .exp-body {
    color: rgba(242,235,217,0.78);
}

/* ===== SECTION PROGRAMME - TIMELINE ===== */
.immersion-experience .exp-programme {
    margin-bottom: 20px;
    margin-top: 4px;
    padding: 16px 20px;
    background: rgba(212,175,55,0.03);
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.08);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-programme {
    background: rgba(212,175,55,0.05);
    border-color: rgba(212,175,55,0.12);
}

.immersion-experience .exp-prog-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.immersion-experience .exp-prog-header::before {
    content: '';
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, #D4AF37 0%, transparent 100%);
}

.immersion-experience .exp-prog-title {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 500;
}

.immersion-experience .exp-prog-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.immersion-experience .exp-prog-item {
    display: flex;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(242,235,217,0.06);
    transition: all 0.3s ease;
}

.immersion-experience .exp-prog-item:hover {
    padding-left: 4px;
}

.immersion-experience .exp-prog-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.immersion-experience .exp-prog-item:first-child {
    padding-top: 0;
}

/* Timeline marker */
.immersion-experience .exp-prog-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    padding-top: 2px;
}

.immersion-experience .exp-prog-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,175,55,0.25);
    border: none;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-prog-dot {
    background: rgba(212,175,55,0.4);
}

.immersion-experience .exp-prog-item:hover .exp-prog-dot {
    background: #D4AF37;
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
}

.immersion-experience .exp-prog-line {
    width: 1px;
    flex: 1;
    background: rgba(212,175,55,0.15);
    margin-top: 6px;
    min-height: 14px;
}

/* Content */
.immersion-experience .exp-prog-content {
    flex: 1;
    padding-top: 0;
}

.immersion-experience .exp-prog-day-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.immersion-experience .exp-prog-day {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: #D4AF37;
    text-transform: uppercase;
    font-weight: 600;
    background: rgba(212,175,55,0.1);
    padding: 3px 8px;
    border-radius: 3px;
}

.immersion-experience .exp-prog-day-title {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.01em;
}

.immersion-experience .exp-prog-text {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(242,235,217,0.55);
    max-width: 100%;
}

.immersion-experience .exp-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
    margin-top: 4px;
}

.immersion-experience .exp-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212,175,55,0.08);
}

.immersion-experience .exp-meta-item:last-child {
    border-bottom: none;
}

.immersion-experience .exp-meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    color: #D4AF37;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.immersion-experience:hover .exp-meta-icon {
    background: rgba(212,175,55,0.15);
    transform: scale(1.05);
}

.immersion-experience .exp-meta-icon svg {
    width: 15px;
    height: 15px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.immersion-experience:hover .exp-meta-icon svg {
    opacity: 1;
}

.immersion-experience .exp-meta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.immersion-experience .exp-meta-label {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(242,235,217,0.4);
}

.immersion-experience .exp-meta-val {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--cream);
}

.immersion-experience .exp-meta-sep {
    display: none;
}

.immersion-experience .btn-learn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(201, 122, 71, 0.5);
    border-radius: 24px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    margin-top: 4px;
}

.immersion-experience .btn-learn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 28px;
    z-index: -1;
}

.immersion-experience .btn-learn:hover {
    border-color: var(--terra-light);
    gap: 16px;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 97, 42, 0.25);
}

.immersion-experience .btn-learn:hover::before {
    opacity: 1;
}

.immersion-experience .btn-learn .arrow {
    transition: transform 0.3s ease;
}

.immersion-experience .btn-learn:hover .arrow {
    transform: translateX(4px);
}

/* ===== MENTION LÉGALE (mise en relation) ===== */
.immersion-experience .exp-legal {
    margin-top: 16px;
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.95;
    color: rgba(242, 235, 217, 0.72);
}

/* Style: Subtle (italique) */
.immersion-experience .exp-legal--subtle {
    font-style: italic;
}

.immersion-experience .exp-legal--subtle .exp-legal__text {
    opacity: 0.85;
}

/* Style: Box (encadré) */
.immersion-experience .exp-legal--box {
    background: rgba(242, 235, 217, 0.05);
    border: 1px solid rgba(242, 235, 217, 0.15);
    border-radius: 6px;
    padding: 16px 20px;
    font-style: normal;
}

/* Style: Line (avec ligne) */
.immersion-experience .exp-legal--line {
    position: relative;
    padding-left: 20px;
    font-style: italic;
}

.immersion-experience .exp-legal--line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--terra-light);
    border-radius: 1px;
}

/* Style: Icon (avec icône) */
.immersion-experience .exp-legal--icon {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.immersion-experience .exp-legal__icon {
    flex-shrink: 0;
    color: var(--terra-light);
    margin-top: 2px;
}

.immersion-experience .exp-legal__text {
    flex: 1;
}

/* Mention légale - Variante claire */
.immersion-experience.color-light .exp-legal {
    color: rgba(26, 22, 18, 0.7);
}

.immersion-experience.color-light .exp-legal--box {
    background: rgba(26, 22, 18, 0.03);
    border-color: rgba(26, 22, 18, 0.1);
}

.immersion-experience.color-light .exp-legal--line::before {
    background: var(--terra);
}

.immersion-experience.color-light .exp-legal__icon {
    color: var(--terra);
}

/* Experience Reversed */
.immersion-experience.reversed .exp-image {
    order: 2;
}

.immersion-experience.reversed .exp-content {
    order: 1;
    background: #EDE5D4;
}

/* Ikat separator reversed removed */

.immersion-experience.reversed .exp-eyebrow {
    color: var(--forest);
}

.immersion-experience.reversed .exp-eyebrow::before {
    background: linear-gradient(90deg, var(--forest) 0%, rgba(44,74,53,0.3) 100%);
}

.immersion-experience.reversed .exp-title {
    color: var(--ink);
}

.immersion-experience.reversed .exp-body {
    color: rgba(26,22,18,0.6);
}

.immersion-experience.reversed:hover .exp-body {
    color: rgba(26,22,18,0.75);
}

.immersion-experience.reversed .exp-divider {
    background: linear-gradient(90deg, var(--forest) 0%, rgba(44,74,53,0.2) 100%);
}

/* Programme - Mode clair */
.immersion-experience.reversed .exp-programme {
    background: rgba(44,74,53,0.04);
    border-color: rgba(44,74,53,0.1);
}

.immersion-experience.reversed:hover .exp-programme {
    background: rgba(44,74,53,0.06);
    border-color: rgba(44,74,53,0.15);
}

.immersion-experience.reversed .exp-prog-header::before {
    background: linear-gradient(90deg, var(--forest) 0%, transparent 100%);
}

.immersion-experience.reversed .exp-prog-title {
    color: var(--forest);
}

.immersion-experience.reversed .exp-prog-day {
    color: var(--forest);
    background: rgba(44,74,53,0.1);
}

.immersion-experience.reversed .exp-prog-item {
    border-bottom-color: rgba(44,74,53,0.08);
}

.immersion-experience.reversed .exp-prog-dot {
    background: rgba(44,74,53,0.25);
}

.immersion-experience.reversed:hover .exp-prog-dot {
    background: rgba(44,74,53,0.4);
}

.immersion-experience.reversed .exp-prog-item:hover .exp-prog-dot {
    background: var(--forest);
    transform: scale(1.3);
    box-shadow: none;
}

.immersion-experience.reversed .exp-prog-line {
    background: rgba(44,74,53,0.15);
}

.immersion-experience.reversed .exp-prog-day-title {
    color: var(--ink);
}

.immersion-experience.reversed .exp-prog-text {
    color: rgba(26,22,18,0.55);
}

.immersion-experience.reversed .exp-meta-item {
    border-bottom-color: rgba(44,74,53,0.1);
}

.immersion-experience.reversed .exp-meta-icon {
    background: rgba(44,74,53,0.1);
    color: var(--forest);
}

.immersion-experience.reversed:hover .exp-meta-icon {
    background: rgba(44,74,53,0.15);
}

.immersion-experience.reversed .exp-meta-label {
    color: rgba(44,74,53,0.5);
}

.immersion-experience.reversed .exp-meta-val {
    color: var(--ink);
}

.immersion-experience.reversed .btn-learn {
    color: var(--ink);
    border-color: rgba(44,74,53,0.5);
}

.immersion-experience.reversed .btn-learn::before {
    background: linear-gradient(135deg, var(--forest) 0%, #3D6B4A 100%);
}

.immersion-experience.reversed .btn-learn:hover {
    border-color: var(--forest);
    color: var(--cream);
    box-shadow: 0 8px 24px rgba(44,74,53,0.25);
}

.immersion-experience.reversed .exp-badge {
    transform: rotate(1.5deg);
    left: unset;
    right: 32px;
}

.immersion-experience.reversed .exp-badge-nights {
    color: var(--forest);
}

/* ===== PULL QUOTE ===== */
.immersion-pull-quote {
    padding: 120px 64px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.immersion-pull-quote .pull-quote-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.immersion-pull-quote .pull-quote-inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.immersion-pull-quote .pull-quote-line {
    width: 1px;
    height: 56px;
    background: rgba(242,235,217,0.2);
}

.immersion-pull-quote .pull-quote-text {
    font-family: var(--serif);
    font-size: clamp(22px, 2.8vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.55;
    color: var(--cream);
}

.immersion-pull-quote .pull-quote-author {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--terra-light);
}

/* ===== MANIFESTE SECTION ===== */
.immersion-manifeste {
    background: var(--cream);
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.immersion-manifeste .manifeste-eyebrow {
    font-family: var(--sans);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--terra-light);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.immersion-manifeste .manifeste-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--terra-light);
}

.immersion-manifeste .manifeste-title {
    font-family: var(--display);
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: var(--ink);
    margin-bottom: 36px;
}

.immersion-manifeste .manifeste-title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
    color: rgba(26,22,18,0.6);
}

.immersion-manifeste .manifeste-quote {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(26,22,18,0.64);
    border-left: 2px solid var(--terra-light);
    padding-left: 24px;
    margin: 0;
}

.immersion-manifeste .manifeste-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.immersion-manifeste .manifeste-item {
    display: flex;
    gap: 20px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(26,22,18,0.1);
}

.immersion-manifeste .manifeste-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.immersion-manifeste .manifeste-num {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    color: var(--terra-light);
    line-height: 1;
    min-width: 40px;
    flex-shrink: 0;
}

.immersion-manifeste .manifeste-item-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.immersion-manifeste .manifeste-item-text {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(26,22,18,0.64);
    margin: 0;
}

.immersion-manifeste .manifeste-image {
    margin-top: 32px;
}

.immersion-manifeste .manifeste-image img {
    width: 100%;
    height: auto;
    display: block;
}

.immersion-manifeste .manifeste-icon {
    font-size: 24px;
    color: var(--terra-light);
    min-width: 40px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    /* Hero */
    .immersion-hero {
        min-height: 600px;
    }

    .immersion-hero .hero-content {
        padding: 0 32px 64px;
        max-width: 100%;
    }

    .immersion-hero .hero-title {
        font-size: clamp(32px, 5vw, 52px);
    }

    .immersion-hero .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .immersion-hero .btn-primary,
    .immersion-hero .btn-ghost {
        width: 100%;
        max-width: 280px;
        text-align: center;
        justify-content: center;
    }

    /* Categories */
    .immersion-categories {
        grid-template-columns: 1fr;
        padding: 0 20px 48px;
        gap: 16px;
    }

    .immersion-categories .cat-card {
        height: 420px;
    }

    .immersion-categories .cat-card:hover {
        transform: translateY(-4px);
    }

    .immersion-categories .cat-name {
        font-size: 20px;
    }

    /* Experience */
    .immersion-experience {
        grid-template-columns: 1fr;
        margin: 0 20px 24px;
    }

    .immersion-experience .exp-image {
        min-height: 320px;
    }

    .immersion-experience .exp-content {
        padding: 40px 32px;
    }

    .immersion-experience.reversed .exp-image {
        order: 1;
    }

    .immersion-experience.reversed .exp-content {
        order: 2;
    }

    .immersion-experience .exp-title {
        font-size: clamp(26px, 4vw, 36px);
    }

    .immersion-experience .exp-body {
        max-width: none;
    }

    .immersion-experience .exp-programme {
        padding: 18px 22px;
    }

    .immersion-experience .exp-meta {
        gap: 0;
    }

    .immersion-experience .exp-meta-item {
        padding: 12px 0;
    }

    /* Manifeste */
    .immersion-manifeste {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 64px 24px;
    }

    /* Pull Quote */
    .immersion-pull-quote {
        padding: 80px 32px;
        min-height: 300px;
    }

    .immersion-pull-quote .pull-quote-text {
        font-size: clamp(20px, 4vw, 30px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero */
    .immersion-hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .immersion-hero .hero-content {
        padding: 0 20px 48px;
    }

    .immersion-hero .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
    }

    .immersion-hero .hero-sub {
        font-size: 13px;
        margin-bottom: 28px;
    }

    .immersion-hero .hero-eyebrow {
        font-size: 9px;
        margin-bottom: 16px;
    }

    .immersion-hero .hero-trust {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 32px;
        padding-top: 24px;
    }

    .immersion-hero .hero-trust-item {
        flex: 0 0 calc(50% - 6px);
    }

    .immersion-hero .hero-trust-sep {
        display: none;
    }

    .immersion-hero .hero-scroll,
    .immersion-hero .hero-coords {
        display: none;
    }

    .immersion-hero .btn-primary,
    .immersion-hero .btn-ghost {
        width: 100%;
        max-width: none;
        padding: 16px 24px;
        font-size: 10px;
    }

    /* Intro Strip */
    .immersion-intro-strip {
        padding: 40px 20px;
    }

    .immersion-intro-strip .intro-strip-tag {
        font-size: 14px;
    }

    .immersion-intro-strip .intro-strip-line {
        width: 50px;
        margin: 20px auto;
    }

    .immersion-intro-strip .intro-strip-text {
        font-size: 13px;
        line-height: 1.8;
    }

    /* Citation Block */
    .immersion-citation-block {
        padding: 48px 20px;
    }

    .immersion-citation-block .citation-text {
        font-size: clamp(20px, 5vw, 28px);
    }

    .immersion-citation-block .citation-sub {
        font-size: 13px;
    }

    .immersion-citation-block .citation-meta {
        gap: 12px;
    }

    .immersion-citation-block .citation-line {
        width: 24px;
    }

    /* Categories */
    .immersion-categories {
        padding: 0 16px 32px;
        gap: 12px;
    }

    .immersion-categories .cat-card {
        height: 360px;
        border-radius: 14px;
    }

    .immersion-categories .cat-card:hover {
        transform: translateY(-4px);
    }

    .immersion-categories .cat-top {
        top: 16px;
        left: 16px;
    }

    .immersion-categories .cat-top-tag {
        font-size: 7px;
        padding: 5px 10px;
    }

    .immersion-categories .cat-content {
        padding: 20px 18px 20px;
    }

    .immersion-categories .cat-name {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .immersion-categories .cat-name-sub {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .immersion-categories .cat-divider {
        width: 24px;
        margin-bottom: 10px;
    }

    .immersion-categories .cat-card:hover .cat-divider {
        width: 48px;
    }

    .immersion-categories .cat-desc {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .immersion-categories .cat-tag {
        font-size: 8px;
        padding: 7px 14px;
    }

    .immersion-categories .cat-ghost-num {
        font-size: 70px;
        top: 10px;
        right: 12px;
    }

    /* Experience */
    .immersion-experience {
        margin: 0 16px 16px;
    }

    .immersion-experience .exp-image {
        min-height: 260px;
    }

    .immersion-experience .exp-content {
        padding: 28px 24px;
    }

    .immersion-experience .exp-eyebrow {
        font-size: 8px;
        margin-bottom: 12px;
    }

    .immersion-experience .exp-eyebrow::before {
        width: 20px;
    }

    .immersion-experience .exp-title {
        font-size: clamp(24px, 6vw, 30px);
        margin-bottom: 16px;
    }

    .immersion-experience .exp-divider {
        margin-bottom: 14px;
        width: 32px;
    }

    .immersion-experience .exp-body {
        font-size: 13px;
        margin-bottom: 20px;
        max-width: none;
    }

    .immersion-experience .exp-badge {
        bottom: 16px;
        left: 16px;
        padding: 10px 14px;
        max-width: 130px;
    }

    .immersion-experience .exp-badge-text {
        font-size: 12px;
    }

    .immersion-experience .exp-badge-nights {
        font-size: 7px;
    }

    /* Programme mobile */
    .immersion-experience .exp-programme {
        margin-bottom: 16px;
        padding: 14px 16px;
        border-radius: 8px;
    }

    .immersion-experience .exp-prog-header {
        margin-bottom: 10px;
    }

    .immersion-experience .exp-prog-header::before {
        width: 16px;
    }

    .immersion-experience .exp-prog-title {
        font-size: 9px;
    }

    .immersion-experience .exp-prog-item {
        gap: 12px;
        padding: 8px 0;
    }

    .immersion-experience .exp-prog-marker {
        width: 16px;
    }

    .immersion-experience .exp-prog-dot {
        width: 6px;
        height: 6px;
    }

    .immersion-experience .exp-prog-line {
        min-height: 12px;
    }

    .immersion-experience .exp-prog-day-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 3px;
    }

    .immersion-experience .exp-prog-day {
        font-size: 8px;
        padding: 2px 6px;
    }

    .immersion-experience .exp-prog-day-title {
        font-size: 12px;
    }

    .immersion-experience .exp-prog-text {
        font-size: 11px;
        line-height: 1.55;
        max-width: none;
    }

    /* Meta mobile */
    .immersion-experience .exp-meta {
        margin-bottom: 16px;
    }

    .immersion-experience .exp-meta-item {
        padding: 10px 0;
        gap: 12px;
    }

    .immersion-experience .exp-meta-icon {
        width: 28px;
        height: 28px;
    }

    .immersion-experience .exp-meta-icon svg {
        width: 13px;
        height: 13px;
    }

    .immersion-experience .exp-meta-label {
        font-size: 8px;
    }

    .immersion-experience .exp-meta-val {
        font-size: 12px;
    }

    /* Legal mobile */
    .immersion-experience .exp-legal {
        margin-top: 12px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    /* Button mobile */
    .immersion-experience .btn-learn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 9px;
        border-radius: 20px;
        margin-top: 0;
    }

    /* Pull Quote */
    .immersion-pull-quote {
        padding: 60px 20px;
        min-height: 280px;
    }

    .immersion-pull-quote .pull-quote-inner {
        gap: 20px;
    }

    .immersion-pull-quote .pull-quote-text {
        font-size: clamp(18px, 5vw, 24px);
    }

    .immersion-pull-quote .pull-quote-author {
        font-size: 10px;
    }

    .immersion-pull-quote .pull-quote-line {
        height: 40px;
    }

    /* Manifeste */
    .immersion-manifeste {
        padding: 48px 20px;
        gap: 32px;
    }

    .immersion-manifeste .manifeste-eyebrow {
        font-size: 9px;
    }

    .immersion-manifeste .manifeste-title {
        font-size: clamp(28px, 7vw, 38px);
        margin-bottom: 24px;
    }

    .immersion-manifeste .manifeste-quote {
        font-size: 16px;
        padding-left: 16px;
    }

    .immersion-manifeste .manifeste-item {
        gap: 16px;
        padding-bottom: 24px;
    }

    .immersion-manifeste .manifeste-num {
        font-size: 24px;
        min-width: 32px;
    }

    .immersion-manifeste .manifeste-item-title {
        font-size: 16px;
    }

    .immersion-manifeste .manifeste-item-text {
        font-size: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .immersion-hero .hero-title {
        font-size: 26px;
    }

    .immersion-hero .hero-trust-item {
        flex: 0 0 100%;
    }

    .immersion-categories .cat-card {
        height: 300px;
    }

    .immersion-experience .exp-title {
        font-size: 22px;
    }

    .immersion-manifeste .manifeste-title {
        font-size: 24px;
    }
}

/* ===== SECTION HEADING ===== */
.imm-heading {
    position: relative;
}

/* Alignement auto pour les éléments internes */
.imm-heading[data-align="center"] .imm-heading__eyebrow-wrap,
.imm-heading[data-align="center"] .imm-heading__separator-wrap,
.imm-heading[data-align="center"] .imm-heading__subtitle {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.imm-heading[data-align="right"] .imm-heading__eyebrow-wrap,
.imm-heading[data-align="right"] .imm-heading__separator-wrap {
    justify-content: flex-end;
}

.imm-heading[data-align="right"] .imm-heading__subtitle {
    margin-left: auto;
}

/* ===== EYEBROW / SURTITRE ===== */
.imm-heading__eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.imm-heading__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.imm-heading__eyebrow-line {
    display: block;
    width: 40px;
    height: 1px;
    flex-shrink: 0;
}

.imm-heading__eyebrow-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.imm-heading__eyebrow-number {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.5;
}

/* ===== TITRE ===== */
.imm-heading__title {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: 0.03em;
    margin: 0;
    padding: 0;
}

.imm-heading__title p,
.imm-heading__title div,
.imm-heading__title span:not(.imm-heading__title-word) {
    margin: 0 !important;
    padding: 0 !important;
}

.imm-heading__title em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0;
}

.imm-heading__title br {
    content: '';
    display: block;
}

/* ===== SOUS-TITRE ===== */
.imm-heading__subtitle {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    margin: 24px 0 0 0;
}

/* ===== SÉPARATEURS ===== */
.imm-heading__separator-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.imm-heading__separator {
    height: 1px;
    width: 60px;
}

.imm-heading__separator--gradient {
    height: 1px;
    width: 80px;
}

.imm-heading__separator--wave {
    width: 60px;
    height: 10px;
}

.imm-heading__separator-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

/* ===== STYLE PRESET: ELEGANT (fond sombre) ===== */
.imm-heading--elegant .imm-heading__eyebrow {
    color: var(--terra-light);
}

.imm-heading--elegant .imm-heading__eyebrow-line,
.imm-heading--elegant .imm-heading__eyebrow-dot {
    background: var(--terra-light);
}

.imm-heading--elegant .imm-heading__eyebrow-number {
    color: var(--terra-light);
}

.imm-heading--elegant .imm-heading__title {
    color: var(--cream);
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
}

.imm-heading--elegant .imm-heading__title em {
    color: rgba(242, 235, 217, 0.7);
}

.imm-heading--elegant .imm-heading__subtitle {
    color: rgba(242, 235, 217, 0.65);
}

.imm-heading--elegant .imm-heading__separator,
.imm-heading--elegant .imm-heading__separator-dot {
    background: var(--terra-light);
}

.imm-heading--elegant .imm-heading__separator--wave {
    color: var(--terra-light);
}

/* ===== STYLE PRESET: MINIMAL (fond clair) ===== */
.imm-heading--minimal .imm-heading__eyebrow {
    color: var(--terra);
}

.imm-heading--minimal .imm-heading__eyebrow-line,
.imm-heading--minimal .imm-heading__eyebrow-dot {
    background: var(--terra);
}

.imm-heading--minimal .imm-heading__eyebrow-number {
    color: var(--terra);
}

.imm-heading--minimal .imm-heading__title {
    color: var(--ink);
    font-size: clamp(28px, 4.5vw, 48px);
    line-height: 1.2;
}

.imm-heading--minimal .imm-heading__title em {
    color: var(--ink-soft);
}

.imm-heading--minimal .imm-heading__subtitle {
    color: var(--ink-soft);
}

.imm-heading--minimal .imm-heading__separator,
.imm-heading--minimal .imm-heading__separator-dot {
    background: var(--terra);
}

.imm-heading--minimal .imm-heading__separator--wave {
    color: var(--terra);
}

/* ===== STYLE PRESET: STATEMENT (grand impact) ===== */
.imm-heading--statement .imm-heading__eyebrow {
    color: var(--terra-light);
    font-size: 10px;
}

.imm-heading--statement .imm-heading__eyebrow-line {
    width: 60px;
    background: var(--terra-light);
}

.imm-heading--statement .imm-heading__title {
    color: var(--cream);
    font-size: clamp(42px, 7vw, 90px);
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.imm-heading--statement .imm-heading__title em {
    color: var(--terra-light);
    display: block;
}

.imm-heading--statement .imm-heading__subtitle {
    color: rgba(242, 235, 217, 0.6);
    font-size: 18px;
    max-width: 500px;
}

.imm-heading--statement .imm-heading__separator {
    width: 100px;
    height: 2px;
    background: var(--terra);
}

/* ===== STYLE PRESET: EDITORIAL (magazine) ===== */
.imm-heading--editorial .imm-heading__eyebrow-wrap {
    margin-bottom: 12px;
}

.imm-heading--editorial .imm-heading__eyebrow {
    color: var(--terra);
    font-size: 10px;
    letter-spacing: 0.3em;
}

.imm-heading--editorial .imm-heading__eyebrow-line {
    display: none;
}

.imm-heading--editorial .imm-heading__eyebrow-number {
    font-family: var(--serif);
    font-size: 48px;
    font-style: italic;
    font-weight: 300;
    color: var(--terra);
    opacity: 0.3;
    line-height: 1;
    margin-right: 16px;
}

.imm-heading--editorial .imm-heading__title {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.imm-heading--editorial .imm-heading__title em {
    font-family: var(--serif);
    color: var(--terra);
}

.imm-heading--editorial .imm-heading__subtitle {
    color: var(--ink-soft);
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
}

.imm-heading--editorial .imm-heading__separator {
    background: linear-gradient(90deg, var(--terra), transparent);
}

/* ===== ANIMATIONS ===== */
.imm-heading--animated .imm-heading__eyebrow-wrap,
.imm-heading--animated .imm-heading__title,
.imm-heading--animated .imm-heading__separator-wrap,
.imm-heading--animated .imm-heading__subtitle {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.imm-heading--animated.imm-heading--visible .imm-heading__eyebrow-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.imm-heading--animated.imm-heading--visible .imm-heading__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.imm-heading--animated.imm-heading--visible .imm-heading__separator-wrap {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.imm-heading--animated.imm-heading--visible .imm-heading__subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

/* Ligne qui s'étend */
.imm-heading--animated .imm-heading__eyebrow-line {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease 0.3s;
}

.imm-heading--animated.imm-heading--visible .imm-heading__eyebrow-line {
    transform: scaleX(1);
}

.imm-heading[data-align="right"] .imm-heading__eyebrow-line {
    transform-origin: right;
}

.imm-heading[data-align="center"] .imm-heading__eyebrow-line:first-child {
    transform-origin: right;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .imm-heading__eyebrow {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .imm-heading__eyebrow-line {
        width: 30px;
    }

    .imm-heading__subtitle {
        font-size: 15px;
    }

    .imm-heading--statement .imm-heading__title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .imm-heading--editorial .imm-heading__eyebrow-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .imm-heading__eyebrow-wrap {
        gap: 10px;
        margin-bottom: 14px;
    }

    .imm-heading__eyebrow {
        font-size: 9px;
    }

    .imm-heading__eyebrow-line {
        width: 24px;
    }

    .imm-heading--elegant .imm-heading__title,
    .imm-heading--minimal .imm-heading__title {
        font-size: clamp(26px, 8vw, 36px);
    }

    .imm-heading--statement .imm-heading__title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .imm-heading--editorial .imm-heading__title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .imm-heading__subtitle {
        font-size: 14px;
        margin-top: 18px;
    }

    .imm-heading__separator-wrap {
        margin-top: 20px;
    }
}

/* ===== FIX DÉBORDEMENT TITRE ===== */
.imm-heading {
    width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.imm-heading__title {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.imm-heading__title p,
.imm-heading__title div {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

.imm-heading__subtitle {
    max-width: 100%;
}

/* Fix pour Elementor qui ajoute parfois des styles inline */
.elementor-widget-immersion_section_heading {
    max-width: 100%;
    overflow: hidden;
}

.elementor-widget-immersion_section_heading .elementor-widget-container {
    max-width: 100%;
    overflow: hidden;
}

/* ===== SECTION HEADING - FIX COMPLET ===== */

/* Reset et contraintes de largeur */
.imm-heading,
.imm-heading * {
    box-sizing: border-box;
}

.imm-heading {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.imm-heading__title {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

/* Reset des styles préformatés */
.imm-heading__title,
.imm-heading__title * {
    white-space: normal !important;
    font-family: inherit;
}

/* Forcer les styles sur le titre */
.imm-heading .imm-heading__title {
    margin: 0;
    padding: 0;
}

.imm-heading .imm-heading__title em {
    font-style: italic;
}

/* Fix conteneur Elementor */
.elementor-widget-immersion_section_heading,
.elementor-widget-immersion_section_heading .elementor-widget-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Sous-titre - fix interlignage */
.imm-heading .imm-heading__subtitle {
    display: block;
    width: 100%;
}

/* ============================================
   HEADER NAVIGATION WIDGET
   ============================================ */

/* ===== BASE HEADER ===== */
.imm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 100px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: visible;
}

.imm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 64px;
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== HEADER STYLES ===== */
.imm-header--transparent {
    background: transparent;
}

.imm-header--solid_dark {
    background: var(--ink);
}

.imm-header--solid_light {
    background: var(--cream);
}

.imm-header--has-border {
    border-bottom: 1px solid rgba(242, 235, 217, 0.1);
}

/* ===== LOGO ===== */
.imm-header__logo {
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.imm-header__logo-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.imm-header__logo-img {
    display: block;
    width: auto;
    height: auto;
    max-height: 70px;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-header__logo-img--dark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    max-height: 70px;
}

/* Logo swap on sticky */
.imm-header.is-sticky.imm-header--sticky-light .imm-header__logo-img--default {
    opacity: 0;
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__logo-img--dark {
    opacity: 1;
}

.imm-header__logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.imm-header__logo-text {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.imm-header__logo-tagline {
    font-family: var(--serif);
    font-size: 11px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(242, 235, 217, 0.6);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* ===== NAVIGATION DESKTOP ===== */
.imm-header__nav {
    display: flex;
    align-items: center;
}

.imm-header__nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.imm-header__nav-item {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.imm-header__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(242, 235, 217, 0.85);
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.imm-header__nav-link:hover,
.imm-header__nav-item.current-menu-item > .imm-header__nav-link,
.imm-header__nav-item.current-menu-ancestor > .imm-header__nav-link {
    color: var(--cream);
}

/* Indicateur actif - Underline */
.imm-header--nav-indicator-underline .imm-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terra-light);
    transition: width 0.3s ease;
}

.imm-header--nav-indicator-underline .imm-header__nav-link:hover::after,
.imm-header--nav-indicator-underline .imm-header__nav-item.current-menu-item > .imm-header__nav-link::after {
    width: 100%;
}

/* Indicateur actif - Dot */
.imm-header--nav-indicator-dot .imm-header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--terra-light);
    transition: transform 0.3s ease;
}

.imm-header--nav-indicator-dot .imm-header__nav-link:hover::after,
.imm-header--nav-indicator-dot .imm-header__nav-item.current-menu-item > .imm-header__nav-link::after {
    transform: translateX(-50%) scale(1);
}

/* Indicateur actif - Background */
.imm-header--nav-indicator-background .imm-header__nav-link {
    padding: 8px 14px;
    border-radius: 4px;
}

.imm-header--nav-indicator-background .imm-header__nav-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--terra-light);
    opacity: 0;
    border-radius: 4px;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.imm-header--nav-indicator-background .imm-header__nav-link:hover::after,
.imm-header--nav-indicator-background .imm-header__nav-item.current-menu-item > .imm-header__nav-link::after {
    opacity: 0.15;
}

/* Submenu indicator */
.imm-header__submenu-indicator {
    transition: transform 0.25s ease;
    opacity: 0.6;
}

.imm-header__nav-item.has-submenu:hover > .imm-header__nav-link .imm-header__submenu-indicator {
    transform: rotate(180deg);
}

/* ===== SOUS-MENUS DESKTOP ===== */
.imm-header__submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--ink);
    border: 1px solid rgba(242, 235, 217, 0.1);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    list-style: none;
    margin: 0;
}

.imm-header__nav-item.has-submenu:hover > .imm-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.imm-header__submenu .imm-header__nav-item {
    margin: 0;
    padding: 0;
}

.imm-header__submenu-link {
    display: block;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: rgba(242, 235, 217, 0.75);
    padding: 10px 24px;
    transition: all 0.2s ease;
}

.imm-header__submenu-link:hover {
    color: var(--cream);
    background: rgba(242, 235, 217, 0.05);
    padding-left: 28px;
}

/* Sous-sous-menu (niveau 2+) */
.imm-header__submenu .imm-header__submenu {
    top: 0;
    left: 100%;
    transform: translateX(10px) translateY(0);
}

.imm-header__submenu .imm-header__nav-item.has-submenu:hover > .imm-header__submenu {
    transform: translateX(0) translateY(0);
}

/* ===== ACTIONS (DROITE) ===== */
.imm-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

/* Phone */
.imm-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(242, 235, 217, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

.imm-header__phone:hover {
    color: var(--cream);
}

.imm-header__phone-icon {
    flex-shrink: 0;
}

/* Social */
.imm-header__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.imm-header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(242, 235, 217, 0.6);
    transition: color 0.25s ease, transform 0.25s ease;
}

.imm-header__social-link:hover {
    color: var(--cream);
    transform: translateY(-2px);
}

/* Language */
.imm-header__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.imm-header__lang-link {
    color: rgba(242, 235, 217, 0.5);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.25s ease;
}

.imm-header__lang-link:hover,
.imm-header__lang-link.is-active {
    color: var(--cream);
}

.imm-header__lang-separator {
    color: rgba(242, 235, 217, 0.3);
}

/* CTA Button */
.imm-header__cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    background: transparent;
    padding: 12px 24px;
    border: 1px solid rgba(201, 122, 71, 0.6);
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.imm-header__cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terra) 0%, var(--terra-light) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 28px;
    z-index: -1;
}

.imm-header__cta:hover {
    border-color: var(--terra-light);
    color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 97, 42, 0.25);
}

.imm-header__cta:hover::before {
    opacity: 1;
}

.imm-header__cta-icon {
    font-size: 14px;
}

/* ===== HAMBURGER BUTTON ===== */
.imm-header__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    z-index: 10001;
    color: #F2EBD9;
    min-width: 48px;
    min-height: 48px;
}

.imm-header__hamburger-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: inherit;
    margin-right: 8px;
}

.imm-header__hamburger-icon,
.imm-header__close-icon {
    flex-shrink: 0;
}

.imm-header__hamburger-icon {
    display: block;
}

.imm-header__close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.imm-header__hamburger.is-active .imm-header__hamburger-icon {
    display: none;
}

.imm-header__hamburger.is-active .imm-header__close-icon {
    display: block;
}


/* ===== STICKY HEADER ===== */
.imm-header.is-sticky {
    height: 72px;
}

.imm-header.is-sticky .imm-header__logo-img {
    max-height: 50px;
    max-width: 140px;
}

.imm-header.is-sticky .imm-header__logo-img--dark {
    max-height: 50px;
}

.imm-header.is-sticky .imm-header__logo-text {
    font-size: 18px;
}

/* Sticky Light */
.imm-header.is-sticky.imm-header--sticky-light {
    background: var(--cream);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__nav-link {
    color: var(--ink-soft);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__nav-link:hover,
.imm-header.is-sticky.imm-header--sticky-light .imm-header__nav-item.current-menu-item > .imm-header__nav-link {
    color: var(--ink);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__logo-text {
    color: var(--ink);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__logo-tagline {
    color: var(--ink-soft);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__phone {
    color: var(--ink-soft);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__social-link {
    color: var(--ink-soft);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__lang-link {
    color: var(--ink-soft);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__lang-link.is-active {
    color: var(--ink);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__hamburger {
    color: var(--ink);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__cta {
    border-color: var(--terra);
    color: var(--terra);
}

.imm-header.is-sticky.imm-header--sticky-light .imm-header__cta:hover {
    color: var(--cream);
    border-color: var(--terra);
}

/* Sticky Dark */
.imm-header.is-sticky.imm-header--sticky-dark {
    background: var(--ink);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Sticky Blur (Glassmorphism) */
.imm-header.is-sticky.imm-header--sticky-blur {
    background: rgba(26, 22, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Hide on Scroll */
.imm-header--hide-on-scroll.is-hidden {
    transform: translateY(-100%);
}

/* ===== MOBILE MENU ===== */
.imm-header__mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-header__mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu - Fullscreen */
.imm-header__mobile-menu--fullscreen {
    display: flex;
    flex-direction: column;
}

.imm-header__mobile-menu--fullscreen .imm-header__mobile-menu-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow-y: auto;
}

/* Mobile Menu - Sidebar */
.imm-header__mobile-menu--sidebar {
    left: auto;
    width: 380px;
    max-width: 90vw;
    transform: translateX(100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.imm-header__mobile-menu--sidebar.is-open {
    transform: translateX(0);
}

/* Mobile Menu - Dropdown */
.imm-header__mobile-menu--dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    transform: translateY(-20px);
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.imm-header__mobile-menu--dropdown.is-open {
    transform: translateY(0);
}

/* Mobile Header */
.imm-header__mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(242, 235, 217, 0.1);
    flex-shrink: 0;
}

.imm-header__mobile-logo img {
    height: 40px;
    width: auto;
}

.imm-header__mobile-logo-text {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--cream);
    text-decoration: none;
    text-transform: uppercase;
}


/* Mobile Navigation */
.imm-header__mobile-nav {
    flex: 1;
    padding: 32px 0;
    overflow-y: auto;
}

.imm-header__mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.imm-header__mobile-nav-item {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(242, 235, 217, 0.06);
}

.imm-header__mobile-nav-item:last-child {
    border-bottom: none;
}

.imm-header__mobile-nav-item.has-submenu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.imm-header__mobile-nav-item.has-submenu > .imm-header__mobile-nav-link {
    flex: 1;
}

.imm-header__mobile-nav-link {
    display: block;
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--cream);
    padding: 20px 32px;
    transition: all 0.25s ease;
}

.imm-header__mobile-nav-link:hover {
    color: var(--terra-light);
    padding-left: 40px;
}

.imm-header__mobile-nav-item.current-menu-item > .imm-header__mobile-nav-link {
    color: var(--terra-light);
}

/* Mobile Submenu Toggle */
.imm-header__mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: none;
    border: none;
    border-left: 1px solid rgba(242, 235, 217, 0.06);
    color: rgba(242, 235, 217, 0.5);
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    margin-right: 16px;
}

.imm-header__mobile-submenu-toggle:hover {
    color: var(--cream);
    background: rgba(242, 235, 217, 0.05);
}

.imm-header__mobile-submenu-toggle svg {
    transition: transform 0.3s ease;
}

.imm-header__mobile-submenu-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.imm-header__mobile-submenu {
    display: none;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0 0 16px 0;
    background: rgba(0, 0, 0, 0.2);
}

.imm-header__mobile-submenu.is-open {
    display: block;
}

.imm-header__mobile-submenu .imm-header__mobile-nav-item {
    border-bottom: none;
}

.imm-header__mobile-submenu .imm-header__mobile-nav-link {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.02em;
    padding: 14px 32px 14px 56px;
    color: rgba(242, 235, 217, 0.7);
}

.imm-header__mobile-submenu .imm-header__mobile-nav-link:hover {
    color: var(--cream);
    padding-left: 64px;
}

/* Mobile Footer */
.imm-header__mobile-footer {
    padding: 32px;
    border-top: 1px solid rgba(242, 235, 217, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.imm-header__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--cream);
    background: var(--terra);
    padding: 18px 32px;
    transition: background 0.25s ease;
}

.imm-header__mobile-cta:hover {
    background: var(--terra-light);
}

.imm-header__mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(242, 235, 217, 0.7);
    text-decoration: none;
    transition: color 0.25s ease;
}

.imm-header__mobile-phone:hover {
    color: var(--cream);
}

.imm-header__mobile-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
}

.imm-header__mobile-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(242, 235, 217, 0.5);
    transition: color 0.25s ease, transform 0.25s ease;
}

.imm-header__mobile-social a:hover {
    color: var(--cream);
    transform: scale(1.1);
}

/* ===== BODY LOCK (when mobile menu is open) ===== */
body.imm-mobile-menu-open {
    overflow: hidden;
}

/* ===== HEADER SPACER ===== */
.imm-header-spacer {
    height: 100px;
    transition: height 0.3s ease;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .imm-header__inner {
        padding: 0 32px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .imm-header__logo {
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }

    .imm-header__nav {
        display: none !important;
        position: absolute !important;
        visibility: hidden !important;
    }

    .imm-header__actions {
        flex: 0 0 auto !important;
        margin-left: auto !important;
    }

    .imm-header__phone,
    .imm-header__social,
    .imm-header__lang,
    .imm-header__cta {
        display: none !important;
    }

    .imm-header__hamburger {
        display: flex !important;
    }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .imm-header {
        height: 80px;
        position: absolute !important;
    }

    .imm-header.is-sticky {
        position: absolute !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .imm-header__inner {
        padding: 0 16px;
    }

    .imm-header__logo-img {
        max-height: 55px;
        max-width: 130px;
    }

    .imm-header__logo-text {
        font-size: 18px;
    }

    .imm-header__logo-tagline {
        font-size: 9px;
    }

    .imm-header.is-sticky {
        height: 64px;
    }

    .imm-header.is-sticky .imm-header__logo-img {
        max-height: 42px;
        max-width: 100px;
    }


    .imm-header__mobile-header {
        padding: 20px;
    }

    .imm-header__mobile-nav-link {
        font-size: 24px;
        padding: 16px 20px;
    }

    .imm-header__mobile-nav-link:hover {
        padding-left: 28px;
    }

    .imm-header__mobile-submenu .imm-header__mobile-nav-link {
        font-size: 15px;
        padding: 12px 20px 12px 44px;
    }

    .imm-header__mobile-submenu .imm-header__mobile-nav-link:hover {
        padding-left: 52px;
    }

    .imm-header__mobile-footer {
        padding: 24px 20px;
    }

    .imm-header__mobile-menu--sidebar {
        width: 100%;
        max-width: 100%;
    }

    .imm-header-spacer {
        height: 80px;
    }
}

/* ===== RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .imm-header__logo-img {
        max-width: 100px;
    }

    .imm-header__logo-text {
        font-size: 16px;
    }

    .imm-header__hamburger-label {
        display: none;
    }

    .imm-header__mobile-nav-link {
        font-size: 22px;
        padding: 14px 16px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.imm-header--animated {
    animation: headerSlideDown 0.6s ease forwards;
}

/* Mobile menu item stagger animation */
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item {
    animation: mobileNavItemSlide 0.4s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes mobileNavItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(2) { animation-delay: 0.15s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(3) { animation-delay: 0.2s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(4) { animation-delay: 0.25s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(5) { animation-delay: 0.3s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(6) { animation-delay: 0.35s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(7) { animation-delay: 0.4s; }
.imm-header__mobile-menu.is-open .imm-header__mobile-nav-item:nth-child(8) { animation-delay: 0.45s; }

/* ============================================
   CATEGORY CARDS RECTANGLE
   ============================================ */

.imm-cards-rect {
    display: grid;
    gap: 16px;
}


/* Formats */
.imm-cards-rect.format-21-9 .imm-card-rect { aspect-ratio: 21 / 9; }
.imm-cards-rect.format-16-9 .imm-card-rect { aspect-ratio: 16 / 9; }
.imm-cards-rect.format-4-3 .imm-card-rect { aspect-ratio: 4 / 3; }
.imm-cards-rect.format-3-2 .imm-card-rect { aspect-ratio: 3 / 2; }

/* Carte */
.imm-card-rect {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.imm-card-rect:hover {
    transform: translateY(-5px);
}

/* Image wrapper */
.imm-card-rect__image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Image */
.imm-card-rect__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.imm-card-rect:hover .imm-card-rect__image {
    transform: scale(1.06);
}

/* Overlay */
.imm-card-rect__overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}

/* Overlays par couleur */
.imm-card-rect--dark .imm-card-rect__overlay {
    background: linear-gradient(to top, rgba(26, 22, 18, 0.85) 0%, rgba(26, 22, 18, 0.4) 50%, rgba(26, 22, 18, 0.15) 100%);
}

.imm-card-rect--gold .imm-card-rect__overlay {
    background: linear-gradient(to top, rgba(20, 10, 4, 0.88) 0%, rgba(30, 15, 5, 0.45) 50%, rgba(30, 15, 5, 0.1) 100%);
}

.imm-card-rect--green .imm-card-rect__overlay {
    background: linear-gradient(to top, rgba(8, 16, 8, 0.88) 0%, rgba(15, 30, 10, 0.45) 50%, rgba(15, 30, 10, 0.1) 100%);
}

.imm-card-rect--blue .imm-card-rect__overlay {
    background: linear-gradient(to top, rgba(4, 10, 20, 0.88) 0%, rgba(8, 20, 40, 0.45) 50%, rgba(8, 20, 40, 0.1) 100%);
}

.imm-card-rect--terra .imm-card-rect__overlay {
    background: linear-gradient(to top, rgba(30, 15, 10, 0.88) 0%, rgba(40, 20, 15, 0.45) 50%, rgba(40, 20, 15, 0.1) 100%);
}

/* Contenu */
.imm-card-rect__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    z-index: 2;
    padding: 24px;
}

/* Positions du titre */
.imm-cards-rect.title-top-left .imm-card-rect__content { align-items: flex-start; justify-content: flex-start; }
.imm-cards-rect.title-top-center .imm-card-rect__content { align-items: center; justify-content: flex-start; text-align: center; }
.imm-cards-rect.title-top-right .imm-card-rect__content { align-items: flex-end; justify-content: flex-start; text-align: right; }
.imm-cards-rect.title-center .imm-card-rect__content { align-items: center; justify-content: center; text-align: center; }
.imm-cards-rect.title-bottom-left .imm-card-rect__content { align-items: flex-start; justify-content: flex-end; }
.imm-cards-rect.title-bottom-center .imm-card-rect__content { align-items: center; justify-content: flex-end; text-align: center; }
.imm-cards-rect.title-bottom-right .imm-card-rect__content { align-items: flex-end; justify-content: flex-end; text-align: right; }

/* Titre */
.imm-card-rect__title {
    font-family: var(--display);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--cream);
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.imm-card-rect__title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgba(212,175,55,0.8) 0%, rgba(212,175,55,0.2) 100%);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1px;
}

.imm-cards-rect.title-top-center .imm-card-rect__title::after,
.imm-cards-rect.title-center .imm-card-rect__title::after,
.imm-cards-rect.title-bottom-center .imm-card-rect__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.imm-cards-rect.title-top-right .imm-card-rect__title::after,
.imm-cards-rect.title-bottom-right .imm-card-rect__title::after {
    left: auto;
    right: 0;
}

.imm-card-rect:hover .imm-card-rect__title {
    transform: translateY(-4px);
}

.imm-card-rect:hover .imm-card-rect__title::after {
    width: 50px;
}


/* ===== RESPONSIVE CARDS RECTANGLE ===== */
@media (max-width: 1024px) {
    .imm-card-rect:hover {
        transform: translateY(-4px);
    }

    .imm-card-rect__title {
        font-size: 20px;
    }

    .imm-card-rect__content {
        padding: 20px;
    }

    .imm-card-rect:hover .imm-card-rect__title::after {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .imm-card-rect {
        border-radius: 10px;
    }

    .imm-card-rect:hover {
        transform: translateY(-3px);
    }

    .imm-card-rect__title {
        font-size: 17px;
    }

    .imm-card-rect__title::after {
        bottom: -6px;
        height: 1.5px;
    }

    .imm-card-rect:hover .imm-card-rect__title::after {
        width: 32px;
    }

    .imm-card-rect__content {
        padding: 16px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.imm-footer {
    position: relative;
    background-color: var(--ink);
    color: var(--cream);
    padding: 80px 64px 40px;
}

.imm-footer--has-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--terra), transparent);
}

/* ===== FOOTER MAIN ===== */
.imm-footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(242, 235, 217, 0.1);
}

/* ===== BRAND COLUMN ===== */
.imm-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.imm-footer__logo {
    display: inline-block;
}

.imm-footer__logo img {
    display: block;
    width: 160px;
    height: auto;
}

.imm-footer__description {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(242, 235, 217, 0.6);
    margin: 0;
    max-width: 280px;
}

/* ===== SOCIAL ===== */
.imm-footer__social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.imm-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(242, 235, 217, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
}

.imm-footer__social-link svg {
    width: 24px;
    height: 24px;
}

.imm-footer__social-link:hover {
    color: var(--terra);
    transform: translateY(-2px);
}

/* ===== NAV COLUMNS ===== */
.imm-footer__nav-columns {
    display: grid;
    gap: 40px;
}

.imm-footer__nav-columns--1 {
    grid-template-columns: 1fr;
}

.imm-footer__nav-columns--2 {
    grid-template-columns: repeat(2, 1fr);
}

.imm-footer__nav-columns--3 {
    grid-template-columns: repeat(3, 1fr);
}

.imm-footer__nav-column {
    display: flex;
    flex-direction: column;
}

.imm-footer__nav-title {
    font-family: var(--display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
    margin: 0 0 20px 0;
}

.imm-footer__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.imm-footer__nav-item {
    margin: 0;
}

.imm-footer__nav-link {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: rgba(242, 235, 217, 0.6);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}

.imm-footer__nav-link:hover {
    color: var(--cream);
    padding-left: 4px;
}

/* ===== CONTACT ===== */
.imm-footer__contact {
    display: flex;
    flex-direction: column;
}

.imm-footer__contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.imm-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: var(--sans);
    font-size: 14px;
    color: rgba(242, 235, 217, 0.6);
    line-height: 1.6;
    text-decoration: none;
}

.imm-footer__contact-item--link {
    transition: color 0.25s ease;
}

.imm-footer__contact-item--link:hover {
    color: var(--cream);
}

.imm-footer__contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== NEWSLETTER ===== */
.imm-footer__newsletter {
    display: flex;
    flex-direction: column;
}

.imm-footer__newsletter-text {
    font-family: var(--sans);
    font-size: 14px;
    color: rgba(242, 235, 217, 0.6);
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.imm-footer__newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--sans);
    font-size: 14px;
    background: rgba(242, 235, 217, 0.05);
    border: 1px solid rgba(242, 235, 217, 0.2);
    color: var(--cream);
    border-radius: 4px;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.imm-footer__newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--terra);
    background: rgba(242, 235, 217, 0.08);
}

.imm-footer__newsletter-form input[type="email"]::placeholder {
    color: rgba(242, 235, 217, 0.4);
}

.imm-footer__newsletter-form button,
.imm-footer__newsletter-form input[type="submit"] {
    margin-top: 12px;
    width: 100%;
    padding: 12px 24px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.imm-footer__newsletter-form button:hover,
.imm-footer__newsletter-form input[type="submit"]:hover {
    background: var(--terra-light);
}

/* ===== FOOTER BOTTOM ===== */
.imm-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.imm-footer__copyright {
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(242, 235, 217, 0.4);
    margin: 0;
    display: flex;
    gap: 6px;
}

.imm-footer__credits {
    font-family: var(--sans);
    font-size: 12px;
    color: rgba(242, 235, 217, 0.4);
    margin: 0;
}

.imm-footer__credits a {
    color: rgba(242, 235, 217, 0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.imm-footer__credits a:hover {
    color: var(--cream);
}

/* ===== FOOTER RESPONSIVE - TABLET ===== */
@media (max-width: 1024px) {
    .imm-footer {
        padding: 60px 40px 30px;
    }

    .imm-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .imm-footer__brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }

    .imm-footer__description {
        max-width: 350px;
    }

    .imm-footer__social {
        margin-top: 0;
    }

    .imm-footer__nav-columns {
        grid-column: 1 / -1;
    }

    .imm-footer__contact {
        grid-column: 1 / -1;
    }
}

/* ===== FOOTER RESPONSIVE - MOBILE ===== */
@media (max-width: 768px) {
    .imm-footer {
        padding: 50px 24px 24px;
    }

    .imm-footer__main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }

    .imm-footer__brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .imm-footer__logo img {
        width: 140px;
    }

    .imm-footer__description {
        max-width: 100%;
    }

    .imm-footer__nav-columns--2,
    .imm-footer__nav-columns--3 {
        grid-template-columns: 1fr 1fr;
    }

    .imm-footer__nav-title {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .imm-footer__nav-link {
        font-size: 13px;
    }

    .imm-footer__contact-item {
        font-size: 13px;
    }

    .imm-footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 24px;
    }

    .imm-footer__copyright {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ===== FOOTER RESPONSIVE - SMALL MOBILE ===== */
@media (max-width: 480px) {
    .imm-footer {
        padding: 40px 20px 20px;
    }

    .imm-footer__nav-columns--2,
    .imm-footer__nav-columns--3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .imm-footer__social-link svg {
        width: 22px;
        height: 22px;
    }
}

/* ========================================
   CONTENT SECTION WIDGET
   ======================================== */

.imm-content {
    position: relative;
    padding: 100px 0;
}

.imm-content--contained .imm-content__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.imm-content--full .imm-content__inner {
    padding: 0;
}

/* ===== LAYOUTS ===== */
.imm-content__inner {
    display: grid;
    gap: 80px;
    align-items: center;
}

/* Image Right */
.imm-content--image_right .imm-content__inner {
    grid-template-columns: 1fr 1fr;
}

.imm-content--image_right .imm-content__media {
    order: 2;
}

.imm-content--image_right .imm-content__text {
    order: 1;
}

/* Image Left */
.imm-content--image_left .imm-content__inner {
    grid-template-columns: 1fr 1fr;
}

.imm-content--image_left .imm-content__media {
    order: 1;
}

.imm-content--image_left .imm-content__text {
    order: 2;
}

/* Ratios */
.imm-content--ratio-40_60 .imm-content__inner {
    grid-template-columns: 40% 1fr;
}

.imm-content--ratio-60_40 .imm-content__inner {
    grid-template-columns: 1fr 40%;
}

/* Vertical Align */
.imm-content--valign-top .imm-content__inner {
    align-items: flex-start;
}

.imm-content--valign-bottom .imm-content__inner {
    align-items: flex-end;
}

/* Image Top/Bottom */
.imm-content--image_top .imm-content__inner,
.imm-content--image_bottom .imm-content__inner {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.imm-content--image_bottom .imm-content__media {
    order: 2;
}

/* Image Background */
.imm-content--image_bg {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.imm-content--image_bg .imm-content__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.imm-content--image_bg .imm-content__text {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Text Only */
.imm-content--text_only .imm-content__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== HERO LAYOUT ===== */
.imm-content--hero,
.imm-content--hero_split {
    padding: 0;
}

.imm-content__hero-image {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imm-content__hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.imm-content__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.imm-content__hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.imm-content__hero-content .imm-content__eyebrow {
    color: rgba(242, 235, 217, 0.9);
    margin-bottom: 20px;
}

.imm-content__hero-content .imm-content__separator {
    margin: 0 auto 28px;
    background-color: var(--terra-light);
}

.imm-content__hero-content .imm-content__title {
    color: var(--cream);
    font-size: clamp(32px, 6vw, 56px);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.imm-content__hero-content .imm-content__button {
    margin-top: 20px;
}

/* Hero Text Alignment */
.imm-content--hero-align-left .imm-content__hero-content {
    text-align: left;
    margin-right: auto;
    margin-left: 64px;
}

.imm-content--hero-align-left .imm-content__separator {
    margin-left: 0;
    margin-right: auto;
}

.imm-content--hero-align-right .imm-content__hero-content {
    text-align: right;
    margin-left: auto;
    margin-right: 64px;
}

.imm-content--hero-align-right .imm-content__separator {
    margin-right: 0;
    margin-left: auto;
}

/* Hero Animations */
.imm-content--hero.imm-content--animated .imm-content__hero-image img,
.imm-content--hero_split.imm-content--animated .imm-content__hero-image img {
    transform: scale(1.15);
    transition: transform 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--hero.imm-content--animated .imm-content__hero-content,
.imm-content--hero_split.imm-content--animated .imm-content__hero-content {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease 0.3s, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

/* Hero Visible State */
.imm-content--hero.imm-content--animated.is-visible .imm-content__hero-image img,
.imm-content--hero_split.imm-content--animated.is-visible .imm-content__hero-image img {
    transform: scale(1);
}

.imm-content--hero.imm-content--animated.is-visible .imm-content__hero-content,
.imm-content--hero_split.imm-content--animated.is-visible .imm-content__hero-content {
    opacity: 1;
    transform: translateY(0);
}

/* Elementor Editor - show hero content */
.elementor-editor-active .imm-content--hero .imm-content__hero-image img,
.elementor-editor-active .imm-content--hero_split .imm-content__hero-image img {
    transform: scale(1) !important;
}

.elementor-editor-active .imm-content--hero .imm-content__hero-content,
.elementor-editor-active .imm-content--hero_split .imm-content__hero-content {
    opacity: 1 !important;
    transform: none !important;
}

/* Hero Split - Text Below */
.imm-content__hero-text {
    background-color: var(--cream);
    padding: 80px 64px;
}

.imm-content__hero-text-inner {
    max-width: 800px;
    margin: 0 auto;
}

.imm-content--hero_split .imm-content__description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--ink-soft);
    text-align: center;
}

.imm-content--hero_split .imm-content__button {
    display: flex;
    justify-content: center;
}

/* Hero Responsive */
@media (max-width: 768px) {
    .imm-content__hero-image {
        height: 70vh;
        min-height: 400px;
    }

    .imm-content__hero-content {
        padding: 0 24px;
    }

    .imm-content__hero-content .imm-content__title {
        font-size: 28px;
    }

    .imm-content--hero-align-left .imm-content__hero-content,
    .imm-content--hero-align-right .imm-content__hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .imm-content--hero-align-left .imm-content__separator,
    .imm-content--hero-align-right .imm-content__separator {
        margin: 0 auto 24px;
    }

    .imm-content__hero-text {
        padding: 50px 24px;
    }

    .imm-content--hero_split .imm-content__description {
        font-size: 16px;
    }
}

/* ===== COLOR SCHEMES ===== */
.imm-content--dark_on_light {
    background-color: var(--cream);
}

.imm-content--dark_on_light .imm-content__eyebrow {
    color: var(--terra);
}

.imm-content--dark_on_light .imm-content__title {
    color: var(--ink);
}

.imm-content--dark_on_light .imm-content__description {
    color: var(--ink-soft);
}

.imm-content--light_on_dark {
    background-color: var(--ink);
}

.imm-content--light_on_dark .imm-content__eyebrow {
    color: var(--terra-light);
}

.imm-content--light_on_dark .imm-content__title {
    color: var(--cream);
}

.imm-content--light_on_dark .imm-content__description {
    color: rgba(242, 235, 217, 0.7);
}

/* ===== TEXT STYLES ===== */
.imm-content__text {
    display: flex;
    flex-direction: column;
}

.imm-content__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.imm-content__separator {
    width: 60px;
    height: 2px;
    background-color: var(--terra);
    margin-bottom: 24px;
}

.imm-content--image_top .imm-content__separator,
.imm-content--image_bottom .imm-content__separator,
.imm-content--text_only .imm-content__separator {
    margin-left: auto;
    margin-right: auto;
}

.imm-content__title {
    font-family: var(--display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin: 0 0 32px 0;
}

.imm-content__description {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
}

.imm-content__description p {
    margin: 0 0 1.5em 0;
}

.imm-content__description p:last-child {
    margin-bottom: 0;
}

/* ===== IMAGE STYLES ===== */
.imm-content__media {
    position: relative;
}

.imm-content__image {
    position: relative;
    overflow: hidden;
}

.imm-content__image-wrapper {
    overflow: hidden;
    position: relative;
}

.imm-content__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image Aspect Ratios */
.imm-content__image--ratio-auto .imm-content__image-wrapper {
    aspect-ratio: auto;
}

.imm-content__image--ratio-auto img {
    height: auto;
}

.imm-content__image--ratio-1_1 .imm-content__image-wrapper {
    aspect-ratio: 1 / 1;
}

.imm-content__image--ratio-4_3 .imm-content__image-wrapper {
    aspect-ratio: 4 / 3;
}

.imm-content__image--ratio-3_2 .imm-content__image-wrapper {
    aspect-ratio: 3 / 2;
}

.imm-content__image--ratio-16_9 .imm-content__image-wrapper {
    aspect-ratio: 16 / 9;
}

.imm-content__image--ratio-21_9 .imm-content__image-wrapper {
    aspect-ratio: 21 / 9;
}

.imm-content__image--ratio-3_4 .imm-content__image-wrapper {
    aspect-ratio: 3 / 4;
}

.imm-content__image--ratio-2_3 .imm-content__image-wrapper {
    aspect-ratio: 2 / 3;
}

/* Zoom Effect */
.imm-content__image--zoom:hover img {
    transform: scale(1.08);
}

/* Parallax Effect */
.imm-content__image--parallax img {
    height: 130%;
    object-fit: cover;
    will-change: transform;
}

/* ===== IMAGE REVEAL EFFECT (WAOUH) ===== */
.imm-content__image--reveal,
.imm-content__image--reveal_zoom {
    position: relative;
}

.imm-content__image--reveal .imm-content__image-wrapper,
.imm-content__image--reveal_zoom .imm-content__image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Reveal mask overlay */
.imm-content__image--reveal::before,
.imm-content__image--reveal_zoom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--terra);
    z-index: 2;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1);
}

/* Before animation starts - mask covers image */
.imm-content--animated .imm-content__image--reveal::before,
.imm-content--animated .imm-content__image--reveal_zoom::before {
    transform: scaleX(1);
}

.imm-content--animated .imm-content__image--reveal img,
.imm-content--animated .imm-content__image--reveal_zoom img {
    transform: scale(1.2);
    transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

/* When visible - reveal animation */
.imm-content.is-visible .imm-content__image--reveal::before,
.imm-content.is-visible .imm-content__image--reveal_zoom::before {
    transform: scaleX(0);
}

.imm-content.is-visible .imm-content__image--reveal img,
.imm-content.is-visible .imm-content__image--reveal_zoom img {
    transform: scale(1);
}

/* Elementor Editor - show everything */
.elementor-editor-active .imm-content .imm-content__image--reveal::before,
.elementor-editor-active .imm-content .imm-content__image--reveal_zoom::before {
    transform: scaleX(0) !important;
}

.elementor-editor-active .imm-content .imm-content__image--reveal img,
.elementor-editor-active .imm-content .imm-content__image--reveal_zoom img {
    transform: scale(1) !important;
}

/* Reveal + Zoom hover */
.imm-content__image--reveal_zoom:hover img {
    transform: scale(1.05);
}

/* Left side reveal (for image_left layout) */
.imm-content--image_left .imm-content__image--reveal::before,
.imm-content--image_left .imm-content__image--reveal_zoom::before {
    transform-origin: left;
}

/* Image Overlay */
.imm-content__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.1) 0%, rgba(26, 22, 18, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ===== IMAGE DECORATION (ANIMATED FRAME) ===== */
.imm-content__image-decoration {
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    border: 1px solid var(--terra);
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    transform: translate(20px, 20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}

.imm-content.is-visible .imm-content__image-decoration {
    opacity: 1;
    transform: translate(0, 0);
}

.imm-content--image_left .imm-content__image-decoration {
    left: -30px;
    right: 30px;
    transform: translate(-20px, 20px);
}

.imm-content--image_left.is-visible .imm-content__image-decoration {
    transform: translate(0, 0);
}

/* Corner accents on decoration */
.imm-content__image-decoration::before,
.imm-content__image-decoration::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--terra);
    border-style: solid;
    transition: all 0.5s ease 0.9s;
}

.imm-content__image-decoration::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.imm-content__image-decoration::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

/* ===== BUTTON STYLES ===== */
.imm-content__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 32px;
    transition: all 0.3s ease;
}

.imm-content__button--primary {
    background-color: var(--terra);
    color: var(--cream);
    padding: 16px 32px;
}

.imm-content__button--primary:hover {
    background-color: var(--terra-light);
    transform: translateY(-2px);
}

.imm-content__button--secondary {
    background: transparent;
    border: 1px solid var(--terra);
    color: var(--terra);
    padding: 15px 31px;
}

.imm-content__button--secondary:hover {
    background-color: var(--terra);
    color: var(--cream);
}

.imm-content__button--text {
    color: var(--terra);
    padding: 0;
}

.imm-content__button--text:hover {
    gap: 16px;
}

.imm-content__button--text svg {
    transition: transform 0.3s ease;
}

.imm-content__button--text:hover svg {
    transform: translateX(4px);
}

/* ===== ANIMATIONS ===== */

/* Elementor Editor - always show content */
.elementor-editor-active .imm-content--animated .imm-content__eyebrow,
.elementor-editor-active .imm-content--animated .imm-content__separator,
.elementor-editor-active .imm-content--animated .imm-content__title,
.elementor-editor-active .imm-content--animated .imm-content__description,
.elementor-editor-active .imm-content--animated .imm-content__button {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Base animation states */
.imm-content--animated .imm-content__eyebrow,
.imm-content--animated .imm-content__separator,
.imm-content--animated .imm-content__title,
.imm-content--animated .imm-content__description,
.imm-content--animated .imm-content__button {
    opacity: 0;
}

/* ===== ELEGANT ANIMATION (Recommended) ===== */
.imm-content--anim-elegant .imm-content__eyebrow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-elegant .imm-content__separator {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-elegant .imm-content__title {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-elegant .imm-content__description {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-elegant .imm-content__button {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Elegant - Visible state with stagger */
.imm-content--anim-elegant.is-visible .imm-content__eyebrow {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.imm-content--anim-elegant.is-visible .imm-content__separator {
    opacity: 1;
    transform: scaleX(1);
    transition-delay: 0.2s;
}

.imm-content--anim-elegant.is-visible .imm-content__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.imm-content--anim-elegant.is-visible .imm-content__description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.imm-content--anim-elegant.is-visible .imm-content__button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

/* ===== DRAMATIC ANIMATION ===== */
.imm-content--anim-dramatic .imm-content__eyebrow {
    opacity: 0;
    letter-spacing: 0.5em;
    transition: opacity 0.8s ease, letter-spacing 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-dramatic .imm-content__separator {
    opacity: 0;
    width: 0;
    transition: opacity 0.6s ease, width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-dramatic .imm-content__title {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(10px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1s ease;
}

.imm-content--anim-dramatic .imm-content__description {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.imm-content--anim-dramatic .imm-content__button {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Dramatic - Visible state */
.imm-content--anim-dramatic.is-visible .imm-content__eyebrow {
    opacity: 1;
    letter-spacing: 0.2em;
    transition-delay: 0.2s;
}

.imm-content--anim-dramatic.is-visible .imm-content__separator {
    opacity: 1;
    width: 60px;
    transition-delay: 0.4s;
}

.imm-content--anim-dramatic.is-visible .imm-content__title {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
    transition-delay: 0.3s;
}

.imm-content--anim-dramatic.is-visible .imm-content__description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.imm-content--anim-dramatic.is-visible .imm-content__button {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.9s;
}

/* ===== SIMPLE ANIMATIONS ===== */
.imm-content--anim-fade .imm-content__eyebrow,
.imm-content--anim-fade .imm-content__separator,
.imm-content--anim-fade .imm-content__title,
.imm-content--anim-fade .imm-content__description,
.imm-content--anim-fade .imm-content__button {
    transition: opacity 0.8s ease;
}

.imm-content--anim-fade_up .imm-content__eyebrow,
.imm-content--anim-fade_up .imm-content__separator,
.imm-content--anim-fade_up .imm-content__title,
.imm-content--anim-fade_up .imm-content__description,
.imm-content--anim-fade_up .imm-content__button {
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.imm-content--anim-fade_in.imm-content--image_right .imm-content__text > * {
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.imm-content--anim-fade_in.imm-content--image_left .imm-content__text > * {
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation Active State */
.imm-content--animated.is-visible .imm-content__eyebrow,
.imm-content--animated.is-visible .imm-content__separator,
.imm-content--animated.is-visible .imm-content__title,
.imm-content--animated.is-visible .imm-content__description,
.imm-content--animated.is-visible .imm-content__button,
.imm-content--animated.is-visible .imm-content__image {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Stagger Delays */
.imm-content--stagger.is-visible .imm-content__eyebrow { transition-delay: 0s; }
.imm-content--stagger.is-visible .imm-content__separator { transition-delay: 0.1s; }
.imm-content--stagger.is-visible .imm-content__title { transition-delay: 0.2s; }
.imm-content--stagger.is-visible .imm-content__description { transition-delay: 0.3s; }
.imm-content--stagger.is-visible .imm-content__button { transition-delay: 0.4s; }
.imm-content--stagger.is-visible .imm-content__image { transition-delay: 0.2s; }

/* ===== CONTENT SECTION RESPONSIVE ===== */
@media (max-width: 1024px) {
    .imm-content--contained .imm-content__inner {
        padding: 0 40px;
    }

    .imm-content__inner {
        gap: 50px;
    }

    .imm-content__title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .imm-content {
        padding: 60px 0;
    }

    .imm-content--contained .imm-content__inner {
        padding: 0 24px;
    }

    .imm-content--image_right .imm-content__inner,
    .imm-content--image_left .imm-content__inner,
    .imm-content--ratio-40_60 .imm-content__inner,
    .imm-content--ratio-60_40 .imm-content__inner {
        grid-template-columns: 1fr;
    }

    .imm-content--image_right .imm-content__media,
    .imm-content--image_left .imm-content__media {
        order: 1;
    }

    .imm-content--image_right .imm-content__text,
    .imm-content--image_left .imm-content__text {
        order: 2;
    }

    .imm-content__inner {
        gap: 40px;
    }

    .imm-content__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .imm-content__description {
        font-size: 16px;
    }

    .imm-content__image-decoration {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }

    .imm-content--image_left .imm-content__image-decoration {
        left: -15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .imm-content {
        padding: 50px 0;
    }

    .imm-content--contained .imm-content__inner {
        padding: 0 20px;
    }

    .imm-content__title {
        font-size: 24px;
    }

    .imm-content__button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== ELEMENTOR EDITOR FIXES ===== */
.elementor-editor-active .imm-header {
    position: relative;
}

.elementor-editor-active .imm-header__mobile-menu {
    display: none;
}

/* =============================================
   QUOTE FORM WIDGET
   ============================================= */

.imm-quote {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.imm-quote__header {
    text-align: center;
    margin-bottom: 50px;
}

.imm-quote__eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.imm-quote__separator {
    width: 50px;
    height: 2px;
    margin: 0 auto 24px;
}

.imm-quote__title {
    font-family: var(--serif);
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 400;
    margin: 0 0 16px;
    line-height: 1.2;
}

.imm-quote__subtitle {
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Light Theme */
.imm-quote--light {
    background-color: var(--cream);
}

.imm-quote--light .imm-quote__eyebrow {
    color: var(--terra);
}

.imm-quote--light .imm-quote__separator {
    background-color: var(--terra);
}

.imm-quote--light .imm-quote__title {
    color: var(--ink);
}

.imm-quote--light .imm-quote__subtitle {
    color: var(--ink-soft);
}

.imm-quote--light .imm-quote__label {
    color: var(--ink);
}

.imm-quote--light .imm-quote__input,
.imm-quote--light .imm-quote__select,
.imm-quote--light .imm-quote__textarea {
    background-color: #fff;
    border-color: rgba(26, 22, 18, 0.15);
    color: var(--ink);
}

.imm-quote--light .imm-quote__input:focus,
.imm-quote--light .imm-quote__select:focus,
.imm-quote--light .imm-quote__textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(181, 97, 42, 0.1);
}

.imm-quote--light .imm-quote__input::placeholder,
.imm-quote--light .imm-quote__textarea::placeholder {
    color: rgba(26, 22, 18, 0.4);
}

/* Dark Theme */
.imm-quote--dark {
    background-color: var(--ink);
}

.imm-quote--dark .imm-quote__eyebrow {
    color: var(--terra-light);
}

.imm-quote--dark .imm-quote__separator {
    background-color: var(--terra-light);
}

.imm-quote--dark .imm-quote__title {
    color: var(--cream);
}

.imm-quote--dark .imm-quote__subtitle {
    color: rgba(242, 235, 217, 0.7);
}

.imm-quote--dark .imm-quote__label {
    color: var(--cream);
}

.imm-quote--dark .imm-quote__input,
.imm-quote--dark .imm-quote__select,
.imm-quote--dark .imm-quote__textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 235, 217, 0.2);
    color: var(--cream);
}

.imm-quote--dark .imm-quote__input:focus,
.imm-quote--dark .imm-quote__select:focus,
.imm-quote--dark .imm-quote__textarea:focus {
    border-color: var(--terra-light);
    box-shadow: 0 0 0 3px rgba(201, 122, 71, 0.2);
}

.imm-quote--dark .imm-quote__input::placeholder,
.imm-quote--dark .imm-quote__textarea::placeholder {
    color: rgba(242, 235, 217, 0.4);
}

.imm-quote--dark .imm-quote__select option {
    background-color: var(--ink);
    color: var(--cream);
}

/* Form Fields */
.imm-quote__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.imm-quote__row {
    display: grid;
    gap: 24px;
}

.imm-quote__row--2col {
    grid-template-columns: 1fr 1fr;
}

.imm-quote__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.imm-quote__label {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.imm-quote__label .required {
    color: var(--terra);
}

.imm-quote__input,
.imm-quote__select,
.imm-quote__textarea {
    font-family: var(--sans);
    font-size: 15px;
    padding: 14px 18px;
    border: 1px solid;
    border-radius: 6px;
    transition: all 0.25s ease;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}

.imm-quote__select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233A332B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.imm-quote--dark .imm-quote__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F2EBD9' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.imm-quote__textarea {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot */
.imm-quote__honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Submit Section */
.imm-quote__submit {
    margin-top: 40px;
    text-align: center;
}

.imm-quote__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 48px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--terra);
    color: var(--cream);
    min-width: 280px;
}

.imm-quote__button:hover {
    background-color: var(--terra-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(181, 97, 42, 0.3);
}

.imm-quote__button:active {
    transform: translateY(0);
}

.imm-quote__button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.imm-quote__button-loading {
    display: none;
    align-items: center;
    gap: 10px;
}

.imm-quote__button-loading svg {
    animation: imm-spin 1s linear infinite;
}

@keyframes imm-spin {
    100% { transform: rotate(360deg); }
}

.imm-quote__button.is-loading .imm-quote__button-text,
.imm-quote__button.is-loading .imm-quote__button-icon {
    display: none;
}

.imm-quote__button.is-loading .imm-quote__button-loading {
    display: flex;
}

.imm-quote__button-icon {
    transition: transform 0.3s ease;
}

.imm-quote__button:hover .imm-quote__button-icon {
    transform: translateX(4px);
}

.imm-quote__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--sans);
    font-size: 12px;
    opacity: 0.6;
}

.imm-quote--light .imm-quote__note {
    color: var(--ink-soft);
}

.imm-quote--dark .imm-quote__note {
    color: var(--cream);
}

/* Messages */
.imm-quote__success,
.imm-quote__error {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.imm-quote__success {
    background-color: rgba(34, 139, 34, 0.1);
    border: 1px solid rgba(34, 139, 34, 0.3);
}

.imm-quote__success svg {
    color: #228B22;
    flex-shrink: 0;
    margin-top: 2px;
}

.imm-quote__success p {
    margin: 0;
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: #1a5c1a;
}

.imm-quote--dark .imm-quote__success {
    background-color: rgba(34, 139, 34, 0.15);
}

.imm-quote--dark .imm-quote__success p {
    color: #90EE90;
}

.imm-quote__error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.imm-quote__error svg {
    color: #DC3545;
    flex-shrink: 0;
    margin-top: 2px;
}

.imm-quote__error p {
    margin: 0;
    font-family: var(--sans);
    font-size: 15px;
    line-height: 1.6;
    color: #a71d2a;
}

.imm-quote--dark .imm-quote__error {
    background-color: rgba(220, 53, 69, 0.15);
}

.imm-quote--dark .imm-quote__error p {
    color: #f8a5ad;
}

/* ===== QUOTE FORM RESPONSIVE ===== */

@media (max-width: 768px) {
    .imm-quote {
        padding: 60px 24px;
    }

    .imm-quote__header {
        margin-bottom: 40px;
    }

    .imm-quote__row--2col {
        grid-template-columns: 1fr;
    }

    .imm-quote__input,
    .imm-quote__select,
    .imm-quote__textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 16px;
    }

    .imm-quote__button {
        width: 100%;
        padding: 18px 32px;
        min-width: unset;
    }

    .imm-quote__fields {
        gap: 20px;
    }

    .imm-quote__row {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .imm-quote {
        padding: 50px 20px;
    }

    .imm-quote__title {
        font-size: 26px;
    }

    .imm-quote__subtitle {
        font-size: 15px;
    }

    .imm-quote__label {
        font-size: 12px;
    }

    .imm-quote__submit {
        margin-top: 32px;
    }
}

/* ===== QUOTE FORM HERO MODE ===== */

.imm-quote--hero-layout {
    padding: 0;
}

.imm-quote__hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Full width breakout */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.imm-quote__hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.imm-quote__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.imm-quote__hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 40px;
}

.imm-quote__hero-content .imm-quote__eyebrow {
    color: rgba(242, 235, 217, 0.9);
    margin-bottom: 16px;
}

.imm-quote__hero-content .imm-quote__separator {
    background-color: var(--terra-light);
    margin: 0 auto 24px;
}

.imm-quote__hero-content .imm-quote__title {
    color: var(--cream);
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.imm-quote__hero-content .imm-quote__subtitle {
    color: rgba(242, 235, 217, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Text Alignment */
.imm-quote--hero-align-left .imm-quote__hero-content {
    text-align: left;
    margin-right: auto;
    margin-left: 64px;
}

.imm-quote--hero-align-left .imm-quote__separator {
    margin-left: 0;
    margin-right: auto;
}

.imm-quote--hero-align-right .imm-quote__hero-content {
    text-align: right;
    margin-left: auto;
    margin-right: 64px;
}

.imm-quote--hero-align-right .imm-quote__separator {
    margin-right: 0;
    margin-left: auto;
}

/* Form Section below Hero */
.imm-quote__form-section {
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.imm-quote--hero-layout.imm-quote--light .imm-quote__form-section {
    background-color: var(--cream);
}

.imm-quote--hero-layout.imm-quote--dark .imm-quote__form-section {
    background-color: var(--ink);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .imm-quote__hero {
        height: 50vh;
        min-height: 350px;
    }

    .imm-quote__hero-content {
        padding: 0 24px;
    }

    .imm-quote__hero-content .imm-quote__title {
        font-size: 28px;
    }

    .imm-quote--hero-align-left .imm-quote__hero-content,
    .imm-quote--hero-align-right .imm-quote__hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .imm-quote--hero-align-left .imm-quote__separator,
    .imm-quote--hero-align-right .imm-quote__separator {
        margin: 0 auto 20px;
    }

    .imm-quote__form-section {
        padding: 50px 24px;
    }
}

@media (max-width: 480px) {
    .imm-quote__hero {
        height: 45vh;
        min-height: 300px;
    }

    .imm-quote__hero-content .imm-quote__title {
        font-size: 24px;
    }

    .imm-quote__hero-content .imm-quote__subtitle {
        font-size: 14px;
    }

    .imm-quote__form-section {
        padding: 40px 20px;
    }
}

/* =============================================
   SEPARATOR WIDGET - Thème Voyage Indonésie
   ============================================= */

.imm-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.imm-sep__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.imm-sep__icon {
    width: 80px;
    height: 80px;
}

.imm-sep__pattern {
    width: 160px;
    height: auto;
}

.imm-sep__icon svg,
.imm-sep__pattern svg {
    width: 100%;
    height: 100%;
}

/* ===== FRANGIPANI (Fleur de Bali) ===== */
.imm-sep__frangipani .imm-sep__petal {
    opacity: 0.85;
}

.imm-sep__frangipani .imm-sep__flower-center {
    opacity: 0.6;
}

.imm-sep--anim-subtle .imm-sep__frangipani,
.imm-sep--anim-smooth .imm-sep__frangipani {
    animation: imm-flower-bloom 4s ease-in-out infinite;
}

@keyframes imm-flower-bloom {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.08) rotate(15deg); }
}

/* ===== OCEAN WAVES ===== */
.imm-sep__waves svg {
    height: 40px;
}

.imm-sep--anim-subtle .imm-sep__wave1,
.imm-sep--anim-smooth .imm-sep__wave1 {
    animation: imm-wave-move 3s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__wave2,
.imm-sep--anim-smooth .imm-sep__wave2 {
    animation: imm-wave-move 3s ease-in-out infinite 0.3s;
}

.imm-sep--anim-subtle .imm-sep__wave3,
.imm-sep--anim-smooth .imm-sep__wave3 {
    animation: imm-wave-move 3s ease-in-out infinite 0.6s;
}

@keyframes imm-wave-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* ===== BATIK ===== */
.imm-sep__batik svg {
    height: 30px;
}

.imm-sep--anim-subtle .imm-sep__batik svg circle,
.imm-sep--anim-smooth .imm-sep__batik svg circle {
    animation: imm-batik-pulse 2s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__batik svg circle:nth-child(2n),
.imm-sep--anim-smooth .imm-sep__batik svg circle:nth-child(2n) {
    animation-delay: 0.5s;
}

@keyframes imm-batik-pulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* ===== PALM LEAVES ===== */
.imm-sep__palm svg {
    height: 50px;
}

.imm-sep--anim-subtle .imm-sep__leaf,
.imm-sep--anim-smooth .imm-sep__leaf {
    transform-origin: 40px 25px;
    animation: imm-palm-sway 3s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__leaf:nth-child(2n),
.imm-sep--anim-smooth .imm-sep__leaf:nth-child(2n) {
    animation-delay: 0.2s;
    animation-direction: reverse;
}

@keyframes imm-palm-sway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

/* ===== RICE TERRACE ===== */
.imm-sep__rice svg {
    height: 35px;
}

.imm-sep--anim-subtle .imm-sep__rice path,
.imm-sep--anim-smooth .imm-sep__rice path {
    animation: imm-rice-flow 3s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__rice path:nth-child(2),
.imm-sep--anim-smooth .imm-sep__rice path:nth-child(2) {
    animation-delay: 0.3s;
}

.imm-sep--anim-subtle .imm-sep__rice path:nth-child(3),
.imm-sep--anim-smooth .imm-sep__rice path:nth-child(3) {
    animation-delay: 0.6s;
}

.imm-sep--anim-subtle .imm-sep__rice path:nth-child(4),
.imm-sep--anim-smooth .imm-sep__rice path:nth-child(4) {
    animation-delay: 0.9s;
}

@keyframes imm-rice-flow {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

/* ===== TEMPLE ===== */
.imm-sep__temple svg {
    height: 50px;
}

.imm-sep--anim-subtle .imm-sep__temple,
.imm-sep--anim-smooth .imm-sep__temple {
    animation: imm-temple-glow 3s ease-in-out infinite;
}

@keyframes imm-temple-glow {
    0%, 100% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 8px currentColor); }
}

/* ===== COMPASS ===== */
.imm-sep__compass svg {
    width: 60px;
    height: 60px;
}

.imm-sep--anim-subtle .imm-sep__compass svg,
.imm-sep--anim-smooth .imm-sep__compass svg {
    animation: imm-compass-spin 20s linear infinite;
}

@keyframes imm-compass-spin {
    100% { transform: rotate(360deg); }
}

/* ===== PLANE PATH ===== */
.imm-sep__plane svg {
    height: 40px;
}

.imm-sep--anim-subtle .imm-sep__airplane,
.imm-sep--anim-smooth .imm-sep__airplane {
    animation: imm-plane-fly 4s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__path,
.imm-sep--anim-smooth .imm-sep__path {
    stroke-dasharray: 8 4;
    animation: imm-path-dash 1s linear infinite;
}

@keyframes imm-plane-fly {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(5px) translateY(-3px); }
    75% { transform: translateX(-5px) translateY(3px); }
}

@keyframes imm-path-dash {
    to { stroke-dashoffset: -12; }
}

/* ===== IKAT ===== */
.imm-sep__ikat svg {
    height: 20px;
}

.imm-sep--anim-subtle .imm-sep__ikat svg > *,
.imm-sep--anim-smooth .imm-sep__ikat svg > * {
    animation: imm-ikat-weave 2s ease-in-out infinite;
}

.imm-sep--anim-subtle .imm-sep__ikat svg > *:nth-child(2n),
.imm-sep--anim-smooth .imm-sep__ikat svg > *:nth-child(2n) {
    animation-delay: 0.3s;
}

@keyframes imm-ikat-weave {
    0%, 100% { opacity: 0.85; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== COLOR SCHEMES ===== */

.imm-sep--terra { color: var(--terra); }
.imm-sep--gold { color: #D4AF37; }
.imm-sep--ink { color: var(--ink); }
.imm-sep--cream { color: var(--cream); }
.imm-sep--forest { color: #2C4A35; }
.imm-sep--ocean { color: #2E86AB; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .imm-sep {
        padding: 40px 0;
    }

    .imm-sep__icon {
        width: 60px;
        height: 60px;
    }

    .imm-sep__pattern {
        width: 120px;
    }
}
