/* ============================================
   VIVRE BIEN ENSEMBLE À VILLARZEL
   Design System & Styles
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Primary palette — from the logo */
    --gold: #C6A455;
    --gold-light: #D9BE7A;
    --gold-dark: #A8893D;
    --gold-bg: #FBF6EC;

    /* Greens — from the hills */
    --green: #6B9B5A;
    --green-light: #8DB87D;
    --green-dark: #4A7A3E;
    --green-bg: #F0F5ED;

    /* Sky / Accents */
    --sky: #9AC0DC;
    --sky-light: #D0E4F2;

    /* Terracotta — from the tower roof */
    --terra: #B8604A;
    --terra-light: #D4816C;

    /* Neutrals */
    --cream: #FAF7F2;
    --cream-dark: #F0EBE2;
    --warm-white: #FDFCFA;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --border: #E8E2D6;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Spacing */
    --section-padding: 120px;
    --container-width: 1120px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 60px rgba(0,0,0,0.1), 0 8px 20px rgba(0,0,0,0.04);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* --- Container --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section defaults --- */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: var(--gold-bg);
    border: 1px solid var(--gold-light);
    padding: 6px 20px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

.highlight {
    color: var(--gold-dark);
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(198, 164, 85, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(198, 164, 85, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease);
}

.btn-primary:hover svg {
    transform: translate(3px, -3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: opacity 0.5s var(--ease), transform 0.3s var(--ease);
    opacity: 0;
    pointer-events: none;
}

.navbar.scrolled .nav-logo-img {
    opacity: 1;
    pointer-events: auto;
}

.nav-logo-img:hover {
    transform: scale(1.08);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s var(--ease);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
    background: var(--gold-bg);
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 24px 80px;
    background: var(--cream);
    overflow: hidden;
}

/* --- Organic backdrop --- */
.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-glow--1 {
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(198, 164, 85, 0.18), transparent 70%);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    animation: glowPulse 8s ease-in-out infinite;
}

.hero-glow--2 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: radial-gradient(circle, rgba(107, 155, 90, 0.12), transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: glowDrift 12s ease-in-out infinite;
}

.hero-glow--3 {
    width: 35vw;
    height: 35vw;
    max-width: 450px;
    max-height: 450px;
    background: radial-gradient(circle, rgba(154, 192, 220, 0.10), transparent 70%);
    top: 30%;
    right: -8%;
    animation: glowDrift 15s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.7; transform: translateX(-50%) scale(1.08); }
}

@keyframes glowDrift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -15px); }
}

/* Rolling hills at bottom */
.hero-hills {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 180px;
}

/* --- Hero inner layout --- */
.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 72px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

/* --- Logo visual --- */
.hero-visual {
    flex-shrink: 0;
}

.hero-logo-halo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 164, 85, 0.2) 0%, rgba(198, 164, 85, 0.05) 50%, transparent 70%);
    animation: haloBreath 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes haloBreath {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.6; }
}

.hero-logo {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 16px 48px rgba(198, 164, 85, 0.25));
    animation: logoFloat 7s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* --- Message / text side --- */
.hero-message {
    flex: 1;
    min-width: 0;
}

.hero-accroche {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 12px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-dark);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hero-sep {
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 28px;
}

.hero-text {
    font-size: 1.02rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    font-size: 1rem;
    padding: 16px 40px;
    letter-spacing: 0.02em;
}

/* --- Scroll indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid var(--gold-light);
    border-radius: 11px;
    position: relative;
    opacity: 0.5;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: var(--gold);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 20px; }
}

.scroll-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    opacity: 0.4;
}

/* ============================================
   CANDIDATES
   ============================================ */
.candidats {
    background: var(--warm-white);
}

.candidates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.candidate-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
    position: relative;
}

.candidate-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.candidate-photo-wrapper {
    position: relative;
    margin-bottom: 28px;
    display: inline-block;
}

.candidate-photo-frame {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold-light);
    box-shadow: 0 4px 20px rgba(198, 164, 85, 0.15);
}

.candidate-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s var(--ease);
}

.candidate-card:hover .candidate-photo {
    transform: scale(1.05);
}

.candidate-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 3px solid #fff;
    box-shadow: var(--shadow-sm);
}

.candidate-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.candidate-role {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 24px;
    line-height: 1.5;
}

.candidate-quote {
    border-left: 3px solid var(--gold-light);
    padding-left: 20px;
    margin: 0;
}

