.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 320px;
  padding: 36px 32px 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 35px rgba(17, 19, 23, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(17, 19, 23, 0.1);
}

.service-card--featured {
  border-color: var(--gold);
  background: var(--cream);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -47px;
  width: 150px;
  height: 150px;
  border: 20px solid rgba(245, 180, 0, 0.1);
  transform: rotate(30deg);
  clip-path: polygon(25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%, 0 50%);
}

.service-index {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.service-symbol {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border-radius: 15px;
  background: var(--ink);
  color: var(--gold);
  font-size: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 27px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.height-section {
  position: relative;
  overflow: hidden;
  padding-block: 104px;
  background: var(--ink);
  color: #fff;
}

.height-section::before {
  content: "50";
  position: absolute;
  right: -20px;
  bottom: -150px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 620px;
  font-weight: 900;
  line-height: 1;
}

.height-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
}

.eyebrow--light {
  color: var(--gold);
}

.height-copy > p {
  color: #c7c9cd;
}

.height-caution {
  margin: 28px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px !important;
}

.light-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

.meter {
  min-height: 390px;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(245, 180, 0, 0.15), rgba(255, 255, 255, 0.03));
}

.meter-scale {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.meter-scale::before {
  content: "";
  position: absolute;
  height: 240px;
  width: 4px;
  background: #fff;
}

.meter-scale i {
  z-index: 1;
  width: 34px;
  height: 3px;
  background: #fff;
}

.meter-scale span {
  z-index: 1;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--ink);
}

.meter-message strong {
  display: block;
  color: var(--gold);
  font-size: 170px;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.meter-message span {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.process {
  background: #fff;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}

.process-grid li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 19px;
  padding: 28px 22px;
  border-top: 3px solid var(--gold);
  background: var(--cream);
}

.process-grid li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 4px 0 9px;
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 180, 0, 0.13), transparent 26%),
    #fffaf0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.about-grid .section-heading {
  margin-bottom: 0;
}

.about-facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-facts div {
  min-height: 135px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 19, 23, 0.05);
}

.about-facts dt {
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.local-section {
  padding-block: 100px;
  background: var(--cream);
}

.local-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 85px;
}

.local-map {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: #e6e2d8;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.local-map-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.62) contrast(0.96);
  pointer-events: none;
}

.local-map-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(245, 180, 0, 0.06)
  );
  pointer-events: none;
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(245, 180, 0, 0.78);
  border-radius: 50%;
  background: rgba(245, 180, 0, 0.035);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%);
}

.map-ring--one { width: 160px; height: 160px; }
.map-ring--two { width: 270px; height: 270px; }
.map-ring--three { width: 390px; height: 390px; }

.map-label {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 128px;
  padding: 10px 18px 13px;
  border: 1px solid rgba(17, 19, 23, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  box-shadow: 0 12px 30px rgba(17, 19, 23, 0.18);
  backdrop-filter: blur(5px);
}

.map-pin {
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}

.map-label strong {
  font-size: 25px;
}