﻿:root {
  --background: #fbfbfa;
  --text: #13201d;
  --muted: #52625d;
  --line: #d8ddd5;
  --teal: #006f6e;
  --teal-dark: #005f5e;
  --turquoise: #008fa3;
  --turquoise-dark: #007282;
  --turquoise-soft: #edf8f9;
  --turquoise-line: #b8e3e8;
  --earth: #b0603a;
  --earth-dark: #8d4e34;
  --earth-soft: #fbf2ee;
  --earth-line: #ead1c3;
  --dark: #17211f;
  --soft: #eef3ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(12px);
}

.brand img {
  width: auto;
  height: 50px;
}

.main-nav {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  color: #34423e;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a:hover {
  color: var(--teal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 22px;
  font-weight: 700;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--teal);
  background: var(--teal);
  color: var(--white);
  box-shadow: inset 0 -2px 0 rgba(176, 96, 58, 0.38);
}

.button-primary:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.button-secondary {
  border: 1px solid #9fa9a5;
  background: var(--white);
  color: var(--text);
}

.button-secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.button-accent {
  background: var(--earth);
  color: var(--white);
}

.button-accent:hover {
  background: var(--earth-dark);
}

.button-light {
  background: var(--white);
  color: var(--dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: 56px;
  align-items: center;
  width: min(100%, 1280px);
  min-height: auto;
  margin: 0 auto;
  padding: 56px clamp(20px, 4vw, 56px) 64px;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 620px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: block;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--turquoise-dark);
  text-transform: uppercase;
}

.hero-tagline {
  margin-top: 12px;
  margin-bottom: 0;
}

h1 {
  font-size: clamp(32px, 3.3vw, 44px);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-copy h1::after {
  display: block;
  width: 78px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--earth);
  content: "";
}

h2 {
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: 0;
}

h3 {
  font-size: 17px;
  line-height: 1.25;
  font-weight: 650;
}

.lead,
.section-heading > p,
.process-copy > p,
.psychology-copy > p,
.clinic-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.lead {
  max-width: 600px;
  margin-top: 22px;
}

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

.free-consultation {
  display: block;
  width: fit-content;
  margin-top: 12px;
  border: 0;
  border-left: 3px solid var(--earth);
  border-radius: 0;
  background: var(--earth-soft);
  padding: 6px 12px;
  color: var(--earth-dark);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
}

.contact-copy .free-consultation {
  margin-top: 18px;
}

.hero-free {
  display: flex;
  margin-top: 12px;
}

.note {
  max-width: 560px;
  margin-top: 16px;
  color: #65726e;
  font-size: 14px;
  line-height: 1.7;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.quick-info div,
.service-grid article,
.process-grid article,
.feature-grid article,
.contact-grid > a,
.contact-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.quick-info div {
  min-width: 0;
  padding: 16px;
}

.quick-info span,
.contact-grid span {
  display: block;
  color: var(--earth-dark);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 16px;
}

.hero-media {
  position: relative;
  min-height: 430px;
}

.hero-main-image {
  position: static;
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
  box-shadow: none;
}

.hero-secondary-image {
  display: none;
}

.hero-card {
  display: none;
}

.hero-card span {
  display: block;
  color: #d7e5e1;
  font-size: 14px;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.25;
}

.intro-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
}

.intro-band p:first-child {
  font-size: 19px;
  font-weight: 800;
}

