:root {
    --white: #FFFFFF;
    --off: #F9F9F9;
    --black: #070707;
    --orange: #d0611c;
    --terracotta: #be775d;
    --grey: #F5F5F5;
    --line: rgba(18, 18, 18, 0.1);
    --line-light: rgba(255, 255, 255, 0.116);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--grey);
    color: var(--black);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap {
    margin: 0 auto;
    padding: 0 40px;
}

/* ---------- Boutons type Moderno ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    cursor: pointer;
}

.btn:hover {
    background: var(--orange);
    color: var(--white);
     border: 1px solid var(--orange);
}

.btn-dark {
    border-color: var(--black);
    color: var(--black);
}

.btn-dark:hover {
    background: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
}

/* ---------- Marquee ticker ---------- */
.ticker {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
}

.ticker.dark {
    background: var(--white);
    color: var(--black);
    border-bottom: none;
    border-top: 1px solid var(--line);
    padding: 20px 0;
}

.ticker-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 48px;
}

.ticker.dark .ticker-track {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: marquee 30s linear infinite;
}

.ticker.dark .ticker-track span {
    font-size: 15px;
    line-height: "normal";
    text-transform: uppercase;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
}

.ticker.dark .ticker-track span::after {
    content: "•";
    color: var(--black);
    margin-left: 48px;
}

.ticker-track span {
    font-size: 12px;
    font-weight: 600;
    line-height: "normal";
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}

.ticker-track span::after {
    content: "•";
    color: var(--orange);
    margin-left: 48px;
}

.ticker:not(.dark) .ticker-track span:last-child::after {
    display: none;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ---------- Hero Section ---------- */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-top: 240px;
}

/* Header Overlay */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    color: var(--black);
}

.header-inner {
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--black);
    background: var(--white);
}

.h-left,
.h-right {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
}

.h-right {
    text-align: right;
}

.h-left a:hover,
.h-right a:hover {
    color: var(--orange);
}

.wordmark {
    display: flex;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
}

.wordmark img {
    width: 100px;
    height: auto;
}
/* ---------- Sections Editoriales (Moderno) ---------- */
.block-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin: 0 0 16px;
}

.giant {
    font-weight: 300;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 1;
    margin: 0 0 60px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.giant .accent,
.opening-dots .accent {
    color: var(--orange);
    font-weight: 400;
}

.opening-dots .accent {
    display: inline-block;
    opacity: 0.2;
    animation: dot-loading 1.2s ease-in-out infinite;
}

.opening-dots .accent:nth-of-type(1) {
    animation-delay: 0s;
}

.opening-dots .accent:nth-of-type(2) {
    animation-delay: 0.2s;
}

.opening-dots .accent:nth-of-type(3) {
    animation-delay: 0.4s;
}

@keyframes dot-loading {
    0%,
    80%,
    100% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }
}

.intro-block {
    max-width: 1040px;
    padding-top: 20px;
    padding-bottom: 120px;
}

.intro-head {
    text-align: center;
    margin: 0 auto 40px;
}

.opening-dots {
    display: inline-flex;
    font-size: clamp(3rem, 8vw, 6.5rem);
    line-height: 0.7;
}

.intro-panel {
    display: flex;
    justify-content: center;
    gap: 0;
}

.intro-panel .caption-box {
    align-items: center;
    text-align: center;
    max-width: 760px;
}

.intro-panel .caption-box p {
    max-width: 680px;
}

.caption-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.caption-box h3 {
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin: 0 0 24px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.caption-box p {
    font-size: 1rem;
    color: #454545;
    line-height: 1.8;
    margin: 0 0 40px;
    max-width: 440px;
    font-weight: 400;
}

/* ---------- Fusion Visit & Footer ---------- */
.visit-footer {
    background: var(--black);
    color: var(--white);
    padding: 120px 0 0 0;
}

.visit-footer .block-label {
    color: rgba(255, 255, 255, 0.5);
}

.visit-footer .giant {
    margin-bottom: 40px;
    color: var(--white);
}

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 80px;
}

.visit-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-info ul {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-info ul li {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 16px;
}

.visit-info ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.visit-image {
    height: 500px;
    background: #222;
    overflow: hidden;
}

/* Informations Footer fusionnées */
.footer-meta {
    border-top: 1px solid var(--line-light);
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.f-col h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 24px;
}

.f-col a,
.f-col p {
    display: block;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.8;
    margin: 0 0 8px;
}

.f-col a:hover {
    color: var(--orange);
}

.socials {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.socials a:hover {
    border-color: var(--orange);
    background: var(--orange);
    color: var(--white);
}

.socials svg {
    width: 16px;
    height: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--line-light);
    padding: 24px 0;
    text-align: center;
}

.copy {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none !important;
    }

    .opening-dots .accent {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1024px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .visit-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-block {
        max-width: 100%;
    }

    .visit-image {
        height: 400px;
    }

    .footer-meta {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 170px;
    }

    .header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 16px 20px;
    }

    .h-left,
    .h-right {
        text-align: center;
    }

    .ticker {
        display: none;
    }

    .intro-block {
        padding-top: 84px;
        padding-bottom: 84px;
    }

    .intro-head {
        margin-bottom: 22px;
    }

    .intro-panel .caption-box {
        max-width: 100%;
        padding: 0;
    }

    .intro-panel .caption-box h3 {
        font-size: 1.4rem;
    }

    .intro-panel .caption-box p {
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .wrap {
        padding: 60px 20px;
        padding-top: 60px;
    }

    .visit-footer {
        padding: 64px 0 0 0;
    }

    .giant {
        margin-bottom: 30px;
    }

    .footer-meta {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 380px) {
    .giant,
    .opening-dots {
        font-size: 2.35rem;
    }
}
