/* ==============================================
   CUSTOM PROPERTIES
   ============================================== */
:root {
    --primary:       #1B5E20;
    --primary-mid:   #2E7D32;
    --primary-light: #43A047;
    --accent:        #66BB6A;
    --light-green:   #C8E6C9;
    --very-light:    #F1F8F2;
    --bg:            #FAFFFE;
    --white:         #FFFFFF;
    --dark:          #0D1F0E;
    --text:          #1C2E1D;
    --text-muted:    #4A6B4C;
    --border:        #D4EDDA;

    --shadow-sm: 0 2px 8px rgba(27, 94, 32, 0.08);
    --shadow-md: 0 8px 32px rgba(27, 94, 32, 0.13);
    --shadow-lg: 0 24px 64px rgba(27, 94, 32, 0.18);

    --radius:    12px;
    --radius-lg: 20px;
    --tr:        0.3s ease;
    --max-w:     1200px;
    --font:      'Inter', system-ui, -apple-system, sans-serif;
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { font-family: var(--font); }

/* ==============================================
   LAYOUT
   ============================================== */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 100px 0; }

/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
p  { color: var(--text-muted); line-height: 1.75; }

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-light);
    background: var(--light-green);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}
.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 72px;
}
.section-header h2 { margin-bottom: 16px; }
.required { color: var(--primary-light); }

/* ==============================================
   BUTTONS
   ============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--tr);
    white-space: nowrap;
    letter-spacing: 0.01em;
}
.btn-primary {
    background: var(--primary-mid);
    color: var(--white);
    border-color: var(--primary-mid);
}
.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(46, 125, 50, 0.38);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--primary-mid);
    border-color: var(--white);
    font-weight: 700;
}
.btn-white:hover {
    background: var(--very-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}
.btn-full { width: 100%; }

/* ==============================================
   NAVIGATION
   ============================================== */
.nav-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 900;
    padding: 22px 0;
    transition: background var(--tr), box-shadow var(--tr), padding var(--tr);
}
.nav-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* ---- Logo Box (shared: nav + footer) ---- */
.logo-box {
    display: inline-block;
    position: relative;
    background: var(--primary-mid);
    border-radius: 5px;
    padding: 8px 13px 9px;
    line-height: 1;
    flex-shrink: 0;
}
.logo-drop {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    height: 70%;
    width: auto;
    opacity: 0.18;
    pointer-events: none;
}
.logo-line1 {
    display: block;
    font-family: var(--font);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.1em;
    line-height: 1;
}
.logo-line2 {
    display: block;
    width: 100%;
    font-family: var(--font);
    font-size: 0.42rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    text-align: justify;
    text-align-last: justify;
    margin-top: 5px;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--tr);
}
.nav-links a:hover:not(.nav-cta) {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
}
.nav-header.scrolled .nav-links a:not(.nav-cta) {
    color: var(--text);
}
.nav-header.scrolled .nav-links a:hover:not(.nav-cta) {
    background: var(--very-light);
    color: var(--primary);
}
.nav-cta {
    background: var(--primary-mid) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
}
.nav-cta:hover { background: var(--primary) !important; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--tr);
}
.nav-header.scrolled .nav-burger span { background: var(--text); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--tr);
}
.nav-overlay.visible { opacity: 1; }

@media (max-width: 820px) {
    .nav-burger { display: flex; }
    .nav-overlay { display: block; }
    .nav-links {
        position: fixed;
        top: 0; right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 88px 28px 40px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transition: right var(--tr);
        z-index: 999;
    }
    .nav-links.open { right: 0; }
    .nav-links a {
        color: var(--text) !important;
        font-size: 1rem;
        width: 100%;
        padding: 12px 16px;
    }
    .nav-links a:hover:not(.nav-cta) {
        background: var(--very-light) !important;
        color: var(--primary) !important;
    }
    .nav-cta { margin-top: 8px; justify-content: center; }
}

/* ==============================================
   HERO
   ============================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../img/onamcoy3livva0pzioen.webp') center 60% / cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(8, 28, 9, 0.88) 0%,
        rgba(27, 94, 32, 0.70) 55%,
        rgba(46, 125, 50, 0.42) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 112px;
    padding-bottom: 80px;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(129, 199, 132, 0.18);
    border: 1px solid rgba(129, 199, 132, 0.45);
    color: #A5D6A7;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 28px;
}
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title em { font-style: normal; color: #A5D6A7; }
.hero-sub {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
    margin-bottom: 44px;
    line-height: 1.8;
}
.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stat { color: var(--white); }
.stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 800;
    color: #A5D6A7;
    line-height: 1;
    margin-bottom: 4px;
}
.stat span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.65); font-weight: 500; }


/* ==============================================
   ABOUT
   ============================================== */
.about { background: var(--white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text h2 { color: var(--dark); margin-bottom: 24px; }
.about-text p  { margin-bottom: 16px; }
.about-text p:last-of-type { margin-bottom: 36px; }

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==============================================
   SERVICES
   ============================================== */
.services { background: var(--very-light); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-top: 3px solid var(--primary-mid);
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: all var(--tr);
    position: relative;
}
.service-card:hover {
    border-color: var(--primary-light);
    border-top-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--light-green);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
    display: block;
}
.service-card:hover .service-num {
    color: var(--accent);
}
.service-card h3 { color: var(--dark); margin-bottom: 12px; }
.service-card > p { font-size: 0.88rem; margin-bottom: 20px; flex-shrink: 0; }

.price-table {
    border-top: 1.5px solid var(--border);
    padding-top: 16px;
    margin-top: auto;
    margin-bottom: 14px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.83rem;
    border-bottom: 1px solid rgba(212, 237, 218, 0.6);
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--text-muted); }
.price-row span:last-child  { font-weight: 700; color: var(--primary); white-space: nowrap; }

