:root {
  --orange: #ff4a16;
  --orange-deep: #e9390b;
  --green: #06a72d;
  --navy: #05245a;
  --navy-deep: #021846;
  --ink: #111827;
  --muted: #667085;
  --line: #f0d8ca;
  --soft: #fff7f1;
  --soft-2: #fffaf6;
  --paper: #ffffff;
  --shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.topbar {
  background: var(--navy-deep);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.demo-banner {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  background: #2f2a26;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__hours {
  white-space: nowrap;
}

.topbar__info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__info-item + .topbar__info-item {
  margin-left: 14px;
}

.topbar__info-label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #efe2da;
  box-shadow: 0 2px 12px rgba(5, 36, 90, 0.05);
}

.header-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 290px;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: auto;
  max-width: 232px;
  max-height: 64px;
  height: auto;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.global-nav a {
  position: relative;
  padding-block: 8px;
}

.global-nav a::after {
  position: absolute;
  content: "";
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  left: 0;
  right: 0;
}

.global-nav a.is-active {
  color: var(--orange);
}

.header-contact {
  display: grid;
  gap: 8px;
  justify-items: stretch;
}

.header-phone {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.header-phone img {
  width: 21px;
}

.header-phone small {
  display: block;
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.header-actions,
.cta-actions,
.footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  color: #fff;
  background: var(--orange);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn--green {
  background: var(--green);
}

.btn--outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--navy);
  box-shadow: none;
}

.btn--outline img {
  filter: none;
}

.btn--wide {
  width: 100%;
}

.btn small {
  display: block;
  flex-basis: 100%;
  white-space: normal;
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle__bars {
  display: grid;
  gap: 5px;
  justify-items: center;
  width: 28px;
  margin: 0 auto;
}

.menu-toggle__bars span {
  width: 28px;
  height: 3px;
  display: block;
  background: var(--navy);
  border-radius: 999px;
}

.menu-toggle small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  word-break: keep-all;
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fffaf6 55%, #fff0e4 100%);
  border-bottom: 1px solid #f0e0d6;
}

.hero__media {
  position: absolute;
  inset: 0 0 0 44%;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 400px;
  display: grid;
  align-content: center;
  padding-block: 54px;
}

.hero__copy {
  width: min(620px, 58%);
}

.hero__eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
}

.hero__eyebrow img,
.section-eyebrow img {
  width: 34px;
}

.hero h1,
.page-title {
  margin: 8px 0 12px;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero h1 strong,
.page-title strong {
  color: var(--orange);
}

.hero-title__small,
.hero-title__accent {
  display: block;
}

.hero-title__small {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.12;
}

.hero-title__accent {
  color: var(--orange);
  font-size: clamp(52px, 5.3vw, 76px);
  line-height: 1.03;
}

.hero__lead {
  margin: 0 0 22px;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.6;
}

.hero__checks,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 800;
}

.hero__checks li,
.check-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mini-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.section {
  padding: 48px 0;
}

.section--soft {
  background: var(--soft-2);
}

.section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  letter-spacing: 0;
}

.section-title strong {
  color: var(--orange);
  font-size: 1.18em;
}

.section-lead {
  max-width: 760px;
  margin: -8px auto 28px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.stats {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(111, 63, 35, 0.08);
  overflow: hidden;
}

.stats-note {
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  color: #6f7b8d;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
}

.stat {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px;
  border-right: 1px solid #eadfd8;
}

.stat:last-child {
  border-right: 0;
}

.stat__symbol {
  color: var(--orange);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.stat__icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 68px;
}

.stat__label {
  font-size: 13px;
  font-weight: 900;
}

.stat__value {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
}

.stat__value small {
  font-size: 16px;
}

.stars {
  color: var(--orange);
  letter-spacing: 1px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);
}

.card--padded {
  padding: 24px;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.35;
}

.card-title img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reason-card {
  min-height: 192px;
  padding: 25px 22px;
  text-align: center;
}

