/* ===========================================================
   pages.css — shared styling for About / Services / Contact
   Extends style.css. Same variables, fonts, colors, radius.
   =========================================================== */

/* ---------- Inner page hero (breadcrumb banner) ---------- */
.inner-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 0;
  padding: 78px 24px 64px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 243, 234, 0.92), rgba(255, 255, 255, 0.96)),
    url("img/25038305_7058080 1.png") right -34px bottom -70px / 260px auto no-repeat;
  overflow: hidden;
}

.inner-hero::before,
.inner-hero::after {
  display: none;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeUp 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.inner-hero-content::before {
  position: absolute;
  inset: -34px -46px;
  z-index: -1;
  border: 1px solid rgba(234, 90, 5, 0.08);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  content: "";
  opacity: 0.72;
}

.inner-hero .eyebrow {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.inner-hero h1 {
  margin: 6px 0 10px;
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
}

.inner-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.6;
}

.inner-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.inner-hero-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(234, 90, 5, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #4f3526;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(55, 32, 14, 0.06);
}

.inner-hero-stats strong {
  color: var(--orange);
  font-size: 1.02rem;
  font-weight: 900;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 18px;
  border: 1px solid rgba(234, 90, 5, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #6c431b;
  font-size: 13px;
  font-weight: 700;
  animation: heroFadeUp 900ms 120ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb i { font-size: 9px; opacity: 0.7; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Intro split (About) ---------- */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.intro-split .about-media {
  min-height: 500px;
  filter: drop-shadow(0 18px 28px rgba(55, 32, 14, 0.12));
}

.intro-split .about-img.primary {
  top: 112px;
  object-fit: contain;
  border-radius: 28px;
  background: rgba(255, 248, 232, 0.68);
  padding: 16px;
}

.intro-split .about-img.secondary {
  top: 0;
  height: 450px;
  object-position: center;
  border-radius: 34px 0 34px 34px;
}

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.mv-card {
  position: relative;
  min-height: 260px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 20px 40px rgba(212, 85, 5, 0.14);
}

.mv-card .icon-pill {
  margin-bottom: 16px;
  width: 58px;
  height: 58px;
}

.mv-card h3 {
  margin-bottom: 8px;
  font-size: 1.38rem;
  color: var(--ink);
}

.mv-card::after,
.value-card::after,
.process-card::after,
.info-card::after,
.services-grid .treatment-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.52) 46%, transparent 56%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-130%);
  transition: opacity 260ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mv-card:hover::after,
.value-card:hover::after,
.process-card:hover::after,
.info-card:hover::after,
.services-grid .treatment-card:hover::after {
  opacity: 1;
  transform: translateX(130%);
}

.mv-card p {
  color: #444444;
  font-size: 15px;
  line-height: 1.62;
}

/* ---------- Value / Feature cards ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  min-height: 245px;
  padding: 30px 22px;
  border-radius: 22px;
  background: var(--peach);
  text-align: center;
  transition: transform 240ms ease, background 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.value-card i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--white);
  color: var(--orange);
  font-size: 22px;
  transition: transform 240ms ease;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.08rem; color: var(--ink); }
.value-card p { font-size: 14px; line-height: 1.58; }

.value-card:hover {
  background: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(212, 85, 5, 0.22);
}

.value-card:hover i { background: var(--white); transform: rotate(-8deg) scale(1.08); }
.value-card:hover h3,
.value-card:hover p { color: var(--white); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin: 10px auto 0;
  max-width: 900px;
  padding-left: 28px;
}

.timeline.in::before {
  animation: timelineDraw 1200ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transform-origin: top;
}

.timeline.in .timeline-item {
  animation: timelineItemIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.timeline.in .timeline-item:nth-child(1) { animation-delay: 100ms; }
.timeline.in .timeline-item:nth-child(2) { animation-delay: 220ms; }
.timeline.in .timeline-item:nth-child(3) { animation-delay: 340ms; }
.timeline.in .timeline-item:nth-child(4) { animation-delay: 460ms; }

.timeline::before {
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--orange), var(--gold));
  content: "";
}

.timeline-item {
  position: relative;
  opacity: 0;
  margin-bottom: 28px;
  padding: 2px 0 2px 28px;
  transform: translateX(-16px);
}

.timeline-item::before {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 90, 5, 0.22);
  content: "";
}

.timeline-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.timeline-item h3 { margin-bottom: 6px; font-size: 1.18rem; }
.timeline-item p { color: #444444; font-size: 14.5px; line-height: 1.6; }

@keyframes timelineDraw {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes timelineItemIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- About page refresh ---------- */
.about-page .section-heading:not(.center) {
  width: 100%;
  margin: 0;
}

.about-hero {
  position: relative;
  min-height: calc(100vh - 95px);
  height: auto;
  display: flex;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 64px) 54px;
  background: linear-gradient(115deg, #fff7eb 0%, #ffffff 44%, #fde8da 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.about-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(234, 90, 5, 0.08));
  content: "";
}

.about-hero::after {
  position: absolute;
  right: -12px;
  bottom: -70px;
  width: min(300px, 28vw);
  height: 300px;
  background: url("img/25038305_7058080 1.png") center / contain no-repeat;
  content: "";
  opacity: 0.72;
  animation: none;
}

.about-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about-hero-copy {
  align-self: center;
  animation: aboutHeroCopyIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.about-hero-breadcrumb {
  margin: 0 0 12px;
  animation: none;
}

.about-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.about-hero-copy h1 {
  max-width: 720px;
  color: #141414;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: #242424;
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.6;
}

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

.about-hero-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
}

.about-hero-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: end center;
  align-self: end;
  animation: none;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: clamp(380px, 42vw, 490px);
  height: clamp(380px, 42vw, 490px);
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: none;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: 44px;
}

.hero-orbit::after {
  inset: 90px;
  background: rgba(255, 255, 255, 0.4);
}

.about-hero-doctor {
  position: relative;
  z-index: 2;
  width: clamp(320px, 36vw, 440px);
  height: auto;
  align-self: end;
  margin-bottom: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(55, 32, 14, 0.2));
}

