
  :root {
    --rojo: #c0392b;
    --rojo-suave: #e74c3c;
    --rojo-oscuro: #96281b;
    --rojo-claro: #fdf0ef;
    --blanco: #ffffff;
    --gris-claro: #f8f8f6;
    --gris-medio: #e8e4e0;
    --gris-texto: #555;
    --negro-suave: #1a1a1a;
    --sombra: 0 4px 30px rgba(192,57,43,0.12);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Lato', sans-serif;
    background: var(--blanco);
    color: var(--negro-suave);
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--rojo);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    height: 68px;
    box-shadow: 0 2px 20px rgba(192,57,43,0.1);
    transition: all 0.3s ease;
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem; font-weight: 900;
    color: var(--rojo-oscuro);
    letter-spacing: -0.5px;
  }
  .nav-logo span { color: var(--rojo); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--negro-suave);
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative; padding-bottom: 3px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 2px; background: var(--rojo);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--rojo); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    background: var(--rojo); color: var(--blanco) !important;
    padding: 8px 22px !important; border-radius: 3px;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--rojo-oscuro) !important; }
  .nav-cta::after { display: none !important; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: flex-start;
    padding: 0 8%;
    background:
      linear-gradient(120deg, rgba(255,255,255,0.96) 48%, rgba(192,57,43,0.07) 100%),
      url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&q=80') center/cover no-repeat;
    position: relative; overflow: hidden;
  }
  .hero-badge {
    background: var(--rojo); color: var(--blanco);
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; padding: 6px 16px;
    display: inline-block; margin-bottom: 1.5rem;
    animation: fadeDown 0.8s ease forwards;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900; line-height: 1.05;
    color: var(--negro-suave); margin-bottom: 1.4rem;
    animation: fadeUp 0.9s 0.2s ease both;
  }
  .hero-title em { color: var(--rojo); font-style: normal; }
  .hero-sub {
    font-size: 1.15rem; color: var(--gris-texto);
    max-width: 500px; line-height: 1.8; margin-bottom: 2.5rem;
    animation: fadeUp 0.9s 0.4s ease both;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.9s 0.6s ease both;
  }
  .btn-primary {
    background: var(--rojo); color: var(--blanco);
    padding: 14px 36px; font-size: 0.9rem; font-weight: 700;
    text-decoration: none; border-radius: 3px; letter-spacing: 0.05em;
    text-transform: uppercase; transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(192,57,43,0.35);
  }
  .btn-primary:hover { background: var(--rojo-oscuro); transform: translateY(-2px); }
  .btn-secondary {
    border: 2px solid var(--rojo); color: var(--rojo);
    padding: 14px 36px; font-size: 0.9rem; font-weight: 700;
    text-decoration: none; border-radius: 3px; letter-spacing: 0.05em;
    text-transform: uppercase; transition: all 0.3s;
  }
  .btn-secondary:hover { background: var(--rojo); color: var(--blanco); }
  .hero-stats {
    position: absolute; bottom: 60px; left: 8%;
    display: flex; gap: 3rem;
    animation: fadeUp 0.9s 0.8s ease both;
  }
  .stat-item { text-align: left; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 900; color: var(--rojo);
    line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: var(--gris-texto); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
  .hero-accent {
    position: absolute; right: 0; top: 0; bottom: 0; width: 38%;
    background: linear-gradient(135deg, transparent, rgba(192,57,43,0.06));
    pointer-events: none;
  }

  /* ── SECTION BASE ── */
  section { padding: 90px 8%; }
  .section-tag {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--rojo);
    display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
  }
  .section-tag::before { content: ''; width: 30px; height: 2px; background: var(--rojo); }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.15; color: var(--negro-suave);
    margin-bottom: 1.2rem;
  }
  .section-sub {
    font-size: 1.05rem; color: var(--gris-texto); line-height: 1.8;
    max-width: 600px; margin-bottom: 3rem;
  }

  /* ── TERRENOS ── */
  #terrenos { background: var(--gris-claro); }
  .filters {
    display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 2.5rem;
  }
  .filter-btn {
    padding: 8px 22px; border: 2px solid var(--gris-medio);
    background: var(--blanco); border-radius: 25px;
    font-size: 0.85rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; color: var(--gris-texto);
  }
  .filter-btn.active, .filter-btn:hover {
    border-color: var(--rojo); background: var(--rojo); color: var(--blanco);
  }
  .grid-terrenos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2rem;
  }
  .card-terreno {
    background: var(--blanco); border-radius: 6px;
    overflow: hidden; box-shadow: var(--sombra);
    transition: all 0.35s; cursor: pointer;
    opacity: 0; transform: translateY(20px);
  }
  .card-terreno.visible { opacity: 1; transform: translateY(0); }
  .card-terreno:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(192,57,43,0.2); }
  .card-img {
    width: 100%; height: 210px; object-fit: cover; display: block;
    transition: transform 0.5s;
  }
  .card-terreno:hover .card-img { transform: scale(1.04); }
  .card-img-wrap { overflow: hidden; position: relative; }
  .card-badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--rojo); color: var(--blanco);
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 12px; border-radius: 2px;
  }
  .card-body { padding: 1.5rem; }
  .card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 800; color: var(--rojo);
    margin-bottom: 0.5rem;
  }
  .card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; color: var(--negro-suave); }
  .card-specs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.6rem; border-top: 1px solid var(--gris-medio); padding-top: 1rem;
    margin-bottom: 1.2rem;
  }
  .spec-item { display: flex; flex-direction: column; }
  .spec-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rojo); margin-bottom: 2px; }
  .spec-val { font-size: 0.88rem; color: var(--gris-texto); }
  .card-cta {
    display: block; text-align: center; padding: 11px;
    background: transparent; border: 2px solid var(--rojo);
    color: var(--rojo); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    text-decoration: none; border-radius: 3px;
    transition: all 0.3s;
  }
  .card-cta:hover { background: var(--rojo); color: var(--blanco); }

  /* ── MODAL ── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.65); align-items: center; justify-content: center;
  }
  .modal-overlay.open { display: flex; }
  .modal {
    background: var(--blanco); border-radius: 8px;
    max-width: 780px; width: 94%; max-height: 90vh; overflow-y: auto;
    padding: 2.5rem; position: relative;
    animation: fadeUp 0.3s ease;
  }
  .modal-close {
    position: absolute; top: 1.2rem; right: 1.5rem;
    background: none; border: none; font-size: 1.6rem;
    cursor: pointer; color: var(--gris-texto);
  }
  .modal-imgs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0.8rem; margin-bottom: 1.5rem;
  }
  .modal-imgs img { width: 100%; height: 180px; object-fit: cover; border-radius: 4px; }
  .modal-imgs img:first-child { grid-column: span 2; height: 250px; }
  .modal-price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; color: var(--rojo); }
  .modal-title { font-size: 1.3rem; font-weight: 700; margin: 0.4rem 0 1.2rem; }
  .modal-full-specs {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1rem; background: var(--gris-claro);
    padding: 1.2rem; border-radius: 6px; margin-bottom: 1.5rem;
  }
  .modal-spec { display: flex; flex-direction: column; }
  .modal-spec .label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rojo); }
  .modal-spec .val { font-size: 0.95rem; font-weight: 700; color: var(--negro-suave); margin-top: 3px; }
  .modal-desc { font-size: 0.95rem; line-height: 1.8; color: var(--gris-texto); margin-bottom: 1.5rem; }
  .modal-actions { display: flex; gap: 1rem; }

  /* ── QUIENES SOMOS ── */
  #nosotros {
    background: var(--blanco);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }
  .nosotros-imgs {
    position: relative; height: 500px;
  }
  .nosotros-img-main {
    width: 100%; height: 98%; object-fit: cover;
    border-radius: 6px; position: absolute; top: 0; right: 0;
   box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .nosotros-img-sec {
    width: 55%; height: 55%; object-fit: cover;
    border-radius: 6px; position: absolute; bottom: 0; left: 0;
    border: 5px solid var(--blanco);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  .nosotros-stamp {
    position: absolute; bottom: 30px; right: 10px;
    background: var(--rojo); color: var(--blanco);
    padding: 1rem 1.5rem; border-radius: 4px;
    text-align: center;
  }
  .nosotros-stamp .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
  .nosotros-stamp .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
  .values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
  .value-card {
    background: var(--gris-claro); padding: 1.2rem;
    border-left: 3px solid var(--rojo); border-radius: 0 4px 4px 0;
  }
  .value-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--negro-suave); margin-bottom: 0.3rem; }
  .value-card p { font-size: 0.82rem; color: var(--gris-texto); line-height: 1.6; }

  /* ── ATENCION AL CLIENTE ── */
  #Saneamiento {
    background: linear-gradient(135deg, var(--negro-suave) 0%, #2c1010 100%);
    color: var(--blanco); overflow: hidden;
  }
  #Saneamiento .section-title { color: var(--blanco); }
  #Saneamiento .section-sub { color: rgba(255,255,255,0.65); }
  #Saneamiento .section-tag { color: #e8857c; }
  #Saneamiento .section-tag::before { background: #e8857c; }

    /* ── Construcciones ── */

      #Construcciones {
    background: linear-gradient(135deg, var(--negro-suave) 0%, #2c1010 100%);
    color: var(--blanco); overflow: hidden;
  }
  #Construcciones .section-title { color: var(--blanco); }
  #Construcciones .section-sub { color: rgba(255,255,255,0.65); }
  #Construcciones .section-tag { color: #e8857c; }
  #Construcciones .section-tag::before { background: #e8857c; }
  .gallery-strip {
    display: flex; gap: 1rem; overflow-x: auto;
    padding-bottom: 1rem; margin-bottom: 3rem;
    scrollbar-width: thin; scrollbar-color: var(--rojo) transparent;
  }
  .gallery-strip::-webkit-scrollbar { height: 4px; }
  .gallery-strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); }
  .gallery-strip::-webkit-scrollbar-thumb { background: var(--rojo); border-radius: 2px; }
  .gallery-item {
    flex: 0 0 280px; height: 190px; border-radius: 6px; overflow: hidden;
    position: relative; cursor: pointer;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .gallery-item:hover img { transform: scale(1.07); }
  .gallery-item-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--blanco); padding: 1rem 0.8rem 0.6rem;
    font-size: 0.82rem; font-weight: 700;
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-item:hover .gallery-item-caption { opacity: 1; }

  .servicios-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .servicio-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; padding: 2rem 1.5rem;
    transition: all 0.3s;
  }
  .servicio-card:hover { background: rgba(192,57,43,0.25); border-color: var(--rojo); transform: translateY(-4px); }
  .servicio-icon {
    width: 52px; height: 52px; background: var(--rojo);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.2rem;
  }
  .servicio-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
  .servicio-card p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

  /* ── TESTIMONIOS ── */
  .testimonios-wrap {
    margin-top: 4rem;
    display: flex; gap: 1.5rem; overflow-x: auto;
    scrollbar-width: none;
  }
  .testimonios-wrap::-webkit-scrollbar { display: none; }
  .testimonio {
    flex: 0 0 320px; background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px; padding: 1.5rem;
  }
  .testimonio-stars { color: var(--rojo-suave); font-size: 1rem; margin-bottom: 0.8rem; }
  .testimonio p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 1rem; font-style: italic; }
  .testimonio-author { font-size: 0.82rem; font-weight: 700; color: var(--blanco); }
  .testimonio-place { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

  /* ── CONTACTO ── */
  #contacto {
    background: var(--blanco);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: start;
  }
  .contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800; margin-bottom: 1rem; }
  .contact-info p { color: var(--gris-texto); line-height: 1.8; margin-bottom: 2rem; }
  .contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
  .contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
  }
  .contact-icon {
    width: 46px; height: 46px; background: var(--rojo-claro);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0; color: var(--rojo);
  }
  .contact-item strong { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rojo); margin-bottom: 2px; }
  .contact-item span { font-size: 0.93rem; color: var(--gris-texto); }

  .contact-map-wrap { margin-top: 2rem; border-radius: 6px; overflow: hidden; border: 3px solid var(--gris-medio); }
  .contact-map-wrap iframe { display: block; width: 100%; height: 220px; filter: grayscale(30%); }

  /* FORM */
  .contact-form { padding: 2.5rem; background: var(--gris-claro); border-radius: 8px; box-shadow: var(--sombra); }
  .contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem; }
  .contact-form .tagline { font-size: 0.88rem; color: var(--gris-texto); margin-bottom: 1.8rem; }
  .form-group { margin-bottom: 1.2rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--negro-suave); margin-bottom: 0.5rem; }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px;
    border: 2px solid var(--gris-medio); border-radius: 4px;
    font-family: 'Lato', sans-serif; font-size: 0.93rem;
    background: var(--blanco); color: var(--negro-suave);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--rojo);
    box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  .whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%; padding: 14px;
    background: #25D366; color: var(--blanco);
    border: none; border-radius: 4px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; margin-bottom: 0.8rem;
    font-family: 'Lato', sans-serif; text-decoration: none;
  }
  .whatsapp-btn:hover { background: #128C7E; transform: translateY(-1px); }
  .submit-btn {
    width: 100%; padding: 14px;
    background: var(--rojo); color: var(--blanco);
    border: none; border-radius: 4px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    transition: all 0.3s; font-family: 'Lato', sans-serif;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .submit-btn:hover { background: var(--rojo-oscuro); transform: translateY(-1px); }
  .form-success {
    display: none; text-align: center; padding: 2rem;
    background: #f0fdf4; border: 2px solid #22c55e;
    border-radius: 6px; margin-top: 1rem;
  }
  .form-success h4 { color: #16a34a; font-size: 1.1rem; margin-bottom: 0.5rem; }
  .form-success p { color: #4b7a5c; font-size: 0.88rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--negro-suave); color: rgba(255,255,255,0.65);
    padding: 60px 8% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
  }
  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem; font-weight: 900; color: var(--blanco);
    margin-bottom: 1rem;
  }
  .footer-logo span { color: var(--rojo); }
  .footer-desc { font-size: 0.87rem; line-height: 1.8; }
  footer h4 { color: var(--blanco); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
  footer ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
  footer ul a:hover { color: var(--rojo); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p { font-size: 0.83rem; }
  .social-links { display: flex; gap: 0.8rem; }
  .social-link {
    width: 36px; height: 36px; background: rgba(255,255,255,0.08);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.85rem;
    text-decoration: none; transition: all 0.3s;
  }
  .social-link:hover { background: var(--rojo); color: var(--blanco); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── FLOATING WA ── */
  .floating-wa {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    cursor: pointer; transition: all 0.3s; text-decoration: none;
    animation: pulse-wa 2s infinite;
  }
  .floating-wa:hover { transform: scale(1.1); }
  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    #nosotros, #contacto { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .hero-stats { position: relative; bottom: auto; left: auto; margin-top: 2rem; flex-wrap: wrap; gap: 1.5rem; }
    #hero { padding-top: 100px; flex-direction: column; justify-content: center; }
    .nosotros-imgs { height: 320px; }
    .modal-full-specs { grid-template-columns: 1fr 1fr; }
    .modal-imgs img:first-child { height: 180px; }
  }
  @media (max-width: 600px) {
    nav { padding: 0 4%; }
    .nav-links { display: none; }
    section { padding: 60px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .modal-full-specs { grid-template-columns: 1fr; }
    .modal-imgs { grid-template-columns: 1fr; }
    .modal-imgs img:first-child { grid-column: span 1; }
  }
