:root {
  --primary-green: #3c5d47;
  --accent-blue: #1e2d3a;
  --accent-blue-dark: #17232e;
  --warm-grey: #7a7a7a;
  --dark-charcoal: #2b2b2b;
  --muted-olive: #5e6d5a;
  --cool-slate: #495057;
  --cream-white: #eae7dc;
  --golden-yellow: #a7965e;
  --card-radius: 18px;
  --maxw: 1200px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--dark-charcoal);
  color: var(--cream-white);
}
.container {
  width: min(92%, var(--maxw));
  margin-inline: auto;
}

/* Hero with parallax background */
.hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
  text-align: center;
  color: var(--cream-white);
  background: url("/imgs/services/hero-background.jpg") center/cover no-repeat
    fixed;
  background-attachment: fixed;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero > .container {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

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

@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}

.kicker {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--warm-grey);
}
.title {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  margin: 0.75rem 0;
}
.subtitle {
  color: var(--cream-white);
  max-width: 60ch;
  margin: 0 auto;
}

.hero-cta {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
}
.btn-primary {
  background: var(--primary-green);
  color: var(--cream-white);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--cream-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 12px var(--golden-yellow);
}

/* Section */
.section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--golden-yellow);
}
.section p.lead {
  text-align: center;
  color: var(--warm-grey);
  margin: 0 auto 2rem;
  max-width: 65ch;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--accent-blue);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s ease;
  border: 1px solid var(--accent-blue-dark);
}
.card:hover {
  transform: translateY(-3px);
}
.card-media {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 1.25rem;
}
.card-title {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
  color: var(--cream-white);
}
.card-text {
  color: var(--warm-grey);
}
.meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.25rem 1.25rem;
}
.price {
  color: var(--golden-yellow);
  font-weight: bold;
}

/* Process */
.process {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
@media (max-width: 980px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .process {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--accent-blue);
  border: 1px solid var(--accent-blue-dark);
  border-radius: 14px;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.step h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.1rem;
  color: var(--cream-white);
}
.step p {
  margin: 0;
  color: var(--warm-grey);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.35rem;
  background: var(--primary-green);
  color: var(--cream-white);
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .testimonials {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .testimonials {
    grid-template-columns: 1fr;
  }
}

.quote {
  background: var(--accent-blue);
  border: 1px solid var(--accent-blue-dark);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.quote p {
  margin: 0 0 0.75rem;
  color: var(--warm-grey);
}
.quote .who {
  color: var(--cream-white);
  font-weight: 600;
}

/* FAQ */
details {
  background: var(--accent-blue);
  border: 1px solid var(--accent-blue-dark);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
details + details {
  margin-top: 0.75rem;
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream-white);
}
details p {
  color: var(--warm-grey);
}

/* CTA */
.cta {
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background: var(--accent-blue-dark);
  border-top: 1px solid var(--accent-blue-dark);
}
.cta h2 {
  color: var(--golden-yellow);
}
.cta p {
  color: var(--warm-grey);
}