.about-hero-bottles {
  position: absolute;
  left: 2%;
  bottom: 24px;
  z-index: 3;
  width: clamp(140px, 15vw, 180px);
  padding: 12px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  object-fit: contain;
  box-shadow: 0 18px 38px rgba(55, 32, 14, 0.14);
  animation: none;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  width: min(230px, 44%);
  padding: 16px 18px;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 36px rgba(55, 32, 14, 0.12);
  backdrop-filter: blur(12px);
}

.hero-floating-card strong,
.hero-floating-card small {
  display: block;
}

.hero-floating-card strong {
  color: #101010;
  font-size: 14px;
  line-height: 1.2;
}

.hero-floating-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-card-locations {
  right: 0;
  bottom: 64px;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  align-items: center;
  animation: none;
}

.hero-card-locations i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

.about-story-grid,
.about-belief-grid,
.about-philosophy-grid,
.founder-panel,
.commitment-grid {
  display: grid;
  align-items: center;
}

.about-story-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: clamp(34px, 5vw, 72px);
}

.about-story {
  position: relative;
  padding-top: 88px;
  background: #ffffff;
}

.about-story::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 90, 5, 0.28), transparent);
  content: "";
}

.about-story-copy h2,
.about-philosophy h2,
.founder-copy h2,
.commitment-copy h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.2vw, 3.3rem);
  font-weight: 700;
}

.about-story-copy p:not(.eyebrow),
.about-philosophy .section-heading p,
.founder-copy p,
.commitment-copy p {
  max-width: 650px;
  margin-bottom: 14px;
  color: #222222;
  font-size: 15px;
  line-height: 1.68;
}

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

.story-highlights article {
  position: relative;
  min-height: 170px;
  padding: 22px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 22px;
  background: #fff9f0;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.story-highlights article::after {
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(234, 90, 5, 0.08);
  border-radius: 50%;
  content: "";
}

.story-highlights article:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(55, 32, 14, 0.1);
}

.story-highlights span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.story-highlights strong,
.story-highlights small {
  position: relative;
  z-index: 1;
  display: block;
}

.story-highlights strong {
  color: #111111;
  font-size: 15px;
  line-height: 1.2;
}

.story-highlights small {
  margin-top: 8px;
  color: #4b4b4b;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.45;
}

.about-actions,
.commitment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-story-media {
  position: relative;
  min-height: 560px;
}

.about-story-media::before {
  position: absolute;
  inset: 42px 52px 36px 28px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 34px;
  content: "";
  transform: rotate(-3deg);
}

.story-main {
  position: absolute;
  right: 0;
  top: 12px;
  width: min(520px, 86%);
  height: 500px;
  border-radius: 34px 0 34px 34px;
  object-fit: cover;
  box-shadow: 0 26px 52px rgba(55, 32, 14, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.about-story-media:hover .story-main {
  transform: translateY(-6px);
  box-shadow: 0 32px 62px rgba(55, 32, 14, 0.2);
}

.story-float {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: min(300px, 52%);
  height: 260px;
  padding: 18px;
  border: 6px solid #fff7ed;
  border-radius: 30px;
  background: rgba(255, 248, 232, 0.9);
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(55, 32, 14, 0.12);
  animation: aboutImageFloat 5.4s ease-in-out infinite;
}

.story-badge {
  position: absolute;
  right: 36px;
  bottom: 26px;
  width: 136px;
  min-height: 136px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 36px rgba(212, 85, 5, 0.28);
  animation: aboutBadgePulse 4s ease-in-out infinite;
}

.story-badge::after,
.contact-hero-badge::after {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(232, 90, 0, 0.24);
  border-radius: 50%;
  content: "";
  animation: circleBadgeRing 2.8s ease-out infinite;
}

.story-badge strong {
  display: block;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 0.9;
}

.story-badge span {
  display: block;
  margin-top: 8px;
  color: #fff6df;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.3;
}

.about-belief.section-soft,
.about-why.section-soft {
  width: min(1330px, calc(100% - 40px));
  padding: 64px 52px;
  border-radius: 38px;
  background: var(--peach);
}

.about-belief > .shell,
.about-why > .shell {
  width: 100%;
}

.about-belief-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 28px;
}

.belief-card {
  position: relative;
  min-height: 360px;
  padding: 42px 36px;
  border-radius: 30px;
  background: #ffffff;
  overflow: hidden;
}

.belief-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 46px solid rgba(234, 90, 5, 0.12);
  border-radius: 50%;
  content: "";
}

.belief-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 24px;
}

.belief-card h2 {
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
}

.belief-card p {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: #222222;
}

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

.belief-points article,
.why-card,
.location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.belief-points article {
  min-height: 260px;
  padding: 30px 24px;
  border-radius: 24px;
}

.belief-points article:hover,
.why-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 90, 5, 0.36);
  box-shadow: 0 20px 38px rgba(55, 32, 14, 0.12);
}

.belief-points i,
.why-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange);
  font-size: 22px;
}

.belief-points h3,
.why-card h3,
.location-card h3 {
  margin-bottom: 10px;
  color: #000000;
}

.belief-points p,
.why-card p,
.location-card p {
  color: #444444;
  font-size: 14px;
  line-height: 1.58;
}

.about-philosophy-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
}

.philosophy-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.philosophy-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 90, 5, 0.16);
  box-shadow: 0 16px 36px rgba(55, 32, 14, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.philosophy-img-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(55, 32, 14, 0.15);
}

.philosophy-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.philosophy-img-wrapper:hover .philosophy-img {
  transform: scale(1.03);
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-list article {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #f1dccb;
  border-radius: 20px;
  background: #fff9f0;
  color: #161616;
  font-size: 15px;
  font-weight: 750;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.case-list article:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateX(8px);
}

.case-list i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--orange);
}

.about-founder {
  padding-top: 36px;
}

.founder-panel {
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 5vw, 68px);
  padding: 48px;
  border-radius: 42px;
  background: linear-gradient(135deg, #fff7eb 0%, #ffffff 58%, #fde8da 100%);
  overflow: hidden;
}

