/* Services — page-specific styles ONLY */

/* Page hero */
.page-hero {
  padding: 28px 0 8px;
}

.page-hero h1 {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: clamp(36px, 3.2vw, 56px);
  color: #0b0f19;
  margin: 0 0 6px;
  letter-spacing: 1px;
}

.page-hero .lede {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: #1e293b;
  margin: 0;
}

/* Shared content grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

/* Service cards */
.service {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgb(0 0 0 / 0.15);
}

.service img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 50%;
  border-bottom: 1px solid #eee;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.7) contrast(1.05);
}

.service:hover img {
  transform: scale(1.05);
  filter: brightness(0.9) contrast(1.08);
}

.service__body {
  padding: 16px;
}

.service__body h3 {
  margin: 8px 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #0f172a;
}

.service__body ul {
  padding-left: 18px;
  margin: 0;
  color: #475569;
}

/* Bullets */
.bullets {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #334155;
}

/* Before and after section */
.before-after {
  margin-top: 2rem;
}

.before-after__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.before-after__grid figure {
  margin: 0;
}

.before-after__grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.08);
}

.before-after__grid figcaption {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  text-align: center;
}

@media (max-width: 700px) {
  .before-after__grid {
    grid-template-columns: 1fr;
  }

  .before-after__grid img {
    height: auto;
  }
}

/* CTA block */
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.05);
}

.cta__inner h2 {
  margin: 0 0 6px;
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-size: clamp(24px, 2.2vw, 34px);
}

@media (max-width: 700px) {
  .cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 10px;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: #064b1f;
  color: #fff;
}

.btn--primary:hover {
  background: #15803d;
  text-decoration: none;
}