/* ========================================
   CSS VARIABLES — BRAND BIBLE
   ======================================== */
:root {
    --blue: #1C3E5C;
    --blue-light: #2A5580;
    --blue-dark: #122B40;
    --gold: #C4A469;
    --gold-light: #D4BC8E;
    --gold-dark: #A8884D;
    --sand: #E0DDD6;
    --sand-light: #EBE9E4;
    --cream: #F5F3EE;
    --white: #FAFAF8;
    --gray: #DCDCDC;
    --gray-dark: #8A8A8A;
    --text: #2C2C2C;
    --text-light: #5A5A5A;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;

    --nav-height: 72px;
    --section-padding: clamp(4rem, 8vw, 7rem);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.container--narrow {
    max-width: 900px;
}

section {
    padding: var(--section-padding) 0;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(28, 62, 92, 0.06);
    transition: box-shadow 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 2px 40px rgba(28, 62, 92, 0.08);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.5px;
}

.nav__logo-text em {
    font-style: normal;
    color: var(--gold);
}

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav__links a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav__links a:hover {
    color: var(--blue);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
}

.nav__mobile-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--blue);
    transition: all 0.3s ease;
}

.nav__mobile-toggle span:nth-child(1) { top: 0; }
.nav__mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__mobile-toggle span:nth-child(3) { bottom: 0; }

.nav__mobile-toggle.active span:nth-child(1) {
    top: 50%; transform: translateY(-50%) rotate(45deg);
}
.nav__mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav__mobile-toggle.active span:nth-child(3) {
    bottom: 50%; transform: translateY(50%) rotate(-45deg);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--nav-height);
    background: #1a1a1a;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 25, 45, 0.85) 0%, rgba(10, 25, 45, 0.55) 40%, rgba(10, 25, 45, 0.2) 75%, rgba(0, 0, 0, 0.15) 100%),
        url('photo-cassis-port.jpg') center/cover no-repeat;
}

.hero__pattern {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 3rem);
    width: 100%;
}

.hero__logo-wrapper {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 1s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(196, 164, 105, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    opacity: 0;
    animation: fadeUp 1s 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    max-width: 480px;
    line-height: 1.9;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 1s 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__scroll {
    opacity: 0;
    animation: fadeUp 1s 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero__scroll a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.hero__scroll a:hover {
    color: var(--gold-light);
}

.hero__scroll svg {
    animation: bounce 2s infinite;
}

/* Gold decorative line on right */
.hero__deco {
    position: absolute;
    right: clamp(3rem, 8vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.hero__deco::before,
.hero__deco::after {
    content: '';
    position: absolute;
    left: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}

.hero__deco::before { top: 0; }
.hero__deco::after { bottom: 0; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

/* ========================================
   INTRO / CARTE SECTION
   ======================================== */
.carte-section {
    background: var(--white);
}

.carte__map-placeholder {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    background: var(--sand-light);
    border: 1px solid var(--gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    position: relative;
    overflow: hidden;
}

.carte__map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(28, 62, 92, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(196, 164, 105, 0.05) 0%, transparent 50%);
}

.carte__map-placeholder svg {
    color: var(--blue);
    opacity: 0.3;
}

.carte__map-placeholder p {
    font-size: 13px;
    color: var(--gray-dark);
    text-align: center;
    max-width: 400px;
}

.carte__map-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

/* ========================================
   PARKING SECTION
   ======================================== */
.parking-section {
    background: var(--cream);
    position: relative;
}

.parking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.parking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.parking-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(28, 62, 92, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.parking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(28, 62, 92, 0.08);
}

.parking-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.parking-card__icon--free {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
}

.parking-card__icon--paid {
    background: linear-gradient(135deg, var(--sand), var(--sand-light));
    color: var(--gold-dark);
}

.parking-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.parking-card__badge--free {
    background: #E8F5E9;
    color: #2E7D32;
}

.parking-card__badge--paid {
    background: var(--sand);
    color: var(--gold-dark);
}

.parking-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.parking-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.tarif-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 1.25rem 0;
}

.tarif-item {
    background: var(--cream);
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tarif-item__duration {
    font-size: 13px;
    color: var(--text-light);
}

.tarif-item__price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue);
}

.parking-card__note {
    font-size: 12px;
    color: var(--gray-dark);
    font-style: italic;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray);
}

/* ========================================
   TRANSPORT SECTION
   ======================================== */
.transport-section {
    background: var(--white);
}

.transport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.transport-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(28, 62, 92, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.transport-card:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.transport-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.transport-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.transport-card p {
    font-size: 13px;
    color: var(--text-light);
}

.transport-card .period {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 0.75rem;
    padding: 4px 12px;
    background: var(--sand-light);
    border-radius: 20px;
}

/* ========================================
   PARTNERS / BOOKING SECTION
   ======================================== */
.partners-section {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    display: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: var(--white);
    border: 1px solid rgba(28, 62, 92, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(28, 62, 92, 0.04);
}

.partner-card:hover {
    border-color: rgba(196, 164, 105, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(28, 62, 92, 0.08);
}

.partner-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.partner-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 164, 105, 0.15);
    color: var(--gold-dark);
}

.partner-card__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 4px;
}

.partner-card__type {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.partner-card__desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.partner-card__highlight {
    background: rgba(196, 164, 105, 0.1);
    border: 1px solid rgba(196, 164, 105, 0.2);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-card__highlight svg {
    color: var(--gold);
    min-width: 18px;
}

.partner-card__highlight span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gold-dark);
}

.partner-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-dark);
    padding: 10px 20px;
    border: 1px solid rgba(196, 164, 105, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--white);
}

.partner-card__cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ========================================
   CALANQUES SECTION
   ======================================== */
.calanques-section {
    background: var(--cream);
    position: relative;
}

.calanques__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.calanques__text p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.calanques__warning {
    background: rgba(196, 164, 105, 0.1);
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.calanques__warning p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 0;
}

.calanques__app {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(28, 62, 92, 0.06);
    box-shadow: 0 20px 60px rgba(28, 62, 92, 0.06);
}

.calanques__app-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(28, 62, 92, 0.15);
}

