:root {
  --color-bg: #f4efe9;
  --color-bg-strong: #ece3da;
  --color-surface: rgba(255, 252, 248, 0.92);
  --color-surface-solid: #fffdfa;
  --color-surface-muted: #f7f0e9;
  --color-text: #261c21;
  --color-text-soft: #22191d;
  --color-accent: #6f243b;
  --color-accent-dark: #4f1628;
  --color-accent-soft: rgba(111, 36, 59, 0.08);
  --color-line: rgba(38, 28, 33, 0.1);
  --color-line-strong: rgba(38, 28, 33, 0.16);
  --color-shadow: rgba(58, 34, 42, 0.08);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-pill: 999px;
  --canvas: 1760px;
  --container: 1260px;
  --space-2xs: 0.4rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.35rem;
  --space-lg: 1.75rem;
  --space-xl: 2.5rem;
  --space-2xl: 3.5rem;
  --space-3xl: 5rem;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-heading: "Montserrat", "Manrope", "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(circle at top left, rgba(111, 36, 59, 0.06), transparent 30%),
    linear-gradient(180deg, #faf6f1 0%, var(--color-bg) 100%);
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--color-text);
  background:
    radial-gradient(circle at top right, rgba(111, 36, 59, 0.08), transparent 24%),
    radial-gradient(circle at 20% 12%, rgba(219, 201, 189, 0.3), transparent 22%),
    linear-gradient(180deg, #faf7f3 0%, var(--color-bg) 100%);
}

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

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

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

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

main {
  min-height: 60vh;
}

.page-main {
  padding-bottom: calc(var(--space-3xl) + 1.75rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-pill);
  background: var(--color-accent-dark);
  color: #fff;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(111, 36, 59, 0.28);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 var(--space-xs);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow--large {
  font-size: 1.32rem;
  letter-spacing: 0.06em;
}

.eyebrow--about-hero {
  font-size: 2.6rem;
  letter-spacing: 0.08em;
}

.eyebrow--form-title {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.hero__title,
.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.section-title,
.service-card h3,
.review-card h3,
.blog-card h3,
.credential-card h3,
.feature-card h3,
.direction-card h3,
.home-request h3,
.home-process__step h3,
.home-trust__card h3,
.faq-group__title,
.service-detail__title,
.mini-title,
.contact-method strong {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
}

.hero__title {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
}

.page-title {
  max-width: 15ch;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

body[data-page="privacy"] .page-title,
body[data-page="consent"] .page-title,
body[data-page="marketing-consent"] .page-title,
body[data-page="terms"] .page-title {
  max-width: 22ch;
  font-family: var(--font-heading);
  font-size: clamp(1.34rem, calc(3.2vw - 0.42rem), 2.94rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-title--about {
  max-width: none;
  font-size: clamp(3rem, 5vw, 5rem);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.section-title--compact {
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

.section-title--contacts-sub {
  font-size: clamp(1.5rem, 2.4vw, 2.35rem);
}

.section-title--accent {
  color: var(--color-accent);
}

.section-title--cta {
  max-width: 24ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.cta-band__content--full {
  width: 100%;
  text-align: left;
}

.cta-band__content--full .section-title--cta {
  max-width: none;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
}

.home-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.18vw, 1.32rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
  text-align: center;
  margin-inline: auto;
  white-space: normal;
}

.cta-band__content--full .home-cta-title {
  font-size: clamp(1rem, 1.18vw, 1.32rem);
}

@media (min-width: 1200px) {
  .home-cta-title {
    white-space: nowrap;
  }
}

.cta-band__content--full .cta-band__actions {
  margin-top: 1.2rem;
}

.cta-band__actions {
  justify-content: center;
}

.page-lead,
.hero__lead,
.rich-text p,
.footer-copy,
.modal__copy,
.form-note,
.contact-note,
.legal-text p,
.service-detail__copy,
.service-card p,
.review-card p,
.blog-card p,
.feature-card p,
.direction-card p,
.home-request p,
.home-process__step p,
.home-trust__card p,
.home-metric span,
.quick-answer span,
.doctor-intro-card__text,
.home-doctor-note__lead,
.contact-method span,
.credential-card p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.75;
}

.contact-method span {
  font-size: 1rem;
}

.page-lead--wide {
  max-width: 62rem;
}

.home-process__note {
  margin: 1rem 0 0;
  padding-left: clamp(1.15rem, 1.8vw, 1.6rem);
  color: var(--color-text-soft);
  line-height: 1.7;
}

.rich-text p + p {
  margin-top: 1rem;
}

.about-intro-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-top: 0;
  gap: 1rem;
  max-width: 64ch;
}

.about-intro-copy p {
  margin: 0;
  color: rgba(38, 28, 33, 0.88);
  font-size: clamp(1.06rem, 0.28vw + 1rem, 1.18rem);
  line-height: 1.84;
}

.about-intro-copy p + p {
  margin-top: 0;
}

.about-intro-copy p:last-child {
  font-size: 1rem;
  line-height: 1.7;
}

.bullet-list,
.footer-list,
.credential-links,
.legal-links,
.hero__trust,
.faq-list,
.faq-groups,
.cards-stack {
  margin: 0;
  padding: 0;
}

.bullet-list,
.footer-list {
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(111, 36, 59, 0.08);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(111, 36, 59, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.64);
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-weight: 600;
}

.service-price {
  margin: 0;
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: 800;
}

@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;
  }
}
