/* ============================================
   Rainbow Restaurant Equipment Supplies
   Custom Styles
   ============================================ */

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

:root {
    --green-900: #0d3b1e;
    --green-800: #1a5632;
    --green-700: #2d7a4a;
    --green-600: #3a9d5e;
    --green-500: #4ade80;
    --green-100: #dcfce7;
    --green-50:  #f0fdf4;

    --cream:      #faf9f6;
    --cream-dark: #f3f1ec;
    --cream-mid:  #eae7df;
    --white:      #ffffff;
    --black:      #0f1a14;
    --gray-900:   #1a2332;
    --gray-700:   #374151;
    --gray-600:   #4b5563;
    --gray-500:   #6b7280;
    --gray-400:   #9ca3af;
    --gray-200:   #e5e7eb;
    --gray-100:   #f3f4f6;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'Inter', system-ui, sans-serif;

    --shadow-sm:  0 1px 3px rgba(13,59,30,0.08), 0 1px 2px rgba(13,59,30,0.04);
    --shadow-md:  0 4px 16px rgba(13,59,30,0.10), 0 2px 4px rgba(13,59,30,0.06);
    --shadow-lg:  0 12px 40px rgba(13,59,30,0.14), 0 4px 12px rgba(13,59,30,0.08);
    --shadow-xl:  0 24px 60px rgba(13,59,30,0.16), 0 8px 20px rgba(13,59,30,0.10);

    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --radius-xl:  24px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 600;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 86, 50, 0.08);
    transition: box-shadow var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-800);
    letter-spacing: -0.02em;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray-500);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Nav */
.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-list a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover {
    color: var(--green-800);
    background: var(--green-50);
}

/* Nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
}
.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after  { top:  7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after  { top: 0; transform: rotate(-45deg); }

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-outline-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-color: var(--green-800);
    color: var(--green-800);
    background: transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all var(--transition);
}
.btn-outline-sm:hover {
    background: var(--green-800);
    color: white;
}

.btn-primary {
    background: var(--green-800);
    color: white;
    border-color: var(--green-800);
}
.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-white {
    background: white;
    color: var(--green-800);
    border-color: white;
}
.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    transform: translateY(-2px);
}

/* ---------- SECTION COMMON ---------- */
.section-header {
    margin-bottom: 56px;
}
.section-header.text-center { text-align: center; }
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-700);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--green-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(45,122,74,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(74,222,128,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-800);
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--green-900);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.text-gradient {
    background: linear-gradient(135deg, var(--green-700) 0%, var(--green-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-description {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}
.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.hero-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(13,59,30,0.85) 0%, transparent 100%);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stat Cards */
.stat-cards {
    position: absolute;
    bottom: -40px;
    left: -40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 180px;
    border-left: 4px solid var(--green-500);
}
.stat-card--1 { border-left-color: var(--green-500); }
.stat-card--2 { border-left-color: var(--green-700); }
.stat-card--3 { border-left-color: var(--green-600); }
.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-800);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ---------- SERVICES ---------- */
.services {
    padding: 100px 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-700), var(--green-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-100);
    background: var(--white);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-bottom: 20px;
    transition: all var(--transition);
}
.service-card:hover .service-icon {
    background: var(--green-800);
    border-color: var(--green-800);
    color: white;
}
.service-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 12px;
}
.service-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
    font-weight: 500;
}
.service-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 0;
    background: var(--cream);
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--cream);
}
.about-img-secondary img {
    width: 400px;
    height: 280px;
    object-fit: cover;
}
.about-accent {
    position: absolute;
    top: -20px;
    right: 40px;
    color: var(--green-500);
    opacity: 0.6;
}
.about-content { padding-top: 20px; }
.about-body {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
}
.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.value-icon {
    width: 44px;
    height: 44px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    flex-shrink: 0;
}
.value-item strong {
    display: block;
    font-size: 1rem;
    color: var(--green-900);
    margin-bottom: 4px;
}
.value-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ---------- WHY US ---------- */
.why {
    padding: 100px 0;
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}
.why::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 90%, rgba(74,222,128,0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(74,222,128,0.08) 0%, transparent 40%);
    pointer-events: none;
}
.why .section-tag { color: var(--green-500); }
.why .section-tag::before { background: var(--green-500); }
.why .section-title { color: white; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}
.why-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
}
.why-item:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(74,222,128,0.3);
    transform: translateY(-4px);
}
.why-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(74,222,128,0.25);
    line-height: 1;
    margin-bottom: 16px;
}
.why-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.why-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 100px 0;
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,59,30,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: white;
    z-index: 1;
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--transition);
}
.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}
.gallery-caption strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.gallery-caption span {
    font-size: 0.85rem;
    opacity: 0.8;
}
.gallery-item--large {
    grid-column: span 7;
}
.gallery-item--large img { height: 400px; }
.gallery-item img { height: 220px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cta-content { max-width: 560px; }
.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}
.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    flex-shrink: 0;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 100px 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 36px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-800);
    margin-bottom: 4px;
    font-weight: 600;
}
.contact-item p {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.contact-item a {
    color: var(--gray-700);
    transition: color var(--transition);
}
.contact-item a:hover { color: var(--green-700); }

/* Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--cream-mid);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-900);
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--gray-900);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(74,222,128,0.15);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}
.form-note {
    font-size: 0.82rem;
    color: var(--gray-500);
    text-align: center;
}
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--green-900);
}
.form-success p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 320px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--green-900);
    color: rgba(255,255,255,0.7);
    padding: 72px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-top: 20px;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-500); }
.footer address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green-500); }

/* ---------- ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .hero-visual { max-width: 560px; }
    .stat-cards {
        position: relative;
        bottom: auto;
        left: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .stat-card { min-width: auto; flex: 1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 48px; }
    .about-img-main img { height: 480px; }
    .about-img-secondary img { width: 280px; height: 200px; }
    .contact-grid { gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .header-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-list {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(250,249,246,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(26,86,50,0.1);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-list a {
        padding: 14px 16px;
        font-size: 1rem;
        width: 100%;
    }
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: clamp(2rem, 8vw, 2.75rem); }
    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { margin-bottom: 20px; }
    .about-img-main img { height: 360px; }
    .about-img-secondary { position: relative; bottom: auto; right: auto; margin-top: -40px; margin-left: 24px; }
    .about-img-secondary img { width: 100%; max-width: 320px; height: 200px; }
    .about-accent { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 12; }
    .gallery-item--large img,
    .gallery-item img { height: 220px; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-actions { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form-wrapper { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .stat-cards { flex-direction: column; }
    .stat-card { min-width: auto; }
    .gallery-grid { gap: 12px; }
}
