/*
Theme Name: Rocky Mountain Surrogacy
Theme URI: https://rockymountainsurrogacy.com
Author: Rocky Mountain Surrogacy
Description: Custom theme for Rocky Mountain Surrogacy — boutique gestational surrogacy agency since 2007.
Version: 3.2.6
License: Private
Text Domain: rms
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --rms-bg:           oklch(0.985 0.012 70);   /* warm cream */
  --rms-fg:           oklch(0.28 0.025 150);   /* deep sage-ink */
  --rms-primary:      oklch(0.60 0.105 20);    /* dusty rose */
  --rms-primary-fg:   oklch(0.99 0.005 80);
  --rms-secondary:    oklch(0.94 0.025 60);    /* soft blush */
  --rms-secondary-fg: oklch(0.32 0.03 150);
  --rms-muted:        oklch(0.96 0.015 70);
  --rms-muted-fg:     oklch(0.48 0.025 150);
  --rms-border:       oklch(0.90 0.02 70);
  --rms-card:         oklch(0.995 0.006 80);
  --rms-accent:       oklch(0.74 0.12 70);     /* brass gold */
  --rms-blush:        oklch(0.94 0.025 20);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;

  --radius: 0.5rem;
  --max-w: 80rem;    /* 1280px */
  --max-w-4: 56rem;  /* 896px */
  --max-w-3: 48rem;  /* 768px */
  --px: clamp(1.25rem, 4vw, 2rem);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--rms-bg);
  color: var(--rms-fg);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: var(--rms-blush); color: oklch(0.36 0.035 150); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--rms-fg);
  line-height: 1.15;
}
h1 { font-weight: 400; }

main { flex: 1; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}
.container--narrow { max-width: var(--max-w-4); margin-inline: auto; padding-inline: var(--px); }
.container--prose   { max-width: var(--max-w-3); margin-inline: auto; padding-inline: var(--px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.75rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--rms-primary);
  color: var(--rms-primary-fg);
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.12);
}
.btn--primary:hover { background: oklch(0.55 0.105 20); }

.btn--outline {
  background: transparent;
  color: var(--rms-fg);
  border: 1.5px solid oklch(0.60 0.105 20 / 0.30);
}
.btn--outline:hover { border-color: var(--rms-primary); color: var(--rms-primary); }

.btn--lg { padding: 0.875rem 2.25rem; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid oklch(0.90 0.02 70 / 0.60);
  background: oklch(0.985 0.012 70 / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: oklch(0.94 0.025 60 / 0.60);
  box-shadow: inset 0 0 0 1px oklch(0.60 0.105 20 / 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, box-shadow 0.18s;
}
.site-logo:hover .site-logo__mark {
  background: var(--rms-secondary);
  box-shadow: inset 0 0 0 1px oklch(0.60 0.105 20 / 0.30);
}
.site-logo__text { display: flex; flex-direction: column; }
.site-logo__name  { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; color: var(--rms-fg); }
.site-logo__sub   { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--rms-primary); margin-top: -2px; line-height: 1; }

/* Desktop nav */
.site-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }

.site-nav__link {
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.75);
  transition: color 0.15s;
  text-decoration: none;
}
.site-nav__link:hover,
.site-nav__link[aria-current="page"] { color: var(--rms-primary); }

/* More dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
}
.nav-dropdown__btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.75);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 0;
  transition: color 0.15s;
}
.nav-dropdown__btn:hover,
.nav-dropdown:hover .nav-dropdown__btn { color: var(--rms-primary); }
.nav-dropdown__btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown__btn svg,
.nav-dropdown.is-open .nav-dropdown__btn svg { transform: rotate(180deg); }

.nav-dropdown__menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.75rem);
  transform: translateX(-50%);
  width: 11rem;
  background: var(--rms-card);
  border: 1px solid var(--rms-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px oklch(0.60 0.105 20 / 0.08);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s, visibility 0.15s;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.nav-dropdown__item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.80);
  transition: background 0.12s, color 0.12s;
  text-decoration: none;
}
.nav-dropdown__item:hover { background: oklch(0.94 0.025 60 / 0.60); color: var(--rms-primary); }

/* Header actions */
.site-header__actions { display: none; align-items: center; gap: 1rem; }
@media (min-width: 1024px) { .site-header__actions { display: flex; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.75);
  transition: color 0.15s;
  text-decoration: none;
}
.header-phone:hover { color: var(--rms-primary); }
.header-phone svg { width: 16px; height: 16px; }