.calanques__app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.calanques__app h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.calanques__app p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.calanques__app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.calanques__app-features span {
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--cream);
    color: var(--text-light);
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.app-btn:hover {
    background: var(--blue-dark);
    color: #fff;
}

/* ========================================
   VISITER SECTION
   ======================================== */
.visiter-section {
    background: var(--white);
}

.visiter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.visiter-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: transform 0.4s ease;
    cursor: default;
}

.visiter-card:hover {
    transform: translateY(-4px);
}

.visiter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Background photos are set inline on each card */

.visiter-card--large {
    grid-column: span 2;
}

.visiter-card > * {
    position: relative;
    z-index: 1;
}

.visiter-card__distance {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.visiter-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.75rem;
}

.visiter-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Subtle pattern overlay on visit cards */
.visiter-card::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255,255,255,0.5) 20px, rgba(255,255,255,0.5) 21px);
}

/* ========================================
   INSTAGRAM SECTION
   ======================================== */
.instagram-section {
    background: var(--cream);
    text-align: center;
}

.instagram-section .section-label {
    justify-content: center;
}

.instagram-section .section-label::before {
    display: none;
}

.instagram__handle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--blue);
    margin-bottom: 2.5rem;
}

.instagram__handle a {
    color: var(--gold);
    border-bottom: 1px solid rgba(196, 164, 105, 0.3);
    padding-bottom: 2px;
}

.instagram__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    max-width: 900px;
    margin: 0 auto;
}

.instagram__item {
    aspect-ratio: 1;
    border-radius: 8px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram__item:hover {
    transform: scale(1.03);
}

.instagram__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(28, 62, 92, 0.08),
        rgba(196, 164, 105, 0.08));
}

.instagram__item svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gray-dark);
    opacity: 0.3;
}

.instagram__follow {
    margin-top: 2.5rem;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: var(--blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(28, 62, 92, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--blue-dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.75rem;
}

.footer__brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 320px;
}

.footer__socials {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: rgba(196, 164, 105, 0.2);
    color: var(--gold-light);
}

.footer__col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 0.6rem;
}

