:root {
  --green-950: #07382e;
  --green-900: #0b493b;
  --green-800: #0f5d4a;
  --green-700: #13725a;
  --green-100: #dceae4;
  --cream: #f4f0e8;
  --paper: #fbfbf8;
  --white: #ffffff;
  --ink: #17322c;
  --muted: #64736e;
  --line: #d8dfdb;
  --gold: #c8a965;
  --header-height: 76px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
a {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
}

section[id],
main[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #caddd5;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button span {
  margin-left: 10px;
  font-size: 1rem;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button-primary {
  background: var(--white);
  color: var(--green-950);
}

.button-primary:hover {
  background: var(--cream);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-outline {
  border-color: var(--green-900);
  color: var(--green-900);
}

.button-outline:hover {
  background: var(--green-900);
  color: var(--white);
}

.button-light {
  background: var(--cream);
  color: var(--green-950);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(7, 56, 46, 0.1);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(6, 44, 36, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1340px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 164px;
  height: 54px;
  overflow: hidden;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.35vw, 23px);
  margin: 0 auto;
}

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #3f554e;
  font-size: 0.78rem;
  font-weight: 650;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.button-header {
  min-height: 44px;
  padding-inline: 17px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.75rem;
}

.button-header:hover {
  background: var(--green-700);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  color: var(--green-950);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 850px;
  padding: calc(var(--header-height) + 78px) 0 185px;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 43%;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(3, 32, 26, 0.88) 0%, rgba(3, 32, 26, 0.68) 46%, rgba(3, 32, 26, 0.16) 78%);
}

.hero-content {
  margin-top: auto;
}

.hero h1 {
  max-width: 880px;
  margin: 0 0 26px;
  font-size: clamp(3.25rem, 6.4vw, 6.3rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.16);
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: #e4ebe8;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.trust-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(6, 54, 44, 0.88);
  backdrop-filter: blur(12px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 124px;
  padding: 24px 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
}

.trust-item span {
  color: #ccdad5;
  font-size: 0.76rem;
}

.trust-item .stars {
  display: inline;
  color: #e5c475;
  font-family: var(--sans);
  font-size: 1rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(54px, 8vw, 110px);
}

.intro-visual {
  position: relative;
  padding: 0 0 50px 34px;
}

.intro-visual::before {
  position: absolute;
  z-index: -1;
  top: 38px;
  bottom: 0;
  left: 0;
  width: 58%;
  background: var(--green-100);
  content: "";
}

.intro-visual img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: 62% center;
}

.image-caption {
  position: absolute;
  right: 0;
  bottom: 8px;
  margin: 0;
  padding: 12px 18px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-caption span {
  margin-right: 16px;
  color: var(--green-700);
}

.intro-copy .lead {
  max-width: 570px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 1.06rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principles > div {
  display: flex;
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.principles span {
  color: var(--green-700);
  font-size: 0.64rem;
  font-weight: 700;
}

.principles p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.principles strong {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 650;
}

.specialties {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.specialties::after {
  position: absolute;
  top: -240px;
  right: -160px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading-light > p {
  color: #afc4bc;
}

.specialty-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(76px, auto));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.specialty-grid li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  min-height: 76px;
  padding: 14px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #f3f7f5;
  font-size: 0.92rem;
  transition: background-color 180ms ease;
}

.specialty-grid li:hover {
  background: rgba(255, 255, 255, 0.045);
}

.specialty-number {
  display: flex;
  align-items: center;
  color: #d7bf87;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.specialty-number::after {
  width: 14px;
  height: 1px;
  margin-left: 9px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.specialty-note {
  display: flex;
  align-items: center;
  margin: 28px 0 0;
  color: #b3c7bf;
  font-size: 0.78rem;
}

.specialty-note span {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
}

.structure {
  background: var(--cream);
}

.editorial-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 190px 190px 220px;
  gap: 18px;
}

.editorial-gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d8dedb;
}

.editorial-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.editorial-gallery figure:hover img {
  transform: scale(1.025);
}

.editorial-gallery figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(transparent, rgba(4, 34, 28, 0.72));
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-gallery figcaption span {
  margin-right: 12px;
  color: #e1ca92;
}

.gallery-main {
  grid-column: 1 / span 5;
  grid-row: 1 / span 2;
}

.gallery-main img {
  object-position: center 46%;
}

.gallery-wide {
  grid-column: 6 / -1;
  grid-row: 1 / span 2;
}

.gallery-wide img {
  object-position: 52% center;
}

.gallery-statement {
  display: flex;
  grid-column: 1 / span 4;
  grid-row: 3;
  align-items: flex-end;
  padding: 28px;
  background: var(--green-900);
  color: var(--white);
  gap: 20px;
}

.statement-number {
  font-family: var(--serif);
  font-size: 4rem;
  line-height: 0.85;
}

.gallery-statement p {
  max-width: 190px;
  margin: 0;
  color: #c6d8d1;
  font-size: 0.8rem;
  line-height: 1.45;
}

.gallery-small {
  grid-column: 5 / span 3;
  grid-row: 3;
}

.gallery-small img {
  object-position: center 40%;
}

.gallery-entry {
  grid-column: 8 / -1;
  grid-row: 3;
}

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

.team-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.68fr;
  align-items: center;
  gap: 24px;
}

.team-copy {
  padding-right: 48px;
}

.team-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.15rem);
}

.team-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--green-700);
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 700;
}

