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

:root {
    --green-900: #0D3B1A;
    --green-800: #1B5E20;
    --green-700: #2E7D32;
    --green-600: #388E3C;
    --green-500: #4CAF50;
    --green-400: #66BB6A;
    --green-300: #81C784;
    --green-200: #A5D6A7;
    --green-100: #C8E6C9;
    --green-50:  #E8F5E9;
    --off-white: #F7F5F0;
    --cream:     #EFEDE8;
    --warm-gray: #6B6560;
    --dark:      #1A1A18;
    --white:     #FFFFFF;
    --radius:    12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(27,94,32,0.08);
    --shadow-md: 0 8px 30px rgba(27,94,32,0.12);
    --shadow-lg: 0 16px 50px rgba(27,94,32,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--off-white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--green-900);
}

em { font-style: italic; }

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

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== Utility ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--green-500);
    display: inline-block;
}

.section-label--light { color: var(--green-200); }
.section-label--light::before { background: var(--green-400); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-title--light { color: var(--white); }

.lead {
    font-size: 1.125rem;
    color: var(--warm-gray);
    max-width: 560px;
    margin-bottom: 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46,125,50,0.3);
}

.btn--primary:hover {
    background: var(--green-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,125,50,0.4);
}

.btn--outline {
    background: transparent;
    color: var(--green-800);
    border: 2px solid var(--green-700);
}

.btn--outline:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--green-800);
    box-shadow: var(--shadow-md);
}

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

.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247,245,240,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(27,94,32,0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-800);
}

.logo--light { color: var(--white); }

.logo-icon { color: var(--green-700); }
.logo--light .logo-icon { color: var(--green-300); }

.nav { display: flex; align-items: center; gap: 32px; }

.nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    transition: var(--transition);
}

.nav a:not(.btn):hover::after { width: 100%; }
.nav a:not(.btn):hover { color: var(--green-700); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

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

.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); }

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green-900);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav__link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}

.mobile-nav__link:hover { color: var(--green-300); }

.mobile-nav__link--cta {
    margin-top: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    background: var(--green-600);
    color: var(--white);
    padding: 14px 40px;
    border-radius: 50px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
    background: var(--off-white);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.shape--1 {
    width: 600px;
    height: 600px;
    background: var(--green-600);
    top: -200px;
    right: -100px;
}

.shape--2 {
    width: 300px;
    height: 300px;
    background: var(--green-400);
    bottom: -50px;
    left: -80px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape--3 {
    width: 150px;
    height: 150px;
    background: var(--green-500);
    top: 40%;
    left: 45%;
    border-radius: 40% 60% 65% 35% / 40% 45% 55% 60%;
}

.shape--4 {
    width: 80px;
    height: 80px;
    background: var(--green-300);
    top: 20%;
    left: 15%;
    border-radius: 20% 80% 50% 50% / 50% 20% 80% 50%;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-50);
    border: 1px solid var(--green-200);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 28px;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    color: var(--green-900);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--warm-gray);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-subtitle em {
    color: var(--green-700);
    font-family: 'Playfair Display', serif;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-800);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--warm-gray);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--green-200);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--green-500);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--green-800);
    font-size: 0.95rem;
    z-index: 2;
}

.hero-float-card svg { color: var(--green-500); }

/* ===== About ===== */
.about {
    padding: 120px 24px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--white);
}

.about-img-secondary img {
    width: 320px;
    height: 240px;
    object-fit: cover;
}

.about-deco {
    position: absolute;
    top: -30px;
    right: -30px;
    color: var(--green-200);
    opacity: 0.6;
}

.about-content { position: relative; }

.about-content .lead { margin-bottom: 16px; }

.about-content p {
    color: var(--warm-gray);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-content strong { color: var(--green-800); }

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-800);
    transition: var(--transition);
}

.badge:hover {
    background: var(--green-100);
    transform: translateY(-2px);
}

.badge svg { color: var(--green-600); flex-shrink: 0; }

/* ===== Services ===== */
.services {
    position: relative;
    padding: 120px 24px;
    background: var(--green-900);
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo {
    position: absolute;
    opacity: 0.06;
}

.geo--1 {
    width: 400px;
    height: 400px;
    background: var(--green-400);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    left: -100px;
}

.geo--2 {
    width: 250px;
    height: 250px;
    background: var(--green-300);
    border-radius: 50%;
    bottom: -50px;
    right: 10%;
}

.geo--3 {
    width: 120px;
    height: 120px;
    background: var(--green-500);
    border-radius: 20% 80% 50% 50% / 50% 20% 80% 50%;
    top: 30%;
    right: -30px;
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.services-lead {
    color: var(--green-200);
    font-size: 1.1rem;
}

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

.service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

.service-card__accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--green-500);
    border-radius: 50%;
    opacity: 0.05;
    transition: var(--transition);
}

