:root {
  --ink: #1f2421;
  --muted: #66706a;
  --paper: #fbfaf5;
  --white: #ffffff;
  --sage: #5e7667;
  --sage-dark: #31483a;
  --mist: #e6eee9;
  --blush: #f2cbd0;
  --citrus: #ee9b28;
  --rosewood: #8a4f4f;
  --line: rgba(31, 36, 33, 0.14);
  --shadow: 0 24px 70px rgba(31, 36, 33, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::selection {
  background: var(--blush);
  color: var(--ink);
}

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

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

[id] {
  scroll-margin-top: 2rem;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(92px, 1fr);
  align-items: center;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 1rem auto 0;
  padding: 0.7rem 0.85rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(31, 36, 33, 0.2);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(251, 250, 245, 0.92);
  box-shadow: 0 16px 40px rgba(31, 36, 33, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  line-height: 1;
}

.brand img {
  flex: 0 0 auto;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  object-fit: cover;
}

.site-header.is-scrolled .brand img {
  border-color: rgba(31, 36, 33, 0.1);
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  white-space: nowrap;
}

.brand small {
  margin-top: 0.3rem;
  color: currentColor;
  font-size: 0.72rem;
  letter-spacing: 0;
  opacity: 0.76;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.nav a,
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 0.85rem;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a:focus-visible {
  background: var(--mist);
}

.header-cta {
  justify-self: end;
  color: var(--ink);
  background: var(--blush);
  font-weight: 750;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, 86svh);
  display: flex;
  align-items: flex-end;
  padding: 9rem 1rem 5.5rem;
  color: var(--white);
  background:
    linear-gradient(95deg, rgba(31, 36, 33, 0.92) 0%, rgba(31, 36, 33, 0.68) 44%, rgba(31, 36, 33, 0.26) 100%),
    linear-gradient(180deg, rgba(31, 36, 33, 0.08) 0%, rgba(31, 36, 33, 0.48) 100%),
    url("assets/andrea-hero-desktop.png");
  background-size: cover, cover, 115% auto;
  background-position: center, center, 0% 48%;
  background-repeat: no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--citrus);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.hero-lead {
  max-width: 760px;
  margin: 1.4rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  font-weight: 720;
  line-height: 1.08;
}

.hero-copy {
  max-width: 620px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.15rem;
  border-radius: 8px;
  font-weight: 780;
}

.btn-primary {
  color: var(--ink);
  background: var(--citrus);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.quick-info {
  background: var(--sage-dark);
  color: var(--white);
}

.quick-info-inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.quick-info-inner div {
  min-height: 116px;
  padding: 1.25rem;
  background: var(--sage-dark);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 1rem;
}

.quick-info span {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 6rem 0;
}

.trust-section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5rem 0 1rem;
}

.trust-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.5fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.trust-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.1rem;
}

.trust-heading h2,
.faq-heading h2,
.privacy-hero h1,
.privacy-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  line-height: 1;
}

.trust-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

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

.trust-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.trust-card span {
  color: var(--citrus);
  font-size: 0.8rem;
  font-weight: 850;
}

.trust-card h3 {
  margin: 0.85rem 0 0;
  font-size: 1.12rem;
  line-height: 1.1;
}

.trust-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.portrait-block {
  position: relative;
}

.portrait-block::before {
  content: "";
  position: absolute;
  inset: -1rem 1rem 1rem -1rem;
  z-index: -1;
  background: var(--blush);
  border-radius: 8px;
}

.portrait-block img,
.method-image img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.portrait-block img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
  object-position: 58% 50%;
}

.section-copy h2,
.section-heading h2,
.focus-copy h2,
.method-steps h2,
.visit-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 520;
  line-height: 1;
}

.section-copy p,
.section-heading p,
.focus-copy p,
.method-steps span,
.visit-copy address,
.clinic-panel p {
  color: var(--muted);
}

.section-copy p {
  max-width: 640px;
  margin: 1.2rem 0 0;
  font-size: 1.02rem;
}

.signature-line {
  margin-top: 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--citrus);
}

.signature-line span,
.signature-line small {
  display: block;
}

.signature-line span {
  font-weight: 820;
}

.signature-line small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.services-section {
  padding-top: 4rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1.2rem;
}

