* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.65;
  background: #12091f;
  color: #e8e0f4;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(90, 43, 165, 0.35), transparent 55%),
    radial-gradient(ellipse 100% 60% at 50% 120%, rgba(45, 26, 74, 0.4), transparent 50%);
}
a { color: #f7cf6a; text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1100px, 92vw); margin: 0 auto; padding: 2.5rem 0; }
.narrow { width: min(760px, 92vw); margin: 0 auto; padding: 2.5rem 0; }
.narrow-content { max-width: 44rem; margin-left: auto; margin-right: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 9, 31, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(247, 207, 106, 0.12);
}
.site-header__main { padding-top: 0.65rem; padding-bottom: 0.65rem; }
.site-header__bar {
  border-top: 1px solid rgba(247, 207, 106, 0.1);
  background: rgba(12, 6, 22, 0.6);
}
.site-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.78rem;
  color: rgba(200, 188, 220, 0.95);
}
.site-header__address {
  color: rgba(232, 224, 244, 0.92);
  font-weight: 500;
}
.site-header__address:hover { color: #f7cf6a; text-decoration: none; }
.site-header__sep { color: rgba(247, 207, 106, 0.35); }
.site-header__hours { color: rgba(180, 168, 205, 0.95); }
@media (max-width: 900px) {
  .site-header__meta { font-size: 0.72rem; }
}
.row { display: flex; gap: 1rem; flex-wrap: wrap; }
.between { justify-content: space-between; }
.center { align-items: center; }
.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #f7cf6a;
  letter-spacing: 0.02em;
}
.top-nav { display: flex; flex-wrap: wrap; gap: 0.35rem 1rem; align-items: center; }
.top-nav a {
  color: #d4c8e8;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0;
}
.top-nav a:hover { color: #f7cf6a; text-decoration: none; }

.nav-dropdown {
  position: relative;
  list-style: none;
}
.nav-dropdown > summary {
  list-style: none;
}
.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown > summary::marker {
  content: none;
}
.nav-dropdown__summary {
  cursor: pointer;
  color: #d4c8e8;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 1.15rem 0.35rem 0;
  position: relative;
  user-select: none;
}
.nav-dropdown__summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.35rem;
  height: 0.35rem;
  margin-top: -0.2rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}
