/* ============================================================
   LITTLE FOREST MONTESSORI — Main Stylesheet
   ============================================================ */

/* ===== VARIABLES ===== */
:root {
  --forest:      #2d5a27;
  --forest-mid:  #4a7c42;
  --sage:        #7a9e6e;
  --cream:       #f8f3ea;
  --warm:        #fdf6e8;
  --bark:        #c0622f;
  --bark-light:  #e07a4a;
  --sand:        #e8d8b8;
  --text:        #2a2a1e;
  --muted:       #6b6b55;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(45, 90, 39, 0.10);
  --radius:      18px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: 'Nunito', sans-serif;
  background: var(--warm);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ===== NAVIGATION ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 243, 234, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--sand);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img {
  height: 52px; width: 52px;
  object-fit: contain; border-radius: 50%;
}
.nav-brand {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem; color: var(--forest); line-height: 1;
}
.nav-brand span {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bark); margin-top: 2px;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 600; color: var(--forest);
  letter-spacing: 0.04em; padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover      { color: var(--bark); border-bottom-color: var(--bark); }
.nav-links a.active     { color: var(--bark); border-bottom-color: var(--bark); }
.nav-cta {
  background: var(--bark) !important; color: var(--white) !important;
  border: none !important; padding: 8px 20px !important;
  border-radius: 50px !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--bark-light) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2.5px;
  background: var(--forest); border-radius: 2px; transition: all 0.3s;
}
.nav-mobile {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: var(--cream); padding: 1.5rem 5%;
  flex-direction: column; gap: 1rem;
  border-bottom: 2px solid var(--sand); z-index: 99;
}
.nav-mobile a {
  font-size: 1rem; font-weight: 600; color: var(--forest);
  padding: 8px 0; border-bottom: 1px solid var(--sand);
}
.nav-mobile.open { display: flex; }

/* ===== HERO ===== */
#home {
  min-height: 92vh;
  background: linear-gradient(160deg, var(--cream) 0%, #edf5e4 55%, #d9eccc 100%);
  display: flex; align-items: center;
  padding: 6rem 5% 4rem;
  gap: 3rem;
  position: relative; overflow: hidden;
}
#home::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 180px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 180'%3E%3Cpath fill='%23f8f3ea' d='M0,120 C360,60 720,160 1080,80 C1260,40 1380,100 1440,90 L1440,180 L0,180 Z'/%3E%3C/svg%3E")
    no-repeat bottom / cover;
}
.hero-text { flex: 1; max-width: 600px; z-index: 1; }
.hero-tag {
  display: inline-block; background: var(--bark); color: var(--white);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 5px 16px; border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--forest); line-height: 1.15; margin-bottom: 0.4rem;
}
.hero-text h1 em  { font-style: italic; color: var(--bark); }
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
  margin: 1.2rem 0 2rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--bark); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--bark-light); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--forest);
  padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: 2.5px solid var(--forest);
  transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--forest); color: var(--white); }

.hero-img {
  flex: 1; max-width: 460px; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.hero-img img {
  width: 340px;
  filter: drop-shadow(0 12px 32px rgba(45, 90, 39, 0.18));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0);    }
  50%      { transform: translateY(-12px); }
}
.hero-badges { display: flex; gap: 0.7rem; flex-wrap: wrap; justify-content: center; }
.badge {
  background: var(--white); border: 1.5px solid var(--sand);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
  display: flex; align-items: center; gap: 6px;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--forest-mid); }

/* ===== SECTION HELPERS ===== */
section { padding: 5rem 5%; }
.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bark); margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--forest); line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--bark); }
.section-desc {
  font-size: 1rem; color: var(--muted);
  line-height: 1.8; max-width: 600px;
}
.centered      { text-align: center; }
.centered .section-desc { margin: 0 auto; }
.divider {
  width: 60px; height: 3px;
  background: var(--bark); border-radius: 2px;
  margin: 1rem 0 2rem;
}
.centered .divider { margin: 1rem auto 2.5rem; }