.service-note {
    display: block;
    font-size: 0.77rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    line-height: 1.5;
}

/* ==============================================
   CTA BANNER
   ============================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, var(--primary-light) 100%);
    padding: 80px 0;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p  { color: rgba(255, 255, 255, 0.8); margin-top: 10px; font-size: 1.05rem; }
.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    font-weight: 600;
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ==============================================
   GALLERY
   ============================================== */
.gallery { background: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 10px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--light-green);
}
.gallery-item:nth-child(1) { grid-column: span 2; }
.gallery-item:nth-child(8) { grid-column: span 2; }
.gallery-item:nth-child(9) { grid-column: span 3; }
.gallery-item:nth-child(10) { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 94, 32, 0.75) 0%, rgba(27, 94, 32, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--tr);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 7px 20px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* ==============================================
   LIGHTBOX
   ============================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 15, 5, 0.94);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    max-width: 92vw;
    max-height: 90vh;
    padding: 0 80px;
}
.lightbox-inner img {
    max-height: 80vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.25s ease;
}
.lightbox-caption {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    text-align: center;
    max-width: 500px;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    transition: all var(--tr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
}
.lightbox-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 0.95rem;
}
.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    font-size: 2rem;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ==============================================
   CONTACT
   ============================================== */
.contact { background: var(--very-light); }
.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
}
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-md);
    border: 1.5px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-family: var(--font);
    font-size: 0.93rem;
    color: var(--text);
    background: var(--bg);
    transition: border-color var(--tr), background var(--tr), box-shadow var(--tr);
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 160, 71, 0.12);
}
.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #D32F2F;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%234A6B4C' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 128px; }
.form-error {
    font-size: 0.78rem;
    color: #D32F2F;
    margin-top: 5px;
    min-height: 18px;
    display: block;
}
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: var(--light-green);
    color: var(--primary);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
    font-size: 0.92rem;
    justify-content: center;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-info { padding-top: 8px; }
.contact-info h3 { color: var(--dark); margin-bottom: 32px; font-size: 1.35rem; }

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}
.info-icon {
    width: 42px;
    height: 42px;
    background: var(--light-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-mid);
    margin-top: 2px;
}
.info-icon svg { width: 18px; height: 18px; }
.info-item strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.info-item a,
.info-item address,
.info-item span {
    display: block;
    color: var(--dark);
    font-size: 0.97rem;
    font-weight: 500;
    line-height: 1.5;
}
.info-item a:hover { color: var(--primary-mid); }
.info-note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--light-green);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 8px;
    color: var(--primary);
}
.info-note svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.info-note p { font-size: 0.85rem; color: var(--primary); line-height: 1.6; }

/* ==============================================
   FOOTER
   ============================================== */
.footer {
    background: var(--dark);
    padding: 72px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}
.footer-brand .logo-box {
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    max-width: 280px;
}
.footer-reg {
    margin-top: 14px !important;
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.28) !important;
}
.footer-links h4,
.footer-contact h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a,
.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
    transition: color var(--tr);
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--accent); }
.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.85;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28);
}
.footer-legal-links {
    margin-top: 8px;
    font-size: 0.78rem;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.38);
    text-decoration: underline;
    transition: color var(--tr);
}
.footer-legal-links a:hover { color: var(--accent); }

/* ==============================================
   SCROLL REVEAL
   ============================================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item { min-height: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .gallery-item:nth-child(8) { grid-column: span 1; }
    .gallery-item:nth-child(9) { grid-column: span 2; }
    .gallery-item:nth-child(10) { grid-column: span 2; }
}
@media (max-width: 900px) {
    .section { padding: 72px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-height: 400px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-brand { grid-column: span 2; }
    .cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 680px) {
    .section { padding: 56px 0; }
    .container { padding: 0 18px; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    .gallery-item { aspect-ratio: 1; min-height: unset; }
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(9),
    .gallery-item:nth-child(10) { grid-column: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .lightbox-inner { padding: 0 56px; }
    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }
    .lightbox-prev,
    .lightbox-next { width: 44px; height: 44px; font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-stats { gap: 28px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta-group .btn { width: 100%; justify-content: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* ==============================================
   COOKIE BANNER
   ============================================== */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 24px;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.cookie-banner.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}
.cookie-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-inner p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin: 0;
    flex: 1;
    min-width: 280px;
}
.cookie-inner a {
    color: var(--accent);
    text-decoration: underline;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    border: none;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--tr);
    font-family: var(--font);
}
.cookie-btn-accept {
    background: var(--primary-mid);
    color: var(--white);
}
.cookie-btn-accept:hover { background: var(--primary-light); }
.cookie-btn-decline {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.cookie-btn-decline:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==============================================
   WHATSAPP FLOAT
   ============================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform var(--tr), box-shadow var(--tr);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg {
    width: 28px;
    height: 28px;
}
.cookie-banner:not(.hidden) ~ .whatsapp-float {
    bottom: 92px;
}