.section-heading p {
  margin: 0;
  font-size: 1.02rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  aspect-ratio: 4 / 5;
  border-radius: 0;
}

.service-card:first-child img {
  object-position: center 68%;
}

.service-card:nth-child(2) img {
  object-position: center 58%;
}

.service-card:nth-child(3) img {
  object-position: center 52%;
}

.service-card div {
  padding: 1.25rem;
}

.service-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.focus-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 5rem max(1rem, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--sage);
}

.focus-copy p {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.focus-band .eyebrow {
  color: var(--blush);
}

.focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.focus-list span {
  min-height: 4.1rem;
  display: flex;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.method {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.method-image img {
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow);
}

.method-steps ol {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  counter-reset: steps;
}

.method-steps li {
  position: relative;
  min-height: 5.4rem;
  padding: 0 0 1.4rem 4.2rem;
  border-left: 1px solid var(--line);
  counter-increment: steps;
}

.method-steps li:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.method-steps li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: -1px;
  top: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--blush);
  border-radius: 8px;
  transform: translateX(-50%);
  font-weight: 850;
}

.method-steps strong,
.method-steps span {
  display: block;
}

.method-steps strong {
  font-size: 1.1rem;
}

.method-steps span {
  margin-top: 0.25rem;
}

.faq-section {
  padding-top: 2rem;
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.faq-heading h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 820;
}

.faq-list p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.visit-section {
  padding: 5rem 1rem;
  background:
    linear-gradient(rgba(251, 250, 245, 0.86), rgba(251, 250, 245, 0.86)),
    url("assets/consultorio-andrea-side.jpg");
  background-size: cover;
  background-position: center 46%;
}

.visit-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 1rem;
  align-items: stretch;
}

.visit-copy,
.clinic-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 60px rgba(31, 36, 33, 0.08);
}

.visit-copy {
  padding: clamp(1.4rem, 4vw, 3rem);
}

.visit-copy address {
  margin: 1.2rem 0 0;
  font-style: normal;
}

.contact-links {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.contact-links a {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 3.15rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 760;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  border-color: rgba(94, 118, 103, 0.55);
  background: var(--mist);
}

.contact-links .email-link {
  font-size: 0.9rem;
}

.clinic-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(49, 72, 58, 0.2), rgba(49, 72, 58, 0.88)),
    url("assets/consultorio-andrea-wide.jpg");
  background-size: cover;
  background-position: center 48%;
  min-height: 420px;
}

.clinic-panel span {
  color: var(--blush);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clinic-panel strong {
  margin-top: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 520;
  line-height: 1;
}

.clinic-panel p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer .footer-brand div,
.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--sage-dark);
  font-weight: 760;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0 1.05rem;
  color: var(--white);
  background: #1f8f55;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(31, 143, 85, 0.26);
  font-weight: 850;
}

.privacy-page {
  background:
    linear-gradient(180deg, rgba(230, 238, 233, 0.72), rgba(251, 250, 245, 1) 380px),
    var(--paper);
}

.privacy-hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 11rem 0 3rem;
}

.privacy-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

