:root {
  --bg: #faf5ef;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 250, 245, 0.78);
  --surface-strong: rgba(255, 252, 248, 0.96);
  --line: rgba(45, 43, 44, 0.1);
  --line-strong: rgba(45, 43, 44, 0.16);
  --text: #2d2b2c;
  --muted: #5c5857;
  --accent: #d4a6b6;
  --accent-dark: #7a8f7b;
  --accent-soft: #f1dfe5;
  --accent-rose: #e7c3cf;
  --accent-gold: #eadfcf;
  --charcoal-soft: #403d3e;
  --charcoal-panel: #353233;
  --sage-soft: #dfe7de;
  --rose-wash: rgba(212, 166, 182, 0.16);
  --sage-wash: rgba(122, 143, 123, 0.14);
  --shadow: 0 24px 70px rgba(45, 43, 44, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 195, 207, 0.46), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(196, 210, 195, 0.2), transparent 22%),
    radial-gradient(circle at 70% 85%, rgba(234, 223, 207, 0.34), transparent 18%),
    linear-gradient(180deg, #fbf4ef 0%, #fffbf6 48%, #f7f2ea 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  display: none;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 24px auto 48px;
}

.hero,
.section {
  backdrop-filter: blur(16px);
}

.hero {
  padding: 24px 24px 36px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-lg) + 12px);
  background:
    linear-gradient(135deg, rgba(255, 251, 246, 0.95), rgba(245, 239, 230, 0.86)),
    var(--surface);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -110px;
  top: -80px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand,
.nav-links a,
.button {
  text-decoration: none;
}

.brand {
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dark), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.nav-links a:hover::after {
  opacity: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
  gap: 28px;
  margin-top: 44px;
}

.hero-visual {
  display: grid;
  gap: 18px;
  align-content: start;
}

.portrait-card {
  margin: 0;
  min-height: 420px;
  border-radius: calc(var(--radius-lg) + 10px);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(45, 43, 44, 0.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(241, 223, 229, 0.92), rgba(248, 243, 235, 0.92));
}

.portrait-card.is-missing {
  display: grid;
  place-items: center;
  padding: 28px;
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  pointer-events: none;
  display: none;
}

.portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-card.is-missing img {
  display: none;
}

.portrait-fallback {
  display: none;
  max-width: 26ch;
  text-align: center;
  color: var(--charcoal-soft);
  line-height: 1.7;
  font-weight: 600;
}

.portrait-card.is-missing .portrait-fallback {
  display: block;
}

.hero-copy h1,
.section-heading h2,
.methodology-copy h2,
.contact-copy h2,
.hero-card h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  max-width: 11ch;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.hero-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 166, 182, 0.26);
  background: rgba(255, 248, 250, 0.94);
  color: var(--charcoal-soft);
  font-size: 0.83rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--charcoal-soft);
  font-weight: 700;
}

.lead {
  max-width: 54ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  isolation: isolate;
  z-index: 1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button strong,
.button span {
  line-height: 1.1;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #7f927f;
  background-image: none !important;
  background-blend-mode: normal;
  color: #fffaf5;
  box-shadow: none;
  filter: none;
  border-color: #7f927f;
  outline: none;
}

.button-primary:hover {
  background: #738873;
  background-image: none !important;
  border-color: #738873;
}

.button-secondary {
  background: rgba(255, 246, 249, 0.84);
  color: var(--charcoal-soft);
  border-color: rgba(212, 166, 182, 0.3);
}

.button-secondary:hover {
  border-color: rgba(212, 166, 182, 0.46);
  background: rgba(255, 244, 248, 0.94);
}

.topbar-cta {
  min-height: 44px;
  padding: 0 18px;
  background: #7f927f;
  background-image: none !important;
  background-color: #7f927f;
  background-blend-mode: normal;
  color: #fffaf5;
  border-color: #7f927f;
  box-shadow: none;
  filter: none;
  backdrop-filter: none;
  mix-blend-mode: normal;
}

.topbar-cta:hover {
  background: #738873;
  background-image: none !important;
  background-color: #738873;
  border-color: #738873;
}

.button-cta {
  justify-content: space-between;
  gap: 16px;
  min-width: 290px;
  padding: 16px 18px 16px 22px;
}

.button-cta-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.button-cta-copy strong {
  font-size: 1rem;
  font-weight: 800;
}

.button-cta-copy span {
  font-size: 0.82rem;
  opacity: 0.86;
}

.button-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  font-size: 1.15rem;
  flex-shrink: 0;
}

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