.service-card:hover .service-card__accent {
    opacity: 0.12;
    transform: scale(1.5);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--green-700);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--green-600);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--green-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Approach ===== */
.approach {
    padding: 120px 24px;
    background: var(--off-white);
}

.approach-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.approach-left { position: sticky; top: 120px; }

.approach-left .lead { margin-bottom: 0; }

.approach-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.approach-step {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.approach-step:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-200);
    transform: translateX(8px);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-100);
    line-height: 1;
    flex-shrink: 0;
    transition: var(--transition);
}

.approach-step:hover .step-number { color: var(--green-400); }

.approach-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--green-900);
}

.approach-step h3 em {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--green-700);
}

.approach-step p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.approach-step p strong { color: var(--green-800); }

/* ===== CTA Band ===== */
.cta-band {
    background: var(--green-700);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.cta-band-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-band-deco {
    color: var(--green-400);
    opacity: 0.3;
}

.cta-band-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}

.cta-band-attr {
    color: var(--green-200);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cta-band-content { text-align: center; }

.cta-band-cta h3 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-band-cta p {
    color: var(--green-100);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq {
    padding: 120px 24px;
    background: var(--white);
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    border: 1px solid var(--green-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--green-300); }

.faq-item.active { border-color: var(--green-400); box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--green-900);
    transition: var(--transition);
}

.faq-question:hover { color: var(--green-700); }

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--green-500);
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: var(--warm-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--green-700);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-answer a:hover { color: var(--green-500); }

/* ===== Contact ===== */
.contact {
    padding: 120px 24px;
    background: var(--off-white);
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info { position: relative; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail__icon {
    width: 48px;
    height: 48px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-600);
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    color: var(--dark);
    font-size: 1rem;
}

.contact-detail a:hover { color: var(--green-700); }

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.contact-form-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    color: var(--green-200);
    opacity: 0.4;
    transform: rotate(15deg);
}

.contact-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    color: var(--green-900);
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--green-100);
    border-radius: var(--radius);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(76,175,80,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray);
    opacity: 0.6;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg { color: var(--green-500); margin: 0 auto 16px; }

.form-success h4 {
    font-size: 1.5rem;
    color: var(--green-800);
    margin-bottom: 8px;
}

.form-success p { color: var(--warm-gray); }

/* ===== Footer ===== */
.footer {
    background: var(--green-900);
    padding: 80px 24px 0;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    color: var(--green-300);
    margin-top: 16px;
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.7;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-links a {
    color: var(--green-300);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact strong {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-contact a {
    color: var(--green-300);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact span { color: var(--green-300); font-size: 0.95rem; }

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--green-400);
    font-size: 0.85rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: var(--green-500) !important;
    max-width: 500px;
    text-align: right;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 500px; }
    .hero-image-wrapper img { height: 480px; }
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-img-secondary { right: 0; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-inner { grid-template-columns: 1fr; gap: 48px; }
    .approach-left { position: static; }
    .cta-band-inner { grid-template-columns: 1fr; text-align: center; }
    .cta-band-deco { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .nav-toggle { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-title { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .hero-float-card { left: 10px; bottom: 20px; }

    .about { padding: 80px 20px; }
    .about-img-main img { height: 360px; }
    .about-img-secondary { position: relative; bottom: 0; right: 0; margin-top: 16px; }
    .about-img-secondary img { width: 100%; height: 200px; }
    .about-deco { display: none; }

    .services { padding: 80px 20px; }
    .services-grid { grid-template-columns: 1fr; }

    .approach { padding: 80px 20px; }
    .approach-step { flex-direction: column; gap: 12px; }
    .step-number { font-size: 1.75rem; }

    .cta-band { padding: 60px 20px; }
    .cta-band-quote { font-size: 1.15rem; }

    .faq { padding: 80px 20px; }
    .faq-question { padding: 18px 20px; font-size: 0.95rem; }
    .faq-answer p { padding: 0 20px 18px; }

    .contact { padding: 80px 20px; }
    .contact-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }

    .footer { padding: 60px 20px 0; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-disclaimer { text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.75rem; }
    .hero-image-wrapper img { height: 360px; }
    .section-title { font-size: 1.75rem; }
    .btn--lg { padding: 16px 32px; font-size: 0.95rem; }
}