/* Mobile menu toggle */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: none;
  background: none;
  color: oklch(0.28 0.025 150 / 0.80);
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-btn:hover { background: var(--rms-secondary); }
.mobile-menu-btn svg { width: 20px; height: 20px; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  border-top: 1px solid oklch(0.90 0.02 70 / 0.60);
  background: var(--rms-bg);
}
.mobile-nav.is-open { display: block; }

.mobile-nav__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem var(--px) 1.25rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav__link {
  padding-block: 0.625rem;
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.80);
  transition: color 0.15s;
  text-decoration: none;
}
.mobile-nav__link:hover { color: var(--rms-primary); }
.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--rms-fg);
  text-decoration: none;
}
.mobile-nav__phone svg { width: 16px; height: 16px; color: var(--rms-primary); }
.mobile-nav__cta {
  margin-top: 0.75rem;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid oklch(0.90 0.02 70 / 0.60);
  background: oklch(0.94 0.025 60 / 0.40);
}
.site-footer__grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

.site-footer__about p {
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--rms-muted-fg);
}
.footer-contact { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--rms-primary); }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
}
.site-footer__col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__col li a {
  font-size: 0.875rem;
  color: var(--rms-muted-fg);
  text-decoration: none;
  transition: color 0.15s;
}
.site-footer__col li a:hover { color: var(--rms-primary); }

.site-footer__bottom {
  border-top: 1px solid oklch(0.90 0.02 70 / 0.60);
}
.site-footer__bottom-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--rms-muted-fg);
}
@media (min-width: 768px) {
  .site-footer__bottom-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  border-bottom: 1px solid oklch(0.90 0.02 70 / 0.50);
  background: linear-gradient(to bottom, oklch(0.94 0.025 60 / 0.50), var(--rms-bg));
}
.page-hero__inner {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 5rem 5.5rem;
  text-align: center;
}
@media (min-width: 1024px) { .page-hero__inner { padding-block: 7rem; } }

.page-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rms-primary);
  margin-bottom: 1.25rem;
}
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--rms-fg);
}
.page-hero__intro {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--rms-muted-fg);
}

/* ============================================================
   PROSE SECTION
   ============================================================ */
.prose-section {
  max-width: var(--max-w-3);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem 5rem;
}
.prose-section > * + * { margin-top: 1.5rem; }
.prose-section p { font-size: 1.05rem; line-height: 1.75; color: oklch(0.28 0.025 150 / 0.85); }
.prose-section h2 { font-family: var(--font-display); font-size: 1.875rem; margin-top: 3rem; margin-bottom: 0.5rem; }
.prose-section h3 { font-family: var(--font-display); font-size: 1.25rem; margin-top: 2rem; }
.prose-section a { color: var(--rms-primary); text-decoration: underline; text-underline-offset: 4px; }
.prose-section a:hover { color: oklch(0.55 0.105 20); }
.prose-section ul { list-style: disc; padding-left: 1.5rem; }
.prose-section ul li { margin-bottom: 0.5rem; }
.prose-section strong { font-weight: 600; color: var(--rms-fg); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  border-top: 1px solid oklch(0.90 0.02 70 / 0.60);
  background: oklch(0.94 0.025 60 / 0.40);
}
.cta-section__inner {
  max-width: var(--max-w-3);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem;
  text-align: center;
}
.cta-section h2 { font-family: var(--font-display); font-size: clamp(1.875rem, 3vw, 2.5rem); }
.cta-section p { margin-top: 1rem; max-width: 30rem; margin-inline: auto; color: var(--rms-muted-fg); }
.cta-section .btn-group { margin-top: 2rem; justify-content: center; }

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: var(--rms-card);
  border: 1px solid var(--rms-border);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 20px oklch(0.60 0.105 20 / 0.08); }
