/* Incremental styles for verified clinic information and live mini-program codes. */
.access-section {
  color: #fff;
  background: var(--deep);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 95px;
}

.access-copy h2 {
  color: #fff;
}

.access-copy > p:last-child {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.9;
}

.access-points {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.access-points span {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 22px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.access-points strong {
  color: #f1a17d;
  font-size: 14px;
}

.access-points small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.program-card {
  grid-template-columns: 1fr 190px;
}

.qr-code-wrap {
  width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid rgba(41, 56, 50, 0.13);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qr-code-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(25, 40, 33, 0.12);
}

.qr-code {
  width: 166px;
  height: 166px;
  object-fit: contain;
  image-rendering: auto;
}

.qr-code-wrap span {
  color: #65726b;
  font-size: 8px;
  font-weight: 700;
}

.primary .qr-code-wrap {
  border-color: rgba(255, 255, 255, 0.28);
}

.doctor-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.doctor-photo-pair img {
  min-width: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.image-card img[src*="doctors-real"] {
  object-position: center 18%;
}

.department-detail img[src*="doctors-real"] {
  object-position: center 18%;
}

.department-detail > img.department-cartoon {
  background: #f7f2e9;
  object-position: center;
  box-shadow: 0 10px 26px rgba(32, 53, 44, 0.08);
}

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

.music-toggle {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 31;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--deep);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 24px rgba(32, 53, 44, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.music-toggle:hover,
.music-toggle:focus-visible {
  transform: translateY(-2px);
}

.music-toggle.is-playing {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.footer-contact .footer-phone,
.location-details a[href^="tel:"] {
  color: #f1a17d;
  font-weight: 800;
}

.footer-contact .footer-phone {
  font-size: 13px;
}

.music-symbol {
  font-size: 25px;
  line-height: 1;
}

.doctor-team-hero .page-hero-media img {
  object-position: center center;
}

.expert-grid.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.expert-grid.four-up .expert-photo img {
  object-position: center 16%;
}

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

.facility-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.facility-card > img {
  height: 285px;
  object-fit: cover;
}

.facility-card > div {
  min-height: 230px;
  padding: 29px;
}

.facility-card span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.facility-card h2 {
  margin: 8px 0 11px;
  font-family: inherit;
  font-size: 23px;
  letter-spacing: 0;
}

.facility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 620px) {
  :root {
    --container: calc(100vw - 32px);
  }

  body {
    padding-bottom: 70px;
  }

  .notice-inner {
    min-height: 32px;
    justify-content: center;
    padding: 5px 0;
    text-align: center;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    margin-top: 4px;
    font-size: 6px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .main-nav {
    top: 66px;
    padding: 8px 16px 20px;
  }

  .main-nav > a {
    min-height: 46px;
    display: flex;
    align-items: center;
  }

  .home-hero {
    min-height: 0;
    padding-top: 0;
  }

  .home-hero .hero-media img {
    object-position: 62% center;
  }

  .home-hero .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 29, 23, 0.91), rgba(17, 29, 23, 0.42)),
      linear-gradient(0deg, rgba(17, 29, 23, 0.72), transparent 60%);
  }

  .home-hero .hero-content {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 96px;
    padding-bottom: 34px;
  }

  .home-hero .eyebrow {
    margin-bottom: 13px;
    font-size: 9px;
    letter-spacing: 0;
  }

  .home-hero .hero-content h1 {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.16;
  }

  .home-hero .hero-content > p:not(.eyebrow) {
    max-width: 340px;
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.72;
  }

  .home-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .home-hero .hero-actions .button {
    min-width: 0;
    min-height: 46px;
    gap: 12px;
    padding: 0 14px;
    font-size: 12px;
  }

  .home-hero .hero-facts {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--deep);
  }

  .home-hero .hero-facts > span {
    min-height: 76px;
    padding: 12px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-hero .hero-facts > span:nth-child(2n) {
    border-right: 0;
  }

  .home-hero .hero-facts strong {
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 0;
  }

  .home-hero .hero-facts small {
    margin-top: 2px;
    font-size: 8px;
    line-height: 1.45;
  }

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

  .quick-grid a {
    min-height: 72px;
    grid-template-columns: 28px 1fr auto;
    padding: 14px 16px;
  }

  .quick-grid strong {
    font-size: 13px;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .heading-row {
    gap: 16px;
  }

  .section h2,
  .doctor-copy h2,
  .service-entry h2 {
    font-size: 32px;
    line-height: 1.25;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .section-copy > p:not(.section-kicker) {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.85;
  }

  .home-about-grid {
    gap: 30px;
  }

  .about-numbers span {
    grid-template-columns: 102px 1fr;
    gap: 14px;
    padding: 17px 0;
  }

  .about-numbers strong {
    font-size: 15px;
  }

  .about-numbers small {
    font-size: 11px;
    line-height: 1.55;
  }

  .value-item {
    min-height: 0;
    padding: 23px;
  }

  .value-item h3 {
    margin: 28px 0 8px;
    font-size: 19px;
  }

  .photo-grid {
    grid-template-rows: 250px 185px 185px;
    gap: 10px;
  }

  .photo-grid figcaption {
    padding: 42px 18px 16px;
  }

  .photo-grid figcaption strong {
    font-size: 15px;
  }

  .image-card-grid,
  .facility-grid,
  .expert-grid.four-up {
    gap: 14px;
  }

  .image-card > img {
    height: 195px;
  }

  .image-card > div,
  .expert-body,
  .facility-card > div {
    padding: 22px;
  }

  .image-card p {
    min-height: 0;
  }

  .doctor-photo,
  .doctor-photo-pair {
    min-height: 380px;
  }

  .doctor-copy {
    padding: 48px 16px 54px;
  }

  .doctor-copy > p {
    margin-top: 17px;
    font-size: 13px;
  }

  .doctor-directions {
    margin: 24px 0;
  }

  .doctor-directions span {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 13px 0;
    font-size: 12px;
  }

  .service-entry-grid {
    gap: 32px;
  }

  .page-hero {
    min-height: 320px;
    padding: 48px 0 42px;
  }

  .page-hero.media-hero {
    min-height: 380px;
  }

  .page-hero h1 {
    max-width: 350px;
    font-size: 36px;
    line-height: 1.18;
  }

  .page-hero .breadcrumb {
    margin-bottom: 18px;
  }

  .page-hero-content > p:last-child {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.72;
  }

  .page-nav-inner {
    gap: 24px;
  }

  .page-nav a {
    padding: 14px 0;
    font-size: 11px;
  }

  .content-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .content-stats span {
    min-height: 118px;
    padding: 17px;
  }

  .department-detail {
    gap: 16px;
    padding: 20px 0;
  }

  .department-detail > img {
    height: 195px;
  }

  .department-detail h2 {
    font-size: 23px;
  }

  .expert-photo {
    height: 280px;
  }

  .facility-card > img {
    height: 205px;
  }

  .growth-chart {
    padding: 16px;
  }

  .growth-chart-paper {
    padding: 20px;
  }

  .step-card,
  .scenario-card,
  .program-card {
    min-height: 0;
    padding: 23px;
  }

  .step-card h3 {
    margin-top: 28px;
  }

  .program-card h2,
  .scenario-card h2 {
    font-size: 23px;
  }

  .location-details span {
    grid-template-columns: 68px 1fr;
    gap: 12px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 13px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-grid {
    gap: 28px 20px;
    padding-bottom: 36px;
  }

  .footer-bottom {
    padding-bottom: 18px;
  }

  .mobile-booking {
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-height: 50px;
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(23, 37, 31, 0.2);
    font-size: 14px;
  }

  .music-toggle {
    right: 16px;
    bottom: 76px;
    width: 44px;
    height: 44px;
  }

  .back-to-top {
    right: 68px;
    bottom: 76px;
  }

  .access-points span {
    grid-template-columns: 105px 1fr;
  }

  .program-card {
    grid-template-columns: 1fr;
  }

  .qr-code-wrap {
    width: min(250px, 100%);
    justify-self: center;
    padding: 14px;
  }

  .qr-code {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .doctor-photo-pair {
    min-height: 480px;
  }

  .expert-grid.four-up,
  .facility-grid {
    grid-template-columns: 1fr;
  }

  .facility-card > img {
    height: 230px;
  }

  .facility-card > div {
    min-height: auto;
  }
}
