/* ============================================================
   Florida Foundation Certs — Shared Stylesheet
   Color palette: Sky Blue / Sunburst Gold / Deep Navy
   ============================================================ */

:root {
  --navy:          #082a35;
  --navy-mid:      #0a3545;
  --blue:          #0a4a5a;
  --blue-light:    #0d6678;
  --blue-pale:     #e4f4f7;
  --gold:          #e8851a;
  --gold-dark:     #c46e10;
  --gold-pale:     #fdf1e4;
  --white:         #ffffff;
  --gray-bg:       #f4f8f9;
  --gray-border:   #d8e4e7;
  --gray-text:     #4a5e65;
  --dark-text:     #082a35;
  --shadow-sm:     0 2px 8px rgba(8,42,53,0.08);
  --shadow-md:     0 4px 18px rgba(8,42,53,0.12);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --max-width:     1100px;
  --font-display:  'Playfair Display', serif;
  --font-body:     'DM Sans', sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- CONTAINER ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.15; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); }
p { color: var(--gray-text); line-height: 1.7; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }
.btn-block { display: block; width: 100%; }

/* ---- SECTION SPACING ---- */
.section { padding: 64px 0; }
.section-sm { padding: 48px 0; }
.section-title { color: var(--navy); margin-bottom: 36px; text-align: center; }
.section-subtitle { color: var(--gray-text); font-size: 1.05rem; margin-top: -20px; margin-bottom: 36px; text-align: center; }

/* ---- CARDS ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  text-align: center;
}
.card-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  color: var(--gold);
}

/* ---- FORM ELEMENTS ---- */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,122,191,0.1);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ---- CALLOUT BOXES ---- */
.callout-blue {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--blue);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.callout-gold {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--gold-dark);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* ---- STEP HEADING ---- */
.step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 18px;
}
.step-num {
  width: 32px; height: 32px;
  background: var(--navy);
  border-radius: 50%;
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-heading h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
}

