/* ─── Hero ─────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  background-image: url('../../assets/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--color-charcoal);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(46, 46, 46, 0.88) 0%,
    rgba(46, 46, 46, 0.55) 55%,
    rgba(46, 46, 46, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-3xl);
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.25;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  max-width: 480px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero {
    min-height: 75vh;
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-subtitle {
    font-size: var(--text-md);
  }
}


/* ─── Services section ─────────────────────────────────────────────────── */

.services {
  position: relative;
  overflow: hidden;
}

.services::before {
  content: 'KPA';
  position: absolute;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.15em;
  white-space: nowrap;
  line-height: 1;
}


/* ─── About section ────────────────────────────────────────────────────── */

.about .about-body h2::after {
  display: none;
}

.about .about-body h2 {
  position: relative;
  padding-bottom: var(--space-md);
}

.about .about-body h2::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background-color: var(--color-amber);
  border-radius: var(--radius-full);
}
