/* Styles spécifiques — Page Contact */

/* ============================================
           PAPATANGO — CONTACT
           Hero → Booking → Map → Infos → Footer
           ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --black: #0a0a0a;
            --white: #f5f2ed;
            --yellow: #ffff00;
            --grey-blue: #ccd9db;
            --grey-dark: #1a1a1a;
            --grey-mid: #2a2a2a;
            --grey-light: #e8e4de;
            --font-display: 'DM Serif Display', Georgia, serif;
            --font-body: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
            --font-accent: 'Syne', sans-serif;
            --pad: clamp(24px, 6vw, 80px);
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --diag: 52px;
        }

        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            font-size: clamp(16px, 1.1vw, 18px);
            line-height: 1.7;
            color: var(--black);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        ::selection { background: var(--yellow); color: var(--black); }
        a { color: inherit; text-decoration: none; }
        ul { list-style: none; }
        img { display: block; max-width: 100%; }

/* ==============================================
           1. HERO — titre + sous-titre, grille asymétrique
           ============================================== */
        .hero {
            background: var(--black);
            color: var(--white);
            padding: clamp(80px, 10vw, 120px) var(--pad) clamp(40px, 4.5vw, 60px);
            position: relative;
            overflow: hidden;
        }
        .hero__ghost {
            position: absolute;
            right: clamp(-40px, -3vw, -20px);
            bottom: clamp(-10px, -1vw, 0px);
            font-family: var(--font-display);
            font-size: clamp(8rem, 18vw, 18rem);
            font-style: italic;
            line-height: 0.8;
            color: rgba(255,255,255,0.025);
            pointer-events: none; user-select: none;
        }
        .hero__grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: clamp(40px, 6vw, 80px);
            max-width: 1100px;
            margin: 0 auto;
            align-items: end;
        }
        .hero__tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            color: var(--yellow);
            display: inline-flex; align-items: center; gap: 10px;
            margin-bottom: clamp(20px, 2.5vw, 32px);
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease) 0.2s forwards;
        }
        .hero__tag::before {
            content: ''; width: 32px; height: 1.5px; background: var(--yellow);
        }
        .hero__title {
            font-family: var(--font-display);
            font-size: clamp(2.8rem, 5.5vw, 4.6rem);
            line-height: 1.06;
            opacity: 0; transform: translateY(30px);
            animation: fadeUp 1s var(--ease) 0.4s forwards;
        }
        .hero__title em { font-style: italic; }
        .hero__right {
            opacity: 0; transform: translateY(20px);
            animation: fadeUp 0.8s var(--ease) 0.6s forwards;
        }
        .hero__subtitle {
            font-size: clamp(0.95rem, 1.1vw, 1.05rem);
            line-height: 1.8;
            opacity: 0.5;
        }

/* ==============================================
           2. BOOKING — Calendly centré
           ============================================== */
        .booking {
            background: var(--white);
            padding: clamp(48px, 5vw, 64px) var(--pad) clamp(40px, 4vw, 56px);
            padding-top: calc(clamp(48px, 5vw, 64px) + var(--diag));
            position: relative;
            clip-path: polygon(0 var(--diag), 100% 0, 100% 100%, 0 100%);
            margin-top: calc(-1 * var(--diag));
            z-index: 1;
        }
        .booking__header {
            max-width: 600px;
            margin: 0 auto clamp(16px, 2vw, 24px);
            text-align: center;
        }
        .booking__tag {
            font-family: var(--font-accent);
            font-size: 0.68rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            opacity: 0.3;
            margin-bottom: 8px;
        }
        .booking__title {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 2.2vw, 2rem);
            font-style: italic;
            line-height: 1.12;
        }
        .booking__sub {
            font-size: clamp(0.82rem, 0.9vw, 0.9rem);
            opacity: 0.45;
            margin-top: 8px;
        }
        .booking__embed {
            max-width: 880px;
            margin: 0 auto;
            background: var(--grey-light);
            min-height: 580px;
        }
        .booking__embed iframe {
            width: 100%; height: 580px; border: none;
        }