.founder-photo {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.founder-photo::before {
  position: absolute;
  inset: auto 8% 26px;
  height: 74%;
  border-radius: 42% 42% 18px 18px;
  background: rgba(234, 90, 5, 0.14);
  content: "";
}

.founder-photo img {
  position: relative;
  z-index: 1;
  width: min(330px, 82%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(55, 32, 14, 0.18));
}

.founder-rating {
  position: absolute;
  left: 0;
  bottom: 22px;
  z-index: 2;
  width: min(260px, 72%);
  padding: 18px 20px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(55, 32, 14, 0.14);
}

.founder-rating strong,
.founder-rating small {
  display: block;
  color: #000000;
}

.founder-rating small {
  margin-top: 3px;
  color: var(--muted);
}

.founder-copy .btn {
  margin-top: 14px;
}

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

.why-card {
  min-height: 270px;
  padding: 30px 24px;
  border-radius: 24px;
}

.commitment-grid {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr);
  gap: clamp(28px, 5vw, 64px);
}

.commitment-copy {
  padding: 38px 0;
}

.location-stack {
  display: grid;
  gap: 18px;
}

.location-card {
  min-height: 210px;
  padding: 30px 28px;
  border-radius: 26px;
}

.location-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

@keyframes aboutImageFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes aboutHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutHeroVisualIn {
  from {
    opacity: 0;
    transform: translateX(34px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes aboutOrbitPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  50% {
    transform: translateX(-50%) scale(1.035);
  }
}

@keyframes aboutFloatSlow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-9px);
  }
}

@keyframes aboutLeafDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

@keyframes aboutBadgePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.045);
  }
}

/* ---------- Services page premium ---------- */
.services-page .section-heading p {
  color: #222222;
}

.services-hero {
  position: relative;
  min-height: clamp(480px, 68vh, 600px);
  height: auto;
  display: flex;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 64px) 54px;
  background: linear-gradient(115deg, #fff7eb 0%, #ffffff 44%, #fde8da 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.services-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(234, 90, 5, 0.08));
  content: "";
}

.services-hero::after {
  position: absolute;
  right: -40px;
  bottom: -72px;
  width: min(300px, 28vw);
  height: 300px;
  background: url("img/25038305_7058080 1.png") center / contain no-repeat;
  content: "";
  opacity: 0.65;
  animation: none;
}

.services-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.services-hero-copy {
  align-self: center;
  animation: aboutHeroCopyIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.services-hero-breadcrumb {
  margin: 0 0 14px;
  animation: none;
}

.services-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.services-hero-copy h1 {
  max-width: 720px;
  color: #141414;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.services-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: #242424;
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.6;
}

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

.services-hero-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
}

.services-hero-visual {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  align-self: end;
  animation: none;
}

.services-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(330px, 38vw, 455px);
  height: clamp(330px, 38vw, 455px);
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: none;
}

.services-orbit::before,
.services-orbit::after {
  position: absolute;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 50%;
  content: "";
}

.services-orbit::before {
  inset: 44px;
}

.services-orbit::after {
  inset: 92px;
  background: rgba(255, 255, 255, 0.42);
}

.services-hero-main {
  position: relative;
  z-index: 2;
  width: clamp(250px, 30vw, 390px);
  height: auto;
  padding: 22px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  object-fit: contain;
  box-shadow: 0 24px 50px rgba(55, 32, 14, 0.14);
  animation: none;
}

.services-hero-clinic {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(180px, 20vw, 270px);
  height: clamp(135px, 15vw, 200px);
  border: 6px solid #ffffff;
  border-radius: 28px 0 28px 28px;
  object-fit: cover;
  box-shadow: 0 18px 38px rgba(55, 32, 14, 0.16);
}

.service-float-card {
  position: absolute;
  z-index: 4;
  width: min(230px, 44%);
  padding: 16px 18px;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(55, 32, 14, 0.12);
  backdrop-filter: blur(12px);
}

.service-float-card strong,
.service-float-card small {
  display: block;
}

.service-float-card strong {
  color: #101010;
  font-size: 14px;
  line-height: 1.2;
}

.service-float-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.service-float-one {
  left: 4%;
  top: 54px;
  animation: none;
}

.service-float-two {
  right: 4%;
  top: 110px;
  animation: none;
}

.service-overview {
  padding-top: 86px;
}

.service-overview-grid,
.service-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.service-overview-copy h2,
.service-why-copy h2,
.service-consult-card h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.1vw, 3.2rem);
  font-weight: 700;
}

.service-overview-copy p:not(.eyebrow),
.service-why-copy p,
.service-consult-card p {
  max-width: 650px;
  color: #222222;
  font-size: 15px;
  line-height: 1.68;
}

.service-overview-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-overview-points article,
.service-why-list article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid #f1dccb;
  border-radius: 20px;
  background: #fff9f0;
  color: #161616;
  font-size: 14px;
  font-weight: 750;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.service-overview-points article:hover,
.service-why-list article:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(212, 85, 5, 0.18);
}

.service-overview-points i,
.service-why-list i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--orange);
}

.service-departments.section-soft,
.service-why.section-soft {
  width: min(1330px, calc(100% - 40px));
  padding: 64px 52px;
  border-radius: 38px;
  background: var(--peach);
}

.service-departments > .shell,
.service-why > .shell {
  width: 100%;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.department-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 22px;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.department-card::after {
  position: absolute;
  right: -54px;
  bottom: -60px;
  width: 152px;
  height: 152px;
  border: 28px solid rgba(234, 90, 5, 0.08);
  border-radius: 50%;
  content: "";
}

.department-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 90, 5, 0.36);
  box-shadow: 0 20px 38px rgba(55, 32, 14, 0.12);
}

.department-img {
  width: 66px;
  height: 66px;
  display: block;
  flex: 0 0 auto;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(234, 90, 5, 0.16);
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.department-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: #000000;
  font-size: 1.05rem;
  line-height: 1.18;
}

.department-card p {
  position: relative;
  z-index: 1;
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.54;
}

