:root {
  --cream: #f8f5ee;
  --paper: #fcfaf5;
  --ink: #40231e;
  --red: #c5342e;
  --red-dark: #a82b26;
  --sand: #eee3cd;
  --line: #d9cdbb;
  --muted: #76645e;
  --green: #416b57;
  --dark: #40231e;
  --gold: #e4bc68;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.mono {
  font-family: "Space Mono", monospace;
}
.serif {
  font-family: "Playfair Display", Georgia, serif;
}
.eyebrow {
  color: var(--red);
  font:
    700 11px/1 "Space Mono",
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.topbar {
  padding: 9px 20px;
  background: var(--red);
  color: var(--paper);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 238, 0.92);
  backdrop-filter: blur(14px);
}
.nav {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 17px;
}
.brand-name {
  display: block;
  font:
    600 18px/1 "Playfair Display",
    Georgia,
    serif;
}
.brand-sub {
  display: block;
  margin-top: 5px;
  color: var(--red);
  font:
    9px "Space Mono",
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a.active {
    color: #C5342E;
    font-weight: 700;
}
.nav-links a:hover {
  color: var(--red);
}
.button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}
.button:hover,
.outline-button:hover {
  transform: translateY(-2px);
}
.button {
  background: var(--red);
  color: white;
}
.button:hover {
  background: var(--red-dark);
}
.outline-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}
.hero {
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 80px;
  padding: 88px 0 70px;
}
.hero h1 {
  max-width: 700px;
  margin: 26px 0 0;
  font:
    500 clamp(3.5rem, 7vw, 6.5rem)/0.94 "Playfair Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-copy {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.credentials span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red);
  font-weight: 700;
}
.card-visual {
  position: relative;
  max-width: 470px;
  margin: 0 auto;
}
.card-visual::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(197, 52, 46, 0.45);
  border-radius: 50%;
}
.card-visual::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -25px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sand);
  z-index: -1;
}
.card-photo {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--paper);
  border-radius: 28px;
  box-shadow: 0 22px 55px rgba(97, 48, 35, 0.16);
}
.card-photo img {
  display: block;
  width: 100%;
  height: 590px;
  object-fit: cover;
  object-position: center;
}
.card-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(64, 35, 30, 0.9);
  color: white;
}
.card-label small {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font:
    10px "Space Mono",
    monospace;
  text-transform: uppercase;
}
.card-label strong {
  display: block;
  margin-top: 4px;
  font:
    18px "Playfair Display",
    Georgia,
    serif;
}
.address-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}
.address-strip .mono {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
section {
  scroll-margin-top: 85px;
}
.soft-section {
  background: rgba(238, 227, 205, 0.55);
}
.section {
  padding: 80px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}
.section h2 {
  margin: 20px 0 0;
  font:
    600 clamp(2.5rem, 5vw, 4.2rem)/1.04 "Playfair Display",
    Georgia,
    serif;
  letter-spacing: -0.035em;
}
.red {
  color: var(--red);
}
.lead {
  margin: 0;
  font-size: 20px;
  line-height: 1.8;
}
.body-copy {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.stats strong {
  display: block;
  color: var(--red);
  font:
    24px "Space Mono",
    monospace;
}
.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.care-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.care-head p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
}
.care-item {
  min-height: 260px;
  padding: 20px 18px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.care-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(97, 48, 35, 0.1);
}
.care-item small {
  color: var(--red);
  font:
    10px "Space Mono",
    monospace;
}
.care-image-wrap {
  position: relative;
/*  height: 0px;*/
  overflow: hidden;
  border-radius: 14px;
  background: var(--sand);
}
.care-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
  mix-blend-mode: multiply;
}
.care-image-label {
  position: absolute;
  right: 9px;
  bottom: 8px;
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(64, 35, 30, 0.82);
  color: var(--paper);
  font:
    8px "Space Mono",
    monospace;
  letter-spacing: 0.06em;
}
.care-item h3 {
  margin: 16px 0 7px;
  font:
    600 22px/1.1 "Playfair Display",
    Georgia,
    serif;
}
.care-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.care-note {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.more-treatments-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.whatsapp-button {
  border-color: rgba(65, 107, 87, 0.35);
  color: var(--green);
}
.whatsapp-button:hover {
  background: var(--green);
  color: var(--paper);
}
.dark-section {
  background: var(--dark);
  color: var(--paper);
}
.dark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.dark-section .eyebrow {
  color: var(--gold);
}
.dark-section .eyebrow::before {
  background: var(--gold);
}
.dark-section .body-copy {
  color: rgba(252, 250, 245, 0.72);
}
.promise {
  padding-left: 48px;
  border-left: 1px solid rgba(252, 250, 245, 0.16);
}
.promise-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-top: 26px;
  border: 1px solid rgba(228, 188, 104, 0.55);
  border-radius: 50%;
  color: var(--gold);
}
.poster {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--dark);
  color: var(--paper);
  box-shadow: 0 22px 55px rgba(97, 48, 35, 0.14);
}
.poster-main {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px clamp(24px, 5vw, 54px) 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(197, 52, 46, 0.3), transparent 30%),
    var(--dark);
}
.poster-main::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(252, 250, 245, 0.15);
  pointer-events: none;
}
.poster-main > * {
  position: relative;
  z-index: 1;
}
.poster-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(252, 250, 245, 0.68);
  font:
    10px "Space Mono",
    monospace;
  letter-spacing: 0.1em;
}
.poster-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font:
    600 25px "Playfair Display",
    Georgia,
    serif;
}
.poster-number {
  color: var(--gold);
}
.poster-copy {
  max-width: 510px;
  padding: 54px 0 38px;
}
.poster-title {
  margin: 14px 0 0;
  font:
    500 clamp(3.5rem, 8vw, 7.5rem)/0.86 "Playfair Display",
    Georgia,
    serif;
  letter-spacing: -0.05em;
}
.poster-title em {
  color: var(--gold);
  font-style: italic;
}
.poster-intro {
  max-width: 395px;
  margin-top: 28px;
  color: rgba(252, 250, 245, 0.72);
  font-size: 15px;
  line-height: 1.8;
}
.poster-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 28px;
  border-top: 1px solid rgba(252, 250, 245, 0.16);
}
.poster-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(252, 250, 245, 0.16);
}
.poster-list span {
  grid-row: span 2;
  color: var(--gold);
  font:
    10px "Space Mono",
    monospace;
}
.poster-list strong {
  font-size: 13px;
}
.poster-list small {
  margin-top: 5px;
  color: rgba(252, 250, 245, 0.56);
  font-size: 10px;
  line-height: 1.5;
}
.poster-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
}
.poster-footer strong {
  display: block;
  font:
    600 18px "Playfair Display",
    Georgia,
    serif;
  letter-spacing: 0.04em;
}
.poster-footer span {
  display: block;
  margin-top: 5px;
  color: rgba(252, 250, 245, 0.58);
  font-size: 9px;
  letter-spacing: 0.04em;
}
.poster-side {
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--sand);
  color: var(--ink);
}
.poster-side-image {
  min-height: 390px;
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.03);
  mix-blend-mode: multiply;
}
.poster-side-copy {
  padding: 24px 26px 28px;
}
.poster-side-copy .mono {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}
.poster-side-copy p {
  max-width: 210px;
  margin: 12px 0 0;
  font:
    600 25px/1.1 "Playfair Display",
    Georgia,
    serif;
}
.testimonial-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 720px) auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 20px;
  margin-top: 54px;
}
.testimonial {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}
.quote-mark {
  height: 34px;
  color: var(--red);
  font:
    700 58px/0.7 "Playfair Display",
    Georgia,
    serif;
}
.testimonial blockquote {
  margin: 0;
  font:
    500 23px/1.35 "Playfair Display",
    Georgia,
    serif;
}
.testimonial figcaption {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}
.testimonial figcaption span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
.testimonial-control {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--red);
  cursor: pointer;
  font-size: 23px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.testimonial-control:hover {
  transform: translateY(-2px);
  background: var(--sand);
}
.testimonial-active {
  width: 100%;
  animation: testimonial-in 0.35s ease both;
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.testimonial-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}
.testimonial-dot-active {
  width: 25px;
  background: var(--red);
}
@keyframes testimonial-in {
  from {
    opacity: 0.3;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.more-treatments {
  margin-top: 28px;
}
.disclaimer {
  margin: 25px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 11px;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 95px;
  align-items: center;
}
.clinic-locations {
  display: grid;
  gap: 14px;
}
.clinic-location-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--sand);
}
.clinic-location-card + .clinic-location-card {
  margin-top: 0;
}
.clinic-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 15px 18px;
  border-radius: 16px;
  background: var(--dark);
  color: var(--paper);
  font-size: 13px;
}
.clinic-contact-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.clinic-contact-strip a:hover {
  color: var(--gold);
}
.hours {
  padding: 30px;
  border-radius: 24px;
  background: var(--sand);
}
.hours-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.hours-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: white;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  font-size: 13px;
}
.hours-row span:last-child {
  color: var(--red);
  font:
    10px "Space Mono",
    monospace;
}
.location {
  margin-top: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.7;
}
.location a {
  display: inline-block;
  margin-top: 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}
