/* =============================================
   SERVICES PAGE STYLES — Hatter Ventures
   ============================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Variables ---------- */
:root {
  --navy:   #0e1932;
  --orange: #e3533a;
  --off-white: #f2f2f2;
  --border: #dde1e7;
  --muted:  #6b7280;
  --white:  #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--navy); background: var(--off-white); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Hero ---------- */
.services-hero {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 0;
}
.services-hero .section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.services-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  margin-top: 0.75rem;
  line-height: 1;
}
.services-hero p {
  margin-top: 1rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
}

/* ---------- Service Grid ---------- */
.services-grid-section { padding: 5rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Service Card ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.service-card:hover { border-color: var(--orange); }
.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-card__image img {
  transform: scale(1.05);
}
.service-card__body { padding: 1.5rem; }
.service-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card__body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- CTA Banner ---------- */
.services-cta {
  margin-top: 4rem;
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.services-cta h2 {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
}
.services-cta p {
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.8);
}

/* ---------- Button ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }
.btn--orange { background: var(--orange); color: var(--white); }
