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

:root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --cream-50:  #fefdf8;
    --cream-100: #fefce8;
    --cream-200: #fef9c3;
    --cream-300: #fde68a;
    --warm-100:  #fef7ed;
    --warm-200:  #fdebd0;
    --text-dark:  #1a2e26;
    --text-mid:   #374151;
    --text-light: #6b7280;
    --white:      #ffffff;
    --shadow-sm:  0 1px 3px rgba(6,78,59,0.08), 0 1px 2px rgba(6,78,59,0.06);
    --shadow-md:  0 4px 16px rgba(6,78,59,0.10), 0 2px 4px rgba(6,78,59,0.06);
    --shadow-lg:  0 12px 40px rgba(6,78,59,0.14), 0 4px 12px rgba(6,78,59,0.08);
    --shadow-xl:  0 20px 60px rgba(6,78,59,0.18);
    --radius-sm:  10px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --font-heading: 'Lora', Georgia, serif;
    --font-body:   'Nunito', 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--emerald-700); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius-sm);
    z-index: 9999; font-weight: 700;
}
.skip-link:focus { top: 16px; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--text-dark); }

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    background: rgba(16,185,129,0.10);
    border: 1px solid rgba(16,185,129,0.20);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.75;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(4,120,87,0.35);
}
.btn-primary:hover {
    background: var(--emerald-600);
    box-shadow: 0 6px 20px rgba(4,120,87,0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--emerald-800);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.95);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--emerald-700);
    border: 2px solid var(--emerald-300);
}
.btn-ghost:hover {
    background: var(--emerald-50);
    border-color: var(--emerald-600);
    transform: translateY(-2px);
}

.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(254,253,248,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--emerald-800);
}
.logo-icon { color: var(--emerald-700); }

.logo-light { color: var(--cream-200); }
.logo-light .logo-icon { color: var(--emerald-400); }

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-menu a {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-mid);
    border-radius: 100px;
    transition: all var(--transition);
}
.nav-menu a:hover {
    color: var(--emerald-700);
    background: rgba(16,185,129,0.08);
}

.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    transition: background var(--transition);
}
.nav-toggle:hover { background: rgba(6,78,59,0.06); }
.nav-toggle .close-icon { display: none; }
.nav-toggle[aria-expanded="true"] .hamburger-icon { display: none; }
.nav-toggle[aria-expanded="true"] .close-icon { display: block; }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--emerald-900) 0%, #0a5c42 30%, var(--emerald-700) 60%, #0d8a5e 100%);
    padding: 120px 24px 80px;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-gradient {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(16,185,129,0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(110,231,183,0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(6,78,59,0.4) 0%, transparent 70%);
}
.hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 820px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--cream-200);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}
.hero-badge svg { opacity: 0.9; }

.hero-headline {
    font-size: clamp(1.8rem, 4.5vw, 3.4rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(254,252,232,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(254,252,232,0.75);
    font-size: 0.9rem;
    font-weight: 600;
}
.trust-item svg { color: var(--emerald-400); }

.hero-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    width: 100%;
    color: var(--cream-50);
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== HIGHLIGHTS ===== */
.highlights {
    padding: 0 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.highlight-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(6,78,59,0.06);
    transition: all var(--transition);
}
.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.highlight-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.05));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 20px;
}
.highlight-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.highlight-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== MENU ===== */
.menu {
    padding: 80px 0;
    background: var(--cream-50);
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header .section-desc { margin: 0 auto; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}
.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6,78,59,0.06);
    transition: all var(--transition);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.menu-card-img {
    height: 200px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 24px; }
.menu-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.menu-card-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(16,185,129,0.07);
    border: 1px solid rgba(16,185,129,0.15);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: var(--emerald-800);
}
.menu-note svg { color: var(--emerald-600); flex-shrink: 0; }

.menu-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images { position: relative; }
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -32px; right: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    max-width: 55%;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute;
    top: -20px; right: -20px;
    color: var(--emerald-300);
    opacity: 0.5;
    z-index: -1;
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(6,78,59,0.08);
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ===== VISIT ===== */
.visit {
    padding: 100px 0;
    background: var(--cream-50);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.75;
}

.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6,78,59,0.06);
    transition: all var(--transition);
}
.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.info-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.05));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald-700);
    flex-shrink: 0;
}
.info-card h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--emerald-700);
    margin-bottom: 4px;
}
.info-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.info-card a {
    color: var(--emerald-700);
    font-weight: 600;
    transition: color var(--transition);
}
.info-card a:hover { color: var(--emerald-500); }

.visit-map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-link { display: block; position: relative; }
.map-link img { width: 100%; height: 380px; object-fit: cover; }
.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,78,59,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(2px);
    transition: all var(--transition);
}
.map-link:hover .map-overlay { background: rgba(6,78,59,0.70); }

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--emerald-900) 0%, var(--emerald-700) 100%);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.contact .container { position: relative; z-index: 1; }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact .section-tag { background: rgba(255,255,255,0.15); color: var(--cream-200); border-color: rgba(255,255,255,0.2); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(254,252,232,0.75); margin-bottom: 32px; }

.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channel {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: var(--cream-100);
    font-weight: 600;
    transition: all var(--transition);
}
.contact-channel:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
    transform: translateX(4px);
}
.contact-channel-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--emerald-300);
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(6,78,59,0.12);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 20px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius-sm);
    color: var(--emerald-800);
    font-weight: 600;
    font-size: 0.95rem;
}
.form-success svg { color: var(--emerald-600); flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--emerald-900);
    color: var(--cream-200);
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(254,252,232,0.6);
    line-height: 1.75;
    max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--emerald-400);
    margin-bottom: 16px;
}
.footer-links a {
    display: block;
    padding: 6px 0;
    color: rgba(254,252,232,0.65);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}
.footer-links a:hover { color: var(--cream-100); transform: translateX(4px); }
.footer-contact p {
    font-size: 0.9rem;
    color: rgba(254,252,232,0.6);
    line-height: 1.8;
    margin-bottom: 4px;
}
.footer-contact a {
    color: rgba(254,252,232,0.75);
    font-weight: 600;
    transition: color var(--transition);
}
.footer-contact a:hover { color: var(--emerald-400); }

.footer-bottom {
    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;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(254,252,232,0.4);
}
.footer-bottom p:last-child { color: rgba(254,252,232,0.3); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    background: var(--emerald-700);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    z-index: 999;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--emerald-600);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        background: rgba(254,253,248,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid rgba(6,78,59,0.08);
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-menu a {
        width: 100%;
        padding: 14px 16px;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
    }
    .nav-menu a:hover { background: rgba(16,185,129,0.08); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid,
    .visit-grid,
    .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
    .about-img-secondary { max-width: 50%; bottom: -20px; right: -12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .highlights { padding: 0 0 60px; margin-top: -24px; }
    .highlights-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-cta { flex-direction: column; }
    .menu-cta .btn { width: 100%; justify-content: center; }
    .about-img-secondary { display: none; }
    .about-stats { flex-wrap: wrap; gap: 20px; }
    .contact-form { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
