/* ==========================================================================
   PAGE: Landing (index.php)
   ========================================================================== */

.site-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-5) var(--space-5) 0;
}

/* ---- Hero ---- */
.hero{
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-9) var(--space-5) var(--space-8);
  text-align: center;
}

.hero-eyebrow{
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-softer);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.hero h1{
  font-size: var(--text-3xl);
  max-width: 780px;
  margin: 0 auto var(--space-4);
}

.hero-subtitle{
  font-size: var(--text-md);
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto var(--space-6);
  line-height: var(--leading-loose);
}

.hero-actions{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---- Section shell ---- */
.section{
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
}

.section-header{
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--space-7);
}

.section-header .hero-eyebrow{
  margin-bottom: var(--space-3);
}

.section-header p{
  color: var(--color-text-muted);
  margin: 0;
}

/* ---- Services grid ---- */
.service-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.service-card{
  padding: var(--space-5);
}

.service-card h3{
  margin: var(--space-4) 0 var(--space-2);
  font-size: var(--text-md);
}

.service-card p{
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
  line-height: var(--leading-loose);
}

/* ---- Value props ---- */
.value-section{
  background: var(--color-bg-inset);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
}

.value-item{
  text-align: left;
}

.value-item .value-number{
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.value-item h3{
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.value-item p{
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
  line-height: var(--leading-loose);
}

/* ---- Footer ---- */
.site-footer{
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: var(--space-7) var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.footer-company{
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.footer-company strong{
  color: var(--color-text);
}

.footer-meta{
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

@media (max-width: 640px){
  .hero h1{ font-size: var(--text-2xl); }
  .site-footer{ flex-direction: column; align-items: flex-start; text-align: left; }
}
