:root {
    /* Colors - Enforced Dark Mode */
    --bg-primary: #080809;
    --bg-secondary: #101012;
    --bg-tertiary: #1f1f23;
    --bg-elevated: #16161a;
    --text-primary: #faf7f2;
    --text-secondary: #b8b0a8;
    --text-muted: #7e7771;
    --text-accent: #b31217;
    --text-accent-strong: #e04444;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(255, 255, 255, 0.18);
    --card-bg: rgba(22, 22, 26, 0.92);
    --card-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    --nav-bg: rgba(8, 8, 9, 0.88);

    /* Dimensions */
    --nav-height: 80px;
    --container-width: 1200px;
    --radius: 8px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 18px);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    transition: background-color var(--transition-medium), color var(--transition-medium);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: rgba(179, 18, 23, 0.45);
    color: var(--text-primary);
}

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

.gallery-item picture,
.book-promo-img-wrapper picture,
.about-visual picture,
.scroller__inner picture,
.partners-logos picture {
    display: block;
}

.book-promo-img-wrapper picture,
.about-visual picture {
    width: 100%;
    max-width: 450px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

button,
input,
textarea {
    font: inherit;
}

.visually-hidden-field {
    display: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--text-accent-strong);
    outline-offset: 3px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    line-height: 1.1;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 0;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: 1px solid transparent;
    min-height: 46px;
}

.btn-primary {
    background-color: var(--text-accent);
    color: white;
    box-shadow: 0 12px 28px rgba(179, 18, 23, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #cf1d23;
    box-shadow: 0 16px 32px rgba(179, 18, 23, 0.36);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-primary);
    margin-left: 1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
    border-color: var(--text-accent);
    color: var(--text-primary);
    background: rgba(179, 18, 23, 0.12);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 200px;
    height: 200px;
    background: url('../../loader_site_web.webp') no-repeat center center;
    background-size: contain;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: linear-gradient(180deg, rgba(8, 8, 9, 0.96), var(--nav-bg));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
    transition: height 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    max-height: 100%;
    flex: 0 0 auto;
}

.logo img {
    max-height: 46px;
    /* Ensure logo image never exceeds navbar height minus padding */
    width: auto;
    object-fit: contain;
}

/* Logo - Dark Mode Only */
.logo-img-dark {
    display: block;
}

.logo-img-light {
    display: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0;
    color: var(--text-primary);
}