.card--padded { padding: 2.5rem; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; gap: 1.5rem; }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1.5rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, oklch(0.985 0.012 70 / 0.92) 40%, oklch(0.985 0.012 70 / 0.55));
}
.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 8rem 6rem;
  max-width: 44rem;
  padding-left: max(var(--px), calc((100vw - var(--max-w)) / 2 + var(--px)));
}
.home-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rms-primary);
  margin-bottom: 1.25rem;
}
.home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--rms-fg);
}
.home-hero__title em { font-style: italic; color: var(--rms-primary); }
.home-hero__sub {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: oklch(0.28 0.025 150 / 0.80);
  max-width: 34rem;
}
.home-hero .btn-group { margin-top: 2.5rem; }

/* ============================================================
   HOMEPAGE — ABOUT STRIP
   ============================================================ */
.about-strip {
  background: var(--rms-secondary);
  border-block: 1px solid var(--rms-border);
}
.about-strip__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .about-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2rem; }
}
.about-strip p { font-size: 1.05rem; line-height: 1.7; color: oklch(0.28 0.025 150 / 0.85); max-width: 48rem; }
.about-strip p strong { font-weight: 600; color: var(--rms-fg); }

/* ============================================================
   HOMEPAGE — PROCESS STEPS
   ============================================================ */
.process-section {
  padding-block: 5rem;
}
.process-section__header {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  text-align: center;
  margin-bottom: 3.5rem;
}
.process-section__header .eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rms-primary);
  margin-bottom: 0.75rem;
}
.process-section__header h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.process-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step { padding: 2rem; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: oklch(0.60 0.105 20 / 0.20);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.process-step p  { font-size: 0.9375rem; color: var(--rms-muted-fg); line-height: 1.65; }

/* ============================================================
   HOMEPAGE — SPLIT CARDS (Parent/Surrogate)
   ============================================================ */
.split-section {
  padding-block: 2rem 5rem;
}
.split-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .split-grid { grid-template-columns: repeat(2, 1fr); } }

.split-card { border-radius: 2rem; overflow: hidden; display: flex; flex-direction: column; }
.split-card__img { height: 280px; overflow: hidden; }
.split-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.split-card:hover .split-card__img img { transform: scale(1.03); }
.split-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.split-card__eyebrow { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.2em; color: var(--rms-primary); margin-bottom: 0.75rem; }
.split-card__body h2 { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 0.75rem; }
.split-card__body p  { font-size: 0.9375rem; color: var(--rms-muted-fg); line-height: 1.65; margin-bottom: 1.25rem; }
.split-card__list    { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.split-card__list li { display: flex; align-items: baseline; gap: 0.5rem; font-size: 0.875rem; color: var(--rms-muted-fg); }
.split-card__list li::before { content: "–"; color: var(--rms-primary); flex-shrink: 0; }
.split-card .btn { margin-top: auto; align-self: flex-start; }

/* ============================================================
   HOMEPAGE — TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--rms-secondary);
  border-block: 1px solid var(--rms-border);
  padding-block: 2.5rem;
}
.trust-strip__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.trust-item { text-align: center; }
.trust-item__val { font-family: var(--font-display); font-size: 2rem; color: var(--rms-primary); }
.trust-item__label { font-size: 0.8125rem; color: var(--rms-muted-fg); margin-top: 0.25rem; }

/* ============================================================
   HOMEPAGE — TESTIMONIALS
   ============================================================ */
.testimonials-section { padding-block: 5rem; }
.testimonials-section__header {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  text-align: center;
  margin-bottom: 3rem;
}
.testimonials-section__header h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.testimonials-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { padding: 2rem; }
.testimonial-card blockquote { font-size: 1rem; line-height: 1.7; color: oklch(0.28 0.025 150 / 0.85); font-style: italic; }
.testimonial-card blockquote::before { content: "\201C"; display: block; font-family: var(--font-display); font-size: 3rem; line-height: 1; color: oklch(0.60 0.105 20 / 0.25); margin-bottom: 0.25rem; }
.testimonial-card cite { display: block; margin-top: 1rem; font-size: 0.8125rem; font-weight: 500; font-style: normal; color: var(--rms-muted-fg); }

/* ============================================================
   FAQ / ACCORDION
   ============================================================ */
.faq-section {
  padding-block: 5rem;
  background: linear-gradient(to bottom, var(--rms-bg), oklch(0.94 0.025 60 / 0.30));
}
.faq-section__header {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section__header h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.faq-list {
  max-width: var(--max-w-3);
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--rms-border);
  border-radius: 1rem;
  background: var(--rms-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
  font-size: 1rem;
  color: var(--rms-fg);
  transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rms-primary); }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--rms-primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--rms-primary); }
