:root {
  --pink: #d9799d;
  --soft-pink: #fff1f5;
  --ink: #432b35;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fffafb;
  font-family: "DM Sans", sans-serif;
}
.services {
  padding: 200px 20px 90px;
  background: linear-gradient(180deg, #fffafb, var(--soft-pink));
}
.services-inner {
  max-width: 1120px;
  margin: auto;
}
.section-heading {
  max-width: 600px;
  margin: 0 auto 38px;
  text-align: center;
}
.eyebrow {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-heading h1 {
  margin: 10px 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 48px);
}
.section-heading p {
  margin: 0;
  color: #80636d;
  line-height: 1.7;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.service-card {
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #f4d9e2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px #c8759215;
  transition: 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px #c8759230;
}
.service-card img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.card-content {
  padding: 20px;
}
.card-content h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 21px;
}
.card-content p {
  margin: 0;
  color: #80636d;
  font-size: 14px;
  line-height: 1.6;
}
dialog {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 40px));
  padding: 0;
  border: 0;
  border-radius: 20px;
  color: var(--ink);
  box-shadow: 0 24px 80px #54263455;
}
dialog::backdrop {
  background: #432b3566;
  backdrop-filter: blur(3px);
}
.dialog-content {
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
}
.dialog-content h2 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
}
.dialog-content > p {
  color: #80636d;
  line-height: 1.6;
}
.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0;
}
.detail {
  padding: 13px;
  border-radius: 12px;
  background: var(--soft-pink);
}
.detail small {
  display: block;
  margin-bottom: 4px;
  color: #a36a7f;
}
.detail strong {
  font-size: 14px;
}
.close-dialog {
  float: right;
  border: 0;
  background: none;
  color: #a36a7f;
  cursor: pointer;
  font-size: 25px;
}
.service-booking-form {
  display: grid;
  gap: 11px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #f4d9e2;
}
.service-booking-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}
.service-booking-form input,
.service-booking-form textarea,
.service-booking-form select {
  width: 100%;
  border: 1px solid #f4d9e2;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  outline: none;
}
.service-booking-form input:focus,
.service-booking-form textarea:focus,
.service-booking-form select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #d9799d24;
}
.service-booking-form .button {
  width: 100%;
  margin-top: 6px;
  text-align: center;
}
