/* =============================================
   KCC — Athletic Coastal
   Palette: deep navy + electric cyan + coral accent
   Type: Space Grotesk (display) / Inter (body)
   ============================================= */

:root {
    /* Palette */
    --ink: #061229;
    --ink-soft: #0e1f3a;
    --navy: #0a3a5e;
    --navy-deep: #042038;
    --cyan: #00b4d8;
    --cyan-bright: #15c7e8;
    --cyan-soft: rgba(0, 180, 216, 0.12);
    --coral: #ff5e3a;
    --coral-bright: #ff7a5c;
    --paper: #fafaf7;
    --paper-cool: #f3f6fa;
    --white: #ffffff;
    --text: #1a2432;
    --text-muted: #5d6878;
    --line: rgba(10, 30, 60, 0.08);
    --line-strong: rgba(10, 30, 60, 0.16);
    --signal-warn: #d04a3a;
    --signal-warn-bg: rgba(208, 74, 58, 0.08);
    --signal-good: #2ec4b6;
    --signal-good-bg: rgba(46, 196, 182, 0.10);

    /* Legacy aliases (keep JS working) */
    --color-primary: var(--navy);
    --color-primary-dark: var(--ink);
    --color-primary-light: var(--cyan);
    --color-accent: var(--coral);
    --color-accent-light: var(--coral-bright);
    --color-dark: var(--ink);
    --color-dark-soft: var(--ink-soft);
    --color-text: var(--text);
    --color-text-light: var(--text-muted);
    --color-bg: var(--paper);
    --color-bg-alt: var(--paper-cool);
    --color-bg-dark: var(--ink);
    --color-success: var(--signal-good);
    --color-danger: var(--signal-warn);

    /* Type */
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: var(--font-display);

    /* Geometry */
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-pill: 999px;

    /* Effects */
    --shadow: 0 2px 6px rgba(6, 18, 41, 0.06), 0 12px 32px rgba(6, 18, 41, 0.07);
    --shadow-lg: 0 4px 12px rgba(6, 18, 41, 0.10), 0 24px 56px rgba(6, 18, 41, 0.12);
    --shadow-cyan: 0 8px 24px rgba(0, 180, 216, 0.28);
    --shadow-coral: 0 8px 24px rgba(255, 94, 58, 0.28);
    --transition: 0.28s cubic-bezier(0.2, 0, 0, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11", "tnum";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--cyan);
    color: var(--ink);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(6, 18, 41, 0.88);
    backdrop-filter: saturate(160%) blur(18px);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0, 0, 0, 0.28);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.nav-logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.navbar.scrolled .nav-logo-img {
    height: 36px;
    padding: 3px 6px;
}

.logo-kite {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 9px 14px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
    background: var(--cyan) !important;
    color: var(--ink) !important;
    font-weight: 600 !important;
    padding: 9px 20px !important;
    margin-left: 10px;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.32);
}

.nav-cta:hover {
    background: var(--cyan-bright) !important;
    color: var(--ink) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 180, 216, 0.42);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-overlay {
    position: absolute;
    inset: -5%;
    background: url('images/backgroung.jpg') center center / cover no-repeat;
    z-index: 0;
    will-change: transform;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 18, 41, 0.55) 0%, rgba(6, 18, 41, 0.35) 35%, rgba(6, 18, 41, 0.85) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 65%, rgba(0, 180, 216, 0.2) 0%, transparent 55%),
        radial-gradient(ellipse at 82% 25%, rgba(255, 94, 58, 0.14) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 90" preserveAspectRatio="none"><path fill="%23fafaf7" d="M0,50 C320,90 640,10 960,40 C1180,60 1320,55 1440,40 L1440,90 L0,90 Z"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 880px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 22px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 180, 216, 0.4);
    border-radius: var(--radius-pill);
    background: rgba(0, 180, 216, 0.08);
    backdrop-filter: blur(4px);
    animation: fadeUp 0.9s cubic-bezier(0.2, 0, 0, 1) 0.05s both;
}

.hero-logo {
    width: 220px;
    height: auto;
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-lg);
    padding: 18px 24px 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeUp 1s cubic-bezier(0.2, 0, 0, 1) both;
}

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