.candidate-quote p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

.candidate-quote p:last-child {
    margin-bottom: 0;
}

/* ============================================
   APPROACH
   ============================================ */
.approche {
    background: linear-gradient(180deg, var(--green-bg) 0%, var(--warm-white) 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.approach-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--green-light));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

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

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

.approach-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 24px;
    transition: all 0.4s var(--ease);
}

.approach-card:hover .approach-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.05);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 12px;
}

.approach-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.approach-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================
   DICTON BROYARD
   ============================================ */
.dicton-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dicton-bg {
    position: absolute;
    inset: 0;
}

.dicton-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.dicton-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(44, 44, 44, 0.25) 0%,
        rgba(44, 44, 44, 0.5) 50%,
        rgba(44, 44, 44, 0.3) 100%
    );
}

.dicton-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
}

.dicton-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.dicton-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.quote-mark {
    color: var(--gold-light);
    font-style: normal;
}

/* ============================================
   VALUES / CE QUI NOUS GUIDE
   ============================================ */
.valeurs {
    background: var(--warm-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    border: 1px solid var(--border);
    transition: all 0.5s var(--ease-out);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

.value-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-bg);
    border: 2px solid var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin: 0 auto 24px;
    transition: all 0.4s var(--ease);
}

.value-card:hover .value-icon-wrap {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.value-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ============================================
   VOTER
   ============================================ */
.voter {
    background: linear-gradient(180deg, var(--warm-white) 0%, var(--gold-bg) 100%);
}

.voter-card {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 64px 56px;
    border: 2px solid var(--gold-light);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.voter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--terra-light), var(--gold));
}

.voter-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.voter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
}

.voter-content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.voter-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.voter-highlight {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-dark) !important;
    text-align: center;
    margin-top: 28px !important;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* ============================================
   RENCONTRER
   ============================================ */
.rencontrer {
    background: var(--warm-white);
}

.meeting-content {
    max-width: 860px;
    margin: 0 auto;
}

.meeting-info {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    justify-content: center;
    flex-wrap: wrap;
}

.meeting-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.meeting-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: var(--gold-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.meeting-dates {
    text-align: center;
    margin-bottom: 48px;
}

.meeting-dates-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
}

.dates-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.date-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--gold-bg), #fff);
    border: 1.5px solid var(--gold-light);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    min-width: 100px;
    transition: all 0.3s var(--ease);
}

.date-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.date-day {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.date-num {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.meeting-spirit {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--green-bg), var(--cream));
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.meeting-spirit p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
}

.meeting-spirit p:last-child {
    margin-bottom: 0;
}

.coffee-highlight {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--terra);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.8);
    padding: 72px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--gold-light);
    line-height: 1.5;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
    color: var(--gold-light);
    min-width: 16px;
    margin-top: 3px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px;
    }

    .candidates-grid {
        gap: 32px;
    }

    .candidate-card {
        padding: 36px 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 72px;
    }

    /* Navigation mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 4px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.1);
        transition: right 0.4s var(--ease-out);
    }

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

    .nav-link {
        font-size: 1rem;
        padding: 12px 16px;
    }

    /* Hero */
    .hero {
        padding: 100px 24px 80px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-logo-glow {
        width: 280px;
        height: 280px;
    }

    .hero-message {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-sep {
        margin-left: auto;
        margin-right: auto;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* Candidates */
    .candidates-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .candidate-card {
        padding: 32px 24px;
    }

    /* Approach */
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach-card {
        padding: 32px 28px;
    }

    /* Values */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Voter */
    .voter-card {
        padding: 40px 28px;
    }

    /* Meeting */
    .meeting-info {
        flex-direction: column;
        gap: 20px;
    }

    .dates-grid {
        gap: 8px;
    }

    .date-chip {
        min-width: 85px;
        padding: 12px 16px;
    }

    /* Dicton */
    .dicton-section {
        height: 50vh;
        min-height: 320px;
    }

    .dicton-quote {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contacts {
        align-items: center;
    }

    .footer-contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 56px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .hero-logo-glow {
        width: 220px;
        height: 220px;
    }

    .hero-inner {
        gap: 28px;
    }

    .hero-accroche {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-text {
        font-size: 0.93rem;
    }

    .hero-cta {
        padding: 14px 32px;
        font-size: 0.92rem;
    }

    .candidate-photo-frame {
        width: 100px;
        height: 100px;
    }

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