.page-hero {
  position: relative;
  background: #000000;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
}
.page-hero__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 0, 0, 0.18) 0%, transparent 55%), radial-gradient(ellipse 50% 40% at 90% 80%, rgba(26, 26, 26, 0.5) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__brand {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.85);
  margin: 0 0 1.25rem;
}
.page-hero__line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #000000, transparent);
  margin: 0 auto 1.5rem;
}
.page-hero__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 1.25rem;
  letter-spacing: 0.02em;
}
.page-hero__subtitle {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 54ch;
  margin: 0 auto;
  line-height: 1.7;
}

.services-intro {
  background: #f6e9e0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding: 1.25rem 0;
  text-align: center;
}
.services-intro p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.02em;
}

.services-page {
  background: #f6e9e0;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 1023px) {
  .services-page {
    padding-top: calc(6rem * 0.75);
    padding-bottom: calc(6rem * 0.75);
  }
}
@media (max-width: 767px) {
  .services-page {
    padding-top: calc(6rem * 0.5);
    padding-bottom: calc(6rem * 0.5);
  }
}
.services-page__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 4rem;
}
.services-page__eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666666;
  color: #000000;
  margin: 0 0 0.75rem;
}
.services-page__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.services-page__lead {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin: 0;
}
.services-page__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 1023px) {
  .services-page__list {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

.service-detail {
  position: relative;
  display: flex;
  background: #ffffff;
  border: 1px solid #e0d4ca;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-detail:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.35);
}
.service-detail--featured {
  grid-column: 1/-1;
  border-color: rgba(0, 0, 0, 0.45);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1024px) {
  .service-detail--featured .service-detail__main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  }
  .service-detail--featured .service-detail__header {
    border-bottom: none;
    border-right: 1px solid #e0d4ca;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
  }
  .service-detail--featured .service-detail__body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .service-detail--featured .service-detail__price {
    text-align: left;
    margin-top: 1.5rem;
  }
}
.service-detail--featured .service-detail__index {
  color: rgba(0, 0, 0, 0.35);
}
.service-detail__index {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  user-select: none;
}
.service-detail__main {
  flex: 1;
  min-width: 0;
}
.service-detail__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid #e0d4ca;
  background: linear-gradient(180deg, #faf4ef 0%, #ffffff 100%);
}
.service-detail__badge {
  display: inline-block;
  width: fit-content;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #000000;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.service-detail__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.service-detail__desc {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  margin: 0;
  line-height: 1.7;
}
.service-detail__price {
  text-align: left;
  padding-top: 0.5rem;
  border-top: 1px solid #ebe2da;
}
.service-detail__price-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 0.25rem;
}
.service-detail__price-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  line-height: 1;
  background: linear-gradient(135deg, #000000, #1a1a1a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-detail__body {
  padding: 1.5rem 2rem 2rem;
}
.service-detail__includes-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 1.25rem;
}
.service-detail__includes {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-detail__includes li {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.service-detail__includes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.7;
}
.service-detail__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  padding: 0.7rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.service-detail__book:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.pricing-section {
  background: #000000;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
@media (max-width: 1023px) {
  .pricing-section {
    padding-top: calc(6rem * 0.75);
    padding-bottom: calc(6rem * 0.75);
  }
}
@media (max-width: 767px) {
  .pricing-section {
    padding-top: calc(6rem * 0.5);
    padding-bottom: calc(6rem * 0.5);
  }
}
.pricing-section {
  position: relative;
  overflow: hidden;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.pricing-section .container {
  position: relative;
  z-index: 1;
}
.pricing-section__header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.pricing-section__eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.8);
  margin: 0 0 0.75rem;
}
.pricing-section__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.pricing-section__subtitle {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin: 0;
}
.pricing-section__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3rem;
}

.pricing-table {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}
.pricing-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
.pricing-table__row:last-child {
  border-bottom: none;
}
.pricing-table__row:hover {
  background: rgba(255, 255, 255, 0.04);
}
@media (max-width: 639px) {
  .pricing-table__row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.pricing-table__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-table__name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}
.pricing-table__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.pricing-table__price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  text-align: right;
}
@media (max-width: 639px) {
  .pricing-table__price {
    text-align: left;
  }
}

.site-main--services .btn--premium {
  background: #000000;
  border-color: #000000;
  color: #000000;
  padding: 0.85rem 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.site-main--services .btn--premium:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #000000;
}
.site-main--services .btn--premium-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 0.85rem 2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
}
.site-main--services .btn--premium-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.container--wide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }
}
.services-list__item--page {
  position: relative;
  padding-top: 2.5rem;
}

.services-list__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
}

.services-list__book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  margin-top: 1.5rem;
  background: #000000;
  border-color: #000000;
  color: #ffffff;
  padding: 0.55rem 1.2rem;
  font-size: 0.875rem;
}
.services-list__book:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.site-main--services .services-list {
  background: #f6e9e0;
}
.site-main--services .services-list__cta {
  margin-top: 3rem;
}

/*# sourceMappingURL=services.css.map */