.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: oklch(0.28 0.025 150 / 0.80);
}
.faq-body p + p { margin-top: 0.75rem; }
.faq-body ul { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.faq-body li { margin-bottom: 0.375rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 3rem 5rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--rms-fg);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1.5px solid var(--rms-border);
  border-radius: var(--radius);
  background: var(--rms-card);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--rms-fg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--rms-primary);
  box-shadow: 0 0 0 3px oklch(0.60 0.105 20 / 0.12);
}
.form-textarea { min-height: 8rem; resize: vertical; }
.form-hint { font-size: 0.8125rem; color: var(--rms-muted-fg); }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-submit { margin-top: 0.5rem; }

/* Contact info card */
.contact-info-card {
  max-width: 32rem;
}
.contact-layout {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem 5rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .contact-layout { grid-template-columns: 5fr 7fr; align-items: start; gap: 5rem; }
}
.contact-info__item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info__item + .contact-info__item { margin-top: 1.25rem; }
.contact-info__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: oklch(0.60 0.105 20 / 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rms-primary);
}
.contact-info__icon svg { width: 16px; height: 16px; }
.contact-info__label { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rms-muted-fg); margin-bottom: 0.25rem; }
.contact-info__val { font-size: 1rem; color: var(--rms-fg); font-weight: 500; }
.contact-info__val a { color: var(--rms-primary); text-decoration: none; }
.contact-info__val a:hover { text-decoration: underline; }
.contact-info__sub { font-size: 0.8125rem; color: var(--rms-muted-fg); margin-top: 0.125rem; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-section {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem 2rem;
}
.pricing-section h2 { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 1.5rem; }
.pricing-table { width: 100%; border-collapse: collapse; font-size: 0.9375rem; }
.pricing-table th { text-align: left; padding: 0.875rem 1rem; background: var(--rms-secondary); font-weight: 600; font-size: 0.875rem; border-bottom: 2px solid var(--rms-border); }
.pricing-table td { padding: 0.875rem 1rem; border-bottom: 1px solid var(--rms-border); color: oklch(0.28 0.025 150 / 0.85); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: oklch(0.94 0.025 60 / 0.30); }
.pricing-note { margin-top: 1rem; font-size: 0.875rem; color: var(--rms-muted-fg); font-style: italic; }

/* ============================================================
   QUALIFICATIONS LIST
   ============================================================ */
.qual-grid {
  max-width: var(--max-w-4);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem 5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .qual-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .qual-grid { grid-template-columns: repeat(3, 1fr); } }

.qual-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 1rem; }
.qual-card ul { display: flex; flex-direction: column; gap: 0.625rem; }
.qual-card li { display: flex; align-items: baseline; gap: 0.625rem; font-size: 0.9375rem; color: oklch(0.28 0.025 150 / 0.85); line-height: 1.5; }
.qual-card li::before { content: "✓"; color: var(--rms-primary); font-weight: 600; flex-shrink: 0; }