/* ===== ABOUT ===== */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-card {
  background: linear-gradient(135deg, #edf5e4 0%, #d9eccc 100%);
  border-radius: 28px; padding: 2.5rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.about-card blockquote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem; color: var(--forest); line-height: 1.4;
}
.about-stat-row { display: flex; gap: 1.2rem; }
.about-stat {
  background: var(--white); border-radius: 14px;
  padding: 1rem 1.2rem; flex: 1; text-align: center;
  box-shadow: var(--shadow);
}
.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--bark); font-weight: 600;
}
.about-stat .lbl { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-top: 2px; }
.about-content .mission,
.about-content .vision {
  background: var(--cream); border-left: 4px solid var(--forest);
  border-radius: 0 12px 12px 0; padding: 1.2rem 1.4rem; margin-bottom: 1.2rem;
}
.about-content .mission h3,
.about-content .vision h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--forest); margin-bottom: 0.5rem;
}
.about-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

/* ===== VALUES ===== */
#values { background: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.value-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid transparent;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(45, 90, 39, 0.14);
}
.value-card:nth-child(1) { border-top-color: var(--forest);      }
.value-card:nth-child(2) { border-top-color: var(--bark);        }
.value-card:nth-child(3) { border-top-color: var(--sage);        }
.value-card:nth-child(4) { border-top-color: var(--bark-light);  }
.value-card:nth-child(5) { border-top-color: var(--forest-mid);  }
.value-icon  { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; color: var(--forest); margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ===== PROGRAMS ===== */
#programs { background: var(--white); }
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem; margin-top: 2.5rem;
}
.program-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform 0.2s;
}
.program-card:hover { transform: translateY(-6px); }
.program-head { padding: 2rem 1.8rem 1.4rem; }
.program-card:nth-child(1) .program-head { background: linear-gradient(135deg, #c8e6c9, #a5d6a7); }
.program-card:nth-child(2) .program-head { background: linear-gradient(135deg, #ffe0b2, #ffcc80); }
.program-card:nth-child(3) .program-head { background: linear-gradient(135deg, #b2dfdb, #80cbc4); }
.program-card:nth-child(4) .program-head { background: linear-gradient(135deg, #d0c8e6, #b0a5d6); }
.program-emoji { font-size: 2.8rem; margin-bottom: 0.8rem; }
.program-head h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--forest);
}
.program-head .age {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; color: var(--forest); margin-top: 6px;
}
.program-body { background: var(--white); padding: 1.5rem 1.8rem; }
.program-body p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }
.program-body ul { margin-top: 0.8rem; display: flex; flex-direction: column; gap: 0.45rem; }
.program-body ul li {
  font-size: 0.875rem; color: var(--muted);
  padding-left: 1.2rem; position: relative;
}
.program-body ul li::before {
  content: '🌿'; position: absolute; left: 0; font-size: 0.7rem; top: 3px;
}

/* ===== MONTESSORI APPROACH ===== */
#approach {
  background: linear-gradient(135deg, #2d5a27 0%, #4a7c42 100%);
  color: var(--white);
}
#approach .section-label { color: #a8d5a0; }
#approach .section-title  { color: var(--white); }
#approach .section-desc   { color: rgba(255, 255, 255, 0.8); }
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.approach-list { display: flex; flex-direction: column; gap: 1.2rem; }
.approach-item { display: flex; gap: 1rem; align-items: flex-start; }
.approach-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.approach-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.approach-item p  { font-size: 0.875rem; color: rgba(255, 255, 255, 0.75); line-height: 1.6; }
.approach-quote {
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px; padding: 2.5rem;
}
.approach-quote blockquote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem; color: var(--white); line-height: 1.5; margin-bottom: 1rem;
}
.approach-quote cite {
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.65);
  font-style: normal; font-weight: 600;
}

/* ===== GALLERY ===== */
#gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem; margin-top: 2.5rem;
  border-radius: var(--radius); overflow: hidden;
}
.gallery-item { border-radius: 0; overflow: hidden; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--white);
  transition: transform 0.3s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-item:nth-child(1) .gallery-placeholder { background: linear-gradient(135deg, #4a7c42, #2d5a27); font-size: 3rem; }
.gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(135deg, #c8a882, #a07850); }
.gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(135deg, #7aab6e, #4d8040); }
.gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(135deg, #c0622f, #a04820); }
.gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(135deg, #90b880, #608050); }
.gallery-caption { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.gallery-hint {
  text-align: center; color: var(--muted);
  font-size: 0.85rem; margin-top: 1rem; font-style: italic;
}

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--white); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.testi-card { background: var(--cream); border-radius: var(--radius); padding: 2rem; }
.testi-quote {
  font-size: 3rem; color: var(--bark); line-height: 1;
  margin-bottom: 0.5rem; font-family: 'Playfair Display', serif;
}
.testi-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; margin-top: 1.2rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--forest-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.testi-author .name  { font-weight: 700; color: var(--forest); font-size: 0.92rem; }
.testi-author .role  { font-size: 0.78rem; color: var(--muted); }
.stars { color: var(--bark); font-size: 0.85rem; letter-spacing: 2px; }

/* ===== CONTACT ===== */
#contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--white); padding: 1.2rem 1.4rem;
  border-radius: 14px; box-shadow: var(--shadow);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; width: 42px; text-align: center; }
.contact-item h4 {
  font-size: 0.85rem; font-weight: 700; color: var(--forest);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px;
}
.contact-item p,
.contact-item a { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.contact-item a:hover { color: var(--bark); }
.whatsapp-btn {
  display: flex; align-items: center; gap: 0.7rem;
  background: #25D366; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: background 0.2s, transform 0.15s;
  justify-content: center; text-align: center;
}
.whatsapp-btn:hover { background: #20bd5a; transform: translateY(-2px); }

/* Form */
.contact-form {
  background: var(--white); border-radius: var(--radius);
  padding: 2.5rem; box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--forest); margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 700;
  color: var(--forest); margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 10px 14px;
  border: 2px solid var(--sand); border-radius: 10px;
  font-family: 'Nunito', sans-serif; font-size: 0.92rem; color: var(--text);
  background: var(--warm); transition: border-color 0.2s; outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--forest); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 13px;
  background: var(--bark); color: var(--white);
  border: none; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.form-submit:hover    { background: var(--bark-light); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 0.78rem; color: var(--muted);
  text-align: center; margin-top: 0.8rem;
}

/* ===== SUCCESS MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0, 0, 0, 0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: 24px;
  padding: 3rem 2.5rem; max-width: 420px; width: 100%;
  text-align: center; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.85); transition: transform 0.3s;
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-icon { font-size: 4rem; margin-bottom: 1rem; }
.modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--forest); margin-bottom: 0.6rem;
}
.modal-box p  { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.modal-close {
  margin-top: 1.8rem; display: inline-block;
  background: var(--bark); color: var(--white);
  padding: 11px 30px; border-radius: 50px;
  font-weight: 700; font-size: 0.92rem;
  cursor: pointer; border: none;
  font-family: 'Nunito', sans-serif;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--bark-light); }

/* ===== FOOTER ===== */
footer {
  background: var(--forest); color: rgba(255, 255, 255, 0.85);
  padding: 3rem 5% 1.5rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand .logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer-brand img {
  height: 48px; width: 48px;
  object-fit: contain; border-radius: 50%; background: var(--white);
}
.footer-brand .name { font-family: 'Dancing Script', cursive; font-size: 1.4rem; color: var(--white); }
.footer-brand .tagline { font-size: 0.85rem; color: rgba(255, 255, 255, 0.65); line-height: 1.65; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: background 0.2s;
}
.social-btn:hover { background: rgba(255, 255, 255, 0.25); }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 1rem;
}
.footer-col ul  { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  text-align: center; padding-top: 1.5rem;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.45);
}

/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 200;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .approach-grid,
  .contact-grid   { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .gallery-grid   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 680px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  #home       { flex-direction: column-reverse; text-align: center; padding-top: 4rem; }
  .hero-img img { width: 250px; }
  .hero-actions { justify-content: center; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr; height: auto;
    grid-template-rows: 160px 160px 160px 160px 160px;
  }
  .gallery-item:first-child { grid-column: span 1; }
}