.service-detail-trigger {
  position: relative;
  z-index: 2;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 0 14px;
  border: 1px solid rgba(234, 90, 5, 0.24);
  border-radius: 999px;
  background: #fff7eb;
  color: var(--orange);
  cursor: pointer;
  font-size: 12px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.service-detail-trigger i {
  font-size: 12px;
  transition: transform 180ms ease;
}

.service-detail-trigger:hover,
.service-detail-trigger:focus-visible {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(212, 85, 5, 0.2);
  transform: translateY(-2px);
}

.service-detail-trigger:hover i,
.service-detail-trigger:focus-visible i {
  transform: translateX(3px);
}

.department-feature {
  grid-column: span 2;
  min-height: 240px;
  background: #fff7eb;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.service-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 14, 10, 0.54);
  backdrop-filter: blur(10px);
}

.service-modal-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(720px, calc(100svh - 48px));
  overflow-y: auto;
  padding: 38px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(19, 14, 10, 0.24);
  transform: translateY(22px) scale(0.97);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-modal-panel::-webkit-scrollbar,
.service-modal-list::-webkit-scrollbar,
.service-modal-detail::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.service-modal.is-open .service-modal-panel {
  transform: translateY(0) scale(1);
}

.service-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff7eb;
  color: var(--orange);
  cursor: pointer;
}

.service-modal-panel h2 {
  max-width: 640px;
  margin: 0 52px 14px 0;
  color: #111111;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 750;
}

.service-modal-panel > p:not(.eyebrow) {
  color: #333333;
  font-size: 15px;
  line-height: 1.66;
}

.service-modal-content {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  margin: 24px 0 28px;
}

.service-modal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 420px;
  overflow-y: auto;
  padding: 4px 8px 4px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-modal-list button {
  align-items: center;
  appearance: none;
  background: #fff7eb;
  border: 1px solid rgba(234, 90, 5, 0.18);
  border-radius: 16px;
  color: #221c18;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  justify-content: space-between;
  line-height: 1.25;
  min-height: 42px;
  padding: 10px 13px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  width: 100%;
}

.service-modal-list button::after {
  color: currentColor;
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-size: 12px;
  font-weight: 900;
  opacity: 0.72;
}

.service-modal-list button:hover,
.service-modal-list button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
  transform: translateX(2px);
}

.service-modal-detail {
  align-self: stretch;
  min-height: 250px;
  max-height: 420px;
  overflow-y: auto;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 40px rgba(55, 32, 14, 0.08);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.service-modal-detail span {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.service-modal-detail h3 {
  color: #111111;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.1;
  margin-bottom: 14px;
}

.service-modal-detail p {
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.75;
}

.service-qa-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.service-qa-card {
  padding: 15px 16px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(55, 32, 14, 0.04);
}

.service-qa-card.service-qa-highlight {
  border-color: rgba(234, 90, 5, 0.35);
  background: #fff9f2;
}

.qa-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.qa-header i {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0db;
  color: var(--orange);
  font-size: 12px;
}

.qa-header h4 {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
}

.service-qa-card p {
  margin: 0;
  color: #3f3f3f;
  font-size: 13.5px;
  line-height: 1.58;
}

.modal-open {
  overflow: hidden;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.focus-card {
  position: relative;
  min-height: 250px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(55, 32, 14, 0.12);
}

.focus-card.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
  display: grid;
  align-content: end;
  padding: 0;
}

.focus-card.large img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.focus-card.large div {
  padding: 28px;
}

.focus-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.focus-card h3 {
  margin-bottom: 10px;
  color: #000000;
  font-size: 1.15rem;
}

.focus-card p {
  color: #444444;
  font-size: 14px;
  line-height: 1.58;
}

.service-why-list {
  display: grid;
  gap: 12px;
}

.service-consult {
  padding-bottom: 36px;
}

.service-consult-card {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  align-items: center;
  gap: 24px;
  padding: 44px 46px 0;
  border-radius: 34px;
  background: var(--orange);
  overflow: hidden;
}

.service-consult-card h2,
.service-consult-card p,
.service-consult-card .eyebrow {
  color: #ffffff;
}

.service-phone {
  display: inline-block;
  margin-top: 18px;
  color: #fff2d9;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 900;
}

.service-consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-consult-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.74);
  color: #ffffff;
}

.service-consult-card img {
  align-self: end;
  width: min(300px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 28px rgba(55, 32, 14, 0.22));
  animation: ctaDoctorFloat 5.8s ease-in-out infinite;
}

.service-note {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  padding: 20px 22px;
  border: 1px solid rgba(234, 90, 5, 0.2);
  border-radius: 20px;
  background: #fff9f0;
}

.service-note i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--orange);
}

.service-note p {
  color: #333333;
  font-size: 13.5px;
  line-height: 1.58;
}

@keyframes servicesOrbitPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.035);
  }
}

/* ---------- Contact page premium ---------- */
.contact-hero {
  position: relative;
  min-height: clamp(480px, 68vh, 600px);
  height: auto;
  display: flex;
  align-items: center;
  padding: 64px clamp(24px, 5vw, 64px) 54px;
  background: linear-gradient(115deg, #fff7eb 0%, #ffffff 44%, #fde8da 100%);
  overflow: hidden;
  box-sizing: border-box;
}

.contact-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(234, 90, 5, 0.08));
  content: "";
}

