:root {
  --ink: #2c120b;
  --muted: #6f605a;
  --cream: #fcf9f5;
  --warm: #f2ece5;
  --white: #fffdfa;
  --line: #d2c5ba;
  --accent: #af4723;
  --accent-dark: #8f3519;
  --shadow: 0 22px 54px rgba(45, 18, 10, .12);
  --nav-h: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--nav-h);
  background: #2a0d06;
  color: #fff8f1;
  box-shadow: 0 8px 26px rgba(30, 9, 4, .16);
}

.nav-inner {
  width: min(1640px, calc(100% - 180px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  min-width: 220px;
  color: #fff;
}

.brand-mark {
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-sub {
  display: block;
  margin-bottom: 1px;
  font-size: 12px;
  line-height: 1.18;
  font-weight: 700;
  opacity: .95;
}

.brand-logo {
  width: 190px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

.site-header .brand-logo,
.site-footer .brand-logo {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 70px);
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 26px 0;
  opacity: .9;
  transition: opacity .22s ease, transform .22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: #d78766;
  transform: translateX(-50%);
  transition: width .22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 26px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 38px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(175, 71, 35, .18);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(175, 71, 35, .26);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - var(--nav-h)));
  overflow: hidden;
  background: var(--warm);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: var(--hero-position, center);
  transform: scale(1.02);
  transition: transform 6s ease;
}

.home-hero .hero-bg {
  transition: opacity .65s ease, transform 6s ease;
}

.home-hero.is-changing .hero-bg {
  opacity: .2;
}

.hero:hover .hero-bg {
  transform: scale(1.055);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 237, .76), rgba(247, 243, 237, .2) 52%, rgba(247, 243, 237, 0));
  pointer-events: none;
}

