:root {
      --color-main: #769461;
      --color-secondary: #D4A574;
      --color-text: #1a1a1a;
      --color-muted: #6b7280;
      --color-bg: #f8f9fa;
      --color-white: #ffffff;
      --color-border: #e5e7eb;
      --radius: 8px;
      --radius-lg: 16px;
      --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
      --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
      --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
      --ease: 0.2s ease;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      color: var(--color-text);
      background: var(--color-white);
      line-height: 1.6;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    /* ── UTILITIES ── */
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
    .section { padding: 4.5rem 0; }

    .section-title {
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }
    .section-title span { color: var(--color-text); }
    .section-subtitle { color: var(--color-muted); font-size: 1rem; max-width: 580px; line-height: 1.7; }
    .section-header { margin-bottom: 2.5rem; }
    .section-header--center { text-align: center; }
    .section-header--center .section-subtitle { margin: 0 auto; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.75rem 1.5rem; border-radius: var(--radius);
      font-weight: 600; font-size: 0.9rem; cursor: pointer;
      border: none; transition: var(--ease); white-space: nowrap; text-decoration: none;
    }
    .btn-primary { background: var(--color-main); color: #fff; }
    .btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }

    .btn-white { background: #fff; color: var(--color-main); }
    .btn-white:hover { background: var(--color-bg); }
    .btn-outline { background: transparent; color: var(--color-main); border: 2px solid var(--color-main); }
    .btn-outline:hover { background: var(--color-main); color: #fff; }
    .btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
    .btn-outline-white:hover { background: rgba(255,255,255,0.15); }

    /* ── HEADER ── */
    .header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(255,255,255,0.97); backdrop-filter: blur(8px);
      box-shadow: var(--shadow); transition: var(--ease);
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .logo { display: flex; align-items: center; gap: 0.625rem; height: 100%; padding: 0.5rem 0; }
    .logo img { height: 100%; max-height: 54px; width: auto; object-fit: contain; }
    .logo-name { font-weight: 700; font-size: 0.95rem; color: var(--color-text); line-height: 1.2; }

    .nav { display: none; gap: 1.75rem; align-items: center; }
    .nav a {
      font-size: 0.875rem; font-weight: 500; color: var(--color-text);
      padding: 0.25rem 0; border-bottom: 2px solid transparent; transition: var(--ease);
    }
    .nav a:hover { color: var(--color-main); border-bottom-color: var(--color-main); }

    .header-cta { display: none; align-items: center; gap: 0.625rem; }

    .burger {
      display: flex; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 0.5rem; border: none; background: none;
    }
    .burger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: var(--ease); }

    /* ── NAV DROPDOWN ── */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger {
      display: flex; align-items: center; gap: 0.3rem;
      font-size: 0.875rem; font-weight: 500; color: var(--color-text);
      background: none; border: none; border-bottom: 2px solid transparent;
      cursor: pointer; padding: 0.25rem 0; font-family: inherit; transition: var(--ease);
    }
    .nav-dropdown-trigger:hover { color: var(--color-main); border-bottom-color: var(--color-main); }
    .nav-dropdown-trigger svg { transition: transform 0.2s ease; }
    .nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }
    .nav-dropdown:hover .nav-dropdown-trigger { color: var(--color-main); border-bottom-color: var(--color-main); }

    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 0.875rem); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #fff; border-radius: var(--radius-lg); padding: 0.375rem;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12); min-width: 210px; z-index: 200;
      opacity: 0; visibility: hidden; border: 1px solid var(--color-border);
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }
    .nav-dropdown:hover .nav-dropdown-menu {
      opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: block; padding: 0.55rem 0.875rem; border-radius: var(--radius);
      font-size: 0.875rem; color: var(--color-text); transition: var(--ease); border-bottom: none;
      white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: var(--color-bg); color: var(--color-main); }

    .mobile-nav {
      display: none; flex-direction: column;
      background: var(--color-white); border-top: 1px solid var(--color-border);
      padding: 1rem 1.25rem 1.5rem; gap: 0;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      padding: 0.875rem 0; font-weight: 500; font-size: 0.95rem;
      border-bottom: 1px solid var(--color-border); color: var(--color-text);
    }
    .mobile-nav a.btn { margin-top: 1rem; border-bottom: none; justify-content: center; }

    /* ── HERO ── */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; background: #111; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0.42;
    }
    .hero-content { position: relative; z-index: 1; padding: 5rem 0 3rem; }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
      color: #fff; padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.82rem; font-weight: 500; margin-bottom: 1.25rem;
      backdrop-filter: blur(4px);
    }
    .hero-trust-badges {
      display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem;
    }
    .hero-trust-badge {
      display: inline-flex; align-items: center; gap: 0.35rem;
      background: rgba(255,255,255,0.13); border: 1px solid rgba(255,255,255,0.28);
      color: #fff; padding: 0.3rem 0.85rem; border-radius: 50px;
      font-size: 0.78rem; font-weight: 500; backdrop-filter: blur(4px);
    }
    .hero-trust-badge::before { content: '✓'; font-size: 0.7rem; opacity: 0.85; }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800;
      color: #fff; line-height: 1.12; margin-bottom: 1rem; max-width: 680px;
    }
    .hero-subtitle {
      font-size: clamp(0.95rem, 2vw, 1.1rem); color: rgba(255,255,255,0.82);
      max-width: 520px; margin-bottom: 2rem; line-height: 1.7;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .hero-social-proof {
      display: flex; align-items: center; gap: 0.75rem;
      margin-top: 2.5rem; color: rgba(255,255,255,0.65); font-size: 0.82rem;
    }
    .stars { color: #fbbf24; letter-spacing: 2px; font-size: 1rem; }
    .hero-social-proof a { color: rgba(255,255,255,0.65); text-decoration: underline; }
    .hero-social-proof a:hover { color: #fff; }

    /* ── ABOUT ── */
    .about { background: var(--color-bg); }
    .about-grid { display: grid; gap: 3rem; align-items: center; }
    .about-text p { color: var(--color-muted); line-height: 1.85; font-size: 1rem; margin-bottom: 1.5rem; }

    .about-social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
    .about-social-link {
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(118,148,96,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--color-main); transition: var(--ease); flex-shrink: 0;
    }
    .about-social-link:hover { background: rgba(118,148,96,0.18); transform: scale(1.08); }
    .about-social-link svg { width: 21px; height: 21px; }

    .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    .stat-card {
      background: var(--color-white); border-radius: var(--radius-lg);
      padding: 1.75rem 1rem 1.5rem; text-align: center;
      border: 1px solid var(--color-border);
    }
    .stat-icon-wrap {
      width: 52px; height: 52px; border-radius: 50%;
      background: rgba(118,148,96,0.1);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1rem;
    }
    .stat-icon-wrap svg { width: 24px; height: 24px; color: var(--color-main); }
    .stat-label { font-size: 0.9rem; font-weight: 600; color: var(--color-text); line-height: 1.35; }

    /* ── SERVICES ── */
    .services { background: var(--color-main); }
    .services .section-title,
    .services .section-title span { color: #fff; }
    .services .section-subtitle { color: rgba(255,255,255,0.8); }
    .services-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
    .service-card {
      background: var(--color-white); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow); transition: var(--ease);
      border: 1px solid var(--color-border);
    }
    .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .service-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
    .service-card-body { padding: 1.25rem; }
    .service-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--color-text); }
    .service-card-body p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.6; }
    .service-accent { height: 3px; background: var(--color-main); width: 36px; border-radius: 2px; margin-top: 0.875rem; }

    .services-more { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.2); }
    .services-more-title {
      font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.7);
      text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
    }
    .services-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .badge {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.4rem 0.9rem; border-radius: 50px; font-size: 0.82rem;
      font-weight: 500; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: #fff;
    }
    .badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--color-main); flex-shrink: 0; }

    /* ── GALLERY CAROUSEL ── */
    .gallery { background: var(--color-bg); overflow: hidden; }
    .gallery-carousel-wrap { position: relative; width: 100%; padding: 0.5rem 0 1rem; }
    .gallery-track {
      display: flex; align-items: center; gap: 1.25rem;
      padding: 1.5rem 0; will-change: transform;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .gallery-slide {
      flex-shrink: 0; width: min(58vw, 620px);
      aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, box-shadow 0.5s ease;
      transform: scale(0.8); opacity: 0.5; cursor: pointer;
    }
    .gallery-slide.adjacent { transform: scale(0.88); opacity: 0.72; }
    .gallery-slide.active { transform: scale(1); opacity: 1; cursor: zoom-in; box-shadow: var(--shadow-lg); }
    .gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

    .gallery-nav-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 46px; height: 46px; border-radius: 50%; z-index: 10;
      background: rgba(255,255,255,0.95); border: none; color: var(--color-text);
      font-size: 1.5rem; line-height: 1; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 12px rgba(0,0,0,0.18); transition: var(--ease);
    }
    .gallery-nav-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
    .gallery-nav-btn:disabled { opacity: 0.25; cursor: default; transform: translateY(-50%); }
    .gallery-prev { left: 1.25rem; }
    .gallery-next { right: 1.25rem; }

    .gallery-dots { display: flex; justify-content: center; gap: 0.5rem; padding-bottom: 0.5rem; }
    .gallery-dot {
      width: 8px; height: 8px; border-radius: 50%; padding: 0; border: none;
      background: rgba(0,0,0,0.18); cursor: pointer; transition: var(--ease);
    }
    .gallery-dot.active { background: var(--color-main); transform: scale(1.3); }

    /* ── LIGHTBOX ── */
    .lb-overlay {
      display: none; position: fixed; inset: 0; z-index: 999;
      background: rgba(0,0,0,0.92); align-items: center; justify-content: center;
    }
    .lb-overlay.open { display: flex; }
    .lb-img {
      max-width: 90vw; max-height: 85vh; object-fit: contain;
      border-radius: var(--radius); box-shadow: 0 25px 50px rgba(0,0,0,0.5);
      user-select: none;
    }
    .lb-btn {
      position: absolute; background: rgba(255,255,255,0.12);
      border: none; color: #fff; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .lb-btn:hover { background: rgba(255,255,255,0.25); }
    .lb-close { top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; font-size: 1.4rem; }
    .lb-prev, .lb-next { top: 50%; transform: translateY(-50%); width: 48px; height: 64px; border-radius: var(--radius); font-size: 1.5rem; }
    .lb-prev { left: 1rem; }
    .lb-next { right: 1rem; }
    .lb-counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.82rem; font-family: inherit; }

    /* ── REVIEWS ── */
    .reviews {
      position: relative; overflow: hidden;
      background: #1a1a1a;
    }
    .reviews::before {
      content: ''; position: absolute; inset: 0;
      background: rgba(0,0,0,0.62);
      z-index: 1;
    }
    .reviews .container { position: relative; z-index: 2; }
    .reviews .section-title, .reviews .section-subtitle { color: #fff; }
    .reviews-grid { display: grid; gap: 1.25rem; }
    @media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr !important; } }
    .review-card {
      background: #fff; border-radius: 12px;
      padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem;
      box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    }
    .review-rating { display: flex; align-items: center; gap: 0.4rem; }
    .review-rating-num { font-size: 1.1rem; font-weight: 700; color: #f59e0b; }
    .review-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.02em; }
    .review-text-wrap { flex: 1; }
    .review-text {
      font-size: 0.88rem; color: #374151; line-height: 1.65;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .review-text.expanded { display: block; }
    .review-more {
      display: none; font-size: 0.82rem; color: #9ca3af;
      cursor: pointer; background: none; border: none; padding: 2px 0 0 0;
    }
    .review-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.5rem; }
    .review-author { font-size: 0.8rem; color: #6b7280; font-style: italic; }
    .review-google { width: 20px; height: 20px; }
    .reviews-cta {
      margin-top: 2.5rem; text-align: center;
      border: 2px solid rgba(255,255,255,0.3); border-radius: 16px;
      padding: 2rem 2.5rem; background: rgba(0,0,0,0.4);
      backdrop-filter: blur(4px);
    }
    .reviews-cta-title { color: #fff; font-size: 1.5rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.5rem; }
    .reviews-cta-stars { color: #f59e0b; font-size: 1.75rem; margin-bottom: 1.25rem; letter-spacing: 0.1em; }
    .reviews-cta-btn { margin: 0 auto; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.85rem 2.5rem; border-radius: 8px; }

    /* ── ZONES ── */
    .zones { background: #f5f3ee; }
    .zones-layout { display: grid; gap: 2.5rem; align-items: start; }
    .zones-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-main); margin-bottom: 0.75rem; }
    .zones .section-title { color: var(--color-text); margin-bottom: 0.75rem; }
    .zones-subtitle { color: var(--color-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
    .zones-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
    .zone-badge {
      padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.875rem;
      font-weight: 500; background: transparent;
      border: 1.5px solid #ccc; color: var(--color-text);
    }
    .zone-badge--active { background: var(--color-main); border-color: var(--color-main); color: #fff; font-weight: 600; }
    .zones-disclaimer { font-style: italic; font-size: 0.875rem; color: var(--color-muted); margin-bottom: 1.5rem; line-height: 1.5; }
    .zones-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
    .zones-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
    .zones-map iframe { width: 100%; height: 420px; border: none; display: block; }
    .btn-ghost { background: rgba(0,0,0,0.07); color: var(--color-text); border-radius: 50px; }
    .btn-ghost:hover { background: rgba(0,0,0,0.12); }

    /* ── CONTACT ── */
    .contact { background: var(--color-bg); }
    .contact-layout { display: grid; gap: 3rem; align-items: start; }

    .contact-checklist { list-style: none; display: flex; flex-wrap: wrap; gap: 0.625rem 1.75rem; margin-top: 1.25rem; }
    .contact-check-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted); }
    .contact-check-icon { color: var(--color-main); font-weight: 700; font-size: 1rem; line-height: 1; flex-shrink: 0; }

    .form-consent { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.82rem; color: var(--color-muted); cursor: pointer; line-height: 1.5; }
    .form-consent input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--color-main); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
    .form-privacy { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--color-muted); margin-top: 0.375rem; }
    .form-privacy svg { width: 12px; height: 12px; flex-shrink: 0; opacity: 0.6; }

    .contact-form { display: flex; flex-direction: column; gap: 0.875rem; }
    .contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
    .form-input {
      width: 100%; padding: 0.875rem 1rem;
      border: 1.5px solid var(--color-border); border-radius: var(--radius);
      font-size: 0.9rem; font-family: inherit; color: var(--color-text);
      background: var(--color-white); transition: border-color var(--ease); outline: none;
    }
    .form-input:focus { border-color: var(--color-main); }
    .form-input::placeholder { color: #aaa; }
    .form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
    .form-textarea { resize: vertical; min-height: 110px; }
    .form-submit { width: 100%; justify-content: center; padding: 1rem; font-size: 0.95rem; border-radius: var(--radius); margin-top: 0.25rem; }

    @media (max-width: 480px) {
      .contact-form-row { grid-template-columns: 1fr; }
    }

    /* ── FOOTER ── */
    .footer { background: #111; color: rgba(255,255,255,0.65); padding: 3rem 0 1.5rem; border-top: 4px solid var(--color-secondary); }
    .footer-grid { display: grid; gap: 2rem; margin-bottom: 2.5rem; }
    .footer-logo { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 0.75rem; }
    .footer-logo img { height: 48px; width: auto; object-fit: contain; }
    .footer-logo span { font-weight: 700; font-size: 1rem; color: #fff; }
    .footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 0.625rem; }
    .footer-contact-info { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0.625rem; }
    .footer-contact-info a { font-size: 0.875rem; transition: var(--ease); display: flex; align-items: center; gap: 0.5rem; }
    .footer-contact-info a svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.6; }
    .footer-contact-info a:hover { color: #fff; }

    .footer-col-title { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.35); margin-bottom: 0.875rem; }
    .footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-nav a, .footer-nav span { font-size: 0.875rem; transition: var(--ease); }
    .footer-nav a:hover { color: #fff; }

    .social-links { display: flex; gap: 0.5rem; margin-top: 1.25rem; }
    .social-link {
      width: 38px; height: 38px; border-radius: var(--radius);
      background: rgba(255,255,255,0.08); display: flex; align-items: center;
      justify-content: center; transition: var(--ease); color: rgba(255,255,255,0.55);
    }
    .social-link:hover { background: var(--color-main); color: #fff; }
    .social-link svg { width: 17px; height: 17px; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem;
      display: flex; flex-direction: column; gap: 0.375rem; font-size: 0.78rem;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 480px) {
      .stats-grid { grid-template-columns: 1fr; }
    }

    @media (min-width: 640px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (min-width: 768px) {
      .section { padding: 5.5rem 0; }
      .nav { display: flex; }
      .header-cta { display: flex; }
      .burger { display: none; }
      .about-grid { grid-template-columns: 1fr 1fr; }
      .zones-layout { grid-template-columns: 1fr 1fr; }
      .contact-layout { grid-template-columns: 1fr 1.3fr; }
      .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
      .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
    }

    @media (min-width: 1024px) {
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .gallery-grid { grid-template-columns: repeat(4, 1fr); }
    }