/* ============================================================
   REVEAL ANIMATION
   Opacity-0 gate is only active when body.rms-js-ready exists,
   so content is always visible without JS or on first paint.
   ============================================================ */
.reveal {
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
  will-change: opacity, transform;
}
.rms-js-ready .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
}
.rms-js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .rms-js-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   404
   ============================================================ */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 6rem var(--px);
}
.not-found__code { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--rms-primary); margin-bottom: 1rem; }
.not-found h1 { font-size: 2.5rem; }
.not-found p { margin-top: 0.75rem; color: var(--rms-muted-fg); max-width: 24rem; }
.not-found .btn-group { margin-top: 2rem; justify-content: center; }

/* ============================================================
   BLOG
   ============================================================ */
.post-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 4rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .post-grid { grid-template-columns: repeat(3, 1fr); } }

.post-card { display: flex; flex-direction: column; }
.post-card__thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: 1rem 1rem 0 0; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; border: 1px solid var(--rms-border); border-top: none; border-radius: 0 0 1rem 1rem; background: var(--rms-card); }
.post-card__date { font-size: 0.75rem; color: var(--rms-muted-fg); margin-bottom: 0.5rem; }
.post-card__title { font-family: var(--font-display); font-size: 1.375rem; line-height: 1.25; margin-bottom: 0.75rem; }
.post-card__title a { color: var(--rms-fg); text-decoration: none; transition: color 0.15s; }
.post-card__title a:hover { color: var(--rms-primary); }
.post-card__excerpt { font-size: 0.9rem; color: var(--rms-muted-fg); line-height: 1.65; flex: 1; }
.post-card__more { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 500; color: var(--rms-primary); }

.single-post { max-width: var(--max-w-3); margin-inline: auto; padding-inline: var(--px); padding-block: 4rem; }
.single-post .post-meta { font-size: 0.8125rem; color: var(--rms-muted-fg); margin-bottom: 2rem; }
.single-post .post-content h2 { font-family: var(--font-display); font-size: 1.875rem; margin-top: 3rem; margin-bottom: 0.75rem; }
.single-post .post-content p { font-size: 1.05rem; line-height: 1.75; color: oklch(0.28 0.025 150 / 0.85); margin-bottom: 1.5rem; }

/* ============================================================
   SECTION SPACING HELPERS
   ============================================================ */
.section { padding-block: 5rem; }
.section--sm { padding-block: 3rem; }
.section__inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--px); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header .eyebrow { font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.22em; color: var(--rms-primary); margin-bottom: 0.75rem; }
.section__header h2 { font-size: clamp(1.875rem, 3vw, 2.5rem); }
.section__header p { margin-top: 1rem; max-width: 36rem; margin-inline: auto; color: var(--rms-muted-fg); }

/* ============================================================
   WP BLOCK EDITOR RESET (keeps /my-account/ readable)
   ============================================================ */
.entry-content p  { line-height: 1.7; margin-bottom: 1em; }
.entry-content ul { list-style: disc; padding-left: 1.5em; margin-bottom: 1em; }
.entry-content h2 { font-family: var(--font-display); font-size: 1.875rem; margin-bottom: 0.5em; }

/* ============================================================
   HOMEPAGE v2 — SHARED LAYOUT HELPERS
   ============================================================ */
.rms-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

