/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #1a2e1f;
    background: #faf9f6;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== FONTS ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(26, 92, 42, 0.1); }
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
}
.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem;
    color: #1a5c2a;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.9rem; font-weight: 500; color: #2d4a35;
    transition: color 0.2s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: #1a5c2a; transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:hover { color: #1a5c2a; }
.nav-cta {
    background: #1a5c2a; color: #fff !important; padding: 10px 22px;
    border-radius: 50px; font-weight: 600; transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #144a22; transform: translateY(-1px); }
.nav-cta::after { display: none; }

/* Mobile toggle */
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 32px; height: 24px; position: relative; flex-direction: column; justify-content: space-between;
}
.nav-toggle span {
    display: block; width: 100%; height: 2px; background: #1a5c2a;
    border-radius: 2px; transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(11px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        background: rgba(250, 249, 246, 0.98); backdrop-filter: blur(12px);
        flex-direction: column; padding: 24px; gap: 20px;
        transform: translateY(-120%); transition: transform 0.35s ease;
        border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    }
    .nav-links.open { transform: translateY(0); }
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh; padding: 100px 24px 60px;
    background: #0f3d1e;
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape { position: absolute; }
.shape-circle-1 {
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 130, 65, 0.3), transparent 70%);
    top: -100px; right: -100px;
}
.shape-circle-2 {
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(100, 180, 100, 0.15), transparent 70%);
    bottom: 50px; left: -50px;
}
.shape-square-1 {
    width: 120px; height: 120px; background: rgba(255, 255, 255, 0.04);
    border-radius: 20px; top: 20%; left: 8%;
    transform: rotate(30deg);
}
.shape-triangle {
    width: 0; height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(255, 255, 255, 0.03);
    top: 15%; right: 15%;
}
.shape-dots {
    width: 80px; height: 80px; bottom: 20%; right: 5%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 12px 12px;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px; padding: 48px;
    backdrop-filter: blur(8px);
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.1); color: #a8d5a2;
    padding: 8px 16px; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.hero-title { margin-bottom: 20px; }
