:root {
  --ink: #262228;
  --muted: #6c6469;
  --plum: #66384f;
  --plum-dark: #472336;
  --plum-soft: #efe4e8;
  --rose: #ca8e93;
  --sage: #dce9e2;
  --sage-dark: #597568;
  --cream: #fbf8f4;
  --paper: #ffffff;
  --line: #e8dfda;
  --shadow: 0 24px 70px rgba(70, 35, 53, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

[hidden] {
  display: none !important;
}

body.nav-open {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d29aa4;
  outline-offset: 4px;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--plum-dark);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  clip: auto;
  background: white;
  color: var(--plum-dark);
}

.privacy-bar {
  background: var(--plum-dark);
  color: #f7edf0;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.privacy-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.privacy-bar a {
  font-weight: 700;
}

.privacy-bar a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(102, 56, 79, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50% 50% 50% 12px;
  display: inline-grid;
  place-items: center;
  background: var(--plum);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  transform: rotate(-4deg);
}

.brand__copy {
  display: grid;
  color: var(--plum-dark);
  line-height: 1.18;
}

.brand__copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.brand__copy span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav ul a {
  position: relative;
  padding-block: 14px;
  color: #51484d;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav ul a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--plum);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.primary-nav ul a:hover,
.primary-nav ul a.is-active {
  color: var(--plum);
}

.primary-nav ul a:hover::after,
.primary-nav ul a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--plum-dark);
}

.button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plum);
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  background: var(--plum-dark);
  box-shadow: 0 12px 30px rgba(71, 35, 54, 0.2);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 13px;
}

.button--outline {
  background: transparent;
  color: var(--plum);
}

.button--outline:hover {
  color: white;
}

.button--light {
  border-color: white;
  background: white;
  color: var(--plum-dark);
}