.footer__col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__col a:hover {
    color: var(--gold-light);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer__legal {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

/* ========================================
   SUB-PAGE: HERO (smaller)
   ======================================== */
.hero--sub {
    min-height: 45vh;
}

.hero--sub .hero__title {
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero--sub .hero__subtitle {
    max-width: 560px;
}

/* ========================================
   SUB-PAGE: BACK LINK
   ======================================== */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 1s 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold-light);
}

/* ========================================
   SUB-PAGE: ACTIVITY CARDS
   ======================================== */
.activities-section {
    background: var(--white);
    position: relative;
}

.activities-section--alt {
    background: var(--cream);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(28, 62, 92, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.activities-section--alt .activity-card {
    box-shadow: 0 4px 20px rgba(28, 62, 92, 0.04);
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(28, 62, 92, 0.08);
}

.activity-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(28, 62, 92, 0.06), rgba(28, 62, 92, 0.02));
    color: var(--blue);
}

.activity-card__icon--gold {
    background: linear-gradient(135deg, rgba(196, 164, 105, 0.15), rgba(196, 164, 105, 0.05));
    color: var(--gold-dark);
}

.activity-card__icon--green {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    color: #2E7D32;
}

.activity-card__icon--purple {
    background: linear-gradient(135deg, #EDE7F6, #D1C4E9);
    color: #5E35B1;
}

.activity-card__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    background: var(--sand);
    color: var(--text-light);
}

.activity-card__badge--highlight {
    background: rgba(196, 164, 105, 0.15);
    color: var(--gold-dark);
}

.activity-card__badge--distance {
    background: rgba(28, 62, 92, 0.08);
    color: var(--blue);
}

.activity-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.activity-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.activity-card__info {
    background: var(--cream);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-card__info svg {
    color: var(--gold-dark);
    min-width: 18px;
}

.activity-card__info span {
    font-size: 13px;
    color: var(--text-light);
}

.activity-card__info--price {
    background: rgba(196, 164, 105, 0.08);
    border: 1px solid rgba(196, 164, 105, 0.15);
}

.activity-card__info--price span {
    font-weight: 500;
    color: var(--text);
}

.activity-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    padding: 10px 20px;
    border: 1px solid rgba(28, 62, 92, 0.15);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.activity-card__cta:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

/* ========================================
   SUB-PAGE: CTA SECTION (Retour au guide)
   ======================================== */
.cta-section {
    background: var(--cream);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section .section-label {
    justify-content: center;
}

.cta-section .section-label::before {
    display: none;
}

.cta-section .section-subtitle {
    margin: 0 auto 2.5rem;
    max-width: 480px;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    background: var(--gold);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back:hover {
    background: var(--gold-light);
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 164, 105, 0.3);
}

/* ========================================
   SUB-PAGE: DISTANCE BANNER
   ======================================== */
.distance-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(196, 164, 105, 0.15);
    border: 1px solid rgba(196, 164, 105, 0.2);
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 1s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* ========================================
   SUB-PAGE: INTRO PARAGRAPH
   ======================================== */
.intro-section {
    background: var(--cream);
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.intro-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 700px;
}

.intro-text strong {
    color: var(--text);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .nav__links {
        display: none;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav__links.open {
        display: flex;
    }

    .nav__links li {
        border-bottom: 1px solid var(--gray);
    }

    .nav__links a {
        display: block;
        padding: 1rem 0;
        font-size: 14px;
    }

    .nav__mobile-toggle {
        display: block;
    }

    .hero__deco {
        display: none;
    }

    .calanques__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .visiter-grid {
        grid-template-columns: 1fr;
    }

    .visiter-card--large {
        grid-column: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

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

    .activities-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .parking-grid {
        grid-template-columns: 1fr;
    }

    .tarif-grid {
        grid-template-columns: 1fr;
    }

    .transport-cards {
        grid-template-columns: 1fr;
    }

    .app-buttons {
        flex-direction: column;
    }

    .hero {
        min-height: 70vh;
    }

    .hero--sub {
        min-height: 50vh;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