.intro-band p:nth-child(2) {
  color: var(--muted);
  line-height: 1.7;
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.conversion-strip article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.conversion-strip span {
  display: block;
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.conversion-strip article:first-child {
  border-color: var(--earth-line);
  background: var(--earth-soft);
}

.conversion-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 17px;
  line-height: 1.28;
}

.conversion-strip p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.section,
.dark-gallery {
  padding: 72px clamp(20px, 4vw, 56px);
}

.section > *,
.dark-gallery > * {
  width: min(100%, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.process-copy h2,
.psychology-copy h2,
.clinic-copy h2,
.contact-copy h2,
.dark-gallery h2 {
  margin-top: 12px;
}

.section-heading > p,
.process-copy > p,
.psychology-copy > p,
.clinic-copy > p,
.contact-copy > p {
  margin-top: 20px;
}

.teal {
  color: var(--teal);
}

.turquoise {
  color: var(--turquoise-line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.primary-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.primary-service-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: none;
}

.primary-service-card.highlight {
  border-color: var(--earth-line);
  background: var(--earth-soft);
}

.primary-service-card.highlight h3 {
  color: var(--earth-dark);
}

.primary-service-card span,
.psychology-grid span {
  color: var(--earth-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-service-card h3 {
  margin-top: 14px;
  font-size: clamp(20px, 2vw, 24px);
}

.primary-service-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.primary-service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.primary-service-card li {
  position: relative;
  padding-left: 22px;
  color: #34423e;
  line-height: 1.6;
}

.primary-service-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.primary-service-card.highlight li::before {
  background: var(--earth);
}

.support-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.support-services article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
  box-shadow: none;
}

.service-grid article,
.process-grid article,
.feature-grid article,
.contact-grid > a,
.contact-grid > div {
  padding: 24px;
}

.service-grid p,
.support-services p,
.process-grid p,
.feature-grid p,
.contact-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  background: #f6f8f6;
}

.psychology-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7faf9;
}

.psychology-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.psychology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.psychology-grid article {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: none;
}

.psychology-grid h3 {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.28;
}

.psychology-grid p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

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

.process-grid article {
  background: var(--background);
}

.process-grid span {
  color: var(--earth-dark);
  font-size: 14px;
  font-weight: 800;
}

.process-grid h3 {
  margin-top: 18px;
}

.clinic-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.clinic-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.clinic-gallery img,
.image-grid img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  object-fit: cover;
}

.clinic-gallery .wide {
  grid-column: 1 / -1;
  height: 260px;
}

.photo-portrait {
  object-position: center 28%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.feature-grid h3 {
  color: var(--earth-dark);
  font-size: 18px;
}

.cases-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.cases-header .section-heading {
  margin: 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.case-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.case-card.featured {
  grid-column: span 1;
}

.case-card img {
  width: 100%;
  height: 320px;
  border-bottom: 1px solid var(--line);
  background: #f1f5f2;
  object-fit: contain;
}

.case-card.featured img {
  height: 430px;
}

.case-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.case-card span {
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 10px;
  font-size: 19px;
  line-height: 1.25;
}

.case-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.cases-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border-left: 3px solid var(--earth);
  padding-left: 16px;
}

.cases-note p {
  max-width: 880px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cases-note a {
  flex: none;
  color: var(--earth-dark);
  font-weight: 800;
}

.cases-note a:hover {
  color: var(--earth);
}

.dark-gallery {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f6f8f6;
  color: var(--text);
}

.dark-gallery-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.dark-gallery-heading > div {
  max-width: 820px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: start;
}

.blog-section {
  border-top: 1px solid var(--line);
  background: #f9faf8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  grid-template-columns: 160px minmax(0, 1fr);
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: none;
}

.blog-card.featured {
  display: grid;
  grid-column: auto;
  grid-template-columns: 160px minmax(0, 1fr);
}

.blog-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
}

.blog-card.featured img {
  height: 100%;
  min-height: 170px;
}

.blog-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.blog-card span,
.article-meta {
  color: var(--earth-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 10px;
  font-size: 19px;
  line-height: 1.25;
}

.blog-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.blog-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal);
  font-weight: 800;
}

.blog-card a:hover {
  color: var(--teal-dark);
}

.blog-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  border: 1px solid var(--earth-line);
  border-radius: 8px;
  background: var(--earth-soft);
  padding: 20px;
}

.blog-cta p {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-grid strong {
  display: block;
  margin-top: 14px;
  overflow-wrap: anywhere;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.15;
}

.contact-grid .full {
  grid-column: 1 / -1;
}

.instagram-card {
  background: linear-gradient(135deg, #ffffff 0%, var(--turquoise-soft) 100%);
}

.instagram-card:hover {
  border-color: var(--turquoise);
}

.psychology-contact {
  background: linear-gradient(135deg, #ffffff 0%, #eef3ef 100%);
}

.psychology-contact:hover {
  border-color: var(--teal);
}

.whatsapp-card {
  background: var(--turquoise-soft);
}

.whatsapp-card:hover {
  border-color: var(--turquoise);
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #34423e;
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbfa;
  padding: 12px 13px;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.map-button {
  width: fit-content;
  margin-top: 20px;
}

.mobile-sticky-cta {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.site-footer img {
  width: auto;
  height: 58px;
}

.footer-link {
  color: var(--teal);
  font-weight: 750;
}

.footer-link:hover {
  color: var(--teal-dark);
}

.article-page {
  background: var(--background);
}

.article-hero {
  padding: 48px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 44px;
  align-items: end;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.breadcrumb {
  display: inline-flex;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.article-hero h1 {
  margin-top: 14px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.article-intro {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.article-hero img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: none;
}

.article-body {
  width: min(100% - 40px, 820px);
  margin: 0 auto;
  padding: 64px 0;
}

.article-body h2 {
  margin-top: 38px;
  font-size: clamp(23px, 2.3vw, 30px);
}

.article-body p,
.article-body li {
  color: #34423e;
  font-size: 17px;
  line-height: 1.8;
}

.article-body p {
  margin-top: 18px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.article-cta {
  margin-top: 40px;
  border: 1px solid var(--turquoise-line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta .button {
  width: fit-content;
  margin-top: 18px;
}

.article-related {
  padding: 56px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.article-related > div {
  width: min(100%, 1180px);
  margin: 0 auto;
}

@media (max-width: 1080px) {
  .hero,
  .process-section,
  .psychology-section,
  .clinic-section,
  .article-hero-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: auto;
  }

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

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

  .support-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cases-header,
  .cases-note {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .blog-card.featured {
    grid-column: auto;
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .intro-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    width: 100%;
    max-width: 100%;
    padding: 10px 16px;
  }

  .brand img {
    height: 46px;
  }

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .section,
  .dark-gallery,
  .conversion-strip {
    width: 100%;
    max-width: 100%;
    padding: 40px 28px 40px 18px;
  }

  .hero-copy,
  .lead,
  .note {
    min-width: 0;
    width: 100%;
    max-width: calc(100vw - 64px);
  }

  .hero-actions,
  .quick-info {
    max-width: calc(100vw - 64px);
  }

  .lead,
  .note,
  .quick-info strong,
  .button {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 23px;
  }

  .lead,
  .section-heading > p,
  .process-copy > p,
  .psychology-copy > p,
  .clinic-copy > p,
  .contact-copy > p {
    font-size: 17px;
  }

  .hero-actions,
  .hero-actions .button,
  .blog-cta .button,
  .psychology-copy .button {
    width: 100%;
  }

  .quick-info,
  .conversion-strip,
  .primary-service-grid,
  .support-services,
  .service-grid,
  .process-grid,
  .psychology-grid,
  .feature-grid,
  .blog-grid,
  .cases-grid,
  .image-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: auto;
  }

  .blog-card,
  .blog-card.featured {
    grid-template-columns: 1fr;
  }

  .blog-card.featured img,
  .blog-card img,
  .article-hero img {
    height: 220px;
    min-height: 0;
  }

  .case-card img,
  .case-card.featured img {
    height: auto;
    max-height: none;
  }

  .blog-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-main-image,
  .hero-secondary-image,
  .hero-card {
    position: static;
    width: 100%;
  }

  .hero-main-image,
  .hero-secondary-image {
    height: 240px;
  }

  .hero-secondary-image {
    margin-top: 16px;
    border: 0;
  }

  .hero-card {
    display: none;
  }

  .dark-gallery-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .clinic-gallery {
    grid-template-columns: 1fr;
  }

  .clinic-gallery .wide,
  .clinic-gallery img,
  .image-grid img {
    grid-column: auto;
    height: 260px;
  }

  .contact-grid .full {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  body {
    padding-bottom: 72px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--turquoise-line);
    border-radius: 8px;
    background: var(--white);
  }

  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 8px;
    color: var(--teal);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-sticky-cta a + a {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .hero-copy,
  .lead,
  .note,
  .hero-actions,
  .quick-info,
  .conversion-strip {
    max-width: 320px;
  }
}