.hero-title {
    margin-bottom: 24px;
    animation: fadeUp 0.95s cubic-bezier(0.2, 0, 0, 1) 0.12s both;
}

.hero-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 6.5vw, 5rem);
    color: #fff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 0.98;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.65;
    font-weight: 400;
    animation: fadeUp 1s cubic-bezier(0.2, 0, 0, 1) 0.18s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s cubic-bezier(0.2, 0, 0, 1) 0.24s both;
}

.hero-scroll {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, rgba(0, 180, 216, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.55); }
    50%      { opacity: 1;   transform: scaleY(1); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: 1.5px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover {
    background: var(--coral-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 58, 0.42);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 110px 0;
}

.section-eyebrow {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 16px;
}

.section-eyebrow.light {
    color: rgba(0, 180, 216, 0.85);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--cyan);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== STATS STRIP ===== */
.stats-strip {
    background: #fff;
    color: var(--ink);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.stats-strip > .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.6rem, 4.4vw, 3.6rem);
    color: var(--ink);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* ===== CLUB / BENEFITS ===== */
.club,
.benefits {
    background: var(--paper-cool);
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 56px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.club-card {
    background: #fff;
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.club-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.club-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.club-card:hover::after {
    transform: scaleX(1);
}

.club-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
    border-radius: 12px;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 180, 216, 0.28);
}

.club-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
}

.club-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.club-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ===== MEMBRES / BUREAU ===== */
.membres {
    background: var(--paper);
}

.membres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.membre-card {
    background: #fff;
    padding: 36px 28px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
}

.membre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--coral));
    opacity: 0;
    transition: opacity var(--transition);
}

.membre-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.membre-card:hover::before {
    opacity: 1;
}

.membre-avatar {
    width: 68px;
    height: 68px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--navy) 100%);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 6px 16px rgba(0, 180, 216, 0.25);
}

.membre-avatar svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.membre-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.005em;
}

.membre-role {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--cyan);
    background: var(--cyan-soft);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.membre-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ===== DISCIPLINES ===== */
.disciplines {
    background: var(--paper);
}

.disciplines-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 880px;
    margin: 0 auto;
}

.discipline-item {
    text-align: left;
    padding: 44px 36px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--paper-cool) 0%, var(--paper) 100%);
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.discipline-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--cyan-soft) 0%, transparent 70%);
    transform: translate(40%, -40%);
    transition: transform var(--transition);
}

.discipline-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 216, 0.3);
}

.discipline-item:hover::after {
    transform: translate(20%, -20%);
}

.discipline-emoji {
    font-size: 2.4rem;
    margin-bottom: 18px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.discipline-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: var(--ink);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.discipline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ===== WIND LIVE — wow factor section ===== */
.wind-live {
    background:
        radial-gradient(circle at 8% 35%, rgba(0, 180, 216, 0.16) 0%, transparent 45%),
        radial-gradient(circle at 92% 75%, rgba(255, 94, 58, 0.10) 0%, transparent 45%),
        linear-gradient(180deg, var(--ink) 0%, var(--navy-deep) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 150px 0 140px;
}

/* Wave divider at top (light benefits → dark wind-live) */
.wind-live::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 96px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 96" preserveAspectRatio="none"><path fill="%23f3f6fa" d="M0,40 C260,0 520,80 800,42 C1040,12 1240,52 1440,40 L1440,0 L0,0 Z"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* Wave divider at bottom (dark wind-live → white stats-strip) */
.wind-live::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 96px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 96" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,56 C260,96 520,16 800,54 C1040,84 1240,44 1440,56 L1440,96 L0,96 Z"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.06); }
}

.wind-live > .container {
    position: relative;
    z-index: 2;
}

.wind-live .section-title {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    margin-bottom: 16px;
}

.wind-live .section-title::after {
    background: var(--cyan);
    width: 56px;
    height: 3px;
}

.wind-live .section-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    max-width: 640px;
}