.home-hero::after {
  background: linear-gradient(90deg, rgba(252, 249, 245, .16), rgba(252, 249, 245, .03) 58%, rgba(252, 249, 245, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1640px, calc(100% - 120px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 0 96px;
}

.home-hero {
  min-height: min(810px, calc(100vh - var(--nav-h)));
  --hero-position: center right;
}

.home-hero .hero-content {
  justify-content: flex-start;
  padding-top: clamp(190px, 28vh, 300px);
}

.home-hero h1 {
  max-width: 640px;
  font-size: clamp(38px, 3.2vw, 62px);
  line-height: 1.34;
}

.home-hero p {
  max-width: 610px;
  font-size: clamp(14px, 1vw, 17px);
}

.page-hero {
  min-height: min(690px, calc(100vh - var(--nav-h)));
  background: #f5f1ec;
}

.page-hero .hero-bg {
  transform: scale(1);
}

.page-hero:hover .hero-bg {
  transform: scale(1.018);
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(247, 243, 237, .72), rgba(247, 243, 237, .26) 39%, rgba(247, 243, 237, 0) 68%);
}

.page-hero .hero-content {
  width: min(1640px, calc(100% - 150px));
  justify-content: flex-start;
  padding-top: clamp(125px, 14vh, 176px);
  padding-bottom: 70px;
}

.page-hero h1 {
  max-width: 520px;
  margin-bottom: 22px;
  font-size: clamp(36px, 3.1vw, 58px);
  line-height: 1.22;
}

.page-hero p {
  max-width: 470px;
  margin-bottom: 0;
  color: #3d2921;
  font-size: clamp(15px, 1.08vw, 19px);
  line-height: 2;
  font-weight: 600;
}

.page-hero--stores {
  --hero-position: center right 18%;
}

.page-hero--doctors {
  --hero-position: center right 12%;
}

.page-hero--membership {
  --hero-position: center right 18%;
}

.page-hero--service {
  --hero-position: center right 14%;
}

.page-hero--contact {
  --hero-position: center right 12%;
}

.page-hero--service,
.page-hero--contact {
  min-height: min(650px, calc(100vh - var(--nav-h)));
}

.hero-kicker {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.hero h1 {
  max-width: 640px;
  margin: 0 0 28px;
  font-size: clamp(34px, 4.2vw, 70px);
  line-height: 1.26;
  font-weight: 850;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 0 0 42px;
  color: #4e3c35;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 500;
}

.hero-controls {
  position: absolute;
  left: max(60px, calc((100% - 1640px) / 2));
  bottom: 66px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-dot {
  width: 52px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(45, 18, 10, .35);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--ink);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  color: rgba(45, 18, 10, .52);
  background: transparent;
  font-size: 54px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-arrow.prev {
  left: 38px;
}

.hero-arrow.next {
  right: 38px;
}

.main {
  background: var(--cream);
}

.section {
  width: min(1340px, calc(100% - 220px));
  margin: 0 auto;
  padding: clamp(80px, 9vw, 150px) 0;
}

.section.narrow {
  width: min(1120px, calc(100% - 220px));
}

.section-title {
  margin: 0 0 34px;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0;
}

.section-copy {
  max-width: 780px;
  margin: 0;
  color: #4b3a33;
  font-weight: 500;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 520px) minmax(0, 1fr);
}

.split.reverse .copy {
  order: 2;
}

.about-intro {
  min-height: calc(100vh - var(--nav-h));
  padding-top: clamp(76px, 9vh, 120px);
  padding-bottom: clamp(64px, 8vh, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(72px, 11vw, 170px);
}

.about-intro .section-title {
  margin-bottom: clamp(56px, 7vw, 96px);
  font-size: clamp(34px, 3.1vw, 52px);
}

.about-intro .section-copy {
  max-width: 720px;
  font-size: 15px;
  line-height: 2.1;
}

.about-intro-media {
  align-self: start;
  margin-top: 22px;
}

.about-intro-media img {
  aspect-ratio: 1 / 1.18;
}

.mission-explainer {
  min-height: min(720px, 70vh);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mission-explainer .copy {
  width: min(760px, 62%);
}

.mission-explainer .section-title {
  margin-bottom: 54px;
}

.consult-qr {
  margin-top: 34px;
}

.consult-qr img {
  width: 154px;
  height: 154px;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.media-frame {
  overflow: hidden;
  background: #eee7df;
}

.media-frame img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  transition: transform .65s ease;
}

.media-frame:hover img {
  transform: scale(1.045);
}

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

.feature {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: center;
}

.showcase-img {
  overflow: hidden;
  background: #eee;
}

.showcase-img img {
  width: 100%;
  height: clamp(320px, 36vw, 560px);
  object-fit: cover;
  transition: transform .55s ease;
}

.showcase-img:hover img {
  transform: scale(1.04);
}

.timeline {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
  position: relative;
}

.timeline-viewport {
  min-width: 0;
  overflow: hidden;
}

.timeline-slide {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  animation: slideSoft .55s ease both;
}

.timeline-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #ece6df;
}

.timeline-copy {
  min-width: 0;
}

.timeline-items p {
  margin: 0 0 14px;
  color: #4d3b34;
}

.timeline-dots {
  position: absolute;
  left: 50%;
  bottom: -34px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.timeline-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
}

.timeline-dots button.active {
  background: var(--accent);
  transform: scale(1.3);
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 36px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.timeline-year {
  font-size: 32px;
  font-weight: 700;
}

.timeline-item p {
  margin: 0 0 8px;
  color: #4d3b34;
}

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

.partner-grid img,
.partner-fallback {
  width: 100%;
  aspect-ratio: 2.3 / 1;
  padding: 18px;
  object-fit: contain;
  background: #fff;
  border: 1px solid #eee6df;
}

.accordion {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-head {
  width: 100%;
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.accordion-head span:last-child {
  font-size: 30px;
  font-weight: 300;
}

.accordion-panel {
  display: none;
  padding: 0 0 70px;
}

.accordion-item.open .accordion-panel {
  display: block;
  animation: slideSoft .58s ease both;
}

.accordion-item.open .accordion-head span:last-child {
  transform: rotate(180deg);
}

.store-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.store-list {
  display: grid;
  gap: 16px;
}

.store-list button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.store-list button.active {
  color: var(--accent);
}

.store-card {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, .9fr);
  gap: 36px;
  align-items: center;
}

.store-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.pin {
  color: var(--accent);
  font-weight: 850;
}

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

.person-card {
  display: block;
  transition: transform .22s ease;
}

.person-card:hover {
  transform: translateY(-6px);
}

.person-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f2f2f2;
}

.person-card h3 {
  margin: 20px 0 2px;
  font-size: 21px;
  line-height: 1.25;
}

.person-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.arrow-link {
  margin-top: 14px;
  font-size: 28px;
  line-height: 1;
}

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

.gift-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 52px;
}

.gift {
  text-align: center;
}

.gift-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  font-size: 24px;
}

.level-stage {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 24px;
  margin-top: 54px;
}

.level-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 34px;
  align-items: end;
  min-width: 0;
  overflow: hidden;
}

.level-card {
  grid-column: var(--level-slot, auto);
  text-align: center;
  opacity: .62;
  transform: scale(.9);
  transition: opacity .25s ease, transform .25s ease;
}

.level-card.is-hidden {
  display: none;
}

.level-card.active {
  opacity: 1;
  transform: scale(1.08);
}

.level-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(54, 24, 12, .15));
}

