/* ============================================
   HOME PAGE LAYOUT – Matches Evermore screenshot
   ============================================ */

/* --- Section spacing (tight, uniform, clean) --- */
section {
  padding: 5px 0;   /* ⬅️ small + consistent spacing between sections */
}

.container.narrow {
  max-width: 1250px;
}

/* --- Section titles --- */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;  /* tighter */
}
.home-page h1,
.home-hero-title {
  font-size: 3rem;        /* ~48px on desktop */
  font-weight: 800;
  line-height: 1.15;
  margin-top: 1rem;       /* small breathing room */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .home-page h1,
  .home-hero-title {
    font-size: 2.4rem;    /* ~38px on mobile */
  }
}

@media (max-width: 480px) {
  .home-page h1,
  .home-hero-title {
    font-size: 2rem;      /* ~32px for small screens */
  }
}

/* ============================
   WHY EVERMORE
   ============================ */
.why-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);

  

  max-width: 1250px;     /* ⬅️ perfectly aligns with rest of site */
  margin: 0 auto;        /* center it */
}

.why-list {
  margin: 0;
  padding-left: 20px;
}

.why-list li {
  margin: 8px 0;
  line-height: 1.4;
}

.why-note {
  margin-top: 12px;
  font-size: 15px;
}

/* ============================
   SERVICES GRID
   ============================ */
.svc-grid {
  max-width: 1250px;   /* ⬅️ align with layout */
  margin: 0 auto;      /* center it */
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 5px;            /* spacing between cards */
}

.svc-mini {
  background: #ffffff;
  padding: 20px;        /* tighter */
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  section {
    padding: 24px 0; /* slightly smaller on mobile */
  }
}
