/* ============================================
   CP CONSTRUCTIONS — STYLES V2
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #EBA024;
    --primary-dark: #c98916;
    --secondary: #983920;
    --secondary-dark: #742917;
    --dark: #1f1c1a;
    --gray: #6b6b6b;
    --light: #faf7f4;
    --white: #ffffff;
    --border: #ece5df;
    --shadow-sm: 0 4px 16px rgba(31, 28, 26, 0.06);
    --shadow-md: 0 12px 32px rgba(31, 28, 26, 0.10);
    --shadow-lg: 0 24px 60px rgba(31, 28, 26, 0.16);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 2000;
    transition: width 0.1s linear;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ NAVBAR ============ */
.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 {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--dark);
}
.logo img { height: 38px; width: auto; }
.logo em { color: var(--primary); font-style: normal; }

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.2rem;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
    transition: color 0.25s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--dark);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    transition: all 0.3s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}
.menu-toggle span {
    width: 24px; height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 60px;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(235, 160, 36, 0.10), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(152, 57, 32, 0.10), transparent 45%),
        var(--light);
    z-index: -2;
}

.hero-shapes { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.08;
    animation: morph 12s ease-in-out infinite;
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.shape-2 { width: 350px; height: 350px; bottom: -100px; left: -100px; animation-delay: -6s; }

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%; transform: rotate(0deg); }
    50% { border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%; transform: rotate(15deg); }
}

.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.2rem;
}

.hero-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--secondary);
    background: white;
    border: 2px solid var(--primary);
    padding: 12px 28px;
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(235, 160, 36, 0.25);
    animation: badgeGlow 2.4s ease-in-out infinite;
}

.hero-badge-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    animation: badgePulse 1.6s ease-in-out infinite;
}

.hero-badge-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.3px;
    text-align: center;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 8px 24px rgba(235, 160, 36, 0.25); }
    50% { box-shadow: 0 8px 32px rgba(235, 160, 36, 0.5); }
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    max-width: 900px;
    margin-bottom: 1.5rem;
}
.hero-title .highlight { color: var(--primary); }

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 560px;
    margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-bottom: 4rem; }

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.35s var(--ease);
    border: 2px solid transparent;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 28px rgba(235, 160, 36, 0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(235, 160, 36, 0.45);
}
.btn-ghost {
    background: transparent;
    color: var(--dark);
    border-color: var(--dark);
}
.btn-ghost:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-3px);
}
.btn-block { width: 100%; text-align: center; }

.hero-stats {
    display: flex;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    width: 100%;
    max-width: 800px;
}
.stat { text-align: center; }
.stat-number, .stat-suffix {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}
.stat p { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }

.scroll-cue {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    width: 26px; height: 42px;
    border: 2px solid var(--dark);
    border-radius: 20px;
    opacity: 0.4;
}
.scroll-cue span {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--dark);
    border-radius: 2px;
    animation: scrollCue 1.8s ease infinite;
}
@keyframes scrollCue {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

/* ============ SECTIONS GÉNÉRALES ============ */
section { padding: 110px 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
}
.section-desc { color: var(--gray); font-size: 1.05rem; }

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--gray);
    font-style: italic;
    padding: 3rem 1rem;
    background: var(--light);
    border-radius: 16px;
    border: 1.5px dashed var(--border);
}

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}
.service-card {
    background: var(--light);
    padding: 2.6rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 0;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; transition: color 0.4s; }
.service-card:hover h3, .service-card:hover p { color: white; }
.service-icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    background: white;
    border-radius: 16px;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-sm);
    position: relative; z-index: 1;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--dark); }
.service-card p { color: var(--gray); font-size: 0.95rem; }

/* ============ FILTRES ============ */
.filters {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 10px 24px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

/* ============ TERRAINS ============ */
.terrains { background: var(--light); }
.terrains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.8rem;
}
.terrain-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}
.terrain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.terrain-card img { width: 100%; height: 200px; object-fit: cover; }
.terrain-info { padding: 1.5rem; }
.terrain-info h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.terrain-price { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin: 0.4rem 0; }
.terrain-details { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.btn-details {
    width: 100%; padding: 11px;
    background: var(--dark); color: white;
    border: none; border-radius: 10px;
    font-weight: 600; transition: background 0.3s;
}
.btn-details:hover { background: var(--primary); }

/* ============ PROJETS ============ */
.projets { background: var(--white); }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}
.project-card {
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(31,28,26,0.88), transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 1.6rem; color: white;
}
.project-overlay h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.project-overlay p { font-size: 0.9rem; opacity: 0.85; }

/* ============ CHANTIERS ============ */
.chantiers { background: var(--light); }
.chantiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.chantier-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease);
}
.chantier-card:hover { transform: translateX(6px); }
.progress-bar { width: 100%; height: 8px; background: var(--border); border-radius: 10px; overflow: hidden; margin: 0.8rem 0 0.5rem; }
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    width: 0%;
    transition: width 1.2s var(--ease);
}
.progress-text { font-size: 0.85rem; font-weight: 600; color: var(--secondary); }
.chantier-card h3 { font-size: 1.15rem; margin-top: 0.6rem; }
.chantier-date { color: var(--gray); font-size: 0.88rem; margin-top: 0.3rem; }

/* ============ LIVRAISONS / TIMELINE ============ */
.livraisons { background: var(--white); }
.timeline { position: relative; padding-left: 2rem; border-left: 2px solid var(--border); margin-bottom: 4rem; }
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-item::before {
    content: '';
    position: absolute; left: -2.5rem; top: 4px;
    width: 14px; height: 14px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}