.level-card h3 {
  margin: 18px 0 4px;
  font-size: 18px;
}

.level-card:not(.active) .level-growth,
.level-card:not(.active) .level-condition {
  display: none;
}

.level-growth,
.level-condition {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.round-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

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

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.step-num {
  color: var(--accent);
  font-weight: 800;
}

.step h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.4;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.guarantee {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 26px;
}

.guarantee h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.guarantee p {
  margin: 0;
  color: var(--muted);
}

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 70px;
  align-items: center;
}

.qr {
  width: 156px;
  height: 156px;
  background:
    linear-gradient(90deg, #2c120b 10px, transparent 10px) 0 0 / 26px 26px,
    linear-gradient(#2c120b 10px, transparent 10px) 0 0 / 26px 26px,
    #fffdfa;
  border: 14px solid #fffdfa;
  box-shadow: inset 0 0 0 1px #2c120b, 0 18px 34px rgba(45, 18, 10, .1);
}

.values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-weight: 700;
}

.contact-lead {
  margin-top: 18px;
}

.contact-panel-copy {
  max-width: 820px;
  margin-left: min(220px, 20vw);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
  margin-top: 56px;
  margin-left: min(220px, 20vw);
}

.contact-detail-grid article span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.contact-detail-grid h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.4;
}

.contact-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.contact-reach {
  grid-template-columns: minmax(160px, .8fr) 54px minmax(240px, 1fr) 170px;
  gap: 28px 42px;
  margin-top: 88px;
  align-items: start;
}

.contact-reach p {
  margin: 0;
  color: #4b3a33;
  font-weight: 700;
  line-height: 1.8;
}

.contact-reach strong {
  display: block;
  margin-top: 4px;
  font-size: 15px;
}

.contact-or {
  justify-self: center;
  padding-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-reach .qr {
  justify-self: end;
}

.contact-qr-image {
  object-fit: cover;
}

.contact-reach-note {
  grid-column: 1 / 4;
  max-width: 760px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.contact-join {
  padding-top: clamp(92px, 10vw, 170px);
}

.contact-subtitle {
  margin: 86px 0 0;
  font-size: 24px;
  line-height: 1.3;
}

.contact-join .values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 82px;
  margin-top: 34px;
  padding-top: 54px;
}

.contact-career {
  margin-top: 94px;
  max-width: 780px;
}

.doctor-detail {
  padding-top: 110px;
}

.doctor-detail-first {
  min-height: calc(100vh - var(--nav-h));
  padding-top: clamp(86px, 10vh, 132px);
  padding-bottom: clamp(80px, 9vh, 140px);
}

.doctor-hero {
  display: grid;
  grid-template-columns: minmax(360px, 580px) minmax(0, 1fr);
  gap: clamp(72px, 10vw, 190px);
  align-items: start;
}

.doctor-hero img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  background: #f4f4f4;
}

.doctor-name {
  margin: 0 0 24px;
  padding-top: clamp(34px, 5vh, 72px);
  font-size: clamp(38px, 3.6vw, 62px);
  line-height: 1.18;
}