.hero-highlights li,
.treatment-card,
.contact-note,
.methodology-steps article,
.hero-card,
.trust-card,
.outcome-card,
.contact-benefits article,
.signature-strip article {
  border: 1px solid var(--line);
  background: rgba(255, 251, 247, 0.82);
}

.hero-highlights li {
  padding: 18px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: linear-gradient(180deg, rgba(255, 248, 250, 0.86), rgba(255, 251, 247, 0.82));
}

.signature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.signature-strip article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(245, 240, 233, 0.86));
}

.signature-strip strong,
.trust-card strong,
.contact-benefits strong,
.outcome-card h3 {
  display: block;
  margin-bottom: 8px;
}

.signature-strip p,
.trust-card p,
.contact-benefits p,
.outcome-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(53, 50, 51, 0.98), rgba(64, 61, 62, 0.96)),
    var(--charcoal-panel);
  color: #fffaf5;
  align-self: end;
  border-color: rgba(255, 250, 245, 0.08);
}

.card-label {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: rgba(212, 166, 182, 0.82);
}

.hero-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.hero-card p {
  color: rgba(255, 250, 245, 0.86);
  line-height: 1.8;
}

.hero-card span {
  color: rgba(223, 231, 222, 0.9);
}

.card-metrics {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.card-metrics article {
  padding-top: 16px;
  border-top: 1px solid rgba(122, 143, 123, 0.22);
}

.card-metrics strong,
.treatment-card h3,
.methodology-steps h3 {
  display: block;
  margin-bottom: 8px;
}

.section {
  margin-top: 22px;
  padding: 34px 24px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.9), rgba(248, 243, 235, 0.76));
  box-shadow: var(--shadow);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.featured-trust {
  background:
    linear-gradient(135deg, rgba(255, 244, 247, 0.96), rgba(248, 241, 236, 0.92)),
    var(--surface-strong);
}

.featured-trust h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 0.98;
}

.section-grid {
  display: grid;
  gap: 28px;
}

.section-heading h2,
.methodology-copy h2,
.contact-copy h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  max-width: 12ch;
}

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

#tratamientos .section-heading h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.pricing-note {
  display: inline-grid;
  gap: 4px;
  justify-items: center;
  margin: 18px auto 0;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(142, 161, 142, 0.18), rgba(212, 166, 182, 0.2));
  border: 1px solid rgba(122, 143, 123, 0.24);
  color: var(--charcoal-soft);
  box-shadow: 0 12px 26px rgba(45, 43, 44, 0.08);
}

.pricing-note span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.pricing-note strong {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1;
  color: var(--charcoal-soft);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.treatment-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(248, 243, 235, 0.86));
}

.treatment-card p,
.methodology-copy p,
.methodology-steps p,
.contact-copy p,
.contact-note p,
.contact-form label {
  color: var(--muted);
  line-height: 1.75;
}

.accent-card {
  background: linear-gradient(180deg, rgba(226, 234, 225, 0.92), rgba(248, 243, 235, 0.96));
}

.compact-heading h2 {
  max-width: 22ch;
}

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

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

.outcomes-section {
  display: grid;
  gap: 22px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.outcome-carousel {
  grid-column: span 3;
  display: grid;
  gap: 14px;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) + 2px);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(247, 243, 236, 0.9));
  box-shadow: var(--shadow);
  padding: 18px;
}

.outcome-carousel-track {
  position: relative;
}

.outcome-slide {
  display: none;
  margin: 0;
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 240, 233, 0.92), rgba(255, 251, 247, 0.98));
}

.outcome-slide.is-active {
  display: block;
}

.outcome-slide img {
  display: block;
  width: 100%;
  height: min(68vw, 520px);
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, rgba(241, 223, 229, 0.18), rgba(248, 243, 235, 0.6));
  padding: 16px;
}

.outcome-slide figcaption {
  padding: 16px 18px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.outcome-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.carousel-control,
.carousel-dot {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.carousel-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(64, 61, 62, 0.96), rgba(53, 50, 51, 0.98));
  color: #fffaf5;
  box-shadow: 0 12px 28px rgba(45, 43, 44, 0.18);
}