/* Pulsing "EN DIRECT" badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto 22px;
    padding: 8px 18px 8px 14px;
    border: 1px solid rgba(255, 70, 70, 0.45);
    background: rgba(255, 70, 70, 0.10);
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ff8e8e;
    backdrop-filter: blur(4px);
}

.wind-live .container {
    text-align: center;
}

.wind-live .live-badge {
    display: inline-flex;
}

.wind-stations-grid,
.wind-history-viewer,
.wind-source-credit {
    text-align: left;
}

.wind-source-credit {
    text-align: center;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
    box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.6);
    animation: livePulse 1.6s ease-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%   { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.55); }
    70%  { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

.wind-stations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

.wind-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 26px 20px 22px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.wind-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.wind-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-3px);
}

.wind-card:hover::before {
    transform: scaleX(1);
}

.wind-card.active {
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.5);
}

.wind-card.active::before {
    transform: scaleX(1);
}

.wind-station-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wind-station-source {
    display: none;
}

.wind-main {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.wind-arrow {
    width: 32px;
    height: 32px;
    transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
    align-self: center;
}

.wind-arrow svg {
    width: 100%;
    height: 100%;
}

.wind-speed {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

.wind-speed-unit {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    margin-left: 4px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.wind-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-variant-numeric: tabular-nums;
}

.wind-gust {
    color: var(--coral-bright);
    font-weight: 600;
}

.wind-dir-label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.wind-time {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.32);
    font-variant-numeric: tabular-nums;
}

/* Wind colors — vibrant Beaufort scale */
.wind-color-calm     { color: #87ceeb; }
.wind-color-light    { color: #7dd87d; }
.wind-color-moderate { color: #ffd700; }
.wind-color-fresh    { color: #ffa500; }
.wind-color-strong   { color: #ff6b35; }
.wind-color-storm    { color: #ff4444; }

/* Loading & error */
.wind-loading {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 56px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.wind-spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

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

.wind-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 32px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.wind-card-hint {
    display: block;
    margin-top: 14px;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-display);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

/* History viewer */
.wind-history-viewer {
    margin-top: 24px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease;
}

.wind-history-viewer:empty {
    margin-top: 0;
}

.wind-source-credit {
    margin-top: 32px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.04em;
    font-weight: 400;
}

.wind-source-credit a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
    transition: var(--transition);
}

.wind-source-credit a:hover {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

.wind-history-inner {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 28px 32px 22px;
    backdrop-filter: blur(8px);
    animation: chartSlideIn 0.4s cubic-bezier(0.2, 0, 0, 1);
}

@keyframes chartSlideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.wind-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.wind-history-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: -0.005em;
}

.wind-history-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.wind-history-close:hover {
    background: rgba(0, 180, 216, 0.16);
    color: #fff;
    border-color: var(--cyan);
}

.wind-history-chart {
    width: 100%;
    height: 230px;
    display: block;
}

.wind-history-chart .chart-grid {
    stroke: rgba(255, 255, 255, 0.08);
}

.wind-history-chart .chart-wind {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wind-history-chart .chart-gust {
    fill: none;
    stroke: var(--coral-bright);
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
}

.wind-history-chart .chart-area {
    opacity: 0.12;
}

.wind-history-chart .chart-label {
    fill: rgba(255, 255, 255, 0.5);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
}

.wind-history-chart .chart-label-y {
    fill: rgba(255, 255, 255, 0.4);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
}

.wind-history-chart .chart-tooltip-bg {
    fill: rgba(6, 18, 41, 0.95);
    stroke: rgba(0, 180, 216, 0.4);
    stroke-width: 1;
}

.wind-history-chart .chart-tooltip-time {
    fill: rgba(255, 255, 255, 0.55);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
}

.wind-history-chart .chart-tooltip-wind {
    fill: var(--cyan-bright);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.wind-history-chart .chart-tooltip-gust {
    fill: var(--coral-bright);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.wind-history-legend {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 14px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wind-history-legend span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wind-history-legend .legend-line {
    width: 22px;
    height: 2px;
    border-radius: 2px;
}

.wind-history-legend .legend-line.wind {
    background: var(--cyan);
}

.wind-history-legend .legend-line.gust {
    background: none;
    border-top: 2px dashed var(--coral-bright);
    height: 0;
}

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

.btn-wind {
    background: rgba(0, 180, 216, 0.15);
    color: var(--cyan);
    border: 1px solid rgba(0, 180, 216, 0.32);
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-wind:hover {
    background: rgba(0, 180, 216, 0.25);
    color: #fff;
    border-color: var(--cyan);
    transform: translateY(-2px);
}

/* ===== SPOTS MAP ===== */
.spots-map {
    background: var(--ink);
    color: #fff;
    padding-top: 150px;
    padding-bottom: 140px;
    position: relative;
    overflow: hidden;
}

.spots-map > .container {
    position: relative;
    z-index: 2;
}

/* Wave divider at top (white stats-strip → dark spots-map) */
.spots-map::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 96px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 96" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,40 C260,0 520,80 800,42 C1040,12 1240,52 1440,40 L1440,0 L0,0 Z"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* Wave divider at bottom (dark spots-map → light spots cards) */
.spots-map::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 96px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 96" preserveAspectRatio="none"><path fill="%23f3f6fa" d="M0,56 C260,96 520,16 800,54 C1040,84 1240,44 1440,56 L1440,96 L0,96 Z"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

.spots-map .section-title {
    color: #fff;
}

.spots-map .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.spots-map-img {
    width: 100%;
    display: block;
}

.overview-map {
    width: 100%;
    height: 480px;
    border-radius: 0;
    z-index: 1;
}

.overview-map .leaflet-control-zoom {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.overview-map .leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    border: none;
}

/* ===== SPOTS DETAIL ===== */
.spots {
    background: var(--paper-cool);
}

.spot-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 80px;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--line);
}

.spot-card:last-child {
    margin-bottom: 0;
}

.spot-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.spot-card.reverse {
    direction: rtl;
}

.spot-card.reverse > * {
    direction: ltr;
}

.spot-image {
    height: 100%;
    min-height: 460px;
    overflow: hidden;
    position: relative;
}

.spot-map {
    width: 100%;
    height: 100%;
    min-height: 460px;
    z-index: 1;
}

.spot-map .leaflet-control-zoom {
    border: none;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.spot-map .leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    border: none;
}

.wind-arrow-marker {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spot markers on overview map — kite icon + name */
.kite-spot-marker-wrapper {
    background: none;
    border: none;
}

.kite-spot-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.32));
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1);
    width: 100%;
    height: 100%;
}

.kite-spot-marker:hover {
    transform: translateY(-3px);
}

.kite-spot-icon {
    flex-shrink: 0;
    display: block;
}

.kite-spot-label {
    background: var(--ink);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.03em;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.parking-marker {
    background: var(--cyan);
    color: var(--ink);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.32);
    border: 2px solid #fff;
}

.warning-marker {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.map-legend {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.72rem;
    font-family: var(--font-display);
    font-weight: 500;
    box-shadow: var(--shadow);
    line-height: 1.7;
    color: var(--text);
}

.map-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-legend-arrow {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.spot-info {
    padding: 48px 48px 48px 44px;
}

.spot-card.reverse .spot-info {
    padding: 48px 44px 48px 48px;
}

.spot-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.85rem;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    line-height: 1.15;
    text-transform: uppercase;
}

.spot-distance {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 22px;
    padding: 4px 12px;
    background: var(--cyan-soft);
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.spot-desc {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.spot-warning {
    color: var(--signal-warn);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 12px 16px;
    background: var(--signal-warn-bg);
    border-left: 3px solid var(--signal-warn);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 24px;
    line-height: 1.6;
}

.spot-highlight {
    color: var(--signal-good);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 12px 16px;
    background: var(--signal-good-bg);
    border-left: 3px solid var(--signal-good);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 24px;
    line-height: 1.6;
}

.spot-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.spot-detail {
    padding: 14px 16px;
    background: var(--paper-cool);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.detail-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.detail-value {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    line-height: 1.4;
}

.level-yes { color: var(--signal-good); }
.level-no  { color: var(--signal-warn); }

/* ===== WIND ROSE ===== */
.wind-rose {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0;
}

.wind-rose-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== CONDITIONS TABLE ===== */
.conditions {
    background: var(--paper);
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.conditions-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 0.95rem;
}

.conditions-table thead {
    background: var(--ink);
    color: #fff;
}

.conditions-table th {
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.85);
}

.conditions-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
    color: var(--text);
}

.conditions-table tbody tr:last-child td {
    border-bottom: none;
}

.conditions-table tbody tr:hover {
    background: var(--paper-cool);
}

.conditions-table a {
    color: var(--ink);
    font-family: var(--font-display);
    font-weight: 700;
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 1px;
    transition: var(--transition);
}

.conditions-table a:hover {
    color: var(--cyan);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.badge-yes {
    background: var(--signal-good-bg);
    color: var(--signal-good);
}

.badge-no {
    background: var(--signal-warn-bg);
    color: var(--signal-warn);
}

/* ===== ADHÉRER (main conversion section) ===== */
.adherer {
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 100%);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.adherer::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.20) 0%, transparent 70%);
    pointer-events: none;
}

.adherer::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(255, 94, 58, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

.adherer-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.adherer-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: #fff;
    margin: 4px 0 22px;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
}

.adherer-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 56px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.adherer-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 56px;
    text-align: left;
}

.adherer-step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
}

.adherer-step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 180, 216, 0.4);
    transform: translateY(-4px);
}

.step-num {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--cyan);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 18px;
}

.adherer-step h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.005em;
    text-transform: uppercase;
}

