/* ============================================
   SERVICES PAGE  — Travel All Season
============================================= */
:root {
  --forest: #1A3C34;
  --amber:  #D4883A;
  --teal:   #2A7D6F;
  --cream:  #FAF7F2;
  --white:  #FFFFFF;
}

.services-section {
  padding: 6rem 8%;
  background: var(--white);
}
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-header .section-subtitle {
  margin: 0 auto;
  max-width: 560px;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: var(--cream);
  border: 1.5px solid rgba(200,191,176,0.5);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.svc-card:hover {
  box-shadow: 0 12px 36px rgba(26,60,52,0.1);
  transform: translateY(-4px);
  border-color: var(--teal);
}
.svc-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.svc-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 0.5rem;
}
.svc-short {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.6rem;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.svc-desc { font-size: 0.875rem; color: #6b635c; line-height: 1.7; }

/* CTA strip */
.services-cta {
  background: var(--forest);
  padding: 5rem 8%;
  text-align: center;
  color: var(--white);
}
.services-cta-inner { max-width: 560px; margin: 0 auto; }
.services-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.services-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .services-cards-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-cards-grid { grid-template-columns: 1fr; }
  .services-section { padding: 4rem 5%; }
}