.text-link span {
  margin-left: 12px;
}

.team-group,
.doctor-card {
  position: relative;
  margin: 0;
}

.team-group {
  align-self: stretch;
  min-height: 620px;
}

.team-group img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}

.team-group figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-card {
  align-self: end;
  margin-bottom: 34px;
  background: var(--cream);
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center 18%;
}

.doctor-card figcaption {
  padding: 20px;
  border-bottom: 3px solid var(--green-700);
}

.doctor-card span,
.doctor-card strong {
  display: block;
}

.doctor-card span {
  margin-bottom: 4px;
  color: var(--green-700);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doctor-card strong {
  font-family: var(--serif);
  font-size: 1.38rem;
  font-weight: 400;
}

.leonardo-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.58fr);
  align-items: start;
  margin-top: 82px;
  padding-top: 74px;
  border-top: 1px solid var(--line);
  gap: clamp(44px, 6vw, 84px);
}

.leonardo-portrait {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  margin: 0;
  background: var(--cream);
}

.leonardo-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center 18%;
}

.leonardo-portrait figcaption {
  padding: 18px 20px;
  border-bottom: 3px solid var(--green-700);
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leonardo-details h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: clamp(2.55rem, 4.7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.doctor-specialty {
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.doctor-registration {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  gap: 7px;
}

.doctor-registration strong {
  color: var(--ink);
  font-weight: 700;
}

.doctor-registration span {
  color: var(--gold);
}

.profile-intro {
  max-width: 760px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 1.03rem;
}

.profile-columns {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  border-top: 1px solid var(--line);
  gap: 0;
}

.profile-columns > div {
  padding-top: 30px;
}

.profile-education {
  padding-right: 36px;
  border-right: 1px solid var(--line);
}

.profile-expertise {
  padding-left: 36px;
}

.profile-columns h4 {
  margin: 0 0 20px;
  color: var(--green-700);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.profile-education li {
  display: grid;
  grid-template-columns: 48px 1fr;
  padding: 0 0 18px;
  gap: 14px;
}

.profile-education li span {
  padding-top: 2px;
  color: var(--green-700);
  font-size: 0.66rem;
  font-weight: 700;
}

.profile-education li p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.profile-expertise > ul:not(.condition-list) {
  margin-bottom: 32px;
}

.profile-expertise > ul:not(.condition-list) li {
  position: relative;
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.78rem;
}

.profile-expertise > ul:not(.condition-list) li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.condition-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.condition-list li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.7rem;
}

.reviews {
  border-top: 1px solid var(--line);
  background: #ede9df;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 11vw, 150px);
}

.rating-summary {
  padding-top: 12px;
}

.rating-line {
  display: flex;
  align-items: center;
  margin: 42px 0 38px;
  gap: 24px;
}

.rating-line > strong {
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.review-stars {
  display: block;
  color: #b18b37;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  line-height: 1;
}

.review-stars i {
  color: #c8c5bc;
  font-style: normal;
}

.rating-line p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.testimonials h2 {
  max-width: 670px;
  margin-bottom: 48px;
  font-size: clamp(2.4rem, 4.4vw, 4.25rem);
}

.testimonials blockquote {
  position: relative;
  margin: 0;
  padding: 28px 0 24px 54px;
  border-top: 1px solid #c7c9c2;
}

.testimonials blockquote::before {
  position: absolute;
  top: 19px;
  left: 0;
  color: var(--green-700);
  content: "“";
  font-family: var(--serif);
  font-size: 3.5rem;
  line-height: 1;
}

.testimonials blockquote p {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  line-height: 1.38;
}

.testimonials blockquote footer {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonials blockquote footer span {
  margin-right: 8px;
  color: var(--green-700);
}

.location {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  min-height: 650px;
  background: var(--green-950);
  color: var(--white);
}

.location-image {
  min-height: 650px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.location-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 100px);
}

.location-content h2 {
  margin-bottom: 34px;
}

.location-content address {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  color: #c5d7d0;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.65;
}

.location-content address strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.location-content .button {
  align-self: flex-start;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background: var(--green-700);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.cta-inner h2 {
  margin-bottom: 0;
}

.cta-inner > div:last-child {
  padding-bottom: 8px;
}

.cta-inner > div:last-child p {
  max-width: 430px;
  margin-bottom: 26px;
  color: #d8e7e1;
}

.site-footer {
  padding: 72px 0 28px;
  background: #062b24;
  color: #adc1b9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.8fr);
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand a {
  display: block;
  width: 190px;
  height: 64px;
  overflow: hidden;
  margin: -4px 0 22px;
  background: var(--white);
}

.footer-brand p {
  max-width: 290px;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #758f85;
  font-size: 0.68rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px 0 14px;
  border-radius: 999px;
  background: #1ba357;
  box-shadow: 0 10px 30px rgba(5, 47, 29, 0.28);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
  transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-float:hover {
  background: #128447;
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  margin-right: 9px;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 13px;
  }

  .site-nav a {
    font-size: 0.71rem;
  }

  .button-header {
    display: none;
  }

  .team-layout {
    grid-template-columns: 0.85fr 1fr 0.7fr;
  }

  .team-copy {
    padding-right: 16px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .header-inner {
    width: min(100% - 36px, 720px);
  }

  .section {
    padding: 88px 0;
  }

  .brand {
    flex-basis: 150px;
    height: 50px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 34px rgba(7, 56, 46, 0.13);
    opacity: 0;
    visibility: hidden;
    gap: 0;
    transition: max-height 260ms ease, opacity 160ms ease, visibility 160ms ease, padding 260ms ease;
  }

  .site-nav.is-open {
    max-height: 520px;
    padding-top: 10px;
    padding-bottom: 20px;
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 790px;
    padding-bottom: 200px;
  }

  .hero h1 {
    max-width: 700px;
  }

  .trust-item {
    min-height: 112px;
    padding: 22px 18px;
  }

  .split-layout,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    max-width: 660px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-layout {
    grid-template-columns: 1fr 0.65fr;
  }

  .team-copy {
    grid-column: 1 / -1;
    max-width: 700px;
    margin-bottom: 20px;
  }

  .team-group {
    min-height: 560px;
  }

  .leonardo-profile {
    grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1fr);
    gap: 42px;
  }

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

  .profile-education {
    padding-right: 0;
    border-right: 0;
  }

  .profile-expertise {
    padding-left: 0;
    border-top: 1px solid var(--line);
  }

  .reviews-layout {
    gap: 72px;
  }

  .location {
    grid-template-columns: 1fr 0.85fr;
  }

  .cta-inner {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .container,
  .header-inner {
    width: min(100% - 30px, 560px);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    align-items: flex-start;
    min-height: 870px;
    padding-top: 160px;
    padding-bottom: 232px;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(3, 32, 26, 0.84) 0%, rgba(3, 32, 26, 0.55) 58%, rgba(3, 32, 26, 0.92) 100%);
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    min-height: 94px;
    padding: 14px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .trust-item strong {
    font-size: 1.45rem;
  }

  .trust-item span {
    font-size: 0.66rem;
  }

  .intro-visual {
    padding: 0 0 38px 18px;
  }

  .intro-visual img {
    aspect-ratio: 1 / 1.03;
  }

  .image-caption {
    max-width: 80%;
    padding: 10px 12px;
    font-size: 0.62rem;
  }

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

  .principles > div {
    min-height: 88px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .specialty-grid {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .specialty-grid li {
    grid-template-columns: 46px minmax(0, 1fr);
    min-height: 66px;
    padding: 12px 18px;
  }

  .specialty-note {
    align-items: flex-start;
  }

  .editorial-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 340px 220px 210px;
    gap: 10px;
  }

  .gallery-main {
    grid-column: 1;
    grid-row: 1;
  }

  .gallery-wide {
    grid-column: 2;
    grid-row: 1;
  }

  .gallery-wide img {
    object-position: 56% center;
  }

  .gallery-statement {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .gallery-small {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-entry {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-entry img {
    object-position: 42% center;
  }

  .gallery-statement {
    grid-row: 3;
  }

  .team-layout {
    grid-template-columns: 1fr 0.72fr;
    gap: 12px;
  }

  .team-copy {
    grid-column: 1 / -1;
  }

  .team-group {
    min-height: 430px;
  }

  .doctor-card {
    margin-bottom: 0;
  }

  .doctor-card figcaption {
    padding: 14px 12px;
  }

  .doctor-card strong {
    font-size: 1rem;
  }

  .leonardo-profile {
    grid-template-columns: 1fr;
    margin-top: 58px;
    padding-top: 52px;
    gap: 34px;
  }

  .leonardo-portrait {
    position: relative;
    top: auto;
    width: min(78%, 290px);
  }

  .leonardo-details h3 {
    font-size: clamp(2.45rem, 12vw, 3.45rem);
  }

  .doctor-registration {
    display: block;
    line-height: 1.75;
  }

  .doctor-registration span {
    display: inline;
    margin-inline: 4px;
  }

  .profile-intro {
    margin-bottom: 34px;
    font-size: 0.96rem;
  }

  .rating-line {
    gap: 18px;
  }

  .rating-line > strong {
    font-size: 5.5rem;
  }

  .testimonials blockquote {
    padding-left: 42px;
  }

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

  .location-image {
    min-height: 380px;
  }

  .location-content {
    padding: 68px 28px 78px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-inner h2 br {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    right: 0;
    bottom: 0;
    left: 0;
    justify-content: center;
    height: 68px;
    border-radius: 0;
    box-shadow: 0 -8px 24px rgba(5, 47, 29, 0.2);
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 930px;
    padding-top: 144px;
  }

  .editorial-gallery {
    grid-template-rows: 300px 190px 190px;
  }

  .team-layout {
    grid-template-columns: 1fr;
  }

  .team-group {
    min-height: 420px;
  }

  .doctor-card {
    max-width: 76%;
    margin: -70px 0 0 auto;
    border: 8px solid var(--paper);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
