:root {
  --navy: #071b27;
  --navy-2: #0a2533;
  --ink: #0e202b;
  --muted: #576973;
  --paper: #f9f8f6;
  --white: #ffffff;
  --line: #e2e8ea;
  --copper: #b87347;
  --copper-light: #d8a57f;
  --teal: #1a646e;
  --green: #1f9d66;
  --shadow-sm: 0 4px 20px rgba(7, 27, 39, 0.05);
  --shadow: 0 20px 50px rgba(7, 27, 39, 0.09);
  --shadow-lg: 0 30px 80px rgba(7, 27, 39, 0.14);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; background: white; padding: .8rem 1rem; }
.skip-link:focus { top: 1rem; }

/* Header */
.site-header { position: absolute; inset: 0 0 auto; z-index: 20; color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.private-care-badge {
  display: inline-flex;
  align-items: center;
}
.header-brand-logo { display: block; width: 140px; height: auto; }
.private-care-badge span { display: none; }
.brand { display: inline-flex; align-items: center; gap: .8rem; line-height: 1.1; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,165,127,.7);
  border-radius: var(--radius-sm);
  color: var(--copper-light);
  font-family: var(--font-heading);
  font-size: .95rem;
  letter-spacing: .08em;
}
.brand > span:last-child { display: grid; gap: .3rem; }
.brand strong { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; }
.brand small { color: rgba(255,255,255,.62); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 2.2rem; }
.primary-nav a { position: relative; color: rgba(255,255,255,.82); font-size: .9rem; font-weight: 500; transition: color .2s ease; }
.primary-nav a:hover { color: white; }
.primary-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 2px; background: var(--copper-light); transition: right .25s ease; }
.primary-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.mobile-menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 5px;
  padding: 0;
  color: white;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-menu-toggle span { width: 20px; height: 2px; display: block; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 54px;
  padding: .8rem 1.6rem;
  color: white;
  background: var(--copper);
  border: 1px solid var(--copper);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  box-shadow: 0 10px 25px rgba(184,115,71,.25);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); background: #a4643c; box-shadow: 0 14px 30px rgba(184,115,71,.35); }
.button svg { width: 20px; fill: currentColor; }
.button-small { min-height: 44px; padding: .6rem 1.1rem; font-size: .84rem; }
.button-outline { color: white; background: transparent; border-color: rgba(255,255,255,.35); box-shadow: none; }
.button-outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.button-light { background: white; border-color: white; color: var(--navy); box-shadow: 0 8px 25px rgba(0,0,0,.15); }
.button-light:hover { background: var(--paper); transform: translateY(-2px); }
.button-wide { width: 100%; }

/* Editorial section signatures */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.1rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; border: 1px solid currentColor; background: transparent; transform: rotate(45deg); }
.eyebrow::after { display: none; }
.eyebrow.dark {
  color: var(--copper);
}
.eyebrow.light {
  color: var(--copper-light);
}
.eyebrow:not(.dark):not(.light) {
  color: var(--copper-light);
}

/* Headings */
h1, h2, h3 { margin: 0; font-family: var(--font-heading); font-weight: 500; letter-spacing: -.02em; line-height: 1.12; }
h1 { max-width: 640px; font-size: clamp(2.2rem, 3.5vw, 3.4rem); line-height: 1.18; }
h1 em { display: inline; color: var(--copper-light); font-style: italic; font-weight: 400; }
.br-desktop { display: block; content: ""; margin-bottom: 0; }
@media (max-width: 820px) {
  .br-desktop { display: none; }
}
h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); color: var(--ink); }

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: max(720px, 100vh);
  min-height: max(720px, 100dvh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background-color: var(--navy);
  background-image: linear-gradient(90deg, rgba(5,20,29,.94) 0%, rgba(5,20,29,.78) 43%, rgba(5,20,29,.48) 76%, rgba(5,20,29,.6) 100%), linear-gradient(180deg, rgba(7,27,39,.05), rgba(7,27,39,.32)), url("assets/hero-background-v2.png");
  background-size: cover;
  background-position: center;
}
.hero::before {
  display: none;
}
.hero-glow { display: none; }
.hero-grid {
  position: relative;
  min-height: max(720px, 100vh);
  min-height: max(720px, 100dvh);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: end;
  gap: 1rem;
  padding-top: 100px;
}
.hero-copy { align-self: center; padding: 2rem 0 4rem; position: relative; z-index: 2; }
.hero-lead { max-width: 620px; margin: 1.7rem 0 0; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.75; font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.2rem; }
.text-link { display: inline-flex; gap: .55rem; align-items: center; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600; }
.text-link span { color: var(--copper-light); transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

.trust-row { display: flex; gap: 0; margin-top: 3rem; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.4rem; }
.trust-row div { display: grid; gap: .2rem; padding: 0 1.6rem; border-right: 1px solid rgba(255,255,255,.14); }
.trust-row div:first-child { padding-left: 0; }
.trust-row div:last-child { border-right: 0; }
.trust-row strong { font-family: var(--font-heading); color: white; font-size: 1.05rem; font-weight: 600; }
.trust-row span { color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.hero-portrait {
  position: relative;
  isolation: isolate;
  align-self: end;
  height: 100%;
  max-height: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-portrait::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 51%;
  bottom: 7%;
  width: 88%;
  height: 82%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,.19) 0%, rgba(169,202,207,.1) 30%, rgba(38,112,122,.05) 52%, transparent 72%);
  filter: blur(9px);
  mix-blend-mode: screen;
  pointer-events: none;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 52%;
  bottom: -7px;
  width: 76%;
  height: 88px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,.5) 0%, rgba(4,18,26,.3) 38%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-doctor-photo {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 115%;
  height: clamp(560px, calc(100vh - 90px), 880px);
  height: clamp(560px, calc(100dvh - 90px), 880px);
  max-height: none;
  object-fit: contain;
  object-position: bottom;
  transform: translate(30px, 0);
  transform-origin: center bottom;
  filter:
    drop-shadow(-12px 4px 18px rgba(230,244,246,.08))
    drop-shadow(18px 22px 30px rgba(0,0,0,.34));
}
.portrait-orbit { display: none; }
.floating-note {
  position: absolute;
  right: -16px;
  bottom: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: .9rem;
  width: 260px;
  padding: 1.1rem;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.8);
}
.note-icon { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; color: white; background: var(--teal); border-radius: 50%; font-weight: 700; }
.floating-note p { display: grid; margin: 0; line-height: 1.35; }
.floating-note strong { font-size: .82rem; font-weight: 700; }
.floating-note small { margin-top: .2rem; color: var(--muted); font-size: .7rem; }
.hero-bottom { position: absolute; inset: auto 0 0; z-index: 5; height: 16px; background: linear-gradient(90deg, var(--copper) 0 22%, var(--teal) 22% 31%, transparent 31%); }

