:root {
  --ink: #17353a;
  --ink-soft: #436166;
  --forest: #0f4647;
  --forest-deep: #0a3133;
  --sage: #92aaa0;
  --sage-light: #dbe4de;
  --sand: #e8ded0;
  --cream: #f5f1ea;
  --paper: #fbfaf7;
  --white: #fff;
  --line: rgba(23, 53, 58, 0.16);
  --serif: var(--font-serif), Georgia, "Times New Roman", serif;
  --sans: var(--font-sans), Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.15'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  position: fixed;
  z-index: 99;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid #d09f5d;
  outline-offset: 4px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid rgba(23, 53, 58, 0.08);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 82px;
  left: 0;
  padding: 0 clamp(24px, 5vw, 80px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
  width: 155px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 13px;
  font-weight: 600;
  position: relative;
  text-decoration: none;
}

nav a::after {
  background: var(--forest);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
  width: 100%;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--forest);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  justify-self: end;
  letter-spacing: 0.02em;
  padding: 11px 20px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.nav-cta:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(146, 170, 160, 0.32), transparent 28%),
    linear-gradient(125deg, var(--paper) 0%, var(--cream) 52%, #e5ece7 100%);
  display: grid;
  gap: 5vw;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 130px clamp(24px, 7vw, 120px) 78px;
  position: relative;
}

.hero-grain {
  background: linear-gradient(90deg, transparent 49.9%, rgba(23, 53, 58, 0.07) 50%, transparent 50.1%);
  background-size: 9vw 100%;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
}

.hero-copy {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: #567067;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  background: currentColor;
  content: "";
  height: 1px;
  width: 38px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
  margin: 42px 0 38px;
}

.hero h1 span {
  color: var(--forest);
  display: block;
  font-style: italic;
  margin-left: clamp(28px, 6vw, 100px);
  margin-top: 18px;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.75;
  max-width: 590px;
}

.hero-actions,
.visit-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 36px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 28px;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 54px;
  padding: 14px 24px;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

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

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

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

.text-link {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 0;
  text-decoration: none;
}

.hero-trust {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  max-width: 620px;
  padding-top: 23px;
}

.hero-trust div {
  display: flex;
  flex-direction: column;
}

.hero-trust strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.hero-trust span {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-height: 650px;
  position: relative;
}

.portrait-frame {
  align-self: center;
  background: #d2ddd7;
  border-radius: 240px 240px 20px 20px;
  box-shadow: 0 35px 90px rgba(15, 70, 71, 0.18);
  height: min(68vh, 680px);
  min-height: 540px;
  overflow: hidden;
  position: relative;
  width: min(33vw, 480px);
  z-index: 2;
}

.portrait-frame img {
  filter: saturate(0.76) contrast(0.95);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  width: 100%;
}