/* ---- ADDON CARD ---- */
.addon-card {
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 14px;
}
.addon-header { display: flex; align-items: flex-start; gap: 12px; }
.addon-checkbox {
  width: 20px; height: 20px;
  border: 2px solid #bbc5d1;
  border-radius: 4px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--gold);
}
.addon-info h4 { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 4px; }
.addon-price { color: var(--gold-dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.addon-info p { color: var(--gray-text); font-size: 0.87rem; line-height: 1.5; }

/* ---- DIVIDER ---- */
.divider { border: none; border-top: 1.5px solid var(--gray-border); margin: 28px 0; }

/* ---- BADGE ---- */
.badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-phone {
  display: none;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mobile-phone {
  color: var(--gold);
  font-size: 1.3rem;
  text-decoration: none;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 16px 20px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .nav-cta {
  margin-top: 12px;
  text-align: center;
  display: block;
  border-bottom: none;
  padding: 14px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 15% 85%, rgba(10,74,90,0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(232,133,26,0.12) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23ffffff' stroke-width='0.5' stroke-opacity='0.04'/%3E%3C/svg%3E");
  padding: 72px 0 60px;
  text-align: center;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto 40px;
}
.hero-intro-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
.service-card { background: var(--gray-bg); display: flex; flex-direction: column; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--gray-bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.about-list { list-style: none; padding: 0; margin-top: 16px; }
.about-list li {
  padding: 11px 0 11px 30px;
  position: relative;
  color: var(--gray-text);
  font-size: 0.97rem;
  border-bottom: 1px solid var(--gray-border);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.about .card { text-align: left; }
.why-box {
  background: var(--gold-pale);
  border: 1.5px solid rgba(240,165,0,0.3);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.why-box h3 { color: var(--navy); margin-bottom: 14px; }
.why-box p { margin-bottom: 14px; }
.why-box p:last-child { margin-bottom: 0; }
.why-highlight {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.97rem;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.service-area { background: var(--white); }
.city-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.city-item {
  background: var(--gray-bg);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--navy);
}
.area-note { color: var(--gray-text); font-size: 0.92rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--gray-bg); }
.gallery-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-track { display: flex; transition: transform 0.4s ease; }
.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}
.gallery-slide-icon { font-size: 3rem; }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  border: none;
  color: white;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gallery-btn:hover { background: rgba(255,255,255,0.3); }
.gallery-btn.prev { left: 14px; }
.gallery-btn.next { right: 14px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
}
.gallery-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gray-border);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.gallery-dot.active { background: var(--gold); }
.gallery-caption {
  text-align: center;
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--gray-text);
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.order { background: var(--white); }
.order-card {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
}
.order-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 26px 28px;
  color: var(--white);
}
.order-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--white);
}
.order-header p { color: rgba(255,255,255,0.8); font-size: 0.92rem; }
.order-body { padding: 28px 24px; background: var(--white); }
.service-select-label {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.service-option {
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px;
  background: var(--gold-pale);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  cursor: pointer;
}
.service-option-name { font-weight: 700; color: var(--navy); margin-bottom: 4px; font-size: 0.97rem; }
.service-option-price { font-weight: 800; font-size: 1.15rem; color: var(--navy); }
.check-circle {
  width: 30px; height: 30px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.rush-icon {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1rem;
  margin-bottom: 14px;
}
.payment-btn {
  display: block;
  width: 100%;
  background: var(--gold);
  color: var(--white);
  padding: 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.2s;
  font-family: var(--font-body);
}
.payment-btn:hover { background: var(--gold-dark); }
.terms-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-text);
  margin-top: 12px;
}

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { background: var(--gray-bg); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img {
  height: 110px;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 0.8rem; color: var(--gray-text); margin-bottom: 8px; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }
.blog-card-read {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.blog-all-link {
  text-align: center;
  margin-top: 32px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-icon { color: var(--gold); font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
.contact-info-item strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: 0.97rem; }
.contact-info-item a,
.contact-info-item span { color: var(--gray-text); text-decoration: none; font-size: 0.93rem; line-height: 1.55; }
.contact-info-item a:hover { color: var(--blue); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.65; margin-bottom: 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  color: rgba(255,255,255,0.6);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 0.97rem; font-family: var(--font-body); }
.footer-nav-links { list-style: none; }
.footer-nav-links li { margin-bottom: 10px; }
.footer-nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-nav-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; font-size: 0.82rem; }
.footer-bottom-tagline { font-weight: 600; color: rgba(255,255,255,0.85); font-size: 0.88rem; }

/* ============================================================
   BLOG INDEX PAGE
   ============================================================ */
.blog-hero {
  background: var(--navy);
  padding: 56px 0 48px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 14px; }
.blog-hero p { color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto; }
.blog-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 56px 0;
}

/* ============================================================
   ARTICLE PAGE
   ============================================================ */
.article-hero {
  background: var(--navy);
  padding: 56px 0 48px;
}
.article-hero h1 { color: var(--white); margin-bottom: 16px; max-width: 780px; }
.article-meta { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: flex; gap: 16px; flex-wrap: wrap; }
.article-body {
  max-width: 780px;
  margin: 56px auto;
  padding: 0 20px;
}
.article-body h2 {
  color: var(--navy);
  margin: 36px 0 14px;
  font-size: 1.4rem;
}
.article-body h3 {
  color: var(--navy);
  margin: 28px 0 12px;
  font-size: 1.1rem;
}
.article-body p { margin-bottom: 18px; color: var(--gray-text); font-size: 1rem; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; color: var(--gray-text); line-height: 1.8; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--dark-text); }
.article-callout {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 28px 0;
  color: var(--dark-text);
  font-size: 0.97rem;
  line-height: 1.7;
}
.article-cta {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  margin: 48px 0;
}
.article-cta h3 { color: var(--white); margin-bottom: 12px; }
.article-cta p { color: rgba(255,255,255,0.75); margin-bottom: 22px; }

/* ============================================================
   RESPONSIVE — TABLET (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .hero-btns { flex-direction: row; justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-index-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — DESKTOP (900px+)
   ============================================================ */
@media (min-width: 900px) {
  /* Nav */
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .nav-mobile-right { display: none; }
  .nav-phone { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.9rem; text-decoration: none; }
  .nav-phone:hover { color: var(--white); }

  /* Hero */
  .hero { padding: 96px 0 80px; }

  /* Services */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* About */
  .about-grid { grid-template-columns: 1fr 1fr; align-items: start; }

  /* Gallery slide */
  .gallery-slide { aspect-ratio: 16/6; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  /* Blog */
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-index-grid { grid-template-columns: repeat(3, 1fr); }

  /* City grid */
  .city-grid { grid-template-columns: repeat(5, 1fr); }
}