.timeline-content {
    background: var(--light);
    padding: 1.6rem;
    border-radius: 14px;
    transition: transform 0.3s var(--ease);
}
.timeline-content:hover { transform: translateX(6px); }
.timeline-content h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.timeline-date { color: var(--primary); font-weight: 600; font-size: 0.85rem; margin-bottom: 0.4rem; }

.testimonials-section { padding-top: 3rem; border-top: 1px solid var(--border); text-align: center; }
.subsection-title { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 2rem; }
.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.6rem;
    text-align: left;
}
.testimonial-card {
    background: var(--light);
    padding: 1.8rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}
.testimonial-text { font-style: italic; color: var(--dark); margin-bottom: 1rem; }
.testimonial-author { font-weight: 700; color: var(--secondary); font-size: 0.9rem; }
.testimonials-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1.6rem; }

/* ============ BLOG ============ */
.blog { background: var(--light); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}
.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card img { width: 100%; height: 200px; object-fit: cover; }
.blog-content { padding: 1.8rem; }
.blog-date { color: var(--primary); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.blog-content h3 { font-size: 1.2rem; margin: 0.6rem 0; }
.blog-content p { color: var(--gray); font-size: 0.92rem; margin-bottom: 1rem; }
.read-more { color: var(--secondary); font-weight: 700; font-size: 0.9rem; transition: transform 0.3s; display: inline-block; }
.read-more:hover { transform: translateX(4px); }

/* ============ CONTACT ============ */
.contact { background: var(--white); }
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}
.contact-list { list-style: none; margin-top: 1.5rem; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; margin-bottom: 1.4rem; }
.contact-list strong { color: var(--secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: var(--light);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(235, 160, 36, 0.12);
}
.form-note { font-size: 0.85rem; color: var(--secondary); min-height: 1.2em; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo { color: white; margin-bottom: 1rem; }
.footer h4 { color: white; margin-bottom: 1rem; font-size: 1rem; }
.footer a, .footer p { display: block; color: rgba(255,255,255,0.65); margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer a:hover { color: var(--primary); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.6rem 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ============ SCROLL TOP BUTTON ============ */
.scroll-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 46px; height: 46px;
    background: var(--dark);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s var(--ease);
    z-index: 900;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(320px, 80vw);
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.6rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s var(--ease);
    }
    .nav-menu.active { right: 0; }
    .nav-cta { margin-top: 1rem; }

    section { padding: 70px 0; }
    .hero { padding-top: 120px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; text-align: center; }
    .stat-number, .stat-suffix { font-size: 1.6rem; }
}

/* ============ ANIMATION CHANTIER ============ */
.build-anim-section {
    background: var(--light);
    padding: 60px 0;
}
.build-anim-wrap {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.build-anim {
    width: 100%;
    height: auto;
    display: block;
}
.build-anim-caption {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
}

/* Cycle complet de construction : 6s, en boucle rapide */
.build-foundation {
    transform-origin: center bottom;
    animation: buildFoundation 6s ease-in-out infinite;
}
.build-walls {
    transform-origin: center bottom;
    animation: buildWalls 6s ease-in-out infinite;
}
.build-door, .build-window {
    animation: buildFade 6s ease-in-out infinite;
}
.build-roof {
    transform-origin: center top;
    animation: buildRoof 6s ease-in-out infinite;
}
.build-chimney {
    animation: buildFade 6s ease-in-out infinite;
}
.build-flag {
    animation: buildFlag 6s ease-in-out infinite;
}
.build-smoke {
    animation: smokeRise 3s ease-in-out infinite;
}
.build-crane-cable, .build-crane-hook {
    animation: craneHook 6s ease-in-out infinite;
}
.build-crane {
    animation: craneSwing 2.4s ease-in-out infinite;
    transform-origin: 333px 230px;
}
.build-cloud {
    animation: cloudDrift 10s linear infinite;
}
.build-sun {
    animation: sunPulse 4s ease-in-out infinite;
}

@keyframes buildFoundation {
    0%, 6% { opacity: 0; transform: scaleY(0); }
    14%, 88% { opacity: 1; transform: scaleY(1); }
    96%, 100% { opacity: 0; transform: scaleY(0); }
}
@keyframes buildWalls {
    0%, 16% { opacity: 0; transform: scaleY(0); }
    26%, 88% { opacity: 1; transform: scaleY(1); }
    96%, 100% { opacity: 0; transform: scaleY(0); }
}
@keyframes buildFade {
    0%, 34% { opacity: 0; }
    42%, 88% { opacity: 1; }
    96%, 100% { opacity: 0; }
}
@keyframes buildRoof {
    0%, 44% { opacity: 0; transform: translateY(-30px); }
    54%, 88% { opacity: 1; transform: translateY(0); }
    96%, 100% { opacity: 0; transform: translateY(-30px); }
}
@keyframes buildFlag {
    0%, 56% { opacity: 0; }
    62%, 88% { opacity: 1; }
    96%, 100% { opacity: 0; }
}
@keyframes smokeRise {
    0% { opacity: 0; transform: translateY(6px); }
    50% { opacity: 0.7; transform: translateY(-4px); }
    100% { opacity: 0; transform: translateY(-14px); }
}
@keyframes craneHook {
    0%, 60% { transform: translateY(0); }
    75% { transform: translateY(-18px); }
    88%, 100% { transform: translateY(0); }
}
@keyframes craneSwing {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-3deg); }
}
@keyframes cloudDrift {
    0% { transform: translateX(-20px); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(-20px); }
}
@keyframes sunPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