.privacy-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.privacy-content {
  width: min(calc(100% - 2rem), 840px);
  margin: 0 auto 5rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.privacy-content h2 {
  margin-top: 2rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.privacy-content a {
  color: var(--sage-dark);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.schedule-page {
  background:
    linear-gradient(180deg, rgba(230, 238, 233, 0.7), rgba(251, 250, 245, 1) 480px),
    var(--paper);
}

.schedule-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: calc(100svh - 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding: 10.5rem 0 4rem;
}

.schedule-intro h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  font-weight: 520;
  line-height: 0.96;
}

.schedule-intro p:not(.eyebrow) {
  max-width: 620px;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.schedule-image {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 2rem;
  padding: 1.3rem;
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(49, 72, 58, 0.12), rgba(49, 72, 58, 0.88)),
    url("assets/consultorio-andrea-wide.jpg");
  background-size: cover;
  background-position: center 45%;
  box-shadow: var(--shadow);
}

.schedule-image span {
  color: var(--blush);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schedule-image strong {
  max-width: 440px;
  margin-top: 0.45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 520;
  line-height: 1;
}

.schedule-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 64px rgba(31, 36, 33, 0.12);
}

.schedule-form label,
.schedule-form fieldset {
  min-width: 0;
}

.schedule-form > label {
  display: grid;
  gap: 0.4rem;
  font-weight: 790;
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.schedule-form textarea {
  min-height: 7.4rem;
  resize: vertical;
}

.schedule-form input:focus,
.schedule-form select:focus,
.schedule-form textarea:focus {
  outline: 2px solid rgba(238, 155, 40, 0.34);
  border-color: rgba(238, 155, 40, 0.72);
}

.schedule-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.schedule-form legend {
  grid-column: 1 / -1;
  margin-bottom: 0.4rem;
  font-weight: 790;
}

.schedule-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 760;
}

.schedule-form input[type="radio"] {
  width: 1rem;
  min-height: auto;
  margin: 0;
  accent-color: var(--sage);
}

.schedule-form .btn {
  margin-top: 0.25rem;
  border: 0;
  cursor: pointer;
}

.schedule-feedback {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .quick-info-inner,
  .services-grid,
  .section-heading,
  .trust-heading,
  .trust-grid,
  .faq-heading,
  .focus-band,
  .method,
  .visit-inner,
  .schedule-shell,
  .split {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 4.5rem 0;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .service-card {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  }

  .service-card img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .method-image {
    order: 2;
  }

  .clinic-panel {
    min-height: 340px;
  }

  .site-footer {
    flex-direction: column;
  }

  .schedule-shell {
    padding-top: 11.5rem;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: calc(100% - 1rem);
    margin-top: 0.5rem;
    padding: 0.6rem;
  }

  .brand img {
    width: 2.25rem;
    height: 2.25rem;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .nav a {
    min-height: 2.2rem;
    padding: 0 0.65rem;
  }

  .header-cta {
    min-height: 2.35rem;
    padding: 0 0.75rem;
  }

  .hero {
    min-height: 86svh;
    padding: 8.8rem 1rem 4rem;
    background:
      linear-gradient(180deg, rgba(31, 36, 33, 0.28) 0%, rgba(31, 36, 33, 0.36) 42%, rgba(31, 36, 33, 0.86) 100%),
      url("assets/andrea-hero-mobile.png");
    background-size: cover;
    background-position: 20% 50%;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.4rem);
  }

  .hero-lead {
    font-size: 1.45rem;
  }

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

  .btn {
    width: 100%;
  }

  .quick-info-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .quick-info-inner div {
    min-height: auto;
    padding: 1rem;
  }

  .section-copy h2,
  .section-heading h2,
  .trust-heading h2,
  .focus-copy h2,
  .method-steps h2,
  .visit-copy h2,
  .schedule-intro h1 {
    font-size: 2.25rem;
  }

  .schedule-shell {
    width: calc(100% - 1rem);
    padding-top: 10.25rem;
  }

  .schedule-image {
    min-height: 240px;
  }

  .schedule-form fieldset {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 1fr;
    position: relative;
    display: grid;
    min-height: clamp(18rem, 82vw, 30rem);
    color: var(--white);
    background: var(--ink);
  }

  .service-card::after {
    content: "";
    grid-area: 1 / 1;
    z-index: 1;
    border-radius: 8px;
    background:
      linear-gradient(180deg, rgba(31, 36, 33, 0.06) 0%, rgba(31, 36, 33, 0.18) 34%, rgba(31, 36, 33, 0.88) 100%);
    pointer-events: none;
  }

  .service-card img {
    grid-area: 1 / 1;
    min-height: 100%;
    aspect-ratio: 16 / 11;
  }

  .service-card div {
    grid-area: 1 / 1;
    align-self: end;
    z-index: 2;
    padding: 5.5rem 1.25rem 1.25rem;
  }

  .service-card h3 {
    color: var(--white);
    font-size: 1.35rem;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
  }

  .service-card p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1rem;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.36);
  }

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

  .trust-card {
    min-height: auto;
  }

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

  .method-steps li {
    padding-left: 3.6rem;
  }

  .method-steps ol {
    padding-left: 1.35rem;
  }

  .contact-links a {
    font-size: 0.93rem;
  }

  .contact-links .email-link {
    font-size: 0.79rem;
  }

  .floating-whatsapp {
    display: none;
  }
}