/* ==============================================
           3. MAP — pleine largeur avec diagonale
           ============================================== */
        .map {
            position: relative;
            height: clamp(280px, 35vw, 420px);
            overflow: hidden;
            z-index: 2;
        }
        .map iframe {
            width: 100%; height: 100%; border: none;
            filter: grayscale(1) contrast(1.08) brightness(0.95);
            transition: filter 0.8s var(--ease);
        }
        .map:hover iframe {
            filter: grayscale(0.2) contrast(1) brightness(1);
        }
        .map__badge {
            position: absolute;
            bottom: 24px;
            right: var(--pad);
            z-index: 2;
            background: var(--black);
            color: var(--white);
            padding: 12px 24px;
            font-family: var(--font-accent);
            font-size: 0.64rem; font-weight: 700;
            letter-spacing: 0.18em; text-transform: uppercase;
            display: inline-flex; align-items: center; gap: 10px;
        }
        .map__badge::before {
            content: '';
            width: 7px; height: 7px;
            background: var(--yellow);
            border-radius: 50%;
            animation: blink 2s ease-in-out infinite;
        }

/* ==============================================
           4. INFOS — 4 colonnes, fond noir, diagonale haut
           ============================================== */
        .infos {
            background: var(--grey-light);
            color: var(--black);
            padding: clamp(52px, 6vw, 72px) var(--pad);
            position: relative;
            z-index: 3;
        }
        .infos__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: clamp(24px, 3vw, 48px);
            max-width: 1100px;
            margin: 0 auto;
        }
        .infos__item {
            opacity: 0; transform: translateY(30px);
            transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
        }
        .infos__item:nth-child(1) { transition-delay: 0s; }
        .infos__item:nth-child(2) { transition-delay: 0.1s; }
        .infos__item:nth-child(3) { transition-delay: 0.2s; }
        .infos__item:nth-child(4) { transition-delay: 0.3s; }
        .infos__item.visible { opacity: 1; transform: translateY(0); }
        .infos__label {
            font-family: var(--font-accent);
            font-size: 0.62rem; font-weight: 700;
            letter-spacing: 0.22em; text-transform: uppercase;
            opacity: 0.3;
            margin-bottom: 10px;
        }
        .infos__value {
            font-size: clamp(0.9rem, 1vw, 1rem);
            line-height: 1.7;
        }
        .infos__value a {
            text-decoration: underline;
            text-underline-offset: 5px;
            text-decoration-thickness: 1px;
            text-decoration-color: rgba(10,10,10,0.15);
            transition: all 0.3s var(--ease);
        }
        .infos__value a:hover {
            text-decoration-color: var(--black);
        }
        .infos__value--email {
            font-family: var(--font-display);
            font-size: clamp(1.15rem, 1.5vw, 1.4rem);
            font-style: italic;
        }
        .infos__social {
            display: flex; gap: 12px; margin-top: 6px;
        }
        .infos__social a {
            font-family: var(--font-accent);
            font-size: 0.66rem; font-weight: 700;
            letter-spacing: 0.1em; text-transform: uppercase;
            padding: 8px 18px;
            border: 1px solid rgba(10,10,10,0.1);
            text-decoration: none;
            transition: all 0.4s var(--ease);
        }
        .infos__social a:hover {
            background: var(--black);
            color: var(--white);
            border-color: var(--black);
        }

/* ========== RESPONSIVE ========== */
        @media (max-width: 900px) {
            .infos__grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            :root { --diag: 32px; }
            .hero__grid { grid-template-columns: 1fr; }
            .hero__ghost { display: none; }
            .booking__embed iframe { height: 620px; }
            .infos__grid { grid-template-columns: 1fr; gap: 28px; }
            .footer__body { grid-template-columns: 1fr; gap: 32px; }
            .footer__tagline { max-width: 100%; }
            .footer__bar { flex-direction: column; gap: 12px; text-align: center; }
            .footer__bar-links { flex-wrap: wrap; justify-content: center; }
        }
        @media (max-width: 500px) {
            :root { --diag: 0px; }
            .booking { clip-path: none; margin-top: 0; padding-top: clamp(40px, 6vw, 60px); }
        }

/* ===== Hero animation fallback — force visibility ===== */
@keyframes heroReveal {
  to { opacity: 1; transform: none; }
}
.hero__tag {
  animation: heroReveal 0.7s ease 0.5s forwards;
}
.hero__title {
  animation: heroReveal 0.8s ease 0.7s forwards;
}
.hero__right {
  animation: heroReveal 0.8s ease 0.9s forwards;
}
.hero__tag.visible,
.hero__title.visible,
.hero__right.visible {
  animation: none;
  opacity: 1;
  transform: none;
}