.portrait-frame::after {
  background: linear-gradient(180deg, transparent 55%, rgba(6, 41, 42, 0.82) 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.portrait-caption {
  bottom: 28px;
  color: var(--white);
  left: 28px;
  position: absolute;
  right: 28px;
  z-index: 2;
}

.portrait-caption span,
.portrait-caption small {
  display: block;
}

.portrait-caption span {
  font-family: var(--serif);
  font-size: 22px;
}

.portrait-caption small {
  font-size: 10px;
  letter-spacing: 0.11em;
  margin-top: 3px;
  text-transform: uppercase;
}

.orbit {
  border: 1px solid rgba(15, 70, 71, 0.22);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 560px;
  right: -25%;
  top: 5%;
  width: 560px;
}

.orbit-two {
  bottom: 0;
  height: 330px;
  left: -2%;
  width: 330px;
}

.scroll-cue {
  align-items: center;
  bottom: 22px;
  color: var(--ink-soft);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 10px;
  left: 50%;
  letter-spacing: 0.14em;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  border: 1px solid rgba(23, 53, 58, 0.35);
  border-radius: 999px;
  height: 28px;
  position: relative;
  width: 16px;
}

.scroll-cue span::after {
  animation: scroll-dot 1.8s ease-in-out infinite;
  background: var(--forest);
  border-radius: 50%;
  content: "";
  height: 3px;
  left: 5px;
  position: absolute;
  top: 5px;
  width: 3px;
}

@keyframes scroll-dot {
  50% { transform: translateY(11px); opacity: 0.35; }
}

.manifesto {
  align-items: center;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: clamp(110px, 14vw, 210px) clamp(24px, 12vw, 190px);
  text-align: center;
}

.manifesto blockquote {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 50px auto 38px;
  max-width: 1080px;
}

.manifesto > p:last-child {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
  max-width: 650px;
}

.specialties {
  background: var(--cream);
  padding: clamp(90px, 10vw, 150px) clamp(24px, 7vw, 110px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 6vw;
  grid-template-columns: 1.35fr 0.65fr;
  margin-bottom: 65px;
}

.section-heading h2,
.experience h2,
.visit h2,
.faq h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 24px;
}

.section-heading > p,
.experience-intro > p:last-child {
  color: var(--ink-soft);
  line-height: 1.85;
}

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

.specialty-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 390px;
  padding: 32px 28px;
  position: relative;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.specialty-card:hover {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-8px);
}

.specialty-card > span {
  color: #6f837b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.specialty-card h3 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin: 75px 0 20px;
}

.specialty-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  transition: color 0.35s ease;
}

.specialty-card:hover p {
  color: rgba(255,255,255,0.72);
}

.specialty-card a {
  bottom: 28px;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  justify-content: space-between;
  left: 28px;
  position: absolute;
  right: 28px;
  text-decoration: none;
}

.approach {
  background: var(--forest-deep);
  color: var(--white);
  display: grid;
  gap: 9vw;
  grid-template-columns: 0.85fr 1.15fr;
  padding: clamp(100px, 12vw, 180px) clamp(24px, 8vw, 130px);
}

.approach .section-kicker {
  color: var(--sage);
}

.approach-sticky {
  align-self: start;
  position: sticky;
  top: 140px;
}

.approach-sticky h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 35px 0;
}

.approach-sticky > p:not(.section-kicker) {
  color: rgba(255,255,255,0.67);
  line-height: 1.9;
  max-width: 500px;
}

.approach-sticky .button {
  margin-top: 36px;
}

.process {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.process-step {
  border-bottom: 1px solid rgba(255,255,255,0.18);
  display: grid;
  gap: 30px;
  grid-template-columns: 75px 1fr;
  min-height: 250px;
  padding: 50px 0;
}

.process-step > span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1.1;
}

.process-step p {
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-top: 22px;
  max-width: 560px;
}

.experience {
  padding: clamp(100px, 12vw, 180px) clamp(24px, 8vw, 130px);
}

.experience-intro {
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.3fr 1fr 0.6fr;
}

.experience-intro h2 {
  margin-top: 0;
}

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

.credential {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 26px;
  grid-template-columns: 45px 1fr;
  min-height: 130px;
  padding: 30px 35px 30px 0;
}

.credential:nth-child(odd) {
  border-right: 1px solid var(--line);
  padding-right: 45px;
}

.credential:nth-child(even) {
  padding-left: 45px;
}

.credential span {
  color: #70837b;
  font-size: 11px;
  font-weight: 800;
}

.credential p {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.3;
}

.verification {
  align-items: center;
  background: var(--cream);
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  padding: 30px 34px;
}

.verification strong,
.verification span {
  display: block;
}

.verification span {
  color: var(--ink-soft);
  font-size: 12px;
  margin-top: 4px;
}

.profile-links {
  display: flex;
  gap: 25px;
}

.profile-links a {
  font-size: 12px;
  font-weight: 700;
}

.modalities {
  background: #dfe8e2;
  padding: clamp(90px, 11vw, 160px) clamp(24px, 7vw, 110px);
}