.appointment {
  background: var(--red);
  color: white;
}
.appointment-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 82px 0;
}
.appointment h2 {
  max-width: 700px;
  margin: 18px 0 0;
  font:
    500 clamp(2.5rem, 5vw, 4rem)/1.05 "Playfair Display",
    Georgia,
    serif;
}
.appointment p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}
.appointment .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}
.appointment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.appointment .button {
  background: var(--paper);
  color: var(--ink);
}
.appointment .outline-button {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 95px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.faq-question span:last-child {
  color: var(--red);
  font-size: 22px;
  transition: transform 0.2s ease;
}
.faq-question[aria-expanded="true"] span:last-child {
  transform: rotate(45deg);
}
.faq-answer {
  max-width: 650px;
  padding: 0 45px 22px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
footer {
  background: var(--dark);
  color: var(--paper);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 45px;
  padding: 50px 0;
}
footer .eyebrow {
  color: var(--gold);
}
footer p {
  color: rgba(252, 250, 245, 0.62);
  font-size: 13px;
  line-height: 1.7;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(252, 250, 245, 0.14);
  color: rgba(252, 250, 245, 0.48);
  font:
    10px "Space Mono",
    monospace;
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(64, 35, 30, 0.5);
}
.modal-backdrop.show {
  display: grid;
}
.modal {
  width: min(540px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(64, 35, 30, 0.25);
}
.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 {
  margin: 8px 0 0;
  font:
    600 29px "Playfair Display",
    Georgia,
    serif;
}
.close {
  border: 0;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.appointment-form {
  display: grid;
  gap: 16px;
  padding: 25px 28px 30px;
}
.appointment-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}
.appointment-form .half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  outline: 0;
  background: var(--cream);
  color: var(--ink);
}
.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197, 52, 46, 0.15);
}
.appointment-form textarea {
  resize: vertical;
}
.modal-success {
  display: none;
  padding: 55px 28px;
  text-align: center;
}
.modal-success.show {
  display: block;
}
.success-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 50%;
  background: rgba(65, 107, 87, 0.14);
  color: var(--green);
  font-size: 26px;
}
.modal-success h3 {
  margin: 0;
  font:
    600 30px "Playfair Display",
    Georgia,
    serif;
}
.modal-success p {
  max-width: 360px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.mobile-bar {
  display: none;
}
@media (max-width: 900px) {
  .hero-grid,
  .visit-grid,
  .dark-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-grid {
    padding-top: 65px;
  }
  .card-visual {
    width: min(100%, 470px);
  }
  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .poster {
    grid-template-columns: 1fr;
  }
  .poster-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .poster-side-image {
    min-height: 300px;
  }
  .appointment-grid {
    align-items: start;
    flex-direction: column;
  }
}
@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 620px);
  }
  .nav-links {
    display: none;
  }
  .menu-button {
    display: block;
  }
  .nav.open + .mobile-nav {
    display: grid;
  }
  .mobile-nav {
    display: none;
    gap: 4px;
    padding: 12px 0 18px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a,
  .mobile-nav button {
    border: 0;
    border-radius: 8px;
    padding: 12px;
    background: none;
    color: var(--ink);
    text-align: left;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
  }
  .mobile-nav button {
    background: var(--red);
    color: white;
    text-align: center;
  }
  .hero-grid {
    padding: 60px 0 50px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 17vw, 5.4rem);
  }
  .hero-copy {
    font-size: 15px;
    line-height: 1.75;
  }
  .card-photo img {
    height: 520px;
  }
  .address-strip span:nth-child(2) {
    display: none;
  }
  .section {
    padding: 78px 0;
  }
  .two-col,
  .care-head {
    display: block;
  }
  .two-col > :last-child {
    margin-top: 38px;
  }
  .care-head p {
    margin-top: 26px;
  }
  .care-grid {
    margin-top: 38px;
  }
  .care-item {
    min-height: 0;
    padding: 20px 14px 22px;
  }
  .care-image-wrap {
    height: 145px;
  }
  .care-item h3 {
    margin-top: 16px;
    font-size: 19px;
  }
  .stats {
    gap: 11px;
  }
  .stats strong {
    font-size: 19px;
  }
  .poster-main {
    min-height: auto;
    padding: 24px 22px 26px;
  }
  .poster-main::before {
    inset: 12px;
  }
  .poster-topline {
    font-size: 8px;
  }
  .poster-mark {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .poster-copy {
    padding: 48px 0 34px;
  }
  .poster-title {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }
  .poster-list {
    grid-template-columns: 1fr;
  }
  .poster-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .poster-footer .button {
    width: 100%;
  }
  .poster-side {
    grid-template-columns: 1fr;
  }
  .poster-side-image {
    min-height: 485px;
  }
  .testimonial-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 38px;
  }
  .testimonial-control {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .testimonial {
    min-height: 320px;
    padding: 22px;
  }
  .promise {
    padding-left: 26px;
  }
  .clinic-location-card {
    padding: 20px;
  }
  .clinic-contact-strip {
    gap: 10px;
    font-size: 12px;
  }
  .hours {
    padding: 22px;
  }
  .appointment-grid {
    padding: 65px 0;
  }
  .appointment-actions,
  .appointment-actions > * {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .appointment-form .half {
    grid-template-columns: 1fr;
  }
  .mobile-bar {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 9;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(252, 250, 245, 0.95);
    box-shadow: 0 10px 28px rgba(64, 35, 30, 0.18);
    backdrop-filter: blur(12px);
  }
  .mobile-bar a,
  .mobile-bar button {
    flex: 1;
    border: 0;
    border-radius: 999px;
    padding: 12px 8px;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
  }
  .mobile-bar button {
    background: var(--red);
    color: white;
  }

}