.reason-card img {
  width: 66px;
  margin: 0 auto 12px;
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.35;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.payment-methods {
  display: grid;
  align-content: start;
  min-width: 0;
}

.payment-methods__title {
  margin-bottom: 18px;
}

.payment-methods__title img {
  width: 31px;
  height: 31px;
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.payment-option {
  display: grid;
  min-width: 0;
  min-height: 132px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.payment-option img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.payment-option h3 {
  max-width: 100%;
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

.trouble-box {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 16px;
  align-items: end;
  padding: 24px 26px;
}

.trouble-box h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.trouble-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 800;
}

.trouble-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  min-width: 0;
}

.trouble-list img {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 5px;
}

.home-problem-row {
  display: grid;
  grid-template-columns: 0.9fr 1.45fr;
  gap: 18px;
}

.problem-panel,
.reason-panel {
  min-width: 0;
  border: 1px solid #f1d7c7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(110, 68, 40, 0.04);
}

.problem-panel {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 16px;
  align-items: end;
  padding: 22px 24px 18px;
}

.problem-panel > div {
  min-width: 0;
}

.problem-panel h2,
.reason-panel h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.45;
}

.problem-panel h2 {
  text-align: left;
}

.problem-panel > img {
  width: 150px;
  align-self: end;
}

.reason-panel {
  padding: 22px 24px 20px;
}

.reason-panel h2 {
  text-align: center;
}

.reason-title-break {
  display: inline-block;
  white-space: nowrap;
}

.reason-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #f2d8c9;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.reason-strip__item {
  min-height: 174px;
  display: grid;
  grid-template-rows: 58px 58px 28px;
  align-content: center;
  justify-items: center;
  row-gap: 9px;
  padding: 20px 14px 18px;
  text-align: center;
  border-right: 1px solid #f2d8c9;
}

.reason-strip__item:last-child {
  border-right: 0;
}

.reason-strip__item img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  align-self: center;
}

.reason-strip__item h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  align-self: center;
}

.reason-strip__item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
  align-self: start;
  text-wrap: balance;
}

.campaign {
  display: grid;
  grid-template-columns: 130px 245px minmax(140px, 1fr) 220px 64px 170px;
  gap: 16px;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  background: linear-gradient(90deg, #fff 0%, #fffaf6 70%, #fff2e6 100%);
  box-shadow: 0 10px 22px rgba(232, 83, 24, 0.08);
}

.campaign__ribbon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  color: #fff;
  background: var(--orange);
  border-radius: 7px 0 0 7px;
  clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  transform: none;
}

.campaign__ribbon span {
  transform: rotate(-2deg);
}

.campaign__title {
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.campaign__price {
  color: var(--orange);
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.campaign__price small {
  font-size: 15px;
}

.badge-off {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-deep);
  background: #ffe1a8;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.campaign .btn {
  width: 100%;
  padding-inline: 12px;
}

.campaign--price {
  grid-template-columns: 150px minmax(0, 1fr) 230px 68px;
}

.campaign--price .campaign__ribbon {
  padding-right: 18px;
  font-size: 16px;
}

.campaign__offer {
  min-width: 0;
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.campaign--price .campaign__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: var(--ink);
  font-size: 25px;
  white-space: normal;
}

.campaign--price .campaign__title span:not(.tag) {
  min-width: 0;
  overflow-wrap: normal;
  word-break: keep-all;
}

.campaign__regular {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  color: var(--navy);
  line-height: 1.25;
}

.campaign__regular strong {
  font-size: 23px;
}

.campaign__regular small,
.campaign__note {
  font-size: 13px;
}

.campaign__note {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.menu-preview,
.menu-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

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

.menu-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.menu-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-card__body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 14px 16px 16px;
}

.menu-card__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.number {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 17px;
  font-weight: 900;
}

.menu-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
}

.menu-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price-row {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px solid #f1ded3;
  font-weight: 900;
}

.price-row span {
  flex: 0 0 auto;
  line-height: 1.35;
}