.modality-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.modality-card {
  background: var(--paper);
  display: grid;
  gap: 30px;
  grid-template-columns: 65px 1fr;
  min-height: 430px;
  overflow: hidden;
  padding: 35px;
  position: relative;
  transition: transform 0.35s ease;
}

.modality-card:hover {
  transform: translateY(-7px);
}

.modality-card::after {
  border: 1px solid rgba(15,70,71,0.16);
  border-radius: 50%;
  bottom: -170px;
  content: "";
  height: 380px;
  position: absolute;
  right: -90px;
  width: 380px;
}

.modality-number {
  color: #71857c;
  font-size: 11px;
  font-weight: 800;
}

.tag {
  color: #658076;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.modality-card h3 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
  margin: 60px 0 25px;
}

.modality-card p:not(.tag) {
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 460px;
}

.modality-card a {
  bottom: 38px;
  font-size: 13px;
  font-weight: 800;
  position: absolute;
  text-decoration: none;
  z-index: 2;
}

.online {
  background: var(--forest);
  color: var(--white);
}

.online .tag,
.online .modality-number {
  color: var(--sage);
}

.online p:not(.tag) {
  color: rgba(255,255,255,0.67);
}

.online::after {
  border-color: rgba(255,255,255,0.16);
}

.visit {
  padding: clamp(100px, 12vw, 180px) clamp(24px, 8vw, 130px);
}

.visit-heading {
  display: grid;
  gap: 7vw;
  grid-template-columns: 0.35fr 1fr 0.7fr;
  margin-bottom: 70px;
}

.visit-heading > p:last-child {
  color: var(--ink-soft);
  line-height: 1.8;
}

.visit h2 {
  max-width: 600px;
  margin-top: 0;
}

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

.location-card {
  background: var(--cream);
  overflow: hidden;
}

.location-map {
  border: 0;
  display: block;
  height: 390px;
  width: 100%;
}

.location-info {
  padding: 38px;
}

.location-info h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 18px 0;
}

.location-info address,
.location-info > p:not(.tag) {
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: normal;
  line-height: 1.65;
  min-height: 58px;
}

.location-info .button {
  margin-top: 28px;
}

.faq {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.6fr 1.4fr;
  padding: 20px clamp(24px, 8vw, 130px) clamp(100px, 12vw, 180px);
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 130px;
}

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

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  justify-content: space-between;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  height: 34px;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 34px;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  color: var(--ink-soft);
  line-height: 1.85;
  max-width: 650px;
  padding: 20px 55px 0 0;
}