.doctor-title {
  margin: 0 0 44px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(19px, 1.4vw, 25px);
  font-weight: 800;
  line-height: 1.8;
}

.doctor-meta {
  margin-top: 92px;
  font-size: 18px;
  font-weight: 800;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 110px 150px;
  margin-top: 130px;
}

.detail-grid h2 {
  margin: 0 0 28px;
  font-size: 34px;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  background: #2a0d06;
  color: #fff8f1;
}

.footer-inner {
  width: min(1640px, calc(100% - 120px));
  margin: 0 auto;
  padding: 90px 0 62px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 56px;
  align-items: start;
}

.footer-brand .brand {
  min-width: 0;
}

.footer-group h3 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
}

.footer-group a,
.footer-group span {
  display: block;
  margin: 10px 0;
  color: rgba(255, 248, 241, .72);
  font-size: 14px;
}

.footer-qrs {
  display: grid;
  grid-template-columns: repeat(2, 96px);
  gap: 20px;
}

.footer-qrs .qr {
  width: 96px;
  height: 96px;
  border: 0;
  box-shadow: none;
  background: #2a0d06;
  object-fit: cover;
}

.footer-line {
  margin-top: 72px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 248, 241, .55);
  color: rgba(255, 248, 241, .78);
  font-size: 14px;
  line-height: 1.6;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.in {
  animation: fadeUp .58s ease both;
}

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

@keyframes slideSoft {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 1020px) {
  :root {
    --nav-h: 66px;
  }

  .nav-inner,
  .hero-content,
  .section,
  .section.narrow,
  .footer-inner {
    width: min(100% - 42px, 760px);
  }

  .mobile-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-h);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px 0;
    background: #2a0d06;
    box-shadow: 0 18px 28px rgba(30, 9, 4, .18);
  }

  .site-header.open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: min(100% - 42px, 760px);
    padding: 12px 0;
  }

  .nav-inner > .cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    font-size: 30px;
  }

  .hero {
    min-height: 640px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(247, 243, 237, .88), rgba(247, 243, 237, .56) 56%, rgba(247, 243, 237, .12));
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 118px;
  }

  .hero-controls {
    left: 21px;
    bottom: 54px;
  }

  .hero-arrow {
    display: none;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero .hero-content {
    padding-top: 160px;
  }

  .page-hero {
    min-height: 620px;
  }

  .page-hero .hero-content {
    width: min(100% - 42px, 760px);
    padding-top: 100px;
  }

  .about-intro,
  .doctor-detail-first {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 48px;
    gap: 42px;
  }

  .mission-explainer {
    min-height: auto;
    justify-content: flex-start;
  }

  .mission-explainer .copy {
    width: 100%;
  }

  .about-intro .section-title {
    margin-bottom: 24px;
    font-size: 32px;
  }

  .doctor-name {
    padding-top: 0;
    font-size: 34px;
  }

  .doctor-title {
    font-size: 18px;
  }

  .split,
  .split.reverse,
  .showcase,
  .store-layout,
  .store-card,
  .doctor-hero,
  .contact-block,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-panel-copy,
  .contact-detail-grid {
    margin-left: 0;
  }

  .contact-detail-grid,
  .contact-reach {
    grid-template-columns: 1fr;
  }

  .contact-reach {
    gap: 22px;
  }

  .contact-or {
    justify-self: start;
    padding-top: 0;
  }

  .contact-reach .qr {
    justify-self: start;
  }

  .contact-reach-note {
    grid-column: auto;
  }

  .split.reverse .copy {
    order: 0;
  }

  .quiet-grid,
  .card-grid,
  .benefit-strip,
  .process-grid,
  .guarantees,
  .partner-grid,
  .values {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .quiet-grid,
  .card-grid,
  .benefit-strip,
  .process-grid,
  .guarantees,
  .partner-grid,
  .values,
  .gift-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .timeline-slide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .timeline-dots {
    bottom: -26px;
  }

  .level-stage {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .level-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .level-card {
    transform: scale(.94);
  }

  .level-card.active {
    transform: scale(1.03);
  }

  .accordion-head {
    min-height: 84px;
  }
}