.price-row strong {
  min-width: 0;
  font-size: 22px;
  line-height: 1.15;
  text-align: right;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tab-button {
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 20px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.tab-button img {
  width: 24px;
}

.tab-button.is-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.tab-button.is-active img {
  filter: brightness(0) invert(1);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 38px;
}

.flow-card {
  position: relative;
  min-height: 210px;
  padding: 22px 18px;
  text-align: center;
}

.flow-card:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -27px;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 16px solid var(--orange);
  transform: translateY(-50%);
}

.flow-card img {
  width: 60px;
  margin: 8px auto 10px;
}

.flow-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.flow-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

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

.info-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid #eee0d7;
  font-weight: 700;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.info-label img {
  width: 22px;
}

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

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.photo-card figcaption {
  margin-top: 8px;
  text-align: center;
  font-weight: 900;
}

.clinic-overview {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid #f0d5c5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(110, 68, 40, 0.04);
}

.clinic-overview__info {
  padding-right: 22px;
  border-right: 1px solid #f0d5c5;
}

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

.clinic-gallery figure {
  margin: 0;
}

.clinic-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
  border-radius: 7px;
}

.clinic-gallery figcaption {
  margin-top: 10px;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
}

.access-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.director-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: start;
}

.director-card__photo {
  width: 150px;
  aspect-ratio: 1 / 1.18;
  object-fit: cover;
  border-radius: 8px;
  background: #fff8f2;
}

.director-card h3 {
  display: flex;
  gap: 16px;
  align-items: baseline;
  margin: 4px 0 10px;
  font-size: 16px;
}

.director-card h3 strong {
  font-size: 22px;
}

.director-card p {
  margin: 0 0 12px;
  color: #374151;
  font-weight: 700;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.92);
}

.access-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
}

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

.form-demo-note {
  margin: 0 0 2px;
  padding: 9px 12px;
  border-radius: 12px;
  background: #fff7ef;
  color: #75553e;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #e5d7cf;
  border-radius: 7px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 74, 22, 0.12);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #ead8cd;
  border-radius: 8px;
  background: #fff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 16px 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
  font-weight: 700;
}

.faq-item.is-open .faq-answer {
  display: block;
}

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

.voice-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 14px;
}

.voice-card img {
  width: 150px;
  height: 150px;
  border-radius: 7px;
  object-fit: cover;
}

.voice-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 3px 10px;
  color: var(--orange);
  background: #fff0e8;
  font-weight: 900;
}

.voice-card h3 {
  margin: 0 0 7px;
  font-size: 19px;
  line-height: 1.4;
}

.voice-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.small-voices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.small-voice {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #efd2c3;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
}

.price-table th,
.price-table td {
  padding: 12px;
  border-right: 1px solid #efd2c3;
  border-bottom: 1px solid #efd2c3;
  vertical-align: top;
}