.carousel-control span {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.carousel-control:hover {
  background: linear-gradient(135deg, rgba(122, 143, 123, 0.96), rgba(95, 117, 96, 0.98));
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(64, 61, 62, 0.18);
}

.carousel-dot.is-active {
  background: linear-gradient(135deg, #8ea18e, #738a74);
  box-shadow: 0 0 0 4px rgba(122, 143, 123, 0.14);
}

.outcome-card {
  padding: 22px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(247, 243, 236, 0.84));
}

.outcome-card::before {
  content: "";
  position: absolute;
  inset: auto -50px -50px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 210, 195, 0.46), transparent 70%);
}

.outcome-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(212, 166, 182, 0.26), rgba(223, 231, 222, 0.9));
  color: var(--charcoal-soft);
  font-weight: 800;
}

.methodology {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
}

.methodology-steps {
  display: grid;
  gap: 16px;
}

.methodology-steps article {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.92), rgba(246, 242, 235, 0.84));
}

.methodology-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(223, 231, 222, 0.88));
  color: var(--charcoal-soft);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-quick-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.contact-quick-points li {
  padding-left: 22px;
  position: relative;
  color: var(--muted);
}

.contact-quick-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 0 0 4px rgba(212, 166, 182, 0.12);
}

.contact-note {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
}

.contact-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-benefits article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(226, 234, 225, 0.72), rgba(255, 251, 247, 0.92));
}

.contact-note strong {
  display: block;
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(45, 43, 44, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(248, 243, 235, 0.95)),
    var(--surface-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(45, 43, 44, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 252, 248, 0.94);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(212, 166, 182, 0.22);
  border-color: rgba(122, 143, 123, 0.5);
  box-shadow: 0 0 0 6px rgba(231, 195, 207, 0.34);
}

.submit-button {
  width: 100%;
  cursor: pointer;
  margin-top: 6px;
}

.submit-button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.form-status {
  min-height: 0;
  margin: 0;
  font-size: 0.95rem;
  display: none;
}

.form-status:not(:empty) {
  display: block;
  min-height: 1.5em;
}

.form-status.success {
  color: #557056;
}

.form-status.error {
  color: #8b3c3c;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr));
  gap: 20px;
  margin-top: 22px;
  padding: 26px 24px;
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(61, 57, 58, 0.98), rgba(46, 43, 44, 0.98));
  color: rgba(255, 250, 245, 0.88);
  box-shadow: var(--shadow);
}

.footer-brand,
.footer-links a,
.footer-contact a {
  text-decoration: none;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
  color: #fffaf5;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.footer-branding p,
.footer-socials p,
.footer-contact p,
.footer-links a,
.footer-contact a {
  color: rgba(255, 250, 245, 0.76);
  line-height: 1.75;
}

.footer-links,
.footer-socials,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-links strong,
.footer-socials strong,
.footer-contact strong {
  color: rgba(212, 166, 182, 0.92);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 245, 0.14);
  background: rgba(255, 250, 245, 0.06);
  color: rgba(255, 250, 245, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-brand:hover {
  color: #ffffff;
}

@media (max-width: 960px) {
  .site-footer,
  .trust-section,
  .hero-content,
  .methodology,
  .contact-section,
  .outcomes-grid,
  .treatments-grid,
  .hero-highlights,
  .contact-benefits,
  .signature-strip {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 22px;
  }

  .hero-visual {
    order: -1;
  }

  .portrait-card {
    min-height: 440px;
  }

  .section-heading h2,
  .methodology-copy h2,
  .contact-copy h2,
  .hero-copy h1 {
    max-width: none;
  }

  .hero-card {
    align-self: stretch;
  }

  .outcome-image-card {
    grid-column: span 1;
  }

  .outcome-carousel {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin: 10px auto 28px;
  }

  .hero,
  .section {
    padding: 20px 16px 24px;
    border-radius: 24px;
  }

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

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    font-size: 1.7rem;
  }

  .nav-links {
    gap: 12px;
    width: 100%;
  }

  .topbar-cta {
    width: 100%;
  }

  .hero-content {
    margin-top: 28px;
  }

  .hero-copy {
    display: grid;
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .lead,
  .hero-actions,
  .hero-highlights,
  .signature-strip {
    margin-top: 0;
  }

  .portrait-card {
    min-height: 320px;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-cta {
    min-width: 0;
  }

  .button-cta-icon {
    width: 34px;
    height: 34px;
  }

  .contact-form {
    padding: 20px;
  }

  .site-footer {
    padding: 22px 16px;
  }

  .outcome-slide img {
    height: min(84vw, 420px);
    padding: 12px;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 14px), var(--max-width));
  }

  .hero,
  .section {
    padding: 18px 14px 22px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero-pills {
    gap: 8px;
  }

  .hero-pills span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}