.contact-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
  box-sizing: border-box;
  height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.contact-hero-copy {
  align-self: center;
  animation: aboutHeroCopyIn 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-hero-breadcrumb {
  margin: 0 0 14px;
  animation: none;
}

.contact-hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 13px;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.contact-hero-copy h1 {
  max-width: 720px;
  color: #141414;
  font-size: clamp(2.2rem, 3.6vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.contact-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 16px;
  color: #242424;
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.6;
}

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

.contact-hero-actions .btn {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
}

.contact-hero-panel {
  position: relative;
  min-height: clamp(480px, 58vh, 620px);
  align-self: center;
  animation: none;
}

.contact-hero-panel::before {
  position: absolute;
  inset: 20px 24px 26px 0;
  border: 1px solid rgba(234, 90, 5, 0.16);
  border-radius: 34px;
  content: "";
  transform: rotate(-3deg);
}

.contact-hero-panel > img {
  position: absolute;
  right: 0;
  top: auto;
  bottom: 0;
  width: min(560px, 94%);
  height: clamp(460px, 56vh, 600px);
  border-radius: 34px 0 34px 34px;
  object-fit: cover;
  box-shadow: 0 26px 52px rgba(55, 32, 14, 0.16);
}

.contact-hero-card,
.contact-hero-badge {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(234, 90, 5, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(55, 32, 14, 0.12);
  backdrop-filter: blur(12px);
}

.contact-hero-card {
  left: 0;
  bottom: 54px;
  width: min(300px, 56%);
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 22px;
  animation: none;
}

.contact-hero-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

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

.contact-hero-card strong {
  color: #101010;
  font-size: 15px;
}

.contact-hero-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-hero-badge {
  right: 34px;
  bottom: 18px;
  width: 124px;
  min-height: 124px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  text-align: center;
  animation: none;
}

.contact-hero-badge strong {
  display: block;
  color: #ffffff;
  font-size: 2.2rem;
  line-height: 0.9;
}

.contact-hero-badge span {
  display: block;
  margin-top: 8px;
  color: #fff6df;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.contact-quick {
  padding-top: 78px;
}

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

.contact-method {
  position: relative;
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px 24px;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.contact-method::after {
  position: absolute;
  right: -54px;
  bottom: -60px;
  width: 152px;
  height: 152px;
  border: 28px solid rgba(234, 90, 5, 0.08);
  border-radius: 50%;
  content: "";
}

.contact-method:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 90, 5, 0.36);
  box-shadow: 0 20px 38px rgba(55, 32, 14, 0.12);
}

.contact-method i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 22px;
}

.contact-method span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.contact-method strong {
  position: relative;
  z-index: 1;
  color: #111111;
  font-size: 1.05rem;
  line-height: 1.35;
}

.contact-locations.section-soft {
  width: min(1330px, calc(100% - 40px));
  padding: 64px 52px;
  border-radius: 38px;
  background: var(--peach);
}

.contact-locations > .shell {
  width: 100%;
}

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

.clinic-location-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 1fr);
  gap: 18px;
  min-height: 360px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.clinic-location-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px rgba(55, 32, 14, 0.12);
}

.clinic-location-copy {
  display: grid;
  align-content: center;
}

.location-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.clinic-location-copy h3 {
  margin-bottom: 10px;
  color: #111111;
  font-size: 1.35rem;
}

.clinic-location-copy p {
  color: #333333;
  font-size: 14px;
  line-height: 1.6;
}

.clinic-location-copy .btn {
  width: fit-content;
  margin-top: 22px;
  border-radius: 999px;
}

.clinic-map {
  min-height: 310px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.clinic-map iframe {
  width: 100%;
  height: 100%;
  min-height: 310px;
  border: 0;
  display: block;
}

.contact-appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: stretch;
}

.contact-visit-card,
.contact-form-card {
  position: relative;
  border: 1px solid rgba(234, 90, 5, 0.14);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(55, 32, 14, 0.08);
  overflow: hidden;
}

.contact-visit-card {
  padding: 38px 34px;
  background: #fff9f0;
}

.contact-visit-card h2,
.contact-form-card h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
}

.branch-timings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 16px;
  align-items: stretch;
}

.branch-timing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border: 1px solid #f1dccb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(55, 32, 14, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.branch-timing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(234, 90, 5, 0.36);
  box-shadow: 0 14px 28px rgba(55, 32, 14, 0.08);
}

.branch-timing-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f6e8dc;
}

.branch-timing-header i {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange);
  font-size: 15px;
}

.branch-timing-header strong {
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 800;
}

.branch-timing-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.branch-timing-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.branch-timing-row .day-label {
  color: var(--orange-dark);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.branch-timing-row .time-value {
  color: #222222;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.badge-holiday {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: #ffebe6;
  color: #d9381e;
  font-size: 11.5px;
  font-weight: 800;
}

.visit-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.visit-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid #f1dccb;
  border-radius: 20px;
  background: #ffffff;
}