.adherer-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.65;
}

.adherer-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-large {
    padding: 17px 36px;
    font-size: 1rem;
}

.btn-ghost-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.32);
    padding: 14px 24px;
    font-size: 0.92rem;
}

.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    transform: translateY(-2px);
}

.btn-ghost-light svg {
    flex-shrink: 0;
    opacity: 0.85;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* ===== CONTACT WHATSAPP block ===== */
.contact-whatsapp {
    margin-top: 8px;
    padding: 22px;
    background: rgba(37, 211, 102, 0.06);
    border-radius: var(--radius);
    border: 1px solid rgba(37, 211, 102, 0.18);
}

.contact-whatsapp svg {
    color: #25D366;
    width: 26px;
    height: 26px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 9px 20px;
    background: #25D366;
    color: #fff !important;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.whatsapp-link:hover {
    background: #20bd5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.32);
}

/* ===== CONTACT ===== */
.contact {
    background: var(--paper-cool);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-block {
    background: #fff;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.contact-info-block h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 28px;
    color: var(--ink);
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--cyan);
    margin-top: 4px;
    stroke-width: 2;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.94rem;
}

.contact-item a {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 2px solid var(--cyan);
    padding-bottom: 1px;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--cyan);
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    padding: 16px 20px;
    background: var(--paper-cool);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.schedule-period {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.72rem;
    color: var(--cyan);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.schedule-hours {
    font-size: 0.92rem;
    color: var(--text);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.55);
    padding: 64px 0 36px;
}

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

.footer-brand {
    margin-bottom: 24px;
}

.footer-logo {
    height: 64px;
    width: auto;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius);
    padding: 8px 14px 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--cyan);
}