/* Section wrappers that match Lovable border-t / bg patterns */
.rms-section-alt   { border-top: 1px solid oklch(0.90 0.02 70 / 0.50); background: oklch(0.94 0.025 60 / 0.30); }
.rms-section-border { border-top: 1px solid oklch(0.90 0.02 70 / 0.50); }
.rms-section-cta-gradient { background: linear-gradient(to bottom, oklch(0.94 0.025 60 / 0.40), oklch(0.94 0.025 20 / 0.40)); }

/* Shared eyebrow + title used across all sections */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--rms-primary);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.1;
}

.rms-text-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--rms-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s;
}
.rms-text-link:hover { color: oklch(0.55 0.105 20); }

.rms-display-link {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--rms-primary);
  text-decoration: none;
  transition: color 0.15s;
}
.rms-display-link:hover { color: oklch(0.55 0.105 20); }

/* ============================================================
   HOMEPAGE v2 — HERO  (two-column grid)
   ============================================================ */
.rms-grid-hero {
  display: grid;
  gap: 3rem;
  padding-block: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .rms-grid-hero {
    grid-template-columns: 6fr 6fr;
    gap: 3rem;
    padding-block: 5rem;
  }
}
@media (min-width: 1024px) {
  .rms-grid-hero {
    gap: 4rem;
    padding-block: 6rem;
  }
}

/* Left column */
.hero-text { display: flex; flex-direction: column; }
@media (min-width: 1024px) { .hero-text { padding-top: 2.5rem; } }

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--rms-primary);
  background: oklch(0.60 0.105 20 / 0.08);
  border: 1.5px solid oklch(0.60 0.105 20 / 0.30);
  border-radius: 99px;
  padding: 0.35rem 0.875rem;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--rms-fg);
}
.hero-title em { font-style: italic; color: var(--rms-primary); }

.hero-sub {
  margin-top: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: oklch(0.28 0.025 150 / 0.80);
  max-width: 36rem;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 2rem;
}
.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--rms-muted-fg);
  text-decoration: none;
  transition: color 0.15s;
}
a.hero-trust-item:hover { color: var(--rms-primary); }
.hero-trust-item svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Right column — image with decorative orbs */
.hero-image-wrap {
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb--tl {
  width: 220px;
  height: 220px;
  background: oklch(0.60 0.105 20 / 0.14);
  top: -3rem;
  left: -3rem;
}
.hero-orb--br {
  width: 180px;
  height: 180px;
  background: oklch(0.94 0.025 60 / 0.50);
  bottom: -2rem;
  right: -2rem;
}

.hero-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px oklch(0.60 0.105 20 / 0.12), 0 8px 20px oklch(0 0 0 / 0.06);
}
@media (min-width: 1024px) { .hero-img { border-radius: 2rem; } }

/* ============================================================
   HOMEPAGE v2 — PROCESS CARDS (How it works)
   ============================================================ */
.process-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .process-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-cards { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  background: var(--rms-card);
  border: 1px solid var(--rms-border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.process-card:hover {
  border-color: oklch(0.60 0.105 20 / 0.40);
  box-shadow: 0 6px 24px oklch(0.60 0.105 20 / 0.08);
}
.process-card__num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--rms-primary);
  line-height: 1;
  margin-bottom: 1rem;
}
.process-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.process-card__desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--rms-muted-fg);
}

/* ============================================================
   HOMEPAGE v2 — SPLIT CARDS v2 (Parents / Surrogates)
   ============================================================ */
.split-cards-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .split-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.split-card-v2 {
  border: 1px solid var(--rms-border);
  border-radius: 2rem;
  background: var(--rms-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px oklch(0 0 0 / 0.04);
}

.split-card-v2__img {
  height: 16rem;
  overflow: hidden;
}
.split-card-v2__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.split-card-v2:hover .split-card-v2__img img { transform: scale(1.03); }

.split-card-v2__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-card-v2__body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
}
.split-card-v2__body p {
  font-size: 0.9375rem;
  color: var(--rms-muted-fg);
  line-height: 1.65;
}
.split-card-v2__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.25rem;
}
.split-card-v2__list li {
  font-size: 0.875rem;
  color: oklch(0.28 0.025 150 / 0.80);
  padding-left: 1.25rem;
  position: relative;
}
.split-card-v2__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--rms-primary);
  font-size: 1.25rem;
  line-height: 1.1;
}