.visit-list i {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

.visit-list strong,
.visit-list span {
  display: block;
}

.visit-list strong {
  color: #111111;
  font-size: 14px;
}

.visit-list span {
  margin-top: 4px;
  color: #555555;
  font-size: 13px;
  line-height: 1.5;
}

.contact-form-card {
  padding: 38px;
}

.contact-form-card form {
  display: grid;
  gap: 16px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #ead8c8;
  border-radius: 16px;
  background: #fff9f0;
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form-card textarea {
  min-height: 126px;
  padding-top: 16px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(234, 90, 5, 0.1);
}

.contact-form-card .btn {
  min-height: 46px;
  border-radius: 999px;
}

.contact-faq.section-soft {
  width: min(1330px, calc(100% - 32px));
}

@media (max-width: 1180px) and (min-width: 981px) {
  .department-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .department-feature {
    grid-column: span 3;
  }

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

  .focus-card.large {
    grid-column: span 3;
    grid-row: auto;
    min-height: 0;
  }
}

/* ---------- Services grid (static, animated) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.services-grid .treatment-card {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
}

.services-grid .treatment-card p {
  min-height: 98px;
  font-size: 12.5px;
  line-height: 1.58;
}

.services-grid .treatment-card img {
  height: 170px;
  border-radius: 18px;
  object-position: center;
}

.services-grid .treatment-card:hover img {
  transform: scale(1.045);
}

.service-cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding: 28px 34px;
  border-radius: 24px;
  background: var(--cream);
  border: 1px dashed rgba(234, 90, 5, 0.4);
}

.service-cta-strip p {
  max-width: 560px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

/* ---------- Process steps (Services) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: 34px 24px 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease;
  overflow: hidden;
}

.process-card:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(55, 32, 14, 0.1); }

.process-card::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
}

.process-card h3 { margin-bottom: 10px; font-size: 1.08rem; }
.process-card p { color: #444444; font-size: 14px; line-height: 1.58; }

/* ---------- Contact page ---------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  position: relative;
  min-height: 240px;
  padding: 30px 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
  overflow: hidden;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 18px 36px rgba(212, 85, 5, 0.14);
}

.info-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--peach);
  color: var(--orange);
  font-size: 20px;
}

.info-card h3 { margin-bottom: 8px; font-size: 1.06rem; }
.info-card p, .info-card a { font-size: 14px; line-height: 1.55; }
.info-card a { color: var(--orange); font-weight: 700; }

.contact-split {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: center;
}

.contact-split .appointment-card {
  min-height: 0;
  margin-left: 0;
  padding: 42px 34px 30px 126px;
  border-radius: 30px;
}

.contact-split .appointment-card h2 {
  max-width: 520px;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
}

.contact-split .appointment-card .eyebrow {
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: none;
}

.contact-split .appointment-card .form-watermark {
  left: 24px;
  font-size: clamp(5rem, 8vw, 7.25rem);
}

.contact-split .appointment-card form {
  gap: 16px;
}

.contact-split .appointment-card input,
.contact-split .appointment-card select,
.contact-split .appointment-card textarea {
  min-height: 58px;
  font-size: 15px;
}

.contact-split .appointment-card textarea {
  min-height: 124px;
}

.map-wrap {
  min-height: 390px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(39, 65, 84, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  display: block;
}

.hours-card {
  margin-top: 20px;
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.hours-card h3 { margin-bottom: 14px; color: var(--orange); font-size: 1.1rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}

.hours-row:last-child { border-bottom: 0; }
.hours-row span:first-child { color: var(--ink); font-weight: 700; }
.hours-row span:last-child { color: var(--muted); }

/* ---------- Page-load animation for staggered grids ---------- */
.reveal.stagger-1 { transition-delay: 60ms; }
.reveal.stagger-2 { transition-delay: 140ms; }
.reveal.stagger-3 { transition-delay: 220ms; }
.reveal.stagger-4 { transition-delay: 300ms; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .intro-split,
  .contact-split { grid-template-columns: 1fr; }
  .about-story-grid,
  .about-belief-grid,
  .about-philosophy-grid,
  .founder-panel,
  .commitment-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-left {
    align-items: center;
    text-align: center;
  }
  .philosophy-img-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }
  .about-hero {
    height: auto;
    min-height: auto;
    padding: 42px 0 0;
  }
  .services-hero {
    height: auto;
    min-height: auto;
    padding: 42px 0 0;
  }
  .contact-hero {
    height: auto;
    min-height: auto;
    padding: 42px 0 0;
  }
  .contact-hero-shell,
  .contact-appointment-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero-copy,
  .contact-hero-copy > p:not(.eyebrow) {
    text-align: center;
  }
  .contact-hero-copy h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(2.45rem, 7vw, 4rem);
  }
  .contact-hero-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero-breadcrumb,
  .contact-hero-copy .eyebrow,
  .contact-hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-hero-panel {
    width: min(640px, 100%);
    min-height: 500px;
    justify-self: center;
  }
  .contact-quick-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .contact-locations.section-soft,
  .contact-faq.section-soft {
    width: min(100% - 32px, 820px);
    padding: 42px 28px;
    border-radius: 34px;
  }
  .clinic-location-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  }
  .contact-visit-card,
  .contact-form-card {
    width: min(720px, 100%);
    justify-self: center;
  }
  .services-hero-shell,
  .service-overview-grid,
  .service-why-grid,
  .service-consult-card {
    grid-template-columns: 1fr;
  }
  .services-hero-copy,
  .services-hero-copy > p:not(.eyebrow),
  .service-overview-copy,
  .service-why-copy,
  .service-consult-card {
    text-align: center;
  }
  .services-hero-copy h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(2.45rem, 7vw, 4rem);
  }
  .services-hero-copy > p:not(.eyebrow),
  .service-overview-copy p:not(.eyebrow),
  .service-why-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .services-hero-breadcrumb,
  .services-hero-copy .eyebrow,
  .services-hero-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .services-hero-visual {
    width: min(620px, 100%);
    min-height: 500px;
    justify-self: center;
  }
  .service-overview-points {
    max-width: 760px;
    margin: 0 auto;
  }
  .service-departments.section-soft,
  .service-why.section-soft {
    width: min(100% - 32px, 820px);
    padding: 42px 28px;
    border-radius: 34px;
  }
  .department-grid,
  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .department-feature,
  .focus-card.large {
    grid-column: span 2;
  }
  .focus-card.large {
    grid-row: auto;
    min-height: 0;
  }
  .service-consult-card {
    padding: 40px 30px 0;
  }
  .service-consult-card img {
    width: min(260px, 70%);
  }
  .about-hero-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-hero-copy,
  .about-hero-copy > p:not(.eyebrow) {
    text-align: center;
  }
  .about-hero-copy h1 {
    max-width: 780px;
    margin: 0 auto;
    font-size: clamp(2.5rem, 7vw, 4rem);
  }
  .about-hero-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-breadcrumb,
  .about-hero-copy .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-actions {
    justify-content: center;
  }
  .about-hero-visual {
    width: min(620px, 100%);
    min-height: 520px;
    justify-self: center;
  }
  .about-hero-doctor {
    width: min(340px, 64%);
  }
  .hero-card-locations {
    bottom: 84px;
  }
  .about-story-copy,
  .about-philosophy .section-heading,
  .founder-copy,
  .commitment-copy {
    text-align: center;
  }
  .about-story-copy p:not(.eyebrow),
  .about-philosophy .section-heading p,
  .founder-copy p,
  .commitment-copy p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .about-actions,
  .commitment-actions {
    justify-content: center;
  }
  .about-story-media {
    width: min(640px, 100%);
    min-height: 520px;
    justify-self: center;
  }
  .story-main {
    width: min(520px, 80%);
    height: 460px;
  }
  .story-float {
    width: min(300px, 50%);
  }
  .story-highlights {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-belief.section-soft,
  .about-why.section-soft {
    width: min(100% - 32px, 820px);
    padding: 42px 28px;
    border-radius: 34px;
  }
  .belief-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .case-list {
    max-width: 720px;
    margin: 0 auto;
  }
  .founder-panel {
    padding: 40px 32px;
  }
  .founder-photo {
    width: min(520px, 100%);
    min-height: 500px;
    justify-self: center;
  }
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .location-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intro-split .about-media { min-height: 420px; justify-self: center; width: min(560px, 100%); }
  .inner-hero {
    min-height: 330px;
    padding: 58px 20px 48px;
    background-size: 190px auto;
  }
  .inner-hero h1 {
    font-size: clamp(2.15rem, 6.8vw, 3.25rem);
  }
  .contact-split .appointment-card {
    padding: 36px 30px 28px 96px;
  }
  .contact-split .appointment-card .form-watermark {
    left: 18px;
    font-size: clamp(4.6rem, 13vw, 6.8rem);
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 340px;
  }
  .mv-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 981px) and (max-height: 720px) {
  .about-hero {
    padding: 18px 0 0;
  }

  .about-hero-breadcrumb {
    margin-bottom: 8px;
    padding: 7px 14px;
  }

  .about-hero-copy .eyebrow {
    margin-bottom: 9px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.1rem, 3.3vw, 3.25rem);
  }

  .about-hero-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .about-hero-actions {
    margin-top: 16px;
  }

  .about-hero-actions .btn {
    min-height: 38px;
    padding: 0 16px;
    font-size: 13px;
  }

  .about-hero-visual {
    min-height: clamp(330px, 58svh, 420px);
  }

  .hero-orbit {
    bottom: 32px;
    width: clamp(300px, 34vw, 380px);
    height: clamp(300px, 34vw, 380px);
  }

  .about-hero-doctor {
    width: clamp(220px, 22vw, 270px);
  }

  .about-hero-bottles {
    bottom: 14px;
    width: clamp(118px, 12vw, 150px);
  }

  .hero-card-locations {
    bottom: 42px;
  }
}