.footer-credits {
    margin-bottom: 18px;
}

.footer-credits span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credits a {
    color: var(--cyan);
    font-weight: 600;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.02em;
}

.footer-legal-link {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1px;
    transition: var(--transition);
}

.footer-legal-link:hover {
    color: var(--cyan);
    border-bottom-color: var(--cyan);
}

/* ===== MENTIONS LÉGALES MODAL ===== */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.legal-modal:target {
    opacity: 1;
    pointer-events: auto;
}
.legal-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 18, 41, 0.78);
    backdrop-filter: blur(6px);
}
.legal-modal-content {
    position: relative;
    background: var(--paper);
    color: var(--text);
    max-width: 640px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    padding: 2.75rem;
    box-shadow: 0 30px 80px rgba(6, 18, 41, 0.42);
}
.legal-modal-content h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.65rem;
    margin-bottom: 1.5rem;
    color: var(--ink);
    letter-spacing: -0.015em;
    text-transform: uppercase;
}
.legal-modal-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    margin: 1.75rem 0 0.5rem;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.legal-modal-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}
.legal-modal-content a {
    color: var(--ink);
    font-weight: 600;
    border-bottom: 2px solid var(--cyan);
}
.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 1.7rem;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1;
    transition: color 0.2s;
}
.legal-modal-close:hover {
    color: var(--ink);
}

@media (max-width: 768px) {
    .legal-modal-content {
        padding: 1.75rem;
        max-height: 85vh;
    }
}