.price-table th:last-child,
.price-table td:last-child {
  border-right: 0;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table th {
  color: var(--navy);
  background: #fff4ec;
  font-weight: 900;
}

.price-table strong {
  white-space: nowrap;
}

.price-block {
  padding: 16px;
}

.price-block h3 {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-block h3 img {
  width: 34px;
}

.greeting {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  align-items: center;
}

.greeting img {
  width: 260px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.notice-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: start;
  padding: 24px 24px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.notice-card__image {
  width: 106px;
  justify-self: end;
  align-self: end;
  margin-right: 8px;
  margin-top: -6px;
}

.notice-card__body {
  min-width: 0;
}

.notice-card__label {
  margin: 0 0 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.notice-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.35;
}

.notice-card__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #374151;
  font-weight: 700;
  line-height: 1.65;
  list-style: none;
  overflow-wrap: anywhere;
}

.notice-card__list li {
  position: relative;
  max-width: 100%;
  padding-left: 15px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notice-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.practitioner-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.practitioner-card__photo {
  width: 190px;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 8px;
  background: #fff7f1;
}

.practitioner-card__body {
  min-width: 0;
}

.practitioner-card__label {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.practitioner-card h2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.3;
}

.practitioner-card h2 strong {
  color: var(--ink);
  font-size: 26px;
}

.practitioner-card__badge {
  display: inline-flex;
  margin: 0 0 12px;
  border-radius: 999px;
  padding: 4px 12px;
  color: var(--orange);
  background: #fff0e8;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}

.practitioner-card__message {
  margin: 0;
  color: #374151;
  font-weight: 700;
  line-height: 1.85;
}

.cta-band {
  display: grid;
  grid-template-columns: 170px 1fr 390px;
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
  background: linear-gradient(90deg, var(--orange) 0%, #ff8b21 100%);
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.cta-band img {
  align-self: end;
  width: 156px;
}

.cta-band h2 {
  margin: 0;
  font-size: 25px;
}

.cta-band p {
  margin: 4px 0 0;
  font-weight: 800;
}

.cta-band .btn--outline {
  background: #fff;
}

.grid-2 > .cta-band {
  grid-template-columns: 112px minmax(0, 1fr);
}

.grid-2 > .cta-band .cta-actions {
  grid-column: 1 / -1;
}

.grid-2 > .cta-band img {
  width: 112px;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid #eee0d7;
  background: #fff;
}

.footer-row {
  display: grid;
  grid-template-columns: 260px 1fr 270px 300px;
  gap: 20px;
  align-items: center;
}

.footer-row .logo img {
  width: auto;
  max-width: 230px;
  max-height: 62px;
}

.footer-address,
.footer-hours {
  color: #27364a;
  font-size: 14px;
  font-weight: 800;
}

.footer-phone {
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.demo-site-note {
  margin: 18px 0 0;
  color: #697386;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.mobile-bottom-nav {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2, 24, 70, 0.55);
}

.modal.is-open {
  display: grid;
}

.modal__panel {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: #fff;
  background: var(--navy);
}

.modal__head h2 {
  margin: 0;
  font-size: 22px;
}

.modal__close {
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.modal__body {
  padding: 22px;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: none;
  pointer-events: none;
  max-width: min(420px, calc(100% - 40px));
  padding: 14px 18px;
  color: #fff;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

.toast.is-show {
  display: block;
}

.hide {
  display: none !important;
}

@media (max-width: 1100px) {
  .container {
    width: min(980px, calc(100% - 36px));
  }

  .header-row {
    grid-template-columns: 220px 1fr 284px 44px;
    gap: 12px;
  }

  .logo img,
  .footer-row .logo img {
    width: auto;
    max-width: 205px;
    max-height: 58px;
  }

  .global-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-phone {
    font-size: 19px;
  }

  .campaign {
    grid-template-columns: 145px 1fr 170px 230px 68px;
  }

  .campaign--price {
    grid-template-columns: 140px minmax(0, 1fr) 205px 64px;
    gap: 12px;
  }

  .campaign--price .campaign__ribbon {
    padding-right: 14px;
    font-size: 15px;
  }

  .campaign--price .campaign__title {
    font-size: 22px;
  }

  .campaign__regular strong {
    font-size: 21px;
  }

  .campaign__price {
    font-size: 46px;
  }

  .campaign .btn {
    grid-column: 1 / -1;
  }

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

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

  .flow-card:not(:last-child)::after {
    display: none;
  }

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

  .home-problem-row,
  .clinic-overview,
  .access-bottom {
    grid-template-columns: 1fr;
  }

  .clinic-overview__info {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid #f0d5c5;
  }

  .footer-row {
    grid-template-columns: 220px 1fr 260px;
  }

  .footer-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .header-row {
    min-height: 78px;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 56px;
    min-width: 56px;
    height: 60px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding-top: 5px;
    box-sizing: border-box;
  }

  .global-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 112px;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(5, 36, 90, 0.18);
  }

  body.nav-open .global-nav {
    display: flex;
  }

  .global-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid #f2e6de;
  }

  .global-nav a::after {
    display: none;
  }

  .header-contact {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    display: none;
    padding-bottom: 14px;
  }

  body.nav-open .header-contact {
    display: grid;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 78px;
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding-block: 8px;
    line-height: 1.45;
  }

  .topbar__hours {
    display: grid;
    gap: 5px;
    white-space: normal;
  }

  .topbar__info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
  }

  .topbar__info-item + .topbar__info-item {
    margin-left: 0;
  }

  .site-header {
    top: 0;
  }

  .logo img {
    width: auto;
    max-width: 210px;
    max-height: 58px;
  }

  .hero {
    min-height: auto;
    display: grid;
    background: #fffaf6;
  }

  .hero__media {
    position: relative;
    inset: auto;
    order: -1;
    height: 235px;
    -webkit-mask-image: none;
    mask-image: none;
    background-position: center;
  }

  .hero__inner {
    min-height: auto;
    padding-block: 28px 34px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero h1,
  .page-title {
    font-size: clamp(34px, 9.4vw, 48px);
  }

  .hero-title__small {
    font-size: clamp(30px, 7.8vw, 38px);
    line-height: 1.2;
  }

  .hero-title__accent {
    font-size: clamp(41px, 10.8vw, 52px);
  }

  .hero__lead {
    font-size: 18px;
  }

  .stats {
    margin-top: 0;
    padding-top: 18px;
  }

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

  .stat {
    min-height: 94px;
    padding: 16px 10px;
  }

  .stat:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid #eadfd8;
  }

  .stat__symbol {
    font-size: 34px;
  }

  .stat__value {
    font-size: 26px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .menu-list,
  .photo-grid,
  .clinic-gallery,
  .access-layout,
  .faq-grid,
  .voice-grid,
  .small-voices {
    grid-template-columns: 1fr;
  }

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

  .campaign {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .campaign--price {
    grid-template-columns: 1fr;
  }

  .campaign--price .campaign__offer {
    justify-items: center;
  }

  .campaign--price .campaign__title,
  .campaign__regular {
    justify-content: center;
  }

  .campaign__ribbon {
    min-height: 48px;
    clip-path: none;
    transform: none;
  }

  .campaign__ribbon span {
    transform: none;
  }

  .campaign__title {
    white-space: normal;
  }

  .campaign__price {
    font-size: 42px;
  }

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

  .flow-card {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    min-height: auto;
    text-align: left;
    align-items: center;
  }

  .flow-card img {
    margin: 0;
  }

  .flow-card .number {
    position: absolute;
    left: 16px;
    top: 14px;
  }

  .flow-card__content {
    grid-column: 2;
  }

  .voice-card {
    grid-template-columns: 96px 1fr;
  }

  .voice-card img {
    width: 96px;
    height: 96px;
  }

  .greeting {
    grid-template-columns: 96px 1fr;
  }

  .greeting img {
    width: 96px;
  }

  .practitioner-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .practitioner-card__photo {
    width: 150px;
  }

  .home-problem-row {
    grid-template-columns: 1fr;
  }

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

  .reason-strip__item:nth-child(2) {
    border-right: 0;
  }

  .reason-strip__item:nth-child(-n + 2) {
    border-bottom: 1px solid #f2d8c9;
  }

  .director-card {
    grid-template-columns: 112px 1fr;
  }

  .director-card__photo {
    width: 112px;
  }

  .cta-band {
    grid-template-columns: 96px 1fr;
    padding: 18px;
  }

  .cta-band .cta-actions {
    grid-column: 1 / -1;
  }

  .cta-band img {
    width: 96px;
  }

  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-row .logo {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--navy);
    color: #fff;
    box-shadow: 0 -8px 20px rgba(2, 24, 70, 0.18);
  }

  .mobile-bottom-nav a,
  .mobile-bottom-nav button {
    min-width: 0;
    min-height: 72px;
    display: grid;
    place-items: center;
    gap: 2px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
  }

  .mobile-bottom-nav img {
    width: 27px;
    height: 27px;
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 520px) {
  .container {
    width: min(460px, calc(100% - 28px));
  }

  .topbar {
    font-size: 12px;
  }

  .global-nav {
    top: 106px;
  }

  .logo img {
    width: auto;
    max-width: 188px;
    max-height: 52px;
  }

  .hero__media {
    height: 216px;
  }

  .hero h1,
  .page-title {
    font-size: 36px;
  }

  .hero-title__small {
    font-size: 30px;
  }

  .hero-title__accent {
    font-size: 42px;
  }

  .hero__checks,
  .check-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }

  .section {
    padding: 34px 0;
  }

  .stats__grid,
  .menu-preview {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid #eadfd8;
  }

  .stat__icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .trouble-box {
    grid-template-columns: 1fr 112px;
    padding: 18px;
  }

  .trouble-box img {
    align-self: end;
  }

  .problem-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    inline-size: 100%;
    max-inline-size: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 18px;
    background-image: none;
  }

  .problem-panel h2,
  .reason-panel h2 {
    max-width: 13.5em;
    margin-inline: auto;
    font-size: 21px;
  }

  .problem-panel h2 {
    margin-inline: 0;
  }

  .problem-panel > img {
    display: block;
    width: min(150px, 44vw);
    justify-self: end;
    margin: 2px 4px 0 0;
  }

  .reason-panel h2 .reason-title-break {
    display: block;
    margin-top: 2px;
  }

  .reason-strip {
    grid-template-columns: 1fr;
  }

  .reason-strip__item,
  .reason-strip__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid #f2d8c9;
  }

  .reason-strip__item:last-child {
    border-bottom: 0;
  }

  .reason-panel {
    inline-size: 100%;
    max-inline-size: 100%;
    overflow: hidden;
  }

  .clinic-overview {
    padding: 18px;
  }

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

  .card--padded,
  .reason-card,
  .price-block {
    padding: 18px;
  }

  .payment-methods__title {
    margin-bottom: 14px;
  }

  .payment-methods.card--padded {
    padding: 16px;
  }

  .payment-options {
    grid-template-columns: .82fr 1.36fr .82fr;
    width: 100%;
    justify-content: stretch;
    gap: 6px;
  }

  .payment-option {
    min-height: 90px;
    padding: 10px 3px;
    gap: 5px;
  }

  .payment-option img {
    width: 40px;
    height: 40px;
  }

  .payment-option h3 {
    font-size: 10.5px;
    line-height: 1.25;
    white-space: nowrap;
  }

  .price-row {
    gap: 8px;
  }

  .price-row strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .notice-card {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 18px;
  }

  .notice-card__image {
    display: none;
  }

  .notice-card h2 {
    font-size: 21px;
  }

  .notice-card__body {
    grid-column: 1;
    min-width: 0;
  }

  .notice-card__list {
    gap: 7px;
    padding-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .practitioner-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 18px;
  }

  .practitioner-card__photo {
    width: 104px;
  }

  .practitioner-card h2 {
    font-size: 14px;
  }

  .practitioner-card h2 strong {
    font-size: 21px;
  }

  .practitioner-card__body {
    display: contents;
  }

  .practitioner-card__label,
  .practitioner-card h2,
  .practitioner-card__badge {
    grid-column: 2;
  }

  .practitioner-card__message {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .tabs {
    overflow-x: auto;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .tab-button {
    min-width: 106px;
    padding: 9px 14px;
    white-space: nowrap;
  }

  .form-grid,
  .header-actions,
  .cta-actions,
  .footer-actions {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-table {
    table-layout: fixed;
    font-size: 13px;
  }

  .price-table th,
  .price-table td {
    padding: 8px 7px;
    overflow-wrap: anywhere;
  }

  .price-table strong {
    white-space: normal;
  }

  .campaign__title {
    font-size: 22px;
  }

  .campaign--price .campaign__title {
    display: grid;
    justify-items: center;
    font-size: 19px;
    line-height: 1.35;
  }

  .campaign--price .campaign__title span:not(.tag) {
    max-width: 100%;
  }

  .campaign__regular strong {
    font-size: 20px;
  }

  .badge-off {
    justify-self: center;
  }

  .campaign__price {
    font-size: 38px;
  }

  .voice-card h3,
  .menu-card h3 {
    font-size: 17px;
  }
}