.nav-dropdown[open] .nav-dropdown__summary::after {
  margin-top: 0;
  transform: rotate(-135deg);
}
.nav-dropdown__summary:hover,
.nav-dropdown[open] .nav-dropdown__summary {
  color: #f7cf6a;
}
.nav-dropdown__panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  min-width: min(17rem, calc(100vw - 2.5rem));
  max-height: min(70vh, 22rem);
  overflow-y: auto;
  padding: 0.4rem 0;
  margin: 0;
  background: rgba(26, 15, 42, 0.98);
  border: 1px solid rgba(247, 207, 106, 0.2);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  z-index: 60;
}
.nav-dropdown__panel a {
  display: block;
  padding: 0.45rem 1rem;
  color: #e8e0f4;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-top: 1px solid transparent;
}
.nav-dropdown__panel a:hover {
  background: rgba(247, 207, 106, 0.08);
  color: #f7cf6a;
}
.nav-dropdown__all {
  font-weight: 600 !important;
  color: #f7cf6a !important;
  border-bottom: 1px solid rgba(247, 207, 106, 0.15);
  margin-bottom: 0.15rem;
}
.nav-dropdown__all:hover {
  background: rgba(247, 207, 106, 0.12) !important;
}
@media (max-width: 900px) {
  .nav-dropdown__panel {
    left: auto;
    right: 0;
  }
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #5a2ba5, #432080);
  color: #fff;
  padding: 0.75rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(247, 207, 106, 0.2);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.btn:hover { filter: brightness(1.08); text-decoration: none; }
.btn + .btn { margin-left: 0.5rem; }
.btn-gold {
  background: linear-gradient(135deg, #f7e4a8, #c9a227);
  color: #1a0d2e;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(247, 207, 106, 0.45);
  color: #f7cf6a;
  box-shadow: none;
}

.display-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.12;
  margin: 0.35rem 0 1rem;
}
.text-gold {
  background: linear-gradient(135deg, #f7e4a8, #c9a227);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9a227;
  margin: 0 0 0.75rem;
}
.eyebrow--left { justify-content: flex-start; }
.eyebrow__icon { font-size: 0.85rem; opacity: 0.9; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(232, 224, 244, 0.9);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}
.prose { margin: 0 0 1rem; color: rgba(232, 224, 244, 0.88); }
.prose.muted { color: rgba(200, 188, 220, 0.85); }
.center-narrow { text-align: center; max-width: 36rem; margin-left: auto; margin-right: auto; }

/* Hero home */
.hero-home {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #12091f;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-home__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(18, 9, 31, 0.52) 0%, rgba(18, 9, 31, 0.78) 50%, rgba(18, 9, 31, 0.92) 100%);
}
.hero-home__starry {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 18% 28%, rgba(247, 207, 106, 0.55), transparent),
    radial-gradient(1px 1px at 62% 18%, rgba(232, 224, 244, 0.4), transparent),
    radial-gradient(2px 2px at 82% 42%, rgba(247, 207, 106, 0.35), transparent),
    radial-gradient(1px 1px at 40% 72%, rgba(232, 224, 244, 0.3), transparent);
}
.hero-home__inner {
  position: relative;
  z-index: 3;
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.hero-actions { margin: 0; }

/* Trust bar */
.trust-bar {
  border-top: 1px solid rgba(247, 207, 106, 0.12);
  border-bottom: 1px solid rgba(247, 207, 106, 0.12);
  background: rgba(30, 18, 48, 0.45);
}
.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1rem;
  padding: 1.75rem 0;
}
@media (min-width: 900px) {
  .trust-bar__grid { grid-template-columns: repeat(5, 1fr); }
}
.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(212, 200, 232, 0.92);
}
.trust-bar__mark {
  color: #c9a227;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* About grid */
.section-about { padding-top: 3rem; padding-bottom: 3rem; }
.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 992px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
}
.about-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.about-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}
.stat-card {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background: rgba(40, 24, 65, 0.55);
  border: 1px solid rgba(247, 207, 106, 0.15);
}
.stat-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #f7e4a8, #c9a227);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.7rem; color: rgba(180, 168, 205, 0.9); margin-top: 0.35rem; }

/* Mystical sections */
.section-mystical {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(45, 26, 74, 0.55) 0%, rgba(18, 9, 31, 0.9) 100%);
  border-top: 1px solid rgba(247, 207, 106, 0.08);
  border-bottom: 1px solid rgba(247, 207, 106, 0.08);
}
.section-mystical::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 30% 20%, rgba(123, 92, 191, 0.5), transparent 45%);
  pointer-events: none;
}
.section-mystical .container { position: relative; z-index: 1; }
.section-intro { text-align: center; margin-bottom: 2.5rem; }

.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.services-grid { margin-top: 0.5rem; }

.card {
  background: rgba(40, 24, 65, 0.65);
  border: 1px solid rgba(247, 207, 106, 0.15);
  padding: 1.35rem 1.25rem;
  border-radius: 16px;
  margin-bottom: 0;
  backdrop-filter: blur(8px);
}
.card-link {
  display: block;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 207, 106, 0.35);
  text-decoration: none;
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #f7e4a8, #c9a227);
  color: #1a0d2e;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}
.card-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: #f7cf6a;
  margin: 0 0 0.5rem;
}
.card-excerpt {
  font-size: 0.9rem;
  color: rgba(200, 188, 220, 0.9);
  margin: 0 0 0.75rem;
  line-height: 1.55;
}
.card-more {
  font-size: 0.88rem;
  color: #f7cf6a;
  font-weight: 600;
}