/* ===== PARALLAX ===== */
.parallax-section {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .hero-overlay {
        inset: 0 !important;
        transform: none !important;
    }
    .parallax-section {
        transform: none !important;
    }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== STICKY BOTTOM CTA (mobile) ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(6, 18, 41, 0.72);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    color: #fff;
    padding: 13px 32px calc(13px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    z-index: 999;
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
    transform: translateY(105%);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta-text {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .sticky-cta-text {
        font-size: 0.85rem;
        flex: 1;
    }
}

.sticky-cta-text strong {
    color: var(--cyan);
    font-weight: 700;
}

.sticky-cta-btn {
    background: var(--cyan);
    color: var(--ink);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 180, 216, 0.3);
    transition: background var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sticky-cta-btn:hover {
    background: var(--cyan-bright);
}

@media (max-width: 768px) {
    .sticky-cta {
        padding: 11px 16px calc(11px + env(safe-area-inset-bottom));
        gap: 14px;
        justify-content: space-between;
    }
}

/* ===== SCROLL REVEAL ===== */
.spot-card,
.club-card,
.discipline-item,
.membre-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.2, 0, 0, 1), transform 0.7s cubic-bezier(0.2, 0, 0, 1);
}

.spot-card.visible,
.club-card.visible,
.discipline-item.visible,
.membre-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .club-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .spot-card {
        grid-template-columns: 1fr;
    }

    .spot-card.reverse {
        direction: ltr;
    }

    .spot-image {
        min-height: 360px;
    }

    .spot-map {
        min-height: 360px;
    }

    .spot-info {
        padding: 36px 36px 40px !important;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 18px;
    }

    .nav-container {
        padding: 0 18px;
    }

    /* Section spacing tighter on mobile */
    .section,
    .wind-live,
    .adherer,
    .spots-map {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .wind-live { padding-top: 110px; padding-bottom: 110px; }
    .spots-map { padding-top: 110px; padding-bottom: 110px; }

    .section-desc {
        margin-bottom: 36px;
        font-size: 0.92rem;
    }

    .section-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.24em;
    }

    /* Hero */
    .hero-content {
        padding: 0 18px;
    }
    .hero-eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.22em;
        padding: 6px 12px;
    }
    .hero-subtitle {
        margin-bottom: 32px;
    }

    /* Stats strip */
    .stats-strip { padding: 60px 0 56px; }

    /* Adhérer */
    .adherer { padding: 90px 0; }
    .adherer-title { margin-bottom: 16px; }
    .adherer-desc {
        margin-bottom: 38px;
        font-size: 0.95rem;
    }
    .adherer-steps {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px;
    }
    .adherer-step {
        padding: 24px 22px;
    }
    .step-num {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .adherer-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .adherer-cta .btn {
        justify-content: center;
        width: 100%;
    }

    /* Maps */
    .overview-map { height: 360px; }
    .spot-image, .spot-map { min-height: 280px !important; }

    /* Spot cards */
    .spot-name { font-size: 1.5rem; }

    /* Center wind rose on mobile */
    .wind-rose {
        margin: 8px auto 36px;
    }

    /* Wind history viewer */
    .wind-history-inner {
        padding: 18px 16px 14px;
    }
    .wind-history-chart { height: 200px; }
    .wind-history-legend {
        gap: 16px;
        font-size: 0.7rem;
    }

    /* Live badge */
    .live-badge {
        font-size: 0.66rem;
        letter-spacing: 0.18em;
        padding: 7px 14px 7px 12px;
    }

    /* Wave separators slightly shorter on mobile */
    .wind-live::before,
    .wind-live::after,
    .spots-map::before,
    .spots-map::after {
        height: 56px;
    }

    /* Contact block tighter */
    .contact-info-block { padding: 28px 22px; }
    .contact-item { gap: 12px; }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 320px);
        height: 100dvh;
        background: var(--ink);
        flex-direction: column;
        align-items: stretch;
        padding: 88px 24px 32px;
        gap: 6px;
        transition: right 0.32s cubic-bezier(0.2, 0, 0, 1);
        box-shadow: -8px 0 36px rgba(0, 0, 0, 0.5);
        list-style: none;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu li {
        list-style: none;
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 14px 16px;
        font-size: 1rem;
        font-weight: 500;
        width: 100%;
        min-height: 48px;
        color: rgba(255, 255, 255, 0.82);
        border-radius: var(--radius);
        transition: background 0.18s ease, color 0.18s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active-link {
        background: rgba(255, 255, 255, 0.06);
        color: #fff;
    }

    .nav-menu .nav-cta {
        margin-left: 0 !important;
        margin-top: 18px !important;
        padding: 14px 20px !important;
        justify-content: center;
        background: var(--cyan) !important;
        color: var(--ink) !important;
        font-weight: 700 !important;
        border-radius: var(--radius-pill);
        box-shadow: 0 4px 14px rgba(0, 180, 216, 0.25);
        position: relative;
    }

    .nav-menu .nav-cta::before {
        content: '';
        position: absolute;
        top: -10px;
        left: 16px;
        right: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    /* Backdrop when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    body.menu-open::after {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(6, 18, 41, 0.55);
        backdrop-filter: blur(2px);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    /* Burger → X animation */
    .nav-toggle span {
        transition: transform 0.28s cubic-bezier(0.2, 0, 0, 1), opacity 0.2s ease;
    }
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 88vh;
    }

    .hero-overlay {
        inset: 0;
        background-position: center center;
    }

    .hero-scroll {
        display: none;
    }

    .hero-logo {
        width: 175px;
        padding: 14px 18px 10px;
    }

    .section {
        padding: 80px 0;
    }

    .section-desc {
        margin-bottom: 44px;
    }

    .club-grid {
        grid-template-columns: 1fr;
        max-width: none;
        margin: 36px 0 0;
        gap: 16px;
    }

    .club-card {
        padding: 32px 26px;
        text-align: left;
    }

    .club-card::after { display: none; }

    .club-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 18px;
        border-radius: 12px;
    }

    .club-icon svg {
        width: 20px;
        height: 20px;
    }

    .club-card h3 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }

    .club-card p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .disciplines-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .membres-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .wind-stations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .wind-stations-grid .wind-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .wind-card {
        padding: 22px 18px 20px;
    }

    .wind-speed {
        font-size: 1.95rem;
    }

    .spot-details {
        grid-template-columns: 1fr;
    }

    .spot-card {
        margin-bottom: 36px;
    }

    /* Conditions table → stacked cards on mobile */
    .conditions-table thead {
        display: none;
    }

    .conditions-table,
    .conditions-table tbody,
    .conditions-table tr,
    .conditions-table td {
        display: block;
        width: 100%;
    }

    .table-wrapper {
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .conditions-table tr {
        padding: 12px 14px;
        margin-bottom: 0;
        border: none;
        border-radius: 0;
        border-bottom: 1px solid var(--line) !important;
        background: #fff;
    }

    .conditions-table tbody tr:last-child {
        margin-bottom: 0;
        border-bottom: none !important;
    }

    .conditions-table td {
        padding: 2px 0;
        border-bottom: none !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.82rem;
    }

    .conditions-table td::before {
        content: attr(data-label);
        font-family: var(--font-display);
        font-weight: 600;
        font-size: 0.66rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-muted);
        flex-shrink: 0;
        margin-right: 12px;
    }

    .conditions-table td:first-child {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.95rem;
        padding-bottom: 6px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--line) !important;
        text-transform: uppercase;
        letter-spacing: 0.01em;
    }

    .conditions-table td:first-child::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-container { padding: 0 16px; }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

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

    .wind-stations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .wind-card {
        padding: 16px 12px 14px;
    }

    .wind-station-name {
        font-size: 0.7rem;
        margin-bottom: 12px;
    }

    .wind-speed { font-size: 1.6rem; }

    .conditions-table th,
    .conditions-table td {
        padding: 14px 16px;
        font-size: 0.85rem;
    }

    .spot-info {
        padding: 24px 22px 28px !important;
    }

    /* Stats: stack on tiny screens */
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }
    .stat {
        border-right: none;
        border-bottom: 1px solid var(--line);
        padding: 18px 16px;
    }
    .stat:last-child { border-bottom: none; }

    /* Hero logo */
    .hero-logo { width: 130px; }

    /* Adhérer title smaller */
    .adherer-title { font-size: 2rem; line-height: 1.05; }

    /* Wave separators even shorter */
    .wind-live::before,
    .wind-live::after,
    .spots-map::before,
    .spots-map::after {
        height: 44px;
    }
}
