    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --white: #f7f9fc;
      --blue: #1a5fa8;
      --blue-light: #e8f0fb;
      --blue-mid: #a8c4e8;
      --blue-dark: #0f3d70;
      --green: #1a8c5e;
      --green-light: #e5f5ef;
      --green-mid: #7ecba8;
      --red: #c0392b;
      --red-light: #fdf0ee;
      --amber: #d4820a;
      --amber-light: #fef6e8;
      --ink: #0d1b2a;
      --ink-soft: #3a4a5c;
      --ink-muted: #7a8a9a;
      --border: #d0dce8;
      --surface: #ffffff;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--ink); overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1rem 4rem;
      background: rgba(247,249,252,0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-brand { display: flex; align-items: center; gap: 1rem; }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 300;
      letter-spacing: 0.05em; color: var(--ink); text-decoration: none;
    }
    .nav-logo span { color: #1a8c5e; }
    .nav-divider { width: 1px; height: 1.4rem; background: var(--border); }
    .nav-section {
      font-size: 0.72rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--blue); white-space: nowrap;
    }
    .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
    .nav-links a {
      font-size: 0.8rem; font-weight: 400;
      letter-spacing: 0.06em; text-decoration: none;
      color: var(--ink-soft); transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--blue); }
    .nav-emergency {
      display: flex; align-items: center; gap: 0.5rem;
      background: var(--red); color: white;
      padding: 0.5rem 1.1rem; border-radius: 100px;
      font-size: 0.78rem; font-weight: 500;
      text-decoration: none; transition: background 0.2s;
    }
    .nav-emergency:hover { background: #a93226; }
    .pulse-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: white;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.3); }
    }

    /* HERO */
    .hero {
      padding: 8rem 4rem 5rem;
      background: linear-gradient(160deg, var(--blue-dark) 0%, #1a3a6e 60%, #0d2a50 100%);
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: 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='0.02'%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-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
    .hero-tag {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.9rem; font-weight: 400;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--green-mid); margin-bottom: 1.5rem;
    }
    .hero-tag::before { opacity: 0.5; }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 300; color: white; line-height: 1.1;
      margin-bottom: 1rem;
    }
    .hero-title em { font-style: italic; color: var(--green-mid); }
    .hero-sub {
      font-size: 1rem; color: rgba(255,255,255,0.55);
      font-weight: 300; line-height: 1.7;
      max-width: 56ch; margin-bottom: 2.5rem;
    }

    /* SEARCH BAR */
    .search-wrap {
      background: white; border-radius: 1rem;
      padding: 1.5rem; max-width: 820px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
      margin-bottom: 2rem;
    }
    .search-label {
      font-size: 0.68rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-muted); margin-bottom: 0.8rem; display: block;
    }
    .search-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
    .search-input-wrap {
      flex: 1; min-width: 220px; position: relative;
    }
    .search-icon {
      position: absolute; left: 1rem; top: 50%;
      transform: translateY(-50%);
      color: var(--ink-muted); font-size: 0.9rem; pointer-events: none;
    }
    .search-input {
      width: 100%; padding: 0.85rem 1rem 0.85rem 2.6rem;
      border: 1.5px solid var(--border); border-radius: 0.65rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 300; color: var(--ink);
      background: var(--white); outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .search-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,95,168,0.1); }
    .search-select {
      padding: 0.85rem 2.2rem 0.85rem 1rem;
      border: 1.5px solid var(--border); border-radius: 0.65rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 300; color: var(--ink);
      background: var(--white); outline: none; appearance: none;
      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 d='M1 1l5 5 5-5' stroke='%237a8a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 0.8rem center;
      cursor: pointer; transition: border-color 0.2s;
      min-width: 160px;
    }
    .search-select:focus { border-color: var(--blue); outline: none; }
    .search-btn {
      padding: 0.85rem 2rem; background: var(--blue); color: white;
      border: none; border-radius: 0.65rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .search-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

    /* HERO STATS */
    .hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
    .hero-stat { display: flex; flex-direction: column; gap: 0.2rem; }
    .hero-stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; font-weight: 300; color: white; line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.72rem; text-transform: uppercase;
      letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
    }

    /* EMERGENCY BANNER */
    .emergency-banner {
      background: var(--red); color: white;
      padding: 0.9rem 4rem;
      display: flex; align-items: center; justify-content: center;
      gap: 2rem; flex-wrap: wrap;
    }
    .emergency-banner-title {
      font-size: 0.78rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .emergency-numbers { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .emergency-num {
      display: flex; align-items: center; gap: 0.5rem;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.85rem; font-weight: 500; color: white;
      text-decoration: none; transition: opacity 0.2s;
    }
    .emergency-num:hover { opacity: 0.8; }
    .emergency-num-label { font-size: 0.68rem; opacity: 0.7; font-family: 'DM Sans', sans-serif; font-weight: 300; }

    /* MAIN CONTENT */
    .main-wrap { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; }

    /* SECTION HEADERS */
    .section-header { margin-bottom: 2.5rem; }
    .section-tag {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--blue);
      font-weight: 500; margin-bottom: 0.4rem; display: block;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 300; color: var(--ink); line-height: 1.2;
    }
    .section-title em { font-style: italic; color: var(--blue); }
    .section-sub {
      font-size: 0.88rem; color: var(--ink-muted);
      font-weight: 300; margin-top: 0.4rem;
    }

    /* CATEGORY CARDS */
    .category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 5rem; }
    .category-card {
      background: var(--surface); border: 1.5px solid var(--border);
      border-radius: 1.2rem; padding: 2rem 1.5rem;
      text-decoration: none; transition: all 0.2s;
      display: flex; flex-direction: column; gap: 1rem;
      position: relative; overflow: hidden;
    }
    .category-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      transition: opacity 0.2s;
    }
    .category-card.hospitals::before { background: var(--blue); }
    .category-card.clinics::before { background: var(--green); }
    .category-card.pharmacies::before { background: var(--amber); }
    .category-card.emergency::before { background: var(--red); }
    .category-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(13,27,42,0.1); }
    .category-card.hospitals:hover { border-color: var(--blue); }
    .category-card.clinics:hover { border-color: var(--green); }
    .category-card.pharmacies:hover { border-color: var(--amber); }
    .category-card.emergency:hover { border-color: var(--red); }
    .cat-icon-wrap {
      width: 3rem; height: 3rem; border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .hospitals .cat-icon-wrap { background: var(--blue-light); }
    .clinics .cat-icon-wrap { background: var(--green-light); }
    .pharmacies .cat-icon-wrap { background: var(--amber-light); }
    .emergency .cat-icon-wrap { background: var(--red-light); }
    .cat-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 300; color: var(--ink);
    }
    .cat-count {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.72rem; color: var(--ink-muted);
    }
    .cat-desc { font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; line-height: 1.5; }
    .cat-link {
      font-size: 0.78rem; font-weight: 500; margin-top: auto;
      display: flex; align-items: center; gap: 0.3rem;
    }
    .hospitals .cat-link { color: var(--blue); }
    .clinics .cat-link { color: var(--green); }
    .pharmacies .cat-link { color: var(--amber); }
    .emergency .cat-link { color: var(--red); }

    /* LGA SECTION */
    .lga-section { margin-bottom: 5rem; }
    .lga-filter-bar { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
    .lga-filter-btn {
      padding: 0.45rem 1rem; border-radius: 100px;
      border: 1px solid var(--border); background: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; color: var(--ink-soft);
      cursor: pointer; transition: all 0.2s;
    }
    .lga-filter-btn:hover { border-color: var(--blue); color: var(--blue); }
    .lga-filter-btn.active { background: var(--blue); border-color: var(--blue); color: white; }

    .lga-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .lga-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 1rem; padding: 1.5rem;
      text-decoration: none; transition: all 0.2s;
      display: flex; flex-direction: column; gap: 0.8rem;
    }
    .lga-card:hover { border-color: var(--blue); background: var(--blue-light); transform: translateY(-2px); }
    .lga-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 300; color: var(--ink);
    }
    .lga-stats { display: flex; gap: 0.8rem; flex-wrap: wrap; }
    .lga-stat-pill {
      display: flex; align-items: center; gap: 0.3rem;
      font-size: 0.72rem; color: var(--ink-muted);
      font-weight: 300;
    }
    .lga-stat-dot { width: 6px; height: 6px; border-radius: 50%; }
    .lga-coming {
      font-size: 0.7rem; font-family: 'IBM Plex Mono', monospace;
      color: var(--ink-muted); letter-spacing: 0.08em;
    }
    .lga-phase {
      display: inline-block; font-size: 0.65rem;
      font-family: 'IBM Plex Mono', monospace;
      padding: 0.15rem 0.5rem; border-radius: 100px;
      letter-spacing: 0.08em; font-weight: 500;
    }
    .lga-phase.p1 { background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }
    .lga-phase.p2 { background: var(--green-light); color: var(--green); border: 1px solid var(--green-mid); }
    .lga-phase.soon { background: #f0f0f0; color: var(--ink-muted); border: 1px solid #ddd; }

    /* FEATURED LISTINGS */
    .featured-section { margin-bottom: 5rem; }
    .listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .listing-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: 1rem; padding: 1.5rem;
      transition: box-shadow 0.2s, transform 0.2s;
      display: flex; flex-direction: column; gap: 0.8rem;
    }
    .listing-card:hover { box-shadow: 0 8px 30px rgba(13,27,42,0.08); transform: translateY(-2px); }
    .listing-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
    .listing-type-badge {
      font-size: 0.65rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.2rem 0.6rem; border-radius: 100px;
      white-space: nowrap; flex-shrink: 0;
    }
    .badge-hospital { background: var(--blue-light); color: var(--blue); border: 1px solid var(--blue-mid); }
    .badge-clinic { background: var(--green-light); color: var(--green); border: 1px solid var(--green-mid); }
    .badge-pharmacy { background: var(--amber-light); color: var(--amber); border: 1px solid #f0c060; }
    .badge-emergency { background: var(--red-light); color: var(--red); border: 1px solid #f0a090; }
    .listing-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 300; color: var(--ink);
      line-height: 1.3;
    }
    .listing-address {
      font-size: 0.8rem; color: var(--ink-muted);
      font-weight: 300; line-height: 1.5;
    }
    .listing-phone {
      font-family: 'IBM Plex Mono', monospace;
      font-size: 0.82rem; color: var(--blue);
      font-weight: 400; text-decoration: none;
      transition: color 0.2s;
    }
    .listing-phone:hover { color: var(--blue-dark); }
    .listing-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; }
    .listing-tag {
      font-size: 0.68rem; padding: 0.15rem 0.5rem;
      border-radius: 100px; border: 1px solid var(--border);
      color: var(--ink-muted); font-weight: 300;
    }
    .listing-actions { display: flex; gap: 0.6rem; padding-top: 0.8rem; border-top: 1px solid var(--border); }
    .listing-btn {
      flex: 1; padding: 0.55rem; border-radius: 0.5rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
      font-weight: 500; cursor: pointer; text-align: center;
      text-decoration: none; transition: all 0.2s; border: none;
      display: flex; align-items: center; justify-content: center; gap: 0.3rem;
    }
    .listing-btn.primary { background: var(--blue); color: white; }
    .listing-btn.primary:hover { background: var(--blue-dark); }
    .listing-btn.ghost { background: var(--white); color: var(--ink-soft); border: 1px solid var(--border); }
    .listing-btn.ghost:hover { border-color: var(--blue); color: var(--blue); }
    .verified-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.65rem; color: var(--green);
      font-weight: 400;
    }
    .verified-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

    /* SUGGEST SECTION */
    .suggest-section {
      background: linear-gradient(135deg, var(--blue-dark), #1a3a6e);
      border-radius: 1.5rem; padding: 4rem;
      display: grid; grid-template-columns: 1fr auto;
      gap: 4rem; align-items: center;
      margin-bottom: 5rem; position: relative; overflow: hidden;
    }
    .suggest-section::after {
      content: ''; position: absolute;
      width: 300px; height: 300px; border-radius: 50%;
      background: rgba(255,255,255,0.03);
      right: -80px; top: -80px;
    }
    .suggest-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 300; color: white; line-height: 1.2;
      margin-bottom: 0.5rem;
    }
    .suggest-title em { font-style: italic; color: var(--green-mid); }
    .suggest-sub { font-size: 0.88rem; color: rgba(255,255,255,0.45); font-weight: 300; }
    .suggest-form { display: flex; flex-direction: column; gap: 0.8rem; min-width: 280px; position: relative; z-index: 1; }
    .suggest-input {
      padding: 0.8rem 1rem; border-radius: 0.65rem;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.08); color: white;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      font-weight: 300; outline: none; width: 100%;
      transition: border-color 0.2s;
    }
    .suggest-input::placeholder { color: rgba(255,255,255,0.3); }
    .suggest-input:focus { border-color: rgba(255,255,255,0.4); }
    .suggest-btn {
      padding: 0.85rem; background: var(--green); color: white;
      border: none; border-radius: 0.65rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      font-weight: 500; cursor: pointer; transition: background 0.2s;
    }
    .suggest-btn:hover { background: #16755a; }

    /* FOOTER */
    footer {
      background: var(--ink); padding: 3rem 4rem 2rem;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-top {
      display: flex; justify-content: space-between;
      align-items: flex-start; gap: 3rem;
      margin-bottom: 2rem; flex-wrap: wrap;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 300;
      color: white; margin-bottom: 0.4rem;
    }
    .footer-brand span { color: var(--green-mid); }
    .footer-sub { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-weight: 300; max-width: 28ch; }
    .footer-links-group { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-links-title { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-bottom: 0.3rem; font-weight: 500; }
    .footer-link { font-size: 0.82rem; color: rgba(255,255,255,0.45); text-decoration: none; font-weight: 300; transition: color 0.2s; }
    .footer-link:hover { color: var(--green-mid); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

    /* MOBILE NAV */
    .mobile-nav {
      display: none; position: fixed;
      bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      z-index: 200; background: rgba(13,27,42,0.95);
      backdrop-filter: blur(16px); border-radius: 100px;
      padding: 0.75rem 1.5rem; align-items: center; gap: 1.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3); white-space: nowrap;
    }
    .mobile-nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 300; color: white; text-decoration: none; }
    .mobile-nav-logo span { color: var(--green-mid); }
    .mobile-nav-divider { width: 1px; height: 1.2rem; background: rgba(255,255,255,0.15); }
    .mobile-menu-btn { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; color: rgba(255,255,255,0.8); font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; padding: 0; }
    .mobile-menu-icon { display: flex; flex-direction: column; gap: 3px; }
    .mobile-menu-icon span { display: block; width: 16px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.25s; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.open .mobile-menu-icon span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
    .mobile-menu-drawer { position: fixed; bottom: 5rem; left: 50%; transform: translateX(-50%); z-index: 199; background: rgba(13,27,42,0.98); backdrop-filter: blur(20px); border-radius: 1.2rem; padding: 1.2rem; min-width: 240px; display: none; flex-direction: column; gap: 0.3rem; box-shadow: 0 8px 40px rgba(0,0,0,0.4); }
    .mobile-menu-drawer.open { display: flex; }
    .drawer-link { display: flex; align-items: center; gap: 0.8rem; padding: 0.75rem 1rem; border-radius: 0.75rem; text-decoration: none; font-size: 0.9rem; color: rgba(255,255,255,0.75); font-weight: 300; transition: background 0.15s, color 0.15s; }
    .drawer-link:hover { background: rgba(26,95,168,0.2); color: white; }
    .drawer-link-icon { font-size: 1rem; width: 1.5rem; text-align: center; }
    .drawer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 0.3rem 0; }
    .drawer-emergency { display: flex; align-items: center; justify-content: center; padding: 0.85rem; border-radius: 100px; background: var(--red); color: white; text-decoration: none; font-size: 0.85rem; font-weight: 500; margin-top: 0.3rem; }

    /* REVEAL */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .nav-emergency { display: none; }
      .mobile-nav { display: flex; }
      .hero { padding: 7rem 1.5rem 3rem; }
      .emergency-banner { padding: 0.9rem 1.5rem; gap: 0.8rem; }
      .main-wrap { padding: 3rem 1.5rem; }
      .category-grid { grid-template-columns: 1fr 1fr; }
      .lga-grid { grid-template-columns: 1fr 1fr; }
      .listings-grid { grid-template-columns: 1fr; }
      .suggest-section { grid-template-columns: 1fr; padding: 2.5rem; gap: 2rem; }
      footer { padding: 2.5rem 1.5rem 1.5rem; }
      .footer-top { flex-direction: column; gap: 2rem; }
    }