.section-why { padding-top: 3rem; padding-bottom: 3rem; }
.section-insights { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.insight-blocks { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 1rem; }
.insight-h {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: #f7cf6a;
  margin: 0 0 0.5rem;
}

.section-testimonials { padding-top: 3rem; padding-bottom: 2rem; }
.stars { color: #c9a227; letter-spacing: 0.08em; margin: 0 0 0.65rem; font-size: 0.95rem; }
.quote { font-style: italic; color: rgba(232, 224, 244, 0.92); margin: 0 0 0.75rem; }
.attribution { font-size: 0.88rem; margin: 0; }
.attribution .name { color: #f7cf6a; font-weight: 600; }
.muted { color: rgba(160, 148, 185, 0.95); }

.section-faq { padding-bottom: 2rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  border-radius: 12px;
  background: rgba(40, 24, 65, 0.55);
  border: 1px solid rgba(247, 207, 106, 0.12);
  padding: 0 1rem;
}
.faq-item summary {
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: rgba(232, 224, 244, 0.95);
  padding: 1rem 0;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: #c9a227;
  font-weight: 600;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a { padding-bottom: 1rem; border-top: 1px solid rgba(247, 207, 106, 0.08); }

/* Service page hero */
.service-hero {
  position: relative;
  min-height: 280px;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service-hero { min-height: 320px; padding: 3.5rem 0 4rem; }
}
.service-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.service-hero__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 9, 31, 0.65) 0%, rgba(18, 9, 31, 0.92) 100%);
}
.service-hero__inner { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.75rem;
  color: rgba(160, 148, 185, 0.95);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(212, 200, 232, 0.95); }
.breadcrumb span { color: #f7cf6a; }

.cta {
  background: linear-gradient(120deg, #2f1451, #1b0d31);
  margin-top: 0;
  border-top: 1px solid rgba(247, 207, 106, 0.12);
}
.center-text { text-align: center; }
.cta h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 0.75rem;
}

.site-footer {
  border-top: 1px solid rgba(247, 207, 106, 0.15);
  margin-top: 0;
  background: rgba(16, 8, 28, 0.96);
}
.site-footer h3 { color: #f7cf6a; margin-top: 0; font-family: "Cormorant Garamond", Georgia, serif; }
.site-footer ul { margin: 0; padding-left: 1.2rem; }
.site-footer__grid {
  display: grid;
  gap: 2rem;
  padding-top: 2.5rem;
  padding-bottom: 1rem;
}
@media (min-width: 900px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
.site-footer__address a { color: rgba(232, 224, 244, 0.95); }
.site-footer__address a:hover { color: #f7cf6a; }
.site-footer__subhead {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #c9a227;
  margin: 1.25rem 0 0.5rem;
}
.footer-hours {
  width: 100%;
  max-width: 16rem;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.footer-hours th {
  text-align: left;
  font-weight: 500;
  color: rgba(212, 200, 232, 0.95);
  padding: 0.25rem 0.75rem 0.25rem 0;
  vertical-align: top;
}
.footer-hours td {
  color: rgba(232, 224, 244, 0.88);
  padding: 0.25rem 0;
}
.footer-hours--contact { max-width: none; margin-top: 0.5rem; }
.contact-card__h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: #f7cf6a;
  margin: 1.5rem 0 0.5rem;
}
.copyright { text-align: center; font-size: 0.85rem; opacity: 0.75; padding: 1rem 0 2rem; }

@media (max-width: 900px) {
  .top-nav { display: none; }
}

/* Cities index */
.section-city-index { padding-top: 2.5rem; padding-bottom: 2rem; }
.city-index-grid { margin-top: 0.5rem; }
.city-index-card__pin {
  display: block;
  font-size: 1.25rem;
  color: #c9a227;
  margin-bottom: 0.35rem;
}
.city-index-card__title { margin-top: 0; }

/* City detail pages */
.city-hero {
  position: relative;
  padding: 3rem 0 4.5rem;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 768px) {
  .city-hero { padding: 4rem 0 5.5rem; min-height: 320px; }
}
.city-hero .hero-home__starry {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.city-hero__content {
  position: relative;
  z-index: 1;
}
.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #c9a227;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(40, 24, 65, 0.55);
  border: 1px solid rgba(247, 207, 106, 0.2);
}
.city-badge__icon {
  font-size: 0.85rem;
  opacity: 0.95;
}
.city-hero__lead {
  max-width: 40rem;
}
.section-city-local {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.city-prose {
  margin-bottom: 1.5rem;
}
.city-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .city-benefits { grid-template-columns: repeat(2, 1fr); }
}
.city-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(232, 224, 244, 0.9);
  font-size: 0.95rem;
}
.city-benefits__check {
  color: #c9a227;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.section-city-services {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section-city-services .section-title {
  margin-bottom: 1rem;
}
.city-services-intro {
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  color: rgba(200, 188, 220, 0.92);
}
.city-directions {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.city-directions__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .city-directions__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}
.map-embed {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(247, 207, 106, 0.2);
  background: #0f0818;
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: min(50vw, 420px);
  min-height: 260px;
  border: 0;
}
.map-embed--city iframe {
  height: min(45vw, 380px);
}
.map-embed--contact {
  margin-top: 2rem;
  max-width: 720px;
}
.map-embed--contact iframe {
  height: min(56vw, 450px);
}
.section-city-quote {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.card--quote {
  padding: 2rem 1.5rem;
}
.section-city-faq {
  padding-bottom: 2.5rem;
}
.section-city-faq .section-title {
  margin-bottom: 1.75rem;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Services index */
.section-services-intro { padding-top: 2.5rem; padding-bottom: 0.5rem; }
.section-services-grid { padding-top: 0; padding-bottom: 3rem; }

/* Service detail — rich SEO blocks */
.service-rich { padding-top: 2rem; padding-bottom: 1rem; }
.service-rich__grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .service-rich__grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.service-rich__card {
  margin-bottom: 0;
  height: 100%;
}
.service-rich__h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-top: 0;
  margin-bottom: 1rem;
  color: #e8e0f4;
}
.service-rich__body p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(232, 224, 244, 0.9);
}
.service-rich__body p:last-child { margin-bottom: 0; }
.service-rich__body a { font-weight: 500; }
.service-faq-intro { max-width: 40rem; margin: 0 auto 1.5rem; font-size: 0.95rem; }
.service-cities__intro { max-width: 42rem; margin: 0 auto 1.25rem; font-size: 0.92rem; }
.service-related__intro { max-width: 44rem; margin: 0 auto 1.25rem; font-size: 0.92rem; }

/* Service detail */
.service-benefits { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.service-benefits__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-benefits__grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
.service-benefits__card { padding: 2rem 1.75rem; margin-bottom: 0; }
.service-benefits__icon {
  display: block;
  font-size: 1.75rem;
  color: #c9a227;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.service-benefits__icon--star { font-size: 1.5rem; }
.service-benefits__h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: #e8e0f4;
}
.service-benefits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.service-benefits__list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(232, 224, 244, 0.9);
  font-size: 0.95rem;
}
.service-benefits__check {
  color: #c9a227;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-how { padding-top: 3rem; padding-bottom: 3rem; }
.prose--large { font-size: 1.1rem; line-height: 1.7; }
.quote--lg {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-family: "Cormorant Garamond", Georgia, serif;
}
.service-quote { padding-top: 1rem; padding-bottom: 2rem; }
.service-faq-block { padding-bottom: 2.5rem; }
.service-faq-block .section-title { margin-bottom: 2rem; }

.service-cities { padding-top: 1.5rem; padding-bottom: 2rem; }
.service-cities__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: #f7cf6a;
  text-align: center;
  margin: 0 0 1.5rem;
  font-weight: 600;
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 56rem;
  margin: 0 auto;
}
.service-pill {
  font-size: 0.85rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(40, 24, 65, 0.55);
  border: 1px solid rgba(247, 207, 106, 0.15);
  color: rgba(212, 200, 232, 0.95);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.service-pill:hover {
  border-color: rgba(247, 207, 106, 0.4);
  color: #f7cf6a;
  text-decoration: none;
}

.service-related { padding-top: 1rem; padding-bottom: 2.5rem; }
.service-related__grid { margin-top: 0.25rem; }
.service-related__card { text-align: left; }
.card-title--lg {
  font-size: 1.45rem;
}