.hero-title-line {
    display: block; font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #ffffff; font-weight: 800;
}
.hero-title-accent { color: #6dd68a; }
.hero-desc {
    color: rgba(255, 255, 255, 0.75); font-size: 1.05rem;
    line-height: 1.7; margin-bottom: 32px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px; font-weight: 600;
    font-size: 0.95rem; transition: all 0.25s; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: #228241; color: #fff;
    box-shadow: 0 4px 20px rgba(34, 130, 65, 0.4);
}
.btn-primary:hover { background: #1a6b34; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(34, 130, 65, 0.5); }
.btn-outline {
    background: transparent; color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }
.btn-outline-light {
    background: transparent; color: #1a5c2a;
    border: 2px solid rgba(26, 92, 42, 0.3);
}
.btn-outline-light:hover { background: rgba(26, 92, 42, 0.05); border-color: #1a5c2a; }
.btn-sm {
    padding: 10px 20px; font-size: 0.85rem;
    background: #1a5c2a; color: #fff; border-radius: 50px;
}
.btn-sm:hover { background: #144a22; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

.hero-visual { position: relative; }
.hero-img-card {
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-card { width: 100%; aspect-ratio: 4/5; }
.hero-img-secondary {
    position: absolute; bottom: -30px; left: -40px;
    width: 65%; aspect-ratio: 3/2;
    border: 4px solid #0f3d1e;
}
.hero-img-secondary img { aspect-ratio: 3/2; }

/* Floating stats */
.hero-stats {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 16px; z-index: 2; width: 100%; max-width: 1200px;
    padding: 0 24px; justify-content: center; flex-wrap: wrap;
}
.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px; padding: 16px 24px;
    backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    min-width: 140px; text-align: center;
}
.stat-card--1 { background: rgba(109, 214, 138, 0.2); border-color: rgba(109, 214, 138, 0.4); }
.stat-card--2 { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.15); }
.stat-card--3 { background: rgba(255, 200, 100, 0.2); border-color: rgba(255, 200, 100, 0.4); }
.stat-number {
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    font-weight: 800; color: #fff;
}
.stat-card--3 .stat-number { color: #ffd700; }
.stat-label { font-size: 0.75rem; color: rgba(255, 255, 255, 0.7); font-weight: 500; }

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .hero-stats { position: relative; bottom: auto; left: auto; transform: none; margin-top: 40px; }
    .hero-card { padding: 32px; }
}
@media (max-width: 480px) {
    .hero { padding: 90px 16px 40px; }
    .hero-card { padding: 24px; }
    .hero-stats { flex-direction: column; align-items: stretch; }
    .stat-card { flex-direction: row; gap: 12px; justify-content: flex-start; padding: 14px 18px; }
}

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase; color: #228241;
    margin-bottom: 12px;
}
.section-tag--light { color: #6dd68a; }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem); color: #0f3d1e;
    margin-bottom: 16px;
}
.section-title--light { color: #ffffff; }
.section-desc { color: #4a6b52; font-size: 1.05rem; line-height: 1.7; }
.section-desc--light { color: rgba(255,255,255,0.7); }

/* ===== SERVICES ===== */
.services {
    padding: 100px 24px;
    background: #faf9f6;
    position: relative;
}
.services::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1a5c2a, #228241, #6dd68a, #228241, #1a5c2a);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.service-card {
    background: #fff; border-radius: 20px; padding: 36px;
    border: 1px solid rgba(26, 92, 42, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative; overflow: hidden;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 92, 42, 0.12);
}
.service-card-accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1a5c2a, #6dd68a);
    border-radius: 20px 20px 0 0;
}
.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex; align-items: center; justify-content: center;
    color: #1a5c2a; margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.25rem; color: #0f3d1e; margin-bottom: 10px;
}
.service-card p { color: #4a6b52; font-size: 0.95rem; line-height: 1.7; }

/* ===== ABOUT ===== */
.about {
    padding: 100px 24px;
    background: #0f3d1e;
    position: relative; overflow: hidden;
}
.about::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(34, 130, 65, 0.15);
}
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center; position: relative; z-index: 1;
}
.about-visual { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.about-img-float {
    position: absolute; bottom: -30px; right: -20px;
    border-radius: 16px; overflow: hidden;
    border: 4px solid #0f3d1e;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-badge {
    position: absolute; top: -20px; left: -20px;
    background: #228241; color: #fff;
    padding: 16px 20px; border-radius: 16px;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    font-weight: 700; font-size: 0.85rem; text-align: center;
    box-shadow: 0 8px 24px rgba(34, 130, 65, 0.4);
}
.about-content .section-tag { color: #6dd68a; }
.about-content .section-title { color: #fff; text-align: left; }
.about-text { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-features { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-feature {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500;
}
.about-feature-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: rgba(109, 214, 138, 0.15);
    display: flex; align-items: center; justify-content: center; color: #6dd68a;
}
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 480px; margin: 0 auto; }
    .about-content .section-title, .about-content .section-tag { text-align: center; }
    .about-text { text-align: center; }
    .about-features { justify-items: center; }
}
@media (max-width: 480px) {
    .about-features { grid-template-columns: 1fr; }
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 24px;
    background: #e8f5e9;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(26, 92, 42, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26, 92, 42, 0.1); }
.product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 8/7; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-tag {
    position: absolute; top: 12px; left: 12px;
    background: #228241; color: #fff;
    padding: 4px 12px; border-radius: 50px;
    font-size: 0.75rem; font-weight: 700;
}
.product-card h3 {
    padding: 16px 20px 6px; font-size: 1.1rem; color: #0f3d1e;
}
.product-card > p {
    padding: 0 20px 16px; color: #4a6b52; font-size: 0.9rem; line-height: 1.6;
}
.product-card .btn-sm { margin: 0 20px 20px; }

/* ===== GALLERY ===== */
.gallery {
    padding: 100px 24px;
    background: #faf9f6;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item--large { grid-column: span 7; aspect-ratio: 3/2; }
.gallery-item--wide { grid-column: span 8; aspect-ratio: 2/1; }
.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) { aspect-ratio: 1; }
@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--large, .gallery-item--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large, .gallery-item--wide { grid-column: span 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 100px 24px;
    background: linear-gradient(135deg, #0f3d1e 0%, #1a5c2a 100%);
    position: relative; overflow: hidden;
}
.testimonials::after {
    content: ''; position: absolute; bottom: -100px; left: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(109, 214, 138, 0.08);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px; position: relative; z-index: 1;
}
.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; padding: 32px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, background 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: #ffd700; }
.testimonial-text {
    color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; line-height: 1.8;
    margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(109, 214, 138, 0.2); color: #6dd68a;
    display: flex; align-items: center; justify-content: center;
}
.testimonial-name { display: block; color: #fff; font-weight: 600; font-size: 0.95rem; }
.testimonial-location { display: block; color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* ===== CTA ===== */
.cta {
    padding: 100px 24px;
    background: #faf9f6;
    position: relative; overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 20px; }
.cta-shape-1 {
    width: 200px; height: 200px; background: rgba(34, 130, 65, 0.06);
    top: -40px; right: 10%; transform: rotate(15deg);
}
.cta-shape-2 {
    width: 120px; height: 120px; background: rgba(109, 214, 138, 0.08);
    bottom: 20px; left: 5%; transform: rotate(-20deg); border-radius: 50%;
}
.cta-shape-3 {
    width: 80px; height: 80px; background: rgba(26, 92, 42, 0.05);
    top: 30%; left: 3%; transform: rotate(45deg);
}
.cta-content {
    max-width: 700px; margin: 0 auto; text-align: center;
    position: relative; z-index: 1;
}
.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem); color: #0f3d1e;
    margin-bottom: 20px;
}
.cta-desc { color: #4a6b52; font-size: 1.05rem; line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 24px;
    background: #e8f5e9;
}
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
    align-items: start;
}
.contact-info .section-title { text-align: left; }
.contact-desc { color: #4a6b52; font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 16px;
}
.contact-item-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: #1a5c2a; color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; color: #0f3d1e; font-size: 0.85rem; margin-bottom: 2px; }
.contact-item span, .contact-item a {
    color: #4a6b52; font-size: 0.95rem;
}
.contact-item a:hover { color: #1a5c2a; text-decoration: underline; }
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-form-wrap {
    background: #fff; border-radius: 24px; padding: 40px;
    box-shadow: 0 8px 40px rgba(26, 92, 42, 0.08);
}
.contact-form-title {
    font-size: 1.4rem; color: #0f3d1e; margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: #1a5c2a; margin-bottom: 6px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border-radius: 12px;
    border: 2px solid rgba(26, 92, 42, 0.15);
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    color: #1a2e1f; background: #faf9f6;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: #228241;
    box-shadow: 0 0 0 3px rgba(34, 130, 65, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
    text-align: center; padding: 40px 20px;
}
.form-success-icon { color: #228241; margin-bottom: 16px; }
.form-success h4 { font-size: 1.3rem; color: #0f3d1e; margin-bottom: 8px; }
.form-success p { color: #4a6b52; font-size: 0.95rem; }
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info .section-title { text-align: center; }
    .contact-desc { text-align: center; }
    .contact-details { align-items: center; }
    .contact-item { justify-content: center; }
}
@media (max-width: 480px) {
    .contact-form-wrap { padding: 24px; }
}

/* ===== FOOTER ===== */
.footer {
    background: #0a2e16; color: rgba(255,255,255,0.7); padding: 64px 24px 0;
}
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 48px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
    color: #fff; font-family: 'Inter', sans-serif; font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: #6dd68a; }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: #6dd68a; transition: color 0.2s; }
.footer-contact a:hover { color: #a8d5a2; }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== SCROLL REVEAL (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}