/* Sections */
.section { padding: 112px 0; }
.section-heading { max-width: 720px; margin-bottom: 3.6rem; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading > p:last-child { max-width: 640px; margin: 1.2rem auto 0; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }

/* Treatments Section */
.treatments { background: #f2ede6; padding: 100px 0 110px; }
.treatments h2 { color: #231f1d; font-family: var(--font-heading); font-size: clamp(2.3rem, 3.8vw, 3.2rem); font-weight: 500; text-align: center; margin-bottom: .6rem; }
.treatments h2 em { color: #d09b75; font-style: italic; font-weight: 400; }
.section-subtitle { color: #5d564f; font-size: .95rem; max-width: 600px; margin: .8rem auto 0; text-align: center; line-height: 1.6; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.2rem; }
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 2.2rem 1.8rem 1.8rem;
  background: linear-gradient(180deg, #f9f5f0 0%, #ebe4dc 100%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(160, 125, 95, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card-illustration { display: none; }
.service-number {
  color: #b87347;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.service-card h3 { margin: 0 0 .6rem; font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: #231f1d; }
.service-card p { margin: 0 0 1.8rem; color: #57514a; font-size: .88rem; line-height: 1.65; }

.card-button {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 44px;
  padding: .65rem .9rem;
  background: #b87347;
  color: white;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(184, 115, 71, 0.25);
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.card-button:hover {
  background: #a36237;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(184, 115, 71, 0.35);
}
.card-button span { font-size: .84rem; }
.medical-note { max-width: 850px; margin: 2.4rem auto 0; color: #75838a; text-align: center; font-size: .8rem; line-height: 1.6; }

/* Symptoms Section */
.symptoms { color: white; background: var(--navy-2); }
.symptoms-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 6rem; align-items: center; }
.symptoms-copy h2 { max-width: 500px; color: white; }
.symptoms-copy > p:not(.eyebrow) { max-width: 480px; margin: 1.4rem 0 2.2rem; color: rgba(255,255,255,.7); font-size: 1.04rem; line-height: 1.7; }
.symptom-list { display: grid; gap: 1rem; }
.symptom-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  transition: background .25s ease, border-color .25s ease;
}
.symptom-list > div:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(216,165,127,.3);
}
.symptom-list > div > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(216,165,127,.12);
  color: var(--copper-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}
.symptom-list p { display: grid; margin: 0; }
.symptom-list strong { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: white; }
.symptom-list small { margin-top: .2rem; color: rgba(255,255,255,.58); font-size: .84rem; }

/* Reviews Section */
.reviews { background: white; }
.reviews-top { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 3.2rem; }
.sample-rating { display: grid; grid-template-columns: auto auto; gap: .1rem .8rem; align-items: center; }
.sample-rating strong { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 500; line-height: 1; color: var(--ink); }
.sample-rating small { grid-column: 1 / -1; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.stars { color: #f2b01e; letter-spacing: .06em; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  position: relative;
  min-height: 270px;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(14,32,43,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.sample-label { display: inline-block; margin-bottom: 1.2rem; padding: .25rem .6rem; color: #805334; background: #faeee5; border-radius: 999px; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.review-head { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: .85rem; }
.avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--teal); font-size: .75rem; font-weight: 800; }
.avatar.alt { background: var(--copper); }
.avatar.dark { background: var(--navy); }
.review-head p { display: grid; margin: 0; line-height: 1.35; }
.review-head strong { font-weight: 700; font-size: .92rem; }
.review-head small { color: var(--muted); font-size: .78rem; }
.google-g { font-weight: 900; color: #4285f4; font-size: 1.3rem; }
.review-card > .stars { margin: 1.1rem 0 .6rem; }
blockquote { margin: 0; color: #44565f; font-family: var(--font-heading); font-size: 1.04rem; line-height: 1.65; font-style: italic; }
.review-disclaimer { max-width: 850px; margin: 1.8rem auto 0; color: var(--muted); text-align: center; font-size: .78rem; }

/* About Section */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 7rem; align-items: center; }
.about-photo { position: relative; }
.about-photo::before { content: ""; position: absolute; left: -16px; bottom: -16px; width: 44%; height: 55%; background: var(--copper); border-radius: var(--radius); z-index: 0; }
.about-photo img { position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 12%; border-radius: var(--radius); box-shadow: var(--shadow); }
.photo-caption {
  position: absolute;
  right: -28px;
  bottom: 30px;
  z-index: 2;
  width: 260px;
  display: grid;
  gap: .35rem;
  padding: 1.2rem 1.3rem;
  color: white;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.photo-caption span { color: var(--copper-light); font-size: .68rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; }
.photo-caption strong { font-family: var(--font-heading); font-weight: 500; font-size: .98rem; }
.about-lead { color: var(--ink) !important; font-family: var(--font-heading); font-size: 1.25rem; line-height: 1.6; }
.about-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.75; }
.credentials { display: grid; gap: 1rem; margin: 2rem 0; padding: 0; list-style: none; }
.credentials li { display: grid; grid-template-columns: 32px 1fr; gap: .9rem; align-items: start; }
.credentials li > span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(26,100,110,.3); border-radius: 50%; color: var(--teal); font-size: .72rem; font-weight: 700; background: rgba(26,100,110,.06); }
.credentials p { display: grid; margin: 0; line-height: 1.4; }
.credentials strong { font-size: .92rem; font-weight: 700; }
.credentials small { margin-top: .25rem; color: var(--muted); font-size: .78rem; }
.registry { display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; background: white; border-radius: var(--radius-sm); border-left: 4px solid var(--copper); box-shadow: var(--shadow-sm); }
.registry span { color: var(--muted); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.registry strong { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; }
.registry i { display: inline-block; width: 1px; height: 16px; margin: 0 .8rem; background: var(--line); vertical-align: middle; }

/* Location Section */
.location { padding: 112px 0; color: white; background: var(--navy); }
.location-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 6rem; align-items: center; }
.location-copy h2 { color: white; }
.map-card { position: relative; height: 475px; overflow: hidden; background: #d7e0e1; border-radius: var(--radius-lg); box-shadow: 0 24px 70px rgba(0,0,0,.28); }
.map-card::after { content: ""; pointer-events: none; position: absolute; inset: 0; background: rgba(7,27,39,.12); mix-blend-mode: multiply; }
.map-card iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9) sepia(.2); }
.map-link-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .65rem 1.1rem;
  background: rgba(7,27,39,.88);
  color: white;
  border: 1px solid rgba(216,165,127,.45);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,.3);
  transition: background .2s ease, transform .2s ease;
}
.map-link-badge:hover {
  background: var(--navy);
  transform: translateY(-2px);
}
.location-copy > p:not(.eyebrow):not(.location-note) { color: rgba(255,255,255,.68); line-height: 1.7; }
.location-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.2rem 0; }
.location-details > div { display: grid; grid-template-columns: 42px 1fr; gap: .9rem; align-items: center; padding: 1.1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); }
.detail-icon { width: 40px; height: 40px; display: grid; place-items: center; color: var(--copper-light); background: rgba(255,255,255,.08); border-radius: var(--radius-sm); font-size: 1.1rem; }
.location-details p { display: grid; margin: 0; line-height: 1.35; }
.location-details small { color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.location-details strong { font-family: var(--font-heading); font-size: .95rem; font-weight: 500; }
.location-note { color: rgba(255,255,255,.45); font-size: .74rem; margin-top: 1rem; }

/* Final CTA Section */
.final-cta { padding: 88px 0; background: #eef2f3; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 5rem; align-items: center; }
.final-cta h2 { max-width: 760px; font-size: clamp(2rem, 3.4vw, 3rem); }

/* Footer */
footer { padding: 64px 0 28px; color: rgba(255,255,255,.65); background: #04131c; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 4rem; padding-bottom: 2.5rem; }
.footer-brand { display: inline-flex; align-items: center; color: white; }
.footer-brand img { width: 220px; height: auto; }
.footer-grid > p { font-size: .82rem; line-height: 1.6; }
.footer-links { display: flex; gap: 1.8rem; font-size: .82rem; font-weight: 500; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  z-index: 99;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: white;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.06);
  background: #20bd5a;
  box-shadow: 0 12px 30px rgba(37,211,102,.6);
}
.whatsapp-float.is-hidden-in-hero {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.92);
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.text-reveal { opacity: 0; transform: translateY(24px); clip-path: inset(0 0 35% 0); filter: blur(4px); transition: opacity .72s cubic-bezier(.22,1,.36,1) var(--text-delay, 0ms), transform .82s cubic-bezier(.22,1,.36,1) var(--text-delay, 0ms), clip-path .82s cubic-bezier(.22,1,.36,1) var(--text-delay, 0ms), filter .72s ease var(--text-delay, 0ms); will-change: opacity, transform, clip-path, filter; }
.text-reveal.eyebrow { transform: translateY(12px); letter-spacing: .21em; }
.text-reveal.is-visible { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); filter: blur(0); }
.text-reveal.eyebrow.is-visible { letter-spacing: .14em; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }

/* Responsive Media Queries */
@media (min-width: 1001px) {
  h1 { max-width: 720px; font-size: clamp(3.45rem, 4.15vw, 4.25rem); line-height: 1.08; }
  .hero-grid { padding-top: 82px; }
  .hero-copy { top: -34px; padding-bottom: 2rem; }
  .hero-lead { max-width: 650px; margin-top: 1.35rem; font-size: 1.18rem; line-height: 1.65; }
  .hero-actions { margin-top: 1.65rem; }
  .trust-row { margin-top: 2.1rem; padding-top: 1.15rem; }
}

@media (max-width: 1180px) and (min-width: 821px) {
  h1 { font-size: clamp(2.55rem, 4.6vw, 3.65rem); line-height: 1.08; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-copy { top: -10px; padding-bottom: 2.5rem; }
  .hero-doctor-photo {
    width: auto;
    max-width: 120%;
    height: clamp(520px, calc(100vh - 96px), 780px);
    height: clamp(520px, calc(100dvh - 96px), 780px);
    transform: none;
  }
}

@media (max-width: 1100px) {
  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: min(420px, calc(100% - 32px));
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .6rem;
    color: white;
    background: rgba(7,27,39,.98);
    border: 1px solid rgba(216,165,127,.25);
    border-top: 0;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
    transform: translateX(-50%);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .85rem 1rem; font-size: .95rem; }
  .primary-nav a::after { display: none; }
  .mobile-menu-toggle { display: grid; }
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .hero-portrait { height: 100%; }
  .floating-note { right: 0; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.8rem; }
  .symptoms-grid, .about-grid, .location-grid { gap: 3.5rem; }
  .about-grid { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 900px) and (min-width: 821px) {
  .hero-grid { grid-template-columns: 1.12fr .88fr; }
  .hero-doctor-photo {
    height: clamp(500px, calc(100dvh - 100px), 680px);
    max-width: 126%;
  }
  .floating-note { display: none; }
  .hero-lead { font-size: 1rem; line-height: 1.65; }
  .hero-actions { gap: 1rem; }
  .hero-actions .button { padding-inline: 1.15rem; }
  .trust-row div { padding-inline: .9rem; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 620px); }
  .site-header { position: absolute; border-bottom: 1px solid rgba(216,165,127,.22); background: rgba(7,27,39,.85); backdrop-filter: blur(10px); }
  .nav-wrap { min-height: 64px; justify-content: space-between; gap: 1rem; }
  .header-cta { display: none; }
  .header-brand-logo { display: block; width: 108px; }
  .private-care-badge span { display: none; }
  .primary-nav { top: calc(100% + 1px); width: calc(100% - 32px); }
  .mobile-menu-toggle { width: 42px; height: 42px; }
  .brand strong { font-size: .9rem; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { min-height: auto; background-image: linear-gradient(180deg, rgba(5,20,29,.7) 0%, rgba(5,20,29,.58) 38%, rgba(5,20,29,.9) 100%), url("assets/hero-background-v2.png"); background-position: 57% center; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 68px; }
  .hero-copy { order: 2; margin-top: -20px; padding: 20px 0 2rem; }
  h1 { font-size: clamp(2rem, 8.8vw, 2.75rem); line-height: 1.06; }
  .hero-lead { font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero-actions .text-link { justify-content: center; }
  .trust-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .trust-row div { min-width: 0; padding-inline: .55rem; }
  .trust-row strong { font-size: .88rem; }
  .trust-row span { font-size: .6rem; overflow-wrap: anywhere; }
  .hero-portrait { order: 1; height: clamp(320px, 90vw, 390px); margin-top: 0; }
  .hero-portrait::before { display: none; }
  .hero-doctor-photo { width: auto; max-width: min(440px, 115%); height: clamp(330px, 94vw, 410px); transform: none; -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,.92) 78%, transparent 100%); mask-image: linear-gradient(to bottom, #000 0%, #000 70%, rgba(0,0,0,.92) 78%, transparent 100%); }
  .hero-portrait::after { display: none; }
  .portrait-orbit { display: none; }
  .floating-note { display: none; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 2.3rem; }
  .service-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; }
  .review-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .symptoms-grid, .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .symptoms-copy .button { width: 100%; }
  .reviews-top { align-items: start; flex-direction: column; gap: 1.5rem; }
  .about-photo { margin-right: 0; }
  .about-photo::before { left: -8px; bottom: -8px; }
  .photo-caption { right: 12px; bottom: 12px; width: calc(100% - 24px); max-width: 250px; }
  .registry { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .map-card { height: 360px; }
  .location-grid .map-card { order: 2; }
  .location-details { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .final-cta .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 16px; bottom: max(16px, env(safe-area-inset-bottom)); width: 50px; height: 50px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

@media (min-width: 1181px) and (max-height: 760px) {
  .hero,
  .hero-grid {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .hero-grid { padding-top: 76px; }
  .hero-copy { top: -8px; padding-bottom: 1rem; }
  h1 { font-size: clamp(3.2rem, 3.75vw, 3.65rem); }
  .hero-lead { margin-top: 1rem; font-size: 1rem; line-height: 1.55; }
  .hero-actions { margin-top: 1.25rem; }
  .trust-row { margin-top: 1.4rem; padding-top: 1rem; }
  .hero-doctor-photo {
    height: clamp(500px, calc(100vh - 120px), 600px);
    height: clamp(500px, calc(100dvh - 120px), 600px);
    transform: translate(10px, 0);
  }
  .floating-note { right: 0; bottom: 28px; }
}

@media (min-width: 821px) and (max-width: 1180px) and (max-height: 760px) {
  .hero,
  .hero-grid {
    min-height: max(680px, 100vh);
    min-height: max(680px, 100dvh);
  }
  .hero-doctor-photo { height: clamp(490px, calc(100dvh - 110px), 610px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .text-reveal { opacity: 1; transform: none; clip-path: none; filter: none; }
}

/* Privacy Policy */
.legal-page { background: var(--paper); }
.legal-header { position: absolute; inset: 0 0 auto; z-index: 10; border-bottom: 1px solid rgba(255,255,255,.12); }
.legal-nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.legal-logo { display: inline-flex; align-items: center; }
.legal-logo img { width: 185px; height: auto; }
.legal-back { color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 700; letter-spacing: .04em; }
.legal-back:hover { color: white; }
.legal-hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; color: white; background: linear-gradient(115deg, rgba(5,20,29,.97), rgba(7,35,46,.86)), url("assets/hero-background-v2.png") center / cover; }
.legal-hero::after { content: ""; position: absolute; right: -120px; bottom: -210px; width: 580px; height: 580px; border: 1px solid rgba(216,165,127,.2); border-radius: 50%; }
.legal-hero-inner { position: relative; z-index: 1; padding-block: 168px 72px; }
.legal-hero h1 { max-width: 760px; font-size: clamp(3.5rem, 7vw, 6.4rem); line-height: .96; }
.legal-hero > .container > p:not(.eyebrow) { max-width: 720px; margin: 1.8rem 0 0; color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.75; }
.legal-meta { display: flex; align-items: center; gap: 1rem; margin-top: 2.3rem; color: rgba(255,255,255,.55); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.legal-meta strong { color: var(--copper-light); font-size: .75rem; }
.legal-content { padding: 96px 0 120px; }
.legal-layout { display: grid; grid-template-columns: 270px minmax(0, 760px); justify-content: space-between; gap: 7rem; align-items: start; }
.legal-summary { position: sticky; top: 28px; padding: 1.7rem; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.legal-summary span { display: block; margin-bottom: 1rem; color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.legal-summary p { margin: 0; font-size: .82rem; line-height: 1.7; }
.legal-summary p + p { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.legal-article > section { position: relative; padding-bottom: 3.8rem; }
.legal-article > section + section { padding-top: 3.8rem; border-top: 1px solid var(--line); }
.legal-number { display: block; margin-bottom: .8rem; color: var(--copper); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.legal-article h2 { margin-bottom: 1.4rem; color: var(--ink); font-size: clamp(1.9rem, 3vw, 2.8rem); }
.legal-article p { margin: 0; color: var(--muted); font-size: .97rem; line-height: 1.85; }
.legal-article p + p { margin-top: 1rem; }
.legal-article a:not(.button) { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-article ul { display: grid; gap: .75rem; margin: 1.3rem 0 0; padding-left: 1.25rem; color: var(--muted); }
.legal-article li { padding-left: .4rem; font-size: .94rem; line-height: 1.75; }
.legal-alert { margin-top: 1.5rem; padding: 1.25rem 1.35rem; color: #624329; background: #f7ede5; border-left: 3px solid var(--copper); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .86rem; line-height: 1.7; }
.legal-links { display: grid; gap: .7rem; margin-top: 1.4rem; }
.legal-links a { width: fit-content; }
.legal-contact { padding: 3rem !important; color: white; background: var(--navy); border: 0 !important; border-radius: var(--radius-lg); }
.legal-contact h2 { color: white; }
.legal-contact p { color: rgba(255,255,255,.7); }
.legal-contact .button { margin-top: 1.8rem; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 3rem; }
  .legal-summary { position: static; }
}

@media (max-width: 820px) {
  .legal-nav { min-height: 70px; }
  .legal-logo img { width: 135px; }
  .legal-back { font-size: .72rem; }
  .legal-hero { min-height: 500px; }
  .legal-hero-inner { padding-block: 132px 58px; }
  .legal-hero h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .legal-hero > .container > p:not(.eyebrow) { font-size: .94rem; }
  .legal-meta { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .legal-content { padding: 64px 0 82px; }
  .legal-article > section { padding-bottom: 2.8rem; }
  .legal-article > section + section { padding-top: 2.8rem; }
  .legal-contact { padding: 2rem !important; }
  .legal-contact .button { width: 100%; }
}

/* Editorial redesign below the fold */
.treatments,
.symptoms,
.reviews,
.about,
.location,
.final-cta { position: relative; overflow: hidden; }

.treatments { padding-block: 132px; background: linear-gradient(145deg, #f9f8f6 0%, #f1f4f3 64%, #e8eeee 100%); }
.treatments::before { content: "PRECISÃO"; position: absolute; right: -2vw; top: 32px; color: transparent; font-family: var(--font-heading); font-size: clamp(7rem, 16vw, 15rem); font-weight: 600; letter-spacing: -.06em; line-height: 1; -webkit-text-stroke: 1px rgba(14,32,43,.055); pointer-events: none; }
.treatments::after { content: ""; position: absolute; left: -150px; bottom: 6%; width: 360px; height: 360px; border: 1px solid rgba(184,115,71,.14); border-radius: 50%; box-shadow: 0 0 0 54px rgba(184,115,71,.035); pointer-events: none; }
.treatments > .container { position: relative; z-index: 1; }
.treatments .section-heading.centered { max-width: 880px; margin: 0 auto 4.7rem; text-align: center; }
.treatments .section-heading.centered .eyebrow { justify-content: center; }
.treatments .section-heading h2 { max-width: 820px; margin-inline: auto; font-size: clamp(3rem, 6vw, 5.7rem); line-height: .96; }
.treatments .section-heading h2 em { color: var(--copper); font-weight: 400; }
.treatments .section-subtitle { max-width: 590px !important; margin: 1.7rem auto 0 !important; }
.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.35rem; align-items: stretch; margin-top: 0; }
.service-card { isolation: isolate; min-height: 310px; padding: 2.7rem; border: 0; border-radius: 26px; box-shadow: 0 18px 50px rgba(7,27,39,.08); transition: transform .42s cubic-bezier(.2,.7,.2,1), box-shadow .42s ease; }
.service-card::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .7; transform: scale(1); transform-origin: 90% 5%; background: radial-gradient(circle at 90% 5%, rgba(216,165,127,.18), transparent 34%); transition: opacity .42s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.service-card::after { content: ""; position: absolute; z-index: 0; left: 2.7rem; top: 0; width: 64px; height: 3px; background: var(--copper); transition: width .42s cubic-bezier(.2,.7,.2,1); }
.service-card:nth-child(1) { grid-column: 1 / span 7; color: white; background: linear-gradient(135deg, #071b27, #0b3441); }
.service-card:nth-child(2) { grid-column: 8 / -1; background: #fff; }
.service-card:nth-child(3) { grid-column: 1 / span 5; background: #fff; }
.service-card:nth-child(4) { grid-column: 6 / -1; color: white; background: linear-gradient(135deg, #153f47, #071b27); }
.service-card:nth-child(1) h3,
.service-card:nth-child(4) h3 { color: white; }
.service-card:nth-child(1) p,
.service-card:nth-child(4) p { color: rgba(255,255,255,.68); }
.service-number { position: absolute; z-index: -1; right: 2rem; top: 1rem; margin: 0; color: transparent; font-size: clamp(5rem, 8vw, 8rem); line-height: 1; -webkit-text-stroke: 1px rgba(184,115,71,.28); transition: transform .5s cubic-bezier(.2,.7,.2,1), -webkit-text-stroke-color .4s ease; }
.service-card h3 { position: relative; z-index: 1; max-width: 420px; margin-top: auto; padding-top: 4.5rem; font-size: clamp(1.55rem, 2.4vw, 2.25rem); }
.service-card p { position: relative; z-index: 1; max-width: 560px; font-size: .94rem; }
.card-button { position: relative; z-index: 1; width: fit-content; min-height: auto; justify-content: flex-start; padding: .72rem 1rem; border: 1px solid rgba(184,115,71,.36); background: transparent; color: var(--copper); box-shadow: none; }
.service-card:nth-child(1) .card-button,
.service-card:nth-child(4) .card-button { color: var(--copper-light); border-color: rgba(216,165,127,.36); }
.card-button:hover { background: var(--copper); color: white; box-shadow: none; }
.card-button span { transition: transform .3s ease; }

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 68px rgba(7,27,39,.15);
  }
  .service-card:hover::before { opacity: 1; transform: scale(1.16); }
  .service-card:hover::after { width: 112px; }
  .service-card:hover .service-number {
    transform: translate(-8px, 5px);
    -webkit-text-stroke-color: rgba(184,115,71,.48);
  }
  .service-card:hover .card-button { border-color: rgba(184,115,71,.72); }
  .service-card:hover .card-button span { transform: translate(3px, -3px); }
}
.medical-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(14,32,43,.1); }

.symptoms { padding-block: 138px; background: radial-gradient(circle at 18% 24%, rgba(38,112,122,.26), transparent 32%), linear-gradient(135deg, #061923, #0b2e39 62%, #10232c); }
.symptoms::before { content: "SINAIS"; position: absolute; left: -1vw; bottom: -4rem; color: rgba(255,255,255,.025); font-family: var(--font-heading); font-size: clamp(8rem, 20vw, 19rem); font-weight: 700; line-height: 1; pointer-events: none; }
.symptoms::after { content: ""; position: absolute; right: -260px; top: -240px; width: 620px; height: 620px; border: 1px solid rgba(216,165,127,.16); border-radius: 50%; box-shadow: inset 0 0 110px rgba(216,165,127,.035); }
.symptoms-grid { position: relative; z-index: 1; grid-template-columns: .72fr 1.28fr; gap: 6.5rem; }
.symptoms-copy { align-self: start; position: sticky; top: 40px; }
.symptoms-copy h2 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1; }
.symptom-list { grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.symptom-list > div { position: relative; min-height: 190px; grid-template-columns: 1fr; align-content: space-between; padding: 1.8rem; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025)); backdrop-filter: blur(10px); }
.symptom-list > div:nth-child(2),
.symptom-list > div:nth-child(4) { top: 28px; }
.symptom-list > div > span { width: auto; height: auto; display: block; color: var(--copper-light); background: transparent; border-radius: 0; font-size: .76rem; letter-spacing: .12em; }
.symptom-list strong { max-width: 290px; font-size: 1.22rem; line-height: 1.35; }
.symptom-list small { margin-top: .55rem; line-height: 1.55; }

.reviews { padding-block: 132px 150px; background: linear-gradient(180deg, #fff 0%, #f7f4ef 100%); }
.reviews::before { content: "“"; position: absolute; right: 5vw; top: 1rem; color: rgba(184,115,71,.08); font-family: var(--font-heading); font-size: 22rem; line-height: 1; pointer-events: none; }
.reviews-top { position: relative; z-index: 1; margin-bottom: 4.5rem; }
.reviews-top h2 { max-width: 720px; font-size: clamp(3rem, 6vw, 5.4rem); line-height: 1; }
.sample-rating { min-width: 190px; padding: 1.45rem 1.6rem; border-left: 3px solid var(--copper); background: var(--navy); box-shadow: var(--shadow); }
.sample-rating strong { color: white; }
.sample-rating small { color: rgba(255,255,255,.52); }
.review-grid { position: relative; z-index: 1; gap: 1.25rem; }
.review-card { min-height: 330px; display: flex; flex-direction: column; padding: 2.2rem; border: 0; border-radius: 22px; box-shadow: 0 18px 48px rgba(7,27,39,.08); }
.review-card:nth-child(2) { margin-top: 34px; }
.review-card:nth-child(3) { margin-top: -18px; background: var(--navy); }
.review-card:nth-child(3) .review-head strong,
.review-card:nth-child(3) blockquote { color: white; }
.review-card:nth-child(3) .review-head small { color: rgba(255,255,255,.5); }
.review-card blockquote { margin-top: auto; padding-top: 1.4rem; font-size: 1.17rem; }
.review-card blockquote::before { content: "“"; display: block; height: 34px; color: var(--copper); font-size: 3.8rem; line-height: .8; }
.review-disclaimer { margin-top: 3.4rem; }

.about { padding-block: 140px; background: #eef2f1; }
.about::before { content: "FORMAÇÃO"; position: absolute; right: -2rem; top: 3rem; writing-mode: vertical-rl; color: transparent; font-family: var(--font-heading); font-size: 7rem; font-weight: 700; letter-spacing: .05em; -webkit-text-stroke: 1px rgba(14,32,43,.06); }
.about-grid { position: relative; z-index: 1; grid-template-columns: 1.03fr .97fr; gap: 8rem; }
.about-photo { margin: 24px 0 0; padding-left: 20px; }
.about-photo::before {
  left: 0;
  top: 9%;
  bottom: auto;
  width: 4px;
  height: 72%;
  border-radius: 0;
  background: linear-gradient(180deg, var(--copper-light), var(--copper));
}
.about-photo::after { display: none; }
.about-photo img { border-radius: 3px; filter: saturate(.88) contrast(1.03); box-shadow: 0 30px 70px rgba(7,27,39,.16); }
.photo-caption {
  position: relative;
  right: auto;
  bottom: auto;
  width: auto;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.photo-caption strong { color: var(--ink); }
.about-copy h2 { max-width: 600px; font-size: clamp(3rem, 5vw, 4.8rem); line-height: 1; }
.about-lead { margin-top: 1.7rem; font-size: 1.38rem; }
.credentials { position: relative; gap: 0; margin-block: 2.5rem; padding-left: 1.1rem; border-left: 1px solid rgba(184,115,71,.3); }
.credentials li { position: relative; grid-template-columns: 1fr; padding: 0 0 1.7rem 1.1rem; }
.credentials li:last-child { padding-bottom: 0; }
.credentials li > span { position: absolute; left: -1.55rem; top: 0; width: 14px; height: 14px; overflow: hidden; color: transparent; border: 3px solid #eef2f1; background: var(--copper); box-shadow: 0 0 0 1px rgba(184,115,71,.45); }
.credentials strong { font-family: var(--font-heading); font-size: 1rem; }
.registry { border: 1px solid rgba(14,32,43,.09); border-left: 4px solid var(--copper); box-shadow: 0 16px 36px rgba(7,27,39,.07); }

.location { padding-block: 138px; background: radial-gradient(circle at 78% 30%, rgba(38,112,122,.22), transparent 30%), #061923; }
.location::before { content: "MACEIÓ"; position: absolute; left: 3vw; bottom: -1.2rem; color: rgba(255,255,255,.025); font-family: var(--font-heading); font-size: clamp(8rem, 18vw, 17rem); line-height: 1; }
.location-grid { position: relative; z-index: 1; grid-template-columns: 1.18fr .82fr; gap: 0; }
.map-card { height: 560px; border-radius: 28px 0 0 28px; box-shadow: 0 34px 90px rgba(0,0,0,.35); }
.location-copy { position: relative; z-index: 2; margin-left: -24px; padding: 3.5rem; border-left: 3px solid var(--copper); border-radius: 0 24px 24px 0; background: rgba(10,37,51,.94); box-shadow: 0 28px 70px rgba(0,0,0,.28); backdrop-filter: blur(14px); }
.location-copy h2 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); line-height: 1; }
.location-details { grid-template-columns: 1fr; }
.location-details > div { border-radius: 12px; }

.final-cta { padding-block: 104px; color: white; background: linear-gradient(115deg, #a75f3a, #c98254 60%, #9e5736); }
.final-cta::before { content: ""; position: absolute; right: 3%; top: 50%; width: 360px; height: 280px; transform: translateY(-50%); opacity: .11; background: url("assets/logo-matheus-mark.png") center / contain no-repeat; }
.final-cta::after { content: ""; position: absolute; left: 52%; top: -180px; width: 430px; height: 430px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.final-cta-inner { position: relative; z-index: 1; }
.final-cta .eyebrow { color: rgba(255,255,255,.72); }
.final-cta h2 { max-width: 820px; color: white; font-size: clamp(2.6rem, 4.7vw, 4.5rem); line-height: 1; }
.final-cta .button { background: var(--navy); border-color: var(--navy); box-shadow: 0 16px 35px rgba(7,27,39,.25); }

@media (max-width: 1000px) {
  .service-card:nth-child(n) { grid-column: span 6; }
  .symptoms-grid { grid-template-columns: 1fr; }
  .symptoms-copy { position: static; }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 4rem; }
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-copy { padding: 2.5rem; }
}

@media (max-width: 820px) {
  .treatments,
  .symptoms,
  .reviews,
  .about,
  .location { padding-block: 88px; }
  .treatments::before { right: -1rem; top: 26px; font-size: 6.5rem; }
  .treatments::after { display: none; }
  .treatments .section-heading.centered { margin-bottom: 3rem; }
  .treatments .section-heading h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:nth-child(n) { grid-column: 1; min-height: 300px; padding: 2rem; }
  .service-card::after { left: 2rem; }
  .service-card h3 { padding-top: 4rem; }
  .symptoms::before { bottom: 0; font-size: 7rem; }
  .symptoms-grid { gap: 3.5rem; }
  .symptoms-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .symptom-list { grid-template-columns: 1fr; }
  .symptom-list > div:nth-child(n) { top: 0; min-height: 165px; }
  .reviews { padding-bottom: 96px; }
  .reviews-top h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .sample-rating { width: 100%; }
  .review-card:nth-child(n) { margin-top: 0; min-height: 290px; }
  .about::before { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 4.5rem; }
  .about-photo { margin: 0; padding-left: 12px; }
  .about-photo::before { left: 0; top: 8%; bottom: auto; width: 3px; height: 68%; }
  .about-photo::after { display: none; }
  .about-photo img { border-radius: 2px; }
  .photo-caption { right: auto; bottom: auto; grid-template-columns: 1fr; gap: .25rem; padding-top: .9rem; }
  .about-copy h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .location-grid { grid-template-columns: 1fr; gap: 0; }
  .location-copy { order: 1; margin: 0 0 -18px; padding: 2rem; border: 0; border-top: 3px solid var(--copper); border-radius: 18px 18px 0 0; }
  .location-grid .map-card { order: 2; height: 390px; border-radius: 0 0 18px 18px; }
  .final-cta { padding-block: 82px; }
  .final-cta::before { right: -80px; width: 260px; height: 210px; }
  .final-cta h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
}