.button--light:hover {
  background: var(--cream);
  color: var(--plum-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.button--ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf6f2 0%, #f7eeef 54%, #edf5f0 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 680px;
  padding-block: 78px 86px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: 80px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.6;
}

.hero__glow--one {
  width: 340px;
  height: 340px;
  right: -100px;
  top: -90px;
  background: rgba(205, 150, 158, 0.28);
}

.hero__glow--two {
  width: 280px;
  height: 280px;
  left: -160px;
  bottom: -120px;
  background: rgba(158, 195, 177, 0.3);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.eyebrow--light {
  color: #f2dce3;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 5.4vw, 72px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4.1vw, 52px);
}

h3 {
  font-size: 25px;
}

.hero__lead {
  max-width: 660px;
  margin: 0;
  color: #62585e;
  font-size: 18px;
  line-height: 1.75;
}

.button-row {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.hero__assurances {
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  color: #6c6267;
  font-size: 13px;
  font-weight: 700;
}

.hero__assurances span {
  width: 21px;
  height: 21px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--sage);
  color: var(--sage-dark);
  font-size: 11px;
}

.hero-card {
  position: relative;
  min-height: 500px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 220px 220px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(160deg, #d9e7df 0%, #c6dad0 43%, #f1dfe3 100%);
  box-shadow: var(--shadow);
}

.hero-card__art {
  position: absolute;
  inset: 0;
}

.hero-card__arch {
  position: absolute;
  width: 210px;
  height: 270px;
  top: 58px;
  left: 50%;
  border: 2px solid rgba(71, 35, 54, 0.22);
  border-bottom: 0;
  border-radius: 110px 110px 0 0;
  transform: translateX(-50%);
}

.hero-card__circle {
  position: absolute;
  width: 112px;
  height: 112px;
  top: 108px;
  left: 50%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 50px rgba(71, 35, 54, 0.1);
  transform: translateX(-50%);
}

.hero-card__circle::after {
  content: "R";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 700;
}

.hero-card__leaf {
  position: absolute;
  width: 70px;
  height: 130px;
  border-radius: 80% 0 80% 0;
  background: rgba(89, 117, 104, 0.3);
}

.hero-card__leaf--one {
  right: 40px;
  top: 170px;
  transform: rotate(18deg);
}

.hero-card__leaf--two {
  left: 40px;
  top: 220px;
  transform: rotate(202deg);
}

.hero-card__copy {
  position: relative;
  z-index: 2;
  padding: 23px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.hero-card__copy p {
  margin: 0 0 6px;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.hero-card__copy span {
  color: #665d62;
  font-size: 13px;
  line-height: 1.6;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: white;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip__grid > div {
  min-height: 112px;
  padding: 22px 34px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-strip__grid > div + div {
  border-left: 1px solid var(--line);
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
}

.trust-strip p {
  margin: 0;
  display: grid;
  line-height: 1.35;
}

.trust-strip strong {
  color: var(--plum-dark);
  font-size: 14px;
}

.trust-strip small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding-block: 112px;
}

.section--compact {
  padding-block: 88px;
}

.section--tint {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: 100px;
}

.intro-grid h2 {
  margin-bottom: 0;
}

.prose-large {
  max-width: 620px;
  color: #5e555a;
  font-size: 17px;
}

.prose-large p {
  margin: 0;
}

.prose-large p + p {
  margin-top: 22px;
}

.commitment-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.commitment-list > div {
  padding: 26px 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.commitment-list > div + div {
  border-left: 1px solid var(--line);
}

.commitment-list span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--sage);
  color: var(--sage-dark);
  font-size: 11px;
}

.commitment-list p {
  margin: 0;
  color: #544a50;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: end;
  gap: 80px;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-heading--split > p {
  margin: 0 0 8px;
  color: var(--muted);
}

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

.service-card {
  min-height: 330px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  background: white;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  border-color: #d8c2c9;
  box-shadow: 0 18px 50px rgba(71, 35, 54, 0.09);
  transform: translateY(-5px);
}

.service-card__number {
  width: 44px;
  height: 44px;
  margin-bottom: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 14px;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  margin-top: auto;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.centered-action {
  margin-top: 42px;
  display: flex;
  justify-content: center;
}

.privacy-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 96px;
}

.privacy-grid > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.privacy-visual {
  position: relative;
  min-height: 490px;
  border-radius: 220px 220px 28px 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #f0e3e7, #e5efe9);
}

.privacy-visual__panel {
  position: relative;
  z-index: 2;
  width: min(76%, 310px);
  padding: 38px 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(8px);
}

.privacy-visual__mark {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border-radius: 50% 50% 50% 18px;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
}

.privacy-visual p {
  margin: 0;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
}

.privacy-visual__shape {
  position: absolute;
  border-radius: 50%;
}

.privacy-visual__shape--one {
  width: 220px;
  height: 220px;
  top: -50px;
  right: -70px;
  background: rgba(202, 142, 147, 0.3);
}

.privacy-visual__shape--two {
  width: 180px;
  height: 180px;
  bottom: -80px;
  left: -70px;
  background: rgba(89, 117, 104, 0.2);
}

.check-list {
  margin: 28px 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4c4248;
  font-size: 14px;
  font-weight: 700;
}

.check-list span {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--sage);
  color: var(--sage-dark);
  font-size: 11px;
}

.faq-preview {
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: start;
  gap: 100px;
}

.faq-grid > div:first-child > p:not(.eyebrow) {
  max-width: 460px;
  color: var(--muted);
}

.accordion-list {
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
}

.accordion-list summary {
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--plum-soft);
  color: var(--plum);
  font-family: Inter, sans-serif;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.accordion-list details[open] summary span {
  transform: rotate(45deg);
}

.accordion-list details p {
  max-width: 690px;
  margin: -4px 54px 23px 4px;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 0 0 92px;
}

.cta-card {
  padding: 60px 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--plum-dark), #6b3851);
  color: white;
}

.cta-card h2 {
  margin-bottom: 14px;
  color: white;
}

.cta-card p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: #eadde2;
}

.cta-card__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding-top: 76px;
  background: #f7f1ee;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.9fr 1fr;
  gap: 56px;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
}

.footer-intro > p {
  max-width: 350px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-heading {
  margin: 4px 0 19px;
  color: var(--plum-dark);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: #62585e;
  font-size: 13px;
  font-style: normal;
  list-style: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--plum);
  text-decoration: underline;
}

.footer-hours p {
  margin: 0 0 12px;
  display: grid;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer-hours strong {
  color: var(--ink);
  font-size: 12px;
}

.emergency-note {
  margin-top: 54px;
  padding: 18px 22px;
  border: 1px solid #e7d9d7;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.55);
  color: #655b60;
  font-size: 12px;
}

.emergency-note strong {
  flex-shrink: 0;
  color: var(--plum-dark);
}

.footer-bottom {
  margin-top: 28px;
  padding-block: 22px 28px;
  border-top: 1px solid #e5dcd7;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #766c71;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1040px) {
  .site-container {
    width: min(calc(100% - 48px), var(--container));
  }

  .primary-nav {
    gap: 20px;
  }

  .primary-nav ul {
    gap: 20px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.65fr);
    gap: 44px;
  }

  .commitment-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .commitment-list > div:nth-child(4) {
    border-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr 0.7fr 1fr;
  }

  .footer-hours {
    grid-column: 3;
  }
}

@media (max-width: 860px) {
  .privacy-bar__inner {
    justify-content: center;
  }

  .privacy-bar__inner > span {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    right: 0;
    top: 100%;
    left: 0;
    padding: 22px 24px 26px;
    border-bottom: 1px solid var(--line);
    display: none;
    align-items: stretch;
    flex-direction: column;
    background: white;
    box-shadow: 0 18px 40px rgba(71, 35, 54, 0.09);
  }

  .primary-nav--open {
    display: flex;
  }

  .primary-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav ul a {
    padding: 12px 2px;
    display: block;
  }

  .primary-nav ul a::after {
    display: none;
  }

  .hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-card {
    min-height: 460px;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid > div {
    min-height: 90px;
  }

  .trust-strip__grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .intro-grid,
  .section-heading--split,
  .privacy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .commitment-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .commitment-list > div:nth-child(odd) {
    border-left: 0;
  }

  .commitment-list > div:nth-child(4) {
    border-left: 1px solid var(--line);
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .privacy-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-hours {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-container {
    width: min(calc(100% - 30px), var(--container));
  }

  .privacy-bar {
    font-size: 12px;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
    font-size: 21px;
  }

  .brand__copy strong {
    font-size: 17px;
  }

  .brand__copy span {
    font-size: 9px;
  }

  .hero__grid {
    padding-block: 60px 68px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .hero__lead {
    font-size: 16px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button-row {
    align-items: flex-start;
  }

  .button-row .text-link {
    width: auto;
    margin-top: 4px;
  }

  .hero__assurances {
    gap: 12px;
  }

  .hero-card {
    min-height: 410px;
    padding: 18px;
    border-radius: 160px 160px 24px 24px;
  }

  .section {
    padding-block: 78px;
  }

  .section--compact {
    padding-block: 68px;
  }

  .commitment-list {
    grid-template-columns: 1fr;
  }

  .commitment-list > div {
    border-left: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    padding: 28px;
  }

  .privacy-visual {
    min-height: 410px;
    border-radius: 170px 170px 24px 24px;
  }

  .cta-section {
    padding-bottom: 64px;
  }

  .cta-card {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .cta-card__actions,
  .cta-card__actions .button {
    width: 100%;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .emergency-note,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Interior pages */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fbf7f3 0%, #f5eaed 62%, #e8f1ec 100%);
}

.page-hero__grid {
  position: relative;
  z-index: 2;
  min-height: 480px;
  padding-block: 86px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: center;
  gap: 90px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(44px, 5.5vw, 70px);
}

.page-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #645a60;
  font-size: 18px;
}

.page-hero__actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.page-hero__note {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.page-hero__note-mark {
  width: 68px;
  height: 68px;
  border-radius: 50% 50% 50% 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--plum);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 700;
}

.page-hero__note strong {
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.page-hero__note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.page-hero__shape {
  position: absolute;
  border-radius: 50%;
}

.page-hero__shape--one {
  width: 300px;
  height: 300px;
  right: -70px;
  top: -120px;
  background: rgba(202, 142, 147, 0.22);
}

.page-hero__shape--two {
  width: 220px;
  height: 220px;
  left: -120px;
  bottom: -110px;
  background: rgba(89, 117, 104, 0.14);
}

.prose-stack {
  color: var(--muted);
}

.prose-stack p {
  margin: 0;
}

.prose-stack p + p {
  margin-top: 20px;
}

.prose-stack strong {
  color: var(--plum-dark);
}

.prose-stack--large {
  font-size: 17px;
}

.about-intro__grid,
.services-intro__grid,
.quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 100px;
}

.about-intro h2,
.services-intro h2,
.quality-grid h2 {
  margin-bottom: 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: 96px;
}

.mission-card {
  position: relative;
  padding: 52px;
  border: 1px solid #dfd1d4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, #f2e5e8, #e7f0eb);
}

.mission-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -55px;
  bottom: -70px;
  border: 1px solid rgba(102, 56, 79, 0.16);
  border-radius: 50%;
}

.mission-card__label {
  display: block;
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-card blockquote {
  margin: 25px 0;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 700;
  line-height: 1.22;
}

.mission-card p {
  max-width: 520px;
  margin: 0;
  color: #6b6066;
  font-size: 14px;
}

.mission-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.mission-copy .text-link {
  margin-top: 12px;
}

.privacy-promise {
  border-bottom: 1px solid var(--line);
}

.privacy-promise__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 100px;
}

.privacy-promise__content > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}

.privacy-promise__list {
  border-top: 1px solid var(--line);
}

.privacy-promise__list > div {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
}

.privacy-promise__list > div > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 900;
}

.privacy-promise__list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.privacy-promise__list strong {
  margin-bottom: 3px;
  display: block;
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.values-section {
  background: white;
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  grid-column: span 2;
  background: var(--cream);
}

.value-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.value-card > span {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
}

.value-card h3 {
  margin-bottom: 11px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.check-list--columns {
  grid-template-columns: repeat(2, 1fr);
}

.cta-section--spaced {
  padding-top: 92px;
}

/* Services */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-detail-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.service-detail-card__top {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 18px;
}

.service-detail-card__top > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
}

.service-detail-card h2 {
  margin-bottom: 20px;
  font-size: 29px;
}

.service-detail-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-detail-card ul {
  margin: 26px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  list-style: none;
}

.service-detail-card li {
  display: flex;
  gap: 9px;
  color: #5c5257;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.service-detail-card li span {
  color: var(--sage-dark);
}

.abortion-care__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: 96px;
}

.abortion-care__visual {
  position: relative;
  min-height: 510px;
  border-radius: 240px 240px 28px 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(150deg, #e0ece5, #f0dee3);
}

.abortion-care__circle {
  position: relative;
  z-index: 2;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

.abortion-care__leaf {
  position: absolute;
  width: 110px;
  height: 220px;
  border-radius: 100% 0 100% 0;
  background: rgba(89, 117, 104, 0.22);
}

.abortion-care__leaf--one {
  right: 42px;
  top: 76px;
  transform: rotate(18deg);
}

.abortion-care__leaf--two {
  left: 38px;
  bottom: 60px;
  transform: rotate(200deg);
}

.abortion-care__grid > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
}

.information-note {
  margin-top: 28px;
  padding: 19px 21px;
  border-left: 3px solid var(--plum);
  border-radius: 0 10px 10px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  background: var(--cream);
}

.information-note strong {
  color: var(--plum-dark);
  font-size: 13px;
}

.information-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.visit-steps {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  list-style: none;
}

.visit-steps li {
  min-height: 230px;
  padding: 34px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
}

.visit-steps > li > span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.visit-steps h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.visit-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Contact */
.contact-overview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.contact-card {
  min-height: 320px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  background: var(--cream);
}

.contact-card--accent {
  background: linear-gradient(145deg, #f0e2e6, #e4eee9);
}

.contact-card__number {
  width: 42px;
  height: 42px;
  margin-bottom: 33px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
}

.contact-card h2 {
  margin-bottom: 12px;
  font-size: 27px;
}

.contact-card > a:not(.contact-card__link),
.contact-card address {
  margin-bottom: 14px;
  color: var(--plum);
  font-size: 17px;
  font-style: normal;
  font-weight: 800;
}

.contact-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-card__link {
  margin-top: auto;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.appointment-section {
  scroll-margin-top: 105px;
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  align-items: start;
  gap: 92px;
}

.appointment-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.appointment-help {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.appointment-help > strong {
  color: var(--plum-dark);
  font-size: 14px;
}

.contact-form {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: 0 18px 60px rgba(71, 35, 54, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  margin-bottom: 7px;
  display: block;
  color: var(--plum-dark);
  font-size: 13px;
  font-weight: 800;
}

.form-field label span {
  color: var(--muted);
  font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid #ded4d0;
  border-radius: 10px;
  background: #fdfcfb;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  height: 50px;
  padding-inline: 14px;
}

.form-field textarea {
  min-height: 145px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--plum);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(102, 56, 79, 0.1);
}

.form-field small {
  margin-top: 7px;
  display: block;
  color: #83787d;
  font-size: 10px;
  line-height: 1.5;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit p {
  max-width: 240px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.form-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--sage);
  color: #3f5b4f;
  font-size: 12px;
  font-weight: 700;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.hours-table {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.hours-table p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.hours-table strong {
  color: var(--plum-dark);
  text-align: right;
}

.directions-card {
  min-height: 390px;
  padding: 48px;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 95px 1fr;
  align-items: center;
  gap: 30px;
  background: linear-gradient(145deg, #e2ece6, #f0e1e5);
}

.directions-card__pin {
  width: 92px;
  height: 116px;
  border-radius: 52px 52px 52px 12px;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
  transform: rotate(-5deg);
}

.directions-card h2 {
  margin-bottom: 13px;
  font-size: 34px;
}

.directions-card p {
  color: var(--muted);
  font-size: 13px;
}

.directions-card .button {
  margin-top: 12px;
}

.medical-emergency-section {
  padding-bottom: 20px;
}

.medical-emergency-card {
  padding: 30px 34px;
  border: 1px solid #ead0cd;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #fff8f6;
}

.medical-emergency-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #9a4f4c;
  color: white;
  font-size: 20px;
  font-weight: 900;
}

.medical-emergency-card h2 {
  margin-bottom: 6px;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 17px;
  letter-spacing: 0;
}

.medical-emergency-card p {
  margin: 0;
  color: #725a5a;
  font-size: 12px;
}

@media (max-width: 1040px) {
  .page-hero__grid {
    gap: 54px;
  }

  .about-intro__grid,
  .services-intro__grid,
  .quality-grid,
  .mission-grid,
  .privacy-promise__grid,
  .abortion-care__grid,
  .appointment-grid,
  .contact-details-grid {
    gap: 60px;
  }

  .contact-card {
    padding: 30px;
  }
}

@media (max-width: 860px) {
  .page-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .page-hero__note {
    max-width: 520px;
  }

  .about-intro__grid,
  .services-intro__grid,
  .quality-grid,
  .mission-grid,
  .privacy-promise__grid,
  .abortion-care__grid,
  .appointment-grid,
  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card,
  .value-card:nth-child(4) {
    grid-column: auto;
  }

  .value-card:last-child {
    grid-column: 1 / -1;
  }

  .service-detail-grid,
  .contact-overview__grid {
    grid-template-columns: 1fr;
  }

  .abortion-care__visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .visit-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .page-hero__grid {
    padding-block: 62px;
  }

  .page-hero h1 {
    font-size: clamp(39px, 12vw, 52px);
  }

  .page-hero__lead {
    font-size: 16px;
  }

  .page-hero__actions,
  .page-hero__actions .button {
    width: 100%;
  }

  .page-hero__note {
    padding: 24px;
  }

  .page-hero__note-mark {
    width: 56px;
    height: 56px;
    font-size: 29px;
  }

  .mission-card,
  .service-detail-card,
  .contact-form {
    padding: 27px;
  }

  .mission-card blockquote {
    font-size: 28px;
  }

  .values-grid,
  .service-detail-card ul,
  .visit-steps,
  .form-row,
  .check-list--columns {
    grid-template-columns: 1fr;
  }

  .value-card:last-child {
    grid-column: auto;
  }

  .abortion-care__visual {
    min-height: 420px;
    border-radius: 180px 180px 24px 24px;
  }

  .information-note {
    grid-template-columns: 1fr;
  }

  .visit-steps li {
    min-height: 0;
  }

  .contact-card {
    padding: 28px;
  }

  .form-submit,
  .hours-table p {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .form-submit p {
    max-width: none;
  }

  .hours-table strong {
    text-align: left;
  }

  .directions-card {
    min-height: 0;
    padding: 32px 25px;
    grid-template-columns: 1fr;
  }

  .directions-card__pin {
    width: 70px;
    height: 86px;
    border-radius: 40px 40px 40px 10px;
    font-size: 34px;
  }

  .medical-emergency-card {
    padding: 24px;
  }
}

/* WordPress integration */
.brand__logo,
.brand__logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.brand__logo .custom-logo {
  width: auto;
  max-width: 280px;
  max-height: 60px;
}

.primary-nav .current-menu-item > a,
.primary-nav .current-menu-ancestor > a,
.primary-nav .current_page_item > a {
  color: var(--plum);
}

.primary-nav .current-menu-item > a::after,
.primary-nav .current-menu-ancestor > a::after,
.primary-nav .current_page_item > a::after {
  transform: scaleX(1);
}

.primary-nav li {
  position: relative;
}

.primary-nav .sub-menu {
  position: absolute;
  z-index: 20;
  top: 100%;
  left: -20px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 2px;
  visibility: hidden;
  background: white;
  box-shadow: 0 18px 50px rgba(71, 35, 54, 0.12);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.primary-nav .sub-menu a {
  padding: 9px 10px;
}

.primary-nav .sub-menu a::after {
  display: none;
}

.site-main,
.page-entry,
.page-entry__content {
  width: 100%;
  margin: 0;
}

.page-entry__header,
.content-shell {
  padding-block: 80px;
}

.content-shell--center {
  max-width: 760px;
  text-align: center;
}

.content-shell--center .eyebrow {
  justify-content: center;
}

.content-entry + .content-entry {
  margin-top: 56px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.archive-header {
  margin-bottom: 54px;
}

.archive-description {
  max-width: 720px;
  color: var(--muted);
}

.search-form {
  max-width: 680px;
  display: flex;
  gap: 12px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  height: 52px;
  padding-inline: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.entry-title {
  font-size: clamp(36px, 5vw, 60px);
}

.comments-area {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.footer-widget,
.footer-widget > :first-child {
  margin-top: 0;
}

.footer-widget ul {
  padding-left: 0;
  list-style: none;
}

.rwc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status--success {
  border-color: #b8d4c5;
  background: #edf7f1;
  color: #315c48;
}

.form-status--error,
.form-status--rate {
  border-color: #e1c1c1;
  background: #fbefef;
  color: #7a3434;
}

body.admin-bar .site-header {
  top: 32px;
}

/* Elementor page templates */
.rwc-page.e-con,
.rwc-page .e-con,
.rwc-page.elementor-element,
.rwc-page .elementor-element {
  box-sizing: border-box;
}

.rwc-page .elementor-widget,
.rwc-page .elementor-widget-container > :first-child {
  margin-top: 0;
}

.rwc-page .elementor-widget-container > :last-child {
  margin-bottom: 0;
}

.rwc-page h1.elementor-heading-title,
.rwc-page h2.elementor-heading-title,
.rwc-page h3.elementor-heading-title {
  color: var(--plum-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.rwc-page h1.elementor-heading-title {
  font-size: clamp(44px, 5.4vw, 72px);
}

.rwc-page h2.elementor-heading-title {
  font-size: clamp(34px, 4.1vw, 52px);
}

.rwc-page h3.elementor-heading-title {
  font-size: 25px;
}

.rwc-page .page-hero h1.elementor-heading-title {
  font-size: clamp(44px, 5vw, 66px);
}

.rwc-page .rwc-grid,
.rwc-page .hero__grid,
.rwc-page .trust-strip__grid,
.rwc-page .intro-grid,
.rwc-page .commitment-list,
.rwc-page .section-heading--split,
.rwc-page .service-cards,
.rwc-page .privacy-grid,
.rwc-page .faq-grid,
.rwc-page .site-footer__grid,
.rwc-page .page-hero__grid,
.rwc-page .about-intro__grid,
.rwc-page .mission-grid,
.rwc-page .privacy-promise__grid,
.rwc-page .values-grid,
.rwc-page .services-intro__grid,
.rwc-page .quality-grid,
.rwc-page .service-detail-grid,
.rwc-page .service-detail-card__top,
.rwc-page .abortion-care__grid,
.rwc-page .abortion-care__visual,
.rwc-page .visit-steps,
.rwc-page .contact-overview__grid,
.rwc-page .appointment-grid,
.rwc-page .contact-details-grid,
.rwc-page .directions-card,
.rwc-page .privacy-visual {
  --display: grid !important;
  display: grid !important;
}

.rwc-page .rwc-flex,
.rwc-page .button-row,
.rwc-page .hero__assurances,
.rwc-page .cta-card,
.rwc-page .cta-card__actions,
.rwc-page .page-hero__actions,
.rwc-page .page-hero__note,
.rwc-page .trust-strip__item,
.rwc-page .commitment-list__item,
.rwc-page .medical-emergency-card {
  --display: flex !important;
  display: flex !important;
}

.rwc-page .button-row,
.rwc-page .hero__assurances,
.rwc-page .cta-card,
.rwc-page .cta-card__actions,
.rwc-page .page-hero__actions,
.rwc-page .page-hero__note,
.rwc-page .trust-strip__item,
.rwc-page .commitment-list__item,
.rwc-page .medical-emergency-card {
  --flex-direction: row !important;
  flex-direction: row !important;
}

.rwc-page .section {
  padding-block: 112px !important;
}

.rwc-page .section--compact {
  padding-block: 88px !important;
}

.rwc-page .cta-section {
  padding: 0 0 92px !important;
}

.rwc-page .cta-section--spaced {
  padding-top: 92px !important;
}

.rwc-page .site-container {
  width: min(calc(100% - 40px), var(--container)) !important;
  max-width: var(--container) !important;
  margin-inline: auto !important;
  padding-inline: 0 !important;
}

.rwc-page .hero__grid,
.rwc-page .page-hero__grid {
  padding-block: 78px 86px !important;
}

.rwc-page .elementor-button-wrapper {
  line-height: 1;
}

.rwc-page .rwc-button .elementor-button {
  min-height: 52px;
  padding: 14px 24px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--plum);
  color: white;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.rwc-page .rwc-button .elementor-button:hover {
  background: var(--plum-dark);
  box-shadow: 0 12px 30px rgba(71, 35, 54, 0.2);
  transform: translateY(-2px);
}

.rwc-page .rwc-button--outline .elementor-button {
  background: transparent;
  color: var(--plum);
}

.rwc-page .rwc-button--outline .elementor-button:hover {
  background: var(--plum-dark);
  color: white;
}

.rwc-page .rwc-button--light .elementor-button {
  border-color: white;
  background: white;
  color: var(--plum-dark);
}

.rwc-page .rwc-button--ghost .elementor-button {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: white;
}

.rwc-page .rwc-button--ghost .elementor-button:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.08);
}

.rwc-page .hero-card__art,
.rwc-page .hero-card__arch,
.rwc-page .hero-card__circle,
.rwc-page .hero-card__leaf,
.rwc-page .privacy-visual__shape,
.rwc-page .page-hero__shape,
.rwc-page .abortion-care__leaf {
  min-height: 1px;
}

.rwc-page .hero-card__copy > .elementor-widget {
  width: 100%;
}

.rwc-page .service-card > .elementor-element:last-child {
  margin-top: auto;
}

.rwc-page .service-card__number,
.rwc-page .contact-card__number,
.rwc-page .mission-card__label {
  display: inline-grid;
}

.rwc-page .value-card .elementor-widget-container > span {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 10px;
  font-weight: 900;
}

.rwc-page .service-detail-card__top .elementor-widget:first-child {
  width: 48px;
}

.rwc-page .service-detail-card__top .elementor-widget-container > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum-soft);
  color: var(--plum);
  font-size: 11px;
  font-weight: 900;
}

.rwc-page .service-detail-card > .elementor-widget-text-editor p,
.rwc-page .contact-card > .elementor-widget-text-editor p,
.rwc-page .appointment-copy > .elementor-widget-text-editor p,
.rwc-page .privacy-promise__content > .elementor-widget-text-editor p,
.rwc-page .abortion-care__content > .elementor-widget-text-editor p,
.rwc-page .mission-copy > .elementor-widget-text-editor p {
  color: var(--muted);
}

.rwc-page .service-detail-card > .elementor-widget-text-editor p,
.rwc-page .contact-card > .elementor-widget-text-editor p {
  font-size: 13px;
}

.rwc-page .contact-card .elementor-widget-text-editor a {
  color: var(--plum);
  font-size: 17px;
  font-weight: 800;
}

.rwc-page .contact-card > .elementor-widget:last-child {
  margin-top: auto;
}

.rwc-page .appointment-help .elementor-widget-text-editor strong {
  color: var(--plum-dark);
  font-size: 14px;
}

.rwc-page .section-heading--center > .elementor-widget:last-child {
  max-width: 620px;
  margin-inline: auto;
  color: var(--muted);
}

.rwc-page .elementor-widget-shortcode,
.rwc-page .elementor-widget-shortcode .elementor-shortcode {
  width: 100%;
}

.rwc-page .appointment-grid > .elementor-widget-shortcode {
  align-self: stretch;
}

.rwc-page .appointment-grid .contact-form {
  height: 100%;
}

@media (max-width: 860px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .primary-nav .sub-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0 14px;
    border: 0;
    visibility: visible;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .rwc-page .site-container {
    width: min(calc(100% - 48px), var(--container)) !important;
  }

  .rwc-page .section {
    padding-block: 86px !important;
  }

  .rwc-page .section--compact {
    padding-block: 74px !important;
  }

  .rwc-page .cta-card {
    --flex-direction: column !important;
    flex-direction: column !important;
  }
}

@media (max-width: 560px) {
  .rwc-page .site-container {
    width: min(calc(100% - 32px), var(--container)) !important;
  }

  .rwc-page .section {
    padding-block: 70px !important;
  }

  .rwc-page .hero__grid,
  .rwc-page .page-hero__grid {
    padding-block: 62px !important;
  }

  .rwc-page .button-row .rwc-button,
  .rwc-page .button-row .elementor-button,
  .rwc-page .page-hero__actions .rwc-button,
  .rwc-page .page-hero__actions .elementor-button,
  .rwc-page .cta-card__actions .rwc-button,
  .rwc-page .cta-card__actions .elementor-button {
    width: 100%;
  }
}
