:root {
  --rose: #8b5564;
  --rose-soft: #ddb8c4;
  --rose-mist: #eedde0;
  --ivory: #fbf8f6;
  --paper: #ffffff;
  --ink: #2d2728;
  --muted: #6f6868;
  --sage: #465955;
  --sage-soft: #dce6e2;
  --line: rgba(139, 85, 100, 0.22);
  --shadow: 0 24px 70px rgba(65, 45, 50, 0.13);
  --serif: "Arteta Regular", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Kiona", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(139, 85, 100, 0.26);
  outline-offset: 3px;
}

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

button {
  cursor: pointer;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rose);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px 44px;
  background: rgba(251, 248, 246, 0.9);
  border-bottom: 1px solid rgba(139, 85, 100, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, var(--rose-mist));
}

.brand strong {
  display: block;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--paper);
  background: var(--sage);
  border-radius: 8px;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(70, 89, 85, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--rose);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 72px 44px 48px;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/monograma-hero.png");
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 248, 246, 0.96) 0%, rgba(251, 248, 246, 0.9) 36%, rgba(251, 248, 246, 0.2) 76%),
    linear-gradient(0deg, rgba(45, 39, 40, 0.12), rgba(45, 39, 40, 0.02));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(620px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 74px;
  font-weight: 400;
  line-height: 0.98;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: #4d4748;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.32;
}

.hero-location {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--paper);
  background: var(--rose);
  box-shadow: 0 16px 34px rgba(139, 85, 100, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--sage);
}

.button-secondary {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--rose);
  background: var(--paper);
}