/* ============================================================
   HOMEPAGE v2 — TRUST ICON CARDS
   ============================================================ */
.trust-cards-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .trust-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: oklch(0.94 0.025 60 / 0.40);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.trust-card__icon {
  color: var(--rms-primary);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
}
.trust-card p {
  font-size: 0.9375rem;
  color: var(--rms-muted-fg);
  line-height: 1.6;
}

/* ============================================================
   HOMEPAGE v2 — TESTIMONIALS
   ============================================================ */
.testimonials-v2-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-v2-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-v2 {
  background: var(--rms-card);
  border: 1px solid var(--rms-border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-v2 blockquote {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.65;
  color: oklch(0.28 0.025 150 / 0.88);
  flex: 1;
}
.testimonial-v2 figcaption {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rms-muted-fg);
}

/* ============================================================
   HOMEPAGE v2 — FAQ (update open state to match Lovable)
   ============================================================ */
/* Override the existing .faq-item for open state coloring */
.faq-item[open] {
  border-color: oklch(0.60 0.105 20 / 0.40);
  background: oklch(0.94 0.025 60 / 0.40);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.0625rem;
}

/* ============================================================
   APPLY PAGES — horizontal info bar + wider form
   ============================================================ */
.apply-layout {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
  padding-block: 3rem 5rem;
}
.apply-info-bar {
  background: var(--rms-card);
  border: 1px solid var(--rms-border);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.apply-info-bar__heading {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rms-primary);
}
.apply-info-bar__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--rms-muted-fg);
}
.apply-info-bar__list li { display: flex; align-items: center; gap: 0.5rem; }
.apply-info-bar__check { color: var(--rms-primary); font-weight: 600; }
.apply-info-bar__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rms-border);
}
.apply-info-bar__back,
.apply-info-bar__note { margin: 0; font-size: 0.875rem; color: var(--rms-muted-fg); }
.apply-info-bar__back a,
.apply-info-bar__note a { color: var(--rms-primary); }
.apply-form-note {
  max-width: var(--max-w-3);
  margin: 0 auto 1.5rem;
  font-size: 0.8125rem;
  color: var(--rms-muted-fg);
  padding: 0.75rem 1rem;
  background: var(--rms-secondary);
  border-radius: 0.5rem;
}
.apply-form { max-width: var(--max-w-3); margin-inline: auto; }
@media (max-width: 640px) {
  .apply-info-bar__list { grid-template-columns: 1fr; }
}

/* ============================================================
   APPLY CHOOSER — /apply/
   ============================================================ */
.apply-choice-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .apply-choice-grid { grid-template-columns: repeat(2, 1fr); }
}
.apply-choice {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.apply-choice .btn { margin-top: auto; }
.apply-choice h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.apply-choice p { color: var(--rms-muted-fg); font-size: 0.9375rem; }

/* ============================================================
   GRAVITY FORMS — match site button style
   ============================================================ */
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer input[type="button"],
.gform_wrapper .gform_button,
.gform_wrapper button.gform_button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 1.75rem;
  border-radius: 99px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all 0.18s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  background: var(--rms-primary) !important;
  color: var(--rms-primary-fg) !important;
  box-shadow: 0 1px 3px oklch(0 0 0 / 0.12);
  border-color: var(--rms-primary) !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer input[type="button"]:hover,
.gform_wrapper .gform_button:hover,
.gform_wrapper button.gform_button:hover {
  background: oklch(0.55 0.105 20) !important;
  color: var(--rms-primary-fg) !important;
  border-color: oklch(0.55 0.105 20) !important;
}
