/* =====================================================
   SERVICES PAGE – Editorial Layout
===================================================== */

[data-page="services"] {
  background-color: #eaeaea;
  color: rgba(25, 25, 25, 0.9);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow: hidden;
}

body[data-page="services"] .page-wrapper {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  min-height: 100vh !important;
  padding-top: 30vh !important;
  box-sizing: border-box;
}

[data-page="services"] .services-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.4rem;
  max-width: 62ch;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInInfo 1.2s ease-out forwards;
}

[data-page="services"] .services-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

[data-page="services"] .services-hero p + p {
  margin-top: 0.8rem;
}

[data-page="services"] .services-hero p:first-child {
  opacity: 0.92;
}

[data-page="services"] .services-hero p:last-child {
  opacity: 0.85;
}

[data-page="services"] .site-footer {
  position: fixed;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.7;
  border-top: none;
  letter-spacing: 0.02em;
}

@keyframes fadeInInfo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   Mobile Portrait
===================================================== */

@media (max-width: 768px) {

  body[data-page="services"] .page-wrapper {
    padding-top: 25vh !important;
  }

  [data-page="services"] .services-hero {
    max-width: 55ch;
    gap: 1rem;
    line-height: 1.65;
  }

  [data-page="services"] .services-hero p:first-child {
    font-size: 1rem;
    line-height: 1.6;
  }

  [data-page="services"] .services-hero p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 30ch;
  }
}

/* =====================================================
   Mobile Landscape
===================================================== */

@media (max-width: 900px) and (orientation: landscape) {

  body[data-page="services"] .page-wrapper {
    min-height: auto !important;
    height: auto !important;
    padding-top: 20vh !important;
  }

  [data-page="services"] .services-hero {
    gap: 0.9rem;
    max-width: 60ch;
  }

  [data-page="services"] .services-hero p:first-child {
    font-size: 1.0rem;
  }

  [data-page="services"] .services-hero p:last-child {
    font-size: 0.9rem;
    line-height: 1.55;
    max-width: 32ch;
  }

  [data-page="services"] .site-footer {
    bottom: 0.6rem;
    font-size: 0.75rem;
  }
}