.button-tertiary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.button-tertiary:hover,
.button-tertiary:focus-visible {
  color: var(--sage);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-portrait {
  position: absolute;
  right: max(44px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  z-index: 1;
  width: min(29vw, 350px);
  margin: 0;
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(45, 39, 40, 0.24);
}

.hero-portrait figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 12px 14px;
  background: rgba(251, 248, 246, 0.92);
  border: 1px solid rgba(139, 85, 100, 0.2);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(45, 39, 40, 0.18);
}

.hero-portrait strong {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}

.hero-portrait span {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin: 34px 0 0;
}

.trust-strip div {
  min-height: 92px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(139, 85, 100, 0.2);
  border-radius: 8px;
}

.trust-strip dt {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-label {
  display: none;
}

.section {
  padding: 96px 44px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-band {
  padding: 22px 44px;
  background: var(--sage);
  color: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.intro-grid p {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
}

.intro-grid img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.9;
}

.quick-whatsapp {
  padding: 34px 44px;
  background: var(--paper);
  border-bottom: 1px solid rgba(139, 85, 100, 0.12);
}

.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: center;
}

.quick-copy h2 {
  margin: 0;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.1;
}

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

.quick-action {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px;
  background: var(--ivory);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.quick-action:hover,
.quick-action:focus-visible {
  transform: translateY(-1px);
  background: #fff;
  border-color: rgba(139, 85, 100, 0.42);
}

.quick-action strong {
  color: var(--sage);
  font-size: 16px;
}

.quick-action span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.experience-copy h2,
.priority-care h2,
.process h2,
.proof h2,
.faq h2,
.location h2,
.contact h2 {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.experience-copy > p:not(.eyebrow),
.priority-copy > p,
.location-copy > p,
.contact-copy > p {
  margin: 0;
  color: var(--muted);
  max-width: 680px;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--rose);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  color: var(--paper);
  background: var(--rose);
  border-color: var(--rose);
}

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

.treatment-card {
  min-height: 240px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(45, 39, 40, 0.05);
  transition: transform 180ms ease, border-color 180ms ease;
}

.treatment-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 85, 100, 0.42);
}

.treatment-card.is-hidden {
  display: none;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--sage);
  background: var(--sage-soft);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.treatment-card h3 {
  margin-top: 26px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.treatment-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.experience {
  background: #f4eceb;
}

.priority-care {
  background: var(--sage);
  color: var(--paper);
}

.priority-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.priority-care .eyebrow {
  color: var(--rose-soft);
}

.priority-care h2 {
  color: var(--paper);
}

.priority-copy {
  display: grid;
  gap: 20px;
}

.priority-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

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

.symptom-list li {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.symptom-list strong {
  color: var(--rose-soft);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

.symptom-list span {
  color: rgba(255, 255, 255, 0.76);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 56px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.timeline div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--paper);
  background: var(--sage);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 26px;
}

.timeline h3 {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.timeline p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
}

.brand-panel {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.doctor-panel {
  background: #fdfafa;
}

.doctor-photo-stack {
  position: relative;
  min-height: 440px;
  padding: 18px;
  background: linear-gradient(135deg, #fff, var(--rose-mist));
}

.doctor-photo-stack img {
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(45, 39, 40, 0.12);
}

.doctor-photo-main {
  width: 100%;
  height: 400px;
  object-position: center top;
}

.doctor-photo-stack .doctor-photo-secondary {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 6px solid #fdfafa;
  object-position: center top;
}

.brand-panel div {
  padding: 26px;
}

.brand-panel .doctor-photo-stack {
  padding: 18px;
}

.brand-panel h3 {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.brand-panel p {
  margin: 10px 0 0;
  color: var(--muted);
}

.process {
  background: var(--ivory);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

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

.process-list li {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(45, 39, 40, 0.05);
}

.process-list span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-list strong {
  color: var(--sage);
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.proof {
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: var(--ivory);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
}

.feature-list strong {
  color: var(--sage);
  font-size: 17px;
}

.feature-list span {
  color: var(--muted);
}

.testimonials {
  background: var(--rose-mist);
}

.reviews-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--sage);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.reviews-link:hover,
.reviews-link:focus-visible {
  background: var(--rose);
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -8px 0 26px;
  color: var(--sage);
}

.rating-summary strong {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.rating-stars {
  color: #b88a32;
  font-size: 22px;
  letter-spacing: 0;
}

.rating-summary span:last-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.testimonial-grid figure {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  margin: 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(139, 85, 100, 0.18);
  border-radius: 8px;
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.3;
}

.testimonial-grid figcaption {
  margin-top: 26px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--paper);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
}

summary {
  padding: 22px 24px;
  color: var(--rose);
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--sage);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.location-copy {
  display: grid;
  gap: 18px;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.location-panel {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(139, 85, 100, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-preview {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--sage-soft);
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.location-panel li {
  display: grid;
  gap: 4px;
  padding: 18px 22px;
  border-top: 1px solid rgba(139, 85, 100, 0.12);
}

.location-panel strong {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.location-panel span {
  color: var(--muted);
}

.contact {
  background: var(--sage);
  color: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.contact .eyebrow {
  color: var(--rose-soft);
}

.contact h2 {
  color: var(--paper);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

address {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  font-style: normal;
}

address strong {
  color: var(--rose-soft);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

address span {
  color: rgba(255, 255, 255, 0.76);
}

address a {
  color: var(--paper);
  border-bottom: 1px solid rgba(221, 184, 196, 0.58);
}

address a:hover,
address a:focus-visible {
  color: var(--rose-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid rgba(139, 85, 100, 0.18);
  border-radius: 8px;
  outline: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(139, 85, 100, 0.13);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  padding: 34px 44px;
  background: #262d2b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(0, 620px);
  gap: 28px;
  align-items: start;
  justify-content: space-between;
}

.site-footer strong {
  color: var(--rose-soft);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--rose-soft);
  border-bottom: 1px solid rgba(221, 184, 196, 0.45);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 1px;
  min-width: 176px;
  padding: 13px 16px;
  color: var(--paper);
  background: #2f6d5e;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(45, 39, 40, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

body.show-whatsapp .whatsapp-float {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--rose);
}

.whatsapp-float span {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.whatsapp-float small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-page {
  background: var(--ivory);
}

.legal-content {
  max-width: 820px;
}

.legal-content h1,
.legal-content h2 {
  color: var(--rose);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.legal-content h1 {
  margin: 0 0 28px;
  font-size: 56px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 30px;
}

.legal-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.legal-content a {
  color: var(--rose);
  border-bottom: 1px solid rgba(139, 85, 100, 0.35);
}

.legal-note {
  margin-top: 34px;
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 12px 22px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    z-index: 40;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px 24px;
    background: rgba(251, 248, 246, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(139, 85, 100, 0.12);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .brand {
    min-width: 0;
  }

  .hero-portrait {
    display: none;
  }

  .hero {
    min-height: 700px;
    padding: 84px 24px 64px;
  }

  .hero-media {
    background-position: 62% center;
  }

  h1 {
    font-size: 56px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .trust-strip,
  .treatment-grid,
  .testimonial-grid,
  .experience-grid,
  .priority-grid,
  .process-grid,
  .process-list,
  .proof-grid,
  .faq-grid,
  .location-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section,
  .intro-band,
  .quick-whatsapp,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .experience-grid,
  .priority-grid,
  .process-grid,
  .proof-grid,
  .faq-grid,
  .location-grid,
  .contact-grid {
    gap: 34px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .brand-panel {
    max-width: 470px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 9px;
  }

  .site-nav {
    inset: 70px 0 auto 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: 650px;
    padding: 64px 16px 42px;
  }

  .hero-media {
    transform: none;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(251, 248, 246, 0.98) 0%, rgba(251, 248, 246, 0.88) 58%, rgba(251, 248, 246, 0.26) 100%),
      linear-gradient(0deg, rgba(45, 39, 40, 0.12), rgba(45, 39, 40, 0.02));
  }

  h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .hero-actions,
  .filter-controls {
    flex-direction: column;
  }

  .button,
  .filter-button,
  .reviews-link {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 32px;
  }

  .trust-strip div {
    min-height: 72px;
    padding: 12px;
  }

  .trust-strip dt {
    font-size: 18px;
  }

  .trust-strip dd {
    font-size: 9px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .section {
    padding: 70px 16px;
  }

  .priority-care,
  .process,
  .location {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .intro-band,
  .quick-whatsapp,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .quick-whatsapp {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .intro-grid p {
    font-size: 21px;
  }

  .intro-grid img {
    width: 72px;
    height: 72px;
  }

  .quick-copy h2 {
    font-size: 26px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .experience-copy h2,
  .priority-care h2,
  .process h2,
  .proof h2,
  .faq h2,
  .location h2,
  .contact h2 {
    font-size: 34px;
  }

  .treatment-card,
  .symptom-list li,
  .process-list li,
  .testimonial-grid figure,
  .contact-form {
    padding: 22px;
  }

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

  .symptom-list li {
    min-height: auto;
  }

  .process-list {
    gap: 10px;
  }

  .timeline div {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 18px;
  }

  .timeline span {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .timeline h3,
  .treatment-card h3,
  .brand-panel h3 {
    font-size: 24px;
  }

  .doctor-photo-main {
    height: 330px;
  }

  .doctor-photo-stack .doctor-photo-secondary {
    width: 34%;
  }

  .timeline p {
    grid-column: 1 / -1;
    margin-top: 10px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    display: grid;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 14px;
    left: 16px;
    min-width: 0;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    text-align: center;
  }
}