@media (max-width: 620px) {
  .value-grid,
  .services-grid,
  .process-grid,
  .contact-info-grid { grid-template-columns: 1fr; }
  .about-hero {
    padding: 30px 0 0;
  }
  .services-hero {
    padding: 30px 0 0;
  }
  .contact-hero {
    padding: 30px 0 0;
  }
  .contact-hero-copy h1 {
    font-size: clamp(2.08rem, 9.6vw, 3rem);
    line-height: 1.03;
  }
  .contact-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.58;
  }
  .contact-hero-actions {
    display: grid;
  }
  .contact-hero-actions .btn {
    width: 100%;
  }
  .contact-hero-panel {
    min-height: 405px;
  }
  .contact-hero-panel > img {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 320px;
    border-radius: 28px;
  }
  .contact-hero-panel::before {
    inset: 28px 18px 52px;
  }
  .contact-hero-card {
    left: 10px;
    bottom: 28px;
    width: min(255px, 76%);
    padding: 14px 16px;
    border-radius: 18px;
  }
  .contact-hero-badge {
    right: 10px;
    bottom: 26px;
    width: 96px;
    min-height: 96px;
    padding: 12px;
  }
  .contact-hero-badge strong {
    font-size: 1.7rem;
  }
  .contact-hero-badge span {
    font-size: 9px;
  }
  .contact-quick {
    padding-top: 44px;
  }
  .contact-method {
    min-height: 0;
    padding: 24px 20px;
  }
  .contact-locations.section-soft,
  .contact-faq.section-soft {
    width: min(100% - 22px, 520px);
    padding: 30px 16px;
    border-radius: 26px;
  }
  .clinic-location-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
    border-radius: 24px;
  }
  .clinic-map,
  .clinic-map iframe {
    min-height: 250px;
  }
  .clinic-location-copy .btn {
    width: 100%;
  }
  .contact-visit-card,
  .contact-form-card {
    padding: 26px 18px;
    border-radius: 24px;
  }
  .branch-timings-grid {
    grid-template-columns: 1fr;
  }
  .contact-visit-card h2,
  .contact-form-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .visit-list article {
    padding: 16px;
  }
  .contact-form-card input,
  .contact-form-card select,
  .contact-form-card textarea {
    min-height: 52px;
    border-radius: 14px;
  }
  .contact-form-card .btn {
    width: 100%;
  }
  .services-hero::after {
    width: 150px;
    height: 150px;
    right: -48px;
    bottom: -24px;
  }
  .services-hero-copy h1 {
    font-size: clamp(2.08rem, 9.6vw, 3rem);
    line-height: 1.03;
  }
  .services-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.58;
  }
  .services-hero-actions {
    display: grid;
  }
  .services-hero-actions .btn {
    width: 100%;
  }
  .services-hero-visual {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .services-hero-clinic,
  .services-orbit,
  .service-float-two {
    display: none !important;
  }
  .services-hero-main {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none !important;
    width: 100%;
    max-width: 320px;
    height: clamp(200px, 48vw, 240px);
    object-fit: contain;
    border-radius: 24px;
    background: rgba(255, 248, 232, 0.88);
    padding: 16px;
    border: 1px solid rgba(234, 90, 5, 0.16);
    box-shadow: 0 12px 30px rgba(55, 32, 14, 0.12);
  }
  .service-float-card {
    width: min(180px, 54%);
    padding: 10px 12px;
    border-radius: 14px;
  }
  .service-float-one {
    left: -4px;
    top: auto;
    bottom: -10px;
  }
  .service-overview-copy h2,
  .service-why-copy h2,
  .service-consult-card h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }
  .service-overview-copy p:not(.eyebrow),
  .service-why-copy p,
  .service-consult-card p {
    font-size: 14px;
    line-height: 1.58;
  }
  .service-overview-points,
  .department-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }
  .service-overview-points article,
  .service-why-list article {
    min-height: 72px;
    align-items: flex-start;
    padding: 16px;
    font-size: 13.5px;
  }
  .service-departments.section-soft,
  .service-why.section-soft {
    width: min(100% - 22px, 520px);
    padding: 30px 16px;
    border-radius: 26px;
  }
  .department-card,
  .department-feature,
  .focus-card,
  .focus-card.large {
    grid-column: auto;
    min-height: 0;
  }
  .department-card {
    padding: 24px 20px;
  }
  .focus-card.large img {
    height: 210px;
  }
  .focus-card.large div,
  .focus-card {
    padding: 24px 20px;
  }
  .service-consult-card {
    min-height: 0;
    padding: 30px 18px 0;
    border-radius: 26px;
  }
  .service-phone {
    font-size: 1rem;
    line-height: 1.35;
  }
  .service-consult-actions {
    display: grid;
  }
  .service-consult-actions .btn {
    width: 100%;
  }
  .service-note {
    align-items: flex-start;
    padding: 16px;
  }
  .service-modal {
    padding: 14px;
  }
  .service-modal-panel {
    max-height: calc(100svh - 28px);
    padding: 28px 18px 22px;
    border-radius: 22px;
  }
  .service-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }
  .service-modal-panel h2 {
    margin-right: 44px;
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }
  .service-modal-panel > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.56;
  }
  .service-modal-content {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 20px 0 24px;
  }
  .service-modal-list {
    gap: 8px;
    max-height: 210px;
    padding-right: 4px;
  }
  .service-modal-list button {
    min-height: 32px;
    padding: 9px 11px;
    font-size: 12px;
  }
  .service-modal-detail {
    min-height: 0;
    max-height: 320px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 18px;
  }
  .service-modal-detail p {
    font-size: 14px;
    line-height: 1.6;
  }
  .about-hero::after {
    width: 150px;
    height: 150px;
    right: -48px;
    bottom: -24px;
  }
  .about-hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.03;
  }
  .about-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.58;
  }
  .about-hero-actions {
    display: grid;
  }
  .about-hero-actions .btn {
    width: 100%;
  }
  .about-hero-visual {
    display: none !important;
  }
  .hero-card-locations {
    right: 0;
    bottom: 58px;
    grid-template-columns: 32px 1fr;
  }
  .hero-card-locations i {
    width: 32px;
    height: 32px;
  }
  .about-story-copy h2,
  .about-philosophy h2,
  .founder-copy h2,
  .commitment-copy h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.78rem) !important;
    line-height: 1.25 !important;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    word-break: break-word;
  }
  .about-story-copy p:not(.eyebrow),
  .about-philosophy .section-heading p,
  .founder-copy p,
  .commitment-copy p {
    font-size: 14px !important;
    line-height: 1.58 !important;
    text-align: left !important;
    text-justify: none !important;
    word-spacing: normal !important;
  }
  .about-actions,
  .commitment-actions {
    display: grid;
  }
  .about-actions .btn,
  .commitment-actions .btn {
    width: 100%;
    min-height: 42px;
    white-space: normal;
    line-height: 1.2;
  }
  .about-story-media {
    min-height: 430px;
  }
  .story-main {
    top: 0;
    width: 100%;
    height: 330px;
    border-radius: 28px;
  }
  .story-float {
    left: 14px;
    bottom: 18px;
    width: 48%;
    height: 170px;
    padding: 12px;
    border-width: 4px;
    border-radius: 22px;
  }
  .story-badge {
    right: 14px;
    bottom: 24px;
    width: 104px;
    min-height: 104px;
    padding: 12px;
  }
  .story-badge strong {
    font-size: 1.7rem;
  }
  .story-badge span {
    font-size: 9px;
  }
  .story-highlights {
    grid-template-columns: 1fr;
  }
  .story-highlights article {
    min-height: 0;
  }
  .about-belief.section-soft,
  .about-why.section-soft {
    width: min(100% - 22px, 520px);
    padding: 30px 16px;
    border-radius: 26px;
  }
  .belief-card {
    min-height: 0;
    padding: 30px 22px;
    border-radius: 24px;
  }
  .belief-card h2 {
    font-size: clamp(1.48rem, 6vw, 1.92rem);
  }
  .belief-points,
  .why-grid,
  .location-stack {
    grid-template-columns: 1fr;
  }
  .belief-points article,
  .why-card,
  .location-card {
    min-height: 0;
  }
  .case-list article {
    min-height: 72px;
    align-items: flex-start;
    padding: 16px;
    font-size: 13.5px;
  }
  .case-list i {
    width: 38px;
    height: 38px;
  }
  .founder-panel {
    padding: 30px 18px;
    border-radius: 28px;
  }
  .founder-photo {
    min-height: 380px;
  }
  .founder-photo img {
    width: min(260px, 78%);
  }
  .founder-rating {
    width: min(240px, 82%);
    padding: 14px 16px;
  }
  .commitment-copy {
    padding: 10px 0;
  }
  .inner-hero {
    min-height: auto;
    max-height: 85vh;
    padding: 36px 16px 30px;
    background-position: right -90px bottom -70px;
    background-size: 180px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    box-sizing: border-box;
  }
  .inner-hero-content {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }
  .inner-hero h1 {
    font-size: clamp(1.4rem, 5.8vw, 1.95rem) !important;
    line-height: 1.2 !important;
    margin: 6px auto 8px auto !important;
    text-align: center !important;
    max-width: 95%;
  }
  .inner-hero p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    margin: 4px auto 10px auto !important;
    max-width: 92vw;
  }
  .inner-hero-stats {
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
  }
  .inner-hero-stats span {
    min-height: 32px;
    padding: 0 12px;
    font-size: 11.5px;
  }
  .breadcrumb {
    font-size: 11.5px;
    padding: 6px 14px;
    margin-top: 6px;
    justify-content: center;
  }
  .intro-split .about-media {
    position: relative;
    width: 100%;
    max-width: 380px;
    min-height: auto;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .intro-split .about-img.secondary {
    display: none !important;
  }
  .intro-split .about-img.primary {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 100%;
    max-width: 350px;
    height: clamp(210px, 50vw, 260px);
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(55, 32, 14, 0.12);
  }
  .mv-grid,
  .value-grid,
  .process-grid,
  .info-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .mv-card,
  .value-card,
  .process-card,
  .info-card {
    min-height: 0 !important;
    padding: 22px 18px !important;
    border-radius: 20px !important;
    text-align: left !important;
  }
  .value-card {
    text-align: center !important;
  }
  .contact-split .appointment-card {
    padding: 24px 16px;
    border-radius: 22px;
  }
  .contact-split .appointment-card .form-watermark {
    display: none;
  }
  .contact-split .appointment-card h2 {
    font-size: clamp(1.35rem, 5.4vw, 1.78rem) !important;
    line-height: 1.25 !important;
  }
  .map-wrap,
  .map-wrap iframe {
    min-height: 300px;
  }
  .hours-row {
    display: grid;
    gap: 3px;
  }
  .service-cta-strip { flex-direction: column; align-items: flex-start; text-align: left; }
  .service-cta-strip .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