.logo-text strong {
    color: var(--text-accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0;
    padding: 0.5rem 0;
}

.nav-item:hover,
.nav-item.active {
    color: var(--text-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-accent);
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.highlight {
    color: var(--text-primary);
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(179, 18, 23, 0.42);
    border-radius: var(--radius);
    background: rgba(179, 18, 23, 0.12);
}

.nav-item-email {
    font-size: clamp(0.78rem, 1.4vw, 0.95rem);
    white-space: nowrap;
}

.nav-item.highlight:hover {
    border-color: rgba(224, 68, 68, 0.7);
    background: rgba(179, 18, 23, 0.2);
}

.nav-item.highlight::after {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    padding-right: 1.5rem;
    border-right: 1px solid var(--border-color);
}

.social-icons a {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons a:hover {
    color: var(--text-accent);
    transform: scale(1.1);
}

/* Theme Toggle Removed */
.icon-btn#theme-toggle {
    display: none;
}

/* Lang Switch */
.lang-switch {
    display: flex;
    gap: 0;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    padding: 4px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

/* Book Promo */
.book-promo {
    margin-top: 4rem;
    background: linear-gradient(145deg, rgba(22, 22, 26, 0.96) 0%, rgba(12, 12, 14, 0.96) 100%);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    text-align: left;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.book-promo-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.book-promo-img {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.book-promo-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.book-promo-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.book-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 0;
    background: linear-gradient(90deg, #FFFFFF, #A1A1AA);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.book-desc {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight-desc {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.2rem;
    border-left: 4px solid var(--text-accent);
    padding-left: 1.5rem;
}

.standard-desc {
    color: var(--text-secondary);
}

/* Premium Buy Button */
.btn-book-new {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--text-accent) 0%, #600000 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(179, 18, 23, 0.32);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-book-new::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

.btn-book-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(179, 18, 23, 0.42);
    color: #fff;
}

.btn-book-new:hover::after {
    left: 150%;
}

.lang-switch a {
    color: var(--text-secondary);
    opacity: 1;
    min-width: 34px;
    padding: 0.35rem 0.55rem;
    border-radius: 6px;
    text-align: center;
    transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.lang-switch a:hover,
.lang-switch a.active {
    color: var(--text-primary);
    background: rgba(179, 18, 23, 0.22);
}

.lang-switch a.active {
    background: var(--text-accent);
}

.mobile-menu-btn {
    display: none;
    /* See media queries */
}

/* Hero Section */
.hero {
    margin-top: var(--nav-height);
    min-height: min(820px, calc(100vh - var(--nav-height)));
    width: 100%;
    position: relative;
    display: flex;
    /* keep flex for centering content */
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 8vh 0;

    /* Background Image */
    background-image: url('../../images/book.jpg');
    background-image: image-set(
        url('../../images/book.webp') type('image/webp'),
        url('../../images/book.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* Overlay for readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(6, 6, 8, 0.10) 0%,
        rgba(6, 6, 8, 0.24) 58%,
        rgba(6, 6, 8, 0.38) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Improve contrast */
    max-width: 920px;
}

/* Remove gradient text for better readability on image */
.text-accent {
    color: var(--text-accent);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--text-primary);
    /* Make brighter for bg image */
    margin-bottom: 2.5rem;
    max-width: 740px;
    margin-left: 0;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Partners Scroll */
.partners-scroll {
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-scroll::before,
.partners-scroll::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-scroll::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.partners-scroll::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.scroller__inner {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.scroller__inner img {
    height: 40px;
    width: auto;
    /* logos en couleurs sur le fond sombre */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.scroller__inner img:hover {
    opacity: 1;
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Works Section */
.works-section {
    padding: 8rem 20px;
}

.section {
    padding: 6rem 0;
}

.text-center {
    text-align: center;
}

.page-header {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 2.5rem;
    background:
        linear-gradient(180deg, rgba(16, 16, 18, 0.98) 0%, rgba(8, 8, 9, 0.98) 100%),
        linear-gradient(90deg, rgba(179, 18, 23, 0.14), transparent);
    border-bottom: 1px solid var(--border-color);
}

.center-text {
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 720px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    letter-spacing: 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 1.6rem;
    margin-bottom: 4rem;
}

.reportages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    direction: rtl;
}

.reportages-grid .work-card {
    direction: ltr;
}

.work-card {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
        var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.work-card:hover {
    transform: translateY(-5px);
    border-color: rgba(224, 68, 68, 0.42);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48);
}

.card-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: var(--bg-tertiary);
}

.card-image picture,
.article-hero picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.35rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
}

.card-content h3,
.card-content h2 {
    margin: 0;
}

.card-content p {
    color: var(--text-secondary);
    margin: 0;
}

.work-info {
    padding: 1.5rem;
}

.work-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.work-subtitle {
    color: var(--text-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: auto;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.sitemap-group h2 {
    color: var(--text-accent);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.sitemap-list {
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.sitemap-list a {
    color: var(--text-secondary);
    display: inline-flex;
    padding: 0.15rem 0;
}

.sitemap-list a:hover {
    color: var(--text-primary);
}

.read-more {
    color: var(--text-accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    gap: 0.8rem;
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background:
        linear-gradient(180deg, var(--bg-secondary) 0%, #0b0b0d 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.role-subtitle {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--text-accent);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--text-primary);
}

.about-mini-title {
    margin-top: 1.75rem;
    margin-bottom: 0.85rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.award-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.award-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
}

.award-list li::before {
    content: '';
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--text-accent);
    border-radius: 50%;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0.35rem;
}

.about-visual picture {
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #111;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.46);
}

.about-img_float {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    filter: saturate(0.95) contrast(1.04);
    mix-blend-mode: normal;
}

@keyframes float {
    0% {
        transform: translateY(-14px);
    }

    50% {
        transform: translateY(-28px);
    }

    100% {
        transform: translateY(-14px);
    }
}

/* Photos Section */
.photos-section {
    padding: 8rem 20px;
}

.photo-preview-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

.gallery-grid {
    columns: 4 250px;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-elevated);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 11, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10000;
    line-height: 1;
    width: 46px;
    height: 46px;
}

.lightbox-close:hover {
    color: var(--text-accent);
}

/* Lightbox Navigation */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 1.5rem 1rem;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10000;
    transition: background-color 0.3s, color 0.3s;
    border-radius: var(--radius);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--text-accent);
}

/* Contact Section */
.contact-section {
    padding: 8rem 20px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #18181c 100%);
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.contact-direct-card {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(224, 68, 68, 0.15), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        var(--card-bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.contact-direct-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--text-accent-strong), var(--text-accent));
}

.contact-kicker {
    display: block;
    margin-bottom: 1rem;
    color: var(--text-accent-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0.85rem 1.15rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 3vw, 2.05rem);
    font-weight: 800;
    line-height: 1.1;
    overflow-wrap: anywhere;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
}

.contact-email-link:hover {
    color: #fff;
    background: rgba(179, 18, 23, 0.24);
    border-color: rgba(224, 68, 68, 0.5);
}

.contact-direct-card p {
    max-width: 520px;
    margin: 1.25rem auto 0;
    color: var(--text-secondary);
}

.modern-form {
    max-width: 600px;
    margin: 0 auto;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
        var(--card-bg);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-accent-strong);
    background: #0d0d0f;
    box-shadow: 0 0 0 4px rgba(179, 18, 23, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
}

.submit-btn:disabled {
    cursor: progress;
    opacity: 0.7;
    transform: none;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Outfit';
    letter-spacing: 0;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--text-accent);
    text-underline-offset: 4px;
}

/* -------------------------------------------------------------------------- */
/*                              YOUTUBE VIGNETTE                              */
/* -------------------------------------------------------------------------- */
.youtube-vignette {
    position: fixed;
    right: clamp(1rem, 2.4vw, 2rem);
    bottom: 7rem;
    width: min(310px, calc(100vw - 2rem));
    z-index: 9990;
}

.youtube-vignette[hidden] {
    display: none !important;
}

.youtube-vignette-link {
    display: block;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(24, 24, 28, 0.96), rgba(10, 10, 12, 0.96));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: 0 22px 52px rgba(0, 0, 0, 0.46);
}

.youtube-vignette-link:hover {
    border-color: rgba(224, 68, 68, 0.45);
    transform: translateY(-2px);
}

.youtube-vignette-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #050505;
}

.youtube-vignette-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-vignette-play {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    color: #fff;
    background: rgba(179, 18, 23, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.38);
}

.youtube-vignette-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem;
}

.youtube-vignette-kicker {
    color: var(--text-accent-strong);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.youtube-vignette-title {
    display: -webkit-box;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.youtube-vignette-cta {
    color: var(--text-secondary);
    font-size: 0.82rem;
}

.youtube-vignette-close {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    z-index: 2;
    transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.youtube-vignette-close:hover {
    background: rgba(179, 18, 23, 0.92);
    border-color: rgba(255, 255, 255, 0.55);
}

/* -------------------------------------------------------------------------- */
/*                                COOKIE BANNER                               */
/* -------------------------------------------------------------------------- */
.cookie-banner {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    width: min(1120px, calc(100% - 2rem));
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, rgba(18, 18, 20, 0.96), rgba(10, 10, 12, 0.96));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-strong);
    border-left: 3px solid var(--text-accent);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex;
    /* overridden by JS to flex when shown */
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.5);
    z-index: 10000;
}

.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    max-width: 800px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* -------------------------------------------------------------------------- */
/*                                ARTICLES (REPORTAGES)                       */
/* -------------------------------------------------------------------------- */
.article-hero {
    margin-top: var(--nav-height);
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-color: var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

.article-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    filter: blur(26px);
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
}

.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 8, 0.08) 0%, rgba(6, 6, 8, 0.22) 100%);
    pointer-events: none;
    z-index: 2;
}

.article-hero picture {
    z-index: 1;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(var(--cover-zoom, 1));
    transform-origin: center;
}

.article-hero img.article-cover-fit-contain {
    object-fit: contain;
    transform: none;
}

.article-hero-fit-contain .article-hero-bg {
    opacity: 0.42;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 20px;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.article-meta {
    color: var(--text-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 800;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.partners-logos img {
    height: 50px;
    width: auto;
    opacity: 0.9;
    border-radius: 4px;
}

.partners-text {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-inline-cover {
    width: min(100vw - 32px, 960px);
    margin: 0 50% 3.25rem;
    padding: 4px;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
    transform: translateX(-50%);
}

.article-inline-cover picture,
.article-inline-cover img {
    display: block;
    width: 100%;
}

.article-inline-cover img {
    height: auto;
    border-radius: 0;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content strong {
    color: var(--text-primary);
}

.article-content blockquote {
    margin: 2.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--text-accent);
    background: var(--card-bg);
    color: var(--text-primary);
    border-radius: var(--radius);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.article-cta {
    text-align: center;
    margin-top: 3rem;
}

.read-also {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
    border-top: 1px solid var(--border-color);
}

.read-also-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.related-grid {
    margin-bottom: 3rem;
}

.legal-content {
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.legal-content h2 {
    color: var(--text-primary);
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    font-size: 1.35rem;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--text-accent);
    text-underline-offset: 4px;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 0.9rem;
    }

    .social-icons {
        display: none;
    }
}

/* Mobile */
@media (max-width: 900px) {
    :root {
        --nav-height: 70px;
    }

    .container {
        width: 94%;
        padding: 0 12px;
    }

    .nav-links,
    .nav-actions .social-icons,
    .nav-actions .lang-switch {
        display: none;
    }

    .navbar.mobile-open {
        height: auto;
        min-height: var(--nav-height);
        max-height: 100vh;
        overflow-y: auto;
        background: rgba(8, 8, 9, 0.98);
    }

    .navbar.mobile-open .container {
        align-items: flex-start;
        padding-top: 1rem;
        padding-bottom: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .navbar.mobile-open .nav-links {
        order: 3;
        position: static;
        transform: none;
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 0.25rem;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
    }

    .navbar.mobile-open .nav-item {
        display: flex;
        width: 100%;
        padding: 0.85rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar.mobile-open .nav-item.highlight {
        justify-content: center;
        margin-top: 0.5rem;
        border-bottom: 1px solid rgba(179, 18, 23, 0.42);
    }

    .navbar.mobile-open .nav-actions {
        order: 4;
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding-bottom: 0.75rem;
    }

    .navbar.mobile-open .nav-actions .social-icons,
    .navbar.mobile-open .nav-actions .lang-switch {
        display: flex;
    }

    .navbar.mobile-open .mobile-menu-btn span:first-child {
        top: 9px;
        transform: rotate(45deg);
    }

    .navbar.mobile-open .mobile-menu-btn span:last-child {
        bottom: 9px;
        transform: rotate(-45deg);
    }

    .mobile-menu-btn {
        display: block;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        width: 42px;
        height: 38px;
        position: relative;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 18px;
        height: 2px;
        background-color: var(--text-primary);
        position: absolute;
        left: 11px;
        transition: 0.3s;
    }

    .mobile-menu-btn span:first-child {
        top: 12px;
    }

    .mobile-menu-btn span:last-child {
        bottom: 12px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-visual {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-text .section-title {
        text-align: left;
    }

    /* Hero Mobile Updates */
    .hero {
        margin-top: var(--nav-height);
        min-height: calc(100svh - var(--nav-height));
        padding: 4rem 0;
        background-position: center top;
    }

    .hero-content {
        text-align: left;
        width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        align-items: stretch;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .works-grid {
        gap: 1.5rem;
    }

    .reportages-grid {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .gallery-grid {
        columns: 2 150px;
    }

    .section,
    .works-section,
    .about-section,
    .photos-section,
    .contact-section,
    .read-also {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .modern-form {
        padding: 1.5rem;
    }

    .contact-direct-card {
        padding: 2rem 1.25rem;
    }

    .youtube-vignette {
        right: 0.75rem;
        bottom: 5.75rem;
        width: min(280px, calc(100vw - 1.5rem));
    }

    body.cookie-consent-visible .youtube-vignette {
        display: none;
    }

    .youtube-vignette-media {
        aspect-ratio: 16 / 10;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 1rem 0.75rem;
        font-size: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .book-promo {
        flex-direction: column;
        padding: 3rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .book-promo-content {
        align-items: center;
    }

    .highlight-desc {
        text-align: left;
    }

    /* Cookie Banner Mobile */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
        bottom: 0.75rem;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    /* Article Mobile */
    .article-hero {
        height: 40vh;
        min-height: 250px;
    }

    .article-title {
        font-size: 2rem;
    }

    .partners-logos {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .hero-title {
        font-size: 2.55rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .gallery-grid {
        columns: 1 100%;
    }

    .contact-email-link {
        font-size: 1.05rem;
        padding: 0.75rem 0.8rem;
    }

    .youtube-vignette {
        width: min(250px, calc(100vw - 1rem));
        right: 0.5rem;
        bottom: 5.25rem;
    }

    .youtube-vignette-body {
        padding: 0.8rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
}