.final-cta {
  align-items: center;
  background: var(--forest-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 700px;
  overflow: hidden;
  padding: 110px 24px;
  position: relative;
  text-align: center;
}

.final-cta .section-kicker {
  color: var(--sage);
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.93;
  margin: 45px auto 30px;
  max-width: 1050px;
  position: relative;
  z-index: 2;
}

.final-cta > p:not(.section-kicker) {
  color: rgba(255,255,255,0.66);
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.final-cta .button {
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.final-cta-orb {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  height: 680px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
}

.final-cta-orb::before,
.final-cta-orb::after {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.final-cta-orb::before { height: 470px; width: 470px; }
.final-cta-orb::after { height: 280px; width: 280px; }

footer {
  background: #071f21;
  color: var(--white);
  padding: 70px clamp(24px, 8vw, 130px) 35px;
}

.footer-main {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.5fr 0.6fr 0.6fr;
  padding-bottom: 70px;
}

.footer-brand {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: flex-start;
}

.footer-logo {
  display: block;
  height: auto;
  object-fit: contain;
  width: min(100%, 240px);
}

.footer-brand p,
.footer-main span,
.footer-main a {
  color: rgba(255,255,255,0.58);
  font-size: 12px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main > div:not(.footer-brand) > strong {
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.footer-main a {
  text-decoration: none;
}

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

.footer-legal {
  align-items: end;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.44);
  display: flex;
  font-size: 10px;
  gap: 40px;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-legal p {
  max-width: 650px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  color: #062e18;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  padding: 13px 18px;
  position: fixed;
  right: 22px;
  text-decoration: none;
  transition: transform 0.25s ease;
  z-index: 60;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

.reveal {
  opacity: 1;
  transform: none;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal linear both;
    animation-range: entry 5% cover 32%;
    animation-timeline: view();
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .hero {
    gap: 3vw;
    grid-template-columns: 1fr 0.8fr;
  }

  .portrait-frame {
    min-height: 500px;
    width: min(38vw, 430px);
  }

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

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

  .experience-intro .section-kicker {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 75px;
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .brand small,
  .nav-cta {
    display: none;
  }

  .brand-logo {
    max-height: 52px;
    width: 128px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 122px 20px 70px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 18vw, 5.8rem);
    margin: 30px 0;
  }

  .hero h1 span {
    margin-left: 22px;
    margin-top: 10px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

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

  .hero-actions .text-link {
    align-self: center;
  }

  .hero-trust {
    gap: 12px;
    margin-top: 36px;
  }

  .hero-trust strong {
    font-size: 20px;
  }

  .hero-trust span {
    font-size: 8px;
  }

  .hero-visual {
    margin-top: 25px;
    min-height: 480px;
    width: 100%;
  }

  .portrait-frame {
    border-radius: 180px 180px 18px 18px;
    height: 470px;
    min-height: 0;
    width: min(88vw, 360px);
  }

  .orbit-one {
    height: 370px;
    right: -35%;
    width: 370px;
  }

  .orbit-two {
    height: 220px;
    left: -18%;
    width: 220px;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto,
  .specialties,
  .experience,
  .modalities,
  .visit {
    padding-left: 20px;
    padding-right: 20px;
  }

  .manifesto blockquote {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .section-heading,
  .experience-intro,
  .approach,
  .faq {
    display: block;
  }

  .section-heading > p,
  .experience-intro > p:last-child {
    margin-top: 28px;
  }

  .specialty-grid,
  .credentials,
  .modality-grid {
    display: block;
  }

  .specialty-card {
    min-height: 340px;
  }

  .approach {
    padding: 100px 20px;
  }

  .approach-sticky,
  .faq-heading {
    position: static;
  }

  .process {
    margin-top: 80px;
  }

  .process-step {
    grid-template-columns: 45px 1fr;
    min-height: 0;
  }

  .experience-intro h2 {
    margin-top: 25px;
  }

  .credentials {
    margin-top: 55px;
  }

  .credential,
  .credential:nth-child(odd),
  .credential:nth-child(even) {
    border-right: 0;
    padding: 25px 0;
  }

  .verification {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .profile-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .modality-card {
    margin-top: 18px;
    min-height: 410px;
    padding: 28px 22px;
  }

  .visit-heading {
    display: block;
    margin-bottom: 42px;
  }

  .visit-heading > p:last-child {
    margin-top: 24px;
  }

  .location-grid {
    display: block;
  }

  .location-card {
    margin-top: 20px;
  }

  .location-map {
    height: 330px;
  }

  .location-info {
    padding: 30px 24px 36px;
  }

  .location-info address,
  .location-info > p:not(.tag) {
    min-height: 0;
  }

  .faq {
    padding: 20px 20px 110px;
  }

  .faq-list {
    margin-top: 55px;
  }

  .faq summary {
    gap: 20px;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-cta-orb {
    height: 500px;
    width: 500px;
  }

  .footer-main,
  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    display: flex;
    gap: 38px;
  }

  .whatsapp-float span:last-child {
    display: none;
  }

  .whatsapp-float {
    align-items: center;
    border-radius: 50%;
    bottom: 16px;
    height: 52px;
    justify-content: center;
    padding: 0;
    right: 16px;
    width: 52px;
  }
}

@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;
  }
}
