:root {
  --navy: #06234a;
  --navy-dark: #03172f;
  --ink: #0c2747;
  --muted: #5e6d7c;
  --paper: #ffffff;
  --blue-soft: #eaf3ff;
  --mint: #e7f5f0;
  --pine: #0d665d;
  --sky: #dff2ff;
  --coral: #d95f4d;
  --sun: #f0bc4f;
  --line: rgba(12, 39, 71, 0.13);
  --shadow: 0 18px 45px rgba(6, 35, 74, 0.11);
  --shadow-soft: 0 10px 28px rgba(6, 35, 74, 0.08);
  --radius: 8px;
  --max: 1200px;
  --header-height: 76px;
  --font: "Manrope", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--header-height);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--ink);
  background: #fbfdff;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(240, 188, 79, 0.92);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  background: var(--sun);
  color: var(--navy-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  color: var(--navy);
}

.brand-icon {
  display: block;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
  line-height: 1;
}

.brand-name {
  color: var(--navy);
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  font-weight: 950;
  white-space: nowrap;
}

.brand-tagline {
  color: #355b78;
  font-size: clamp(0.46rem, 0.62vw, 0.58rem);
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 2px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 3px;
  border-radius: 99px;
  background: var(--pine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(6, 35, 74, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switch a {
  min-width: 38px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.language-switch a:hover,
.language-switch a.is-active {
  color: var(--paper);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--navy);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.015);
}

.btn-primary {
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(6, 35, 74, 0.22);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--paper);
  border-color: rgba(6, 35, 74, 0.2);
}

.btn-secondary:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-soft);
}

.btn-mint {
  color: var(--navy);
  background: var(--sun);
  box-shadow: 0 14px 28px rgba(240, 188, 79, 0.28);
}

.btn-mint:hover {
  background: #e4ac35;
  box-shadow: 0 18px 34px rgba(240, 188, 79, 0.34);
}

.btn-ghost {
  color: var(--navy);
  background: transparent;
  border-color: var(--line);
}

.hero .btn-ghost,
.page-hero .btn-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.86);
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 34px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 18, 37, 0.94) 0%, rgba(3, 25, 52, 0.84) 45%, rgba(3, 25, 52, 0.5) 72%, rgba(3, 18, 37, 0.58) 100%),
    url("assets/sunrise-dental-background.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(3, 18, 37, 0.9), transparent);
}

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0 34px;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pine);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.hero-title {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(2.85rem, 5.1vw, 4.25rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-title-en {
  max-width: 980px;
  font-size: clamp(2.85rem, 4.8vw, 4.05rem);
}

.hero-title-en span {
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 950;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 900;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(223, 242, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(3, 23, 47, 0.38);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(10px);
}

.hero p,
.page-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.center-actions {
  justify-content: center;
}

.hero-actions .btn,
.page-hero .section-actions .btn {
  min-width: 190px;
}

.hero-actions .btn-ghost {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.52);
}

.hero-strip {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px auto 0;
  transform: none;
}

.trust-card {
  min-height: 178px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(223, 242, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(3, 23, 47, 0.18);
  backdrop-filter: blur(12px);
}

.trust-card .metric,
.trust-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 950;
}

.trust-value {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.05rem);
  line-height: 1.1;
  font-weight: 950;
}

.trust-address {
  font-size: clamp(1.1rem, 1.45vw, 1.34rem);
  line-height: 1.22;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: var(--navy);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 104px 0;
}

.section.hero-follow {
  padding-top: 104px;
}

.section-band {
  background: linear-gradient(180deg, #f3f8ff, #f3fbf8);
}

.section-ink {
  color: var(--paper);
  background: linear-gradient(135deg, rgba(3, 23, 47, 0.98), rgba(6, 35, 74, 0.94));
}

.section-ink h2,
.section-ink h3 {
  color: var(--paper);
}

.section-ink .lead,
.section-ink p {
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head-center {
  margin-inline: auto;
  text-align: center;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 56px;
  align-items: center;
}

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

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: #f4f6f8;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
  background: #f4f6f8;
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--paper);
  background: rgba(3, 23, 47, 0.76);
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.value-list,
.check-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li,
.check-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--ink);
}

.process-media {
  align-items: center;
}

.process-list {
  gap: 18px;
}

.process-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.35;
}

.section-ink .value-list li,
.section-ink .check-list li {
  color: rgba(255, 255, 255, 0.9);
}

.check-dot {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sun);
  font-size: 0.84rem;
  font-weight: 950;
}

.grid {
  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));
}

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

.card,
.service-card,
.info-card,
.review-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(6, 35, 74, 0.045);
}

.service-card,
.info-card,
.review-card {
  padding: 26px;
}

.service-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-icon,
.info-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--blue-soft);
}

.service-icon svg,
.info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  display: block;
  object-fit: cover;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(170, 200, 220, 0.55);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(234, 243, 255, 0.92), rgba(255, 255, 255, 0.9) 48%, rgba(231, 245, 240, 0.96)),
    radial-gradient(circle at 22% 18%, rgba(240, 188, 79, 0.28), transparent 24%);
}

div.service-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(6, 35, 74, 0.08);
  background: rgba(255, 255, 255, 0.36);
}

div.service-media::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: 56%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(6, 35, 74, 0.08);
}

.service-card p,
.info-card p,
.review-card p {
  color: var(--muted);
}

.doctor-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.doctor-photo {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(170, 200, 220, 0.55);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(150deg, rgba(234, 243, 255, 0.95), rgba(255, 255, 255, 0.82) 48%, rgba(231, 245, 240, 0.96)),
    radial-gradient(circle at 50% 20%, rgba(240, 188, 79, 0.28), transparent 28%);
}

.doctor-photo span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(135deg, var(--pine), var(--navy));
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}

.doctor-content {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.doctor-content p:last-child {
  margin-bottom: 0;
}

.doctor-content .mini-list {
  margin-bottom: 22px;
}

.doctor-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: auto;
  padding: 11px 18px;
  border: 1px solid rgba(13, 102, 93, 0.24);
  border-radius: 999px;
  color: var(--paper);
  background: var(--pine);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(13, 102, 93, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.doctor-cta:hover {
  transform: translateY(-2px);
  background: var(--navy);
  box-shadow: 0 14px 28px rgba(6, 35, 74, 0.18);
}

.section.about-mosaic-section {
  padding-bottom: 0;
  overflow: hidden;
  background: #f3f8ff;
}

.about-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: var(--navy);
}

.about-mosaic-media {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #dfeaf4;
}

.about-mosaic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-mosaic-panel {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
  color: var(--paper);
  background:
    linear-gradient(135deg, #10284f 0%, #1f4572 100%);
}

.about-mosaic-panel .eyebrow {
  color: var(--sun);
}

.about-mosaic-panel h2 {
  color: var(--paper);
  font-size: clamp(1.6rem, 2.55vw, 2.2rem);
}

.about-mosaic-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.about-values-grid span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.about-values-grid span:last-child {
  grid-column: 1 / -1;
}

.review-carousel {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  width: 300%;
  transform: translateX(0);
  transition: transform 900ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.review-page {
  flex: 0 0 33.333333%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding: 2px 14px;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 35, 74, 0.12);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.review-arrow:hover {
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(6, 35, 74, 0.14);
  transform: translateY(-50%) scale(1.04);
}

.review-arrow:focus-visible {
  outline: 3px solid rgba(240, 188, 79, 0.55);
  outline-offset: 3px;
}

.review-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2.1rem;
  line-height: 1;
}

.review-arrow-prev {
  left: -22px;
}

.review-arrow-next {
  right: -22px;
}

.review-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
}

.review-card strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-weight: 950;
}

.review-card h3 {
  margin-bottom: 12px;
}

.rating-stars {
  margin-top: auto;
  padding-top: 18px;
  color: var(--sun);
  font-size: 1.15rem;
  letter-spacing: 2px;
  line-height: 1;
}

.service-card .text-link {
  margin-top: auto;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 950;
}

.text-link:hover {
  color: var(--pine);
}

.steps {
  counter-reset: steps;
}

.process-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.process-split .section-head {
  position: sticky;
  top: 104px;
  margin-bottom: 0;
}

.steps-vertical {
  display: grid;
  gap: 18px;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 18px;
  row-gap: 16px;
  align-items: center;
  padding: 30px;
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--sun);
  font-weight: 950;
}

.step h3 {
  margin-bottom: 0;
}

.step p {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.contact-facts {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.fact {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.fact strong {
  display: block;
  color: var(--paper);
}

.fact span,
.fact a {
  color: rgba(255, 255, 255, 0.78);
}

.hours-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(234, 243, 255, 0.66);
}

.hours-list li.is-today {
  color: var(--navy);
  background: var(--sun);
  font-weight: 950;
}

.section-ink .hours-list li {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
}

.section-ink .hours-list li.is-today {
  color: var(--navy-dark);
  background: var(--sun);
}

.form-shell {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.section-ink .form-shell {
  color: var(--ink);
  background: var(--paper);
}

.section-ink .form-shell h2,
.section-ink .form-shell h3 {
  color: var(--navy);
}

.section-ink .form-shell p,
.section-ink .form-shell .form-note {
  color: var(--muted);
}

.section-ink .form-shell .hours-list li {
  color: var(--ink);
  background: rgba(234, 243, 255, 0.82);
}

.section-ink .form-shell .hours-list li.is-today {
  color: var(--navy-dark);
  background: var(--sun);
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(12, 39, 71, 0.22);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(13, 102, 93, 0.16);
}

.contact-showcase {
  background: #fff;
}

.contact-showcase-title {
  max-width: 980px;
  margin: 0 auto 58px;
  text-align: center;
  color: var(--navy);
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.08;
  font-weight: 950;
}

.contact-showcase-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.clinic-profile-photo {
  overflow: hidden;
  margin: 0 0 28px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 39, 71, 0.12);
  box-shadow: 0 18px 42px rgba(6, 35, 74, 0.12);
  background: #f4f6f8;
}

.clinic-profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-profile h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.clinic-profile-address {
  max-width: 560px;
  margin-bottom: 18px;
  color: #536b86;
  font-size: 1.15rem;
  line-height: 1.65;
}

.clinic-profile-phone {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: 1.16rem;
  font-weight: 900;
}

.clinic-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.clinic-action {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  box-shadow: 0 12px 24px rgba(6, 35, 74, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.clinic-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(6, 35, 74, 0.2);
}

.clinic-action svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clinic-action-map {
  background: var(--coral);
}

.clinic-action-call {
  background: var(--pine);
}

.clinic-action-message {
  background: var(--navy);
}

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

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-field {
  display: grid;
  gap: 9px;
}

.contact-field label {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(12, 39, 71, 0.18);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfdff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

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

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--pine);
  outline: 3px solid rgba(13, 102, 93, 0.16);
  background: #fff;
}

.contact-submit {
  min-height: 58px;
  border: 0;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--navy);
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(6, 35, 74, 0.18);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--pine);
  box-shadow: 0 18px 34px rgba(13, 102, 93, 0.2);
}

@media (max-width: 960px) {
  .contact-showcase-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-showcase-title {
    margin-bottom: 42px;
  }
}

@media (max-width: 680px) {
  .contact-showcase-title {
    text-align: left;
    font-size: clamp(2rem, 9vw, 2.45rem);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .clinic-profile-address {
    font-size: 1.04rem;
  }

  .clinic-action {
    width: 52px;
    height: 52px;
  }
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.88rem;
}

.form-note a {
  color: var(--navy);
  font-weight: 900;
}

.form-status {
  min-height: 24px;
  margin-top: 8px;
  font-weight: 900;
}

.form-status.is-error {
  color: var(--coral);
}

.form-status.is-success {
  color: var(--pine);
}

.page-hero {
  color: var(--paper);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 23, 47, 0.92), rgba(6, 35, 74, 0.74)),
    url("assets/sunrise-dental-background-2.jpg") right center / cover no-repeat;
}

.page-hero-inner {
  min-height: 410px;
  display: grid;
  align-items: end;
  padding: 82px 0 66px;
}

.page-hero h1 {
  max-width: 820px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.38);
  text-underline-offset: 4px;
}

.service-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.side-panel .btn {
  width: 100%;
  margin-top: 12px;
}

.mini-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.mini-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
}

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

.legal-copy .faq-list {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 20px rgba(6, 35, 74, 0.045);
}

.faq-item {
  padding: 24px;
}

details.faq-item {
  overflow: hidden;
  padding: 0;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.legal-copy details.faq-item {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.legal-copy details.faq-item:last-child {
  border-bottom: 0;
}

details.faq-item[open] {
  border-color: rgba(6, 35, 74, 0.22);
  box-shadow: var(--shadow-soft);
}

.legal-copy details.faq-item[open] {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(234, 243, 255, 0.78), rgba(255, 255, 255, 0.96));
  box-shadow: none;
}

details.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

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

details.faq-item summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(6, 35, 74, 0.16);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 900;
}

details.faq-item[open] summary::after {
  content: "-";
  color: var(--paper);
  background: var(--navy);
  border-color: var(--navy);
}

.faq-question {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 900;
}

.faq-item h3 {
  font-size: 1.08rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

details.faq-item p {
  padding: 0 18px 18px;
}

.toc {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  list-style: none;
}

.toc a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 900;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.legal-copy {
  max-width: 780px;
}

.faq-page .legal-layout {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 0;
}

.faq-page .toc {
  display: none;
}

.faq-page .legal-copy {
  width: 100%;
  max-width: 920px;
}

.legal-copy section {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.faq-page .legal-copy section {
  padding: 22px 0;
}

.legal-copy section:first-child {
  padding-top: 0;
}

.legal-copy h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
}

.faq-page .legal-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.1vw, 1.82rem);
}

.faq-bottom-actions {
  justify-content: center;
  margin: 36px auto 0;
}

.faq-bottom-actions .btn {
  min-width: 280px;
  min-height: 58px;
  padding: 16px 36px;
  font-size: 1.06rem;
  box-shadow: 0 16px 34px rgba(6, 35, 74, 0.2);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.cta-band {
  padding: 42px;
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, rgba(6, 35, 74, 0.96), rgba(13, 102, 93, 0.92));
}

.cta-band h2 {
  color: var(--paper);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy-dark);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 48px;
  padding: 58px 0 34px;
}

.footer-inner.footer-columns {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr);
  align-items: start;
  gap: 72px;
  text-align: left;
}

.footer-inner.footer-reference {
  grid-template-columns: minmax(280px, 1fr) minmax(128px, 0.24fr) minmax(128px, 0.24fr);
  align-items: start;
  gap: clamp(34px, 8vw, 120px);
  padding: 58px 0;
  text-align: left;
}

.footer-brand-column {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.footer-logo-column {
  display: grid;
  justify-items: start;
  gap: 26px;
}

.site-footer h2,
.site-footer h3 {
  color: var(--paper);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: auto;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.footer-logo-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.footer-logo-name {
  color: var(--paper);
  font-size: 1.16rem;
  font-weight: 950;
  white-space: nowrap;
}

.footer-logo-tagline {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.52rem;
  font-weight: 700;
  white-space: nowrap;
}

.footer-copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
}

.footer-company {
  color: var(--paper);
  font-size: clamp(1.2rem, 2.2vw, 1.62rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: 950;
}

.footer-info {
  display: grid;
  gap: 10px;
  max-width: 430px;
  margin: -4px 0 4px;
  padding: 0;
  list-style: none;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.5;
}

.footer-info a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-info a:hover {
  color: var(--sun);
}

.footer-info-icon {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--blue-soft);
  background: transparent;
  transform: translateY(3px);
}

.footer-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 0;
}

.footer-social-icons-bottom {
  justify-content: center;
}

.footer-social-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 950;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.footer-social-icon:hover {
  color: var(--navy);
  background: var(--sun);
  transform: translateY(-2px);
}

.footer-social-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-nav {
  display: grid;
  gap: 14px;
  justify-items: start;
  padding-top: 6px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  font-weight: 900;
}

.footer-nav a:hover {
  color: var(--sun);
}

.footer-link-group {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.footer-link-column {
  align-content: start;
  padding-top: 4px;
}

.footer-link-group h3 {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 1.03rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  font-weight: 900;
}

.footer-link-group a:hover {
  color: var(--paper);
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 12px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--paper);
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(6, 35, 74, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.92);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  background: var(--navy-dark);
  transform: translateY(-2px) scale(1.04);
}

.back-to-top span {
  width: 13px;
  height: 13px;
  display: block;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(3px) rotate(45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-only-break {
  display: none;
}

@media (max-width: 1100px) {
  .nav {
    gap: 14px;
  }

  .nav a {
    padding-inline: 10px;
    font-size: 0.88rem;
  }

  .header-actions .btn {
    padding-inline: 15px;
  }

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

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .menu-open .nav {
    display: grid;
  }

  .nav a {
    border-radius: var(--radius);
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .header-actions .btn {
    display: none;
  }

  .language-switch {
    min-height: 44px;
  }

  .split,
  .split.reverse,
  .contact-panel,
  .process-split,
  .service-summary,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .process-media > .image-frame {
    order: 2;
  }

  .process-media > div {
    order: 1;
  }

  .process-split .section-head {
    position: static;
  }

  .side-panel {
    position: static;
  }

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

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

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

  .hero-strip {
    grid-template-columns: 1fr;
    margin: 18px auto 0;
    transform: none;
  }

  .section.hero-follow {
    padding-top: 88px;
  }

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

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
  }

  .container,
  .hero-inner,
  .hero-strip {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand {
    max-width: calc(100% - 62px);
    gap: 8px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-tagline {
    font-size: 0.44rem;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-left: auto;
    gap: 7px;
  }

  .menu-toggle {
    flex: 0 0 46px;
  }

  .language-switch {
    min-height: 40px;
    padding: 2px;
  }

  .language-switch a {
    min-width: 34px;
    min-height: 30px;
    font-size: 0.74rem;
  }

  .nav {
    inset: var(--header-height) 0 auto;
  }

  .hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(3, 18, 37, 0.91), rgba(3, 23, 47, 0.84)),
      url("assets/sunrise-dental-background.jpg") 52% center / cover no-repeat;
  }

  .hero-inner {
    padding: 58px 0 18px;
  }

  h1,
  .hero-title {
    font-size: clamp(2.08rem, 8.4vw, 2.42rem);
    line-height: 1.12;
  }

  .hero-title-en {
    font-size: clamp(2.02rem, 7.3vw, 2.34rem);
  }

  .hero-title-en span {
    white-space: normal;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 8.5vw, 2.16rem);
  }

  .contact-page .page-hero h1 {
    font-size: clamp(1.78rem, 7.2vw, 2.05rem);
  }

  .contact-showcase-title {
    margin-bottom: 32px;
    font-size: clamp(1.62rem, 6.5vw, 1.9rem);
    line-height: 1.14;
  }

  .mobile-only-break {
    display: block;
  }

  .desktop-space {
    display: none;
  }

  .hero-kicker {
    display: inline-flex;
    font-size: 0.86rem;
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .hero p,
  .page-hero p,
  .lead {
    font-size: 1.04rem;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 420px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: 16px;
  }

  .hero-actions .btn,
  .page-hero .section-actions .btn {
    min-width: 0;
  }

  .faq-bottom-actions .btn {
    min-width: 0;
    min-height: 56px;
    font-size: 1rem;
  }

  .section {
    padding: 68px 0;
  }

  .section.hero-follow {
    padding-top: 68px;
  }

  .trust-card {
    min-height: 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-mosaic {
    grid-template-columns: 1fr;
  }

  .about-mosaic-media,
  .about-mosaic-panel {
    min-height: 260px;
  }

  .service-card,
  .info-card,
  .doctor-card,
  .review-card,
  .faq-item,
  .form-shell,
  .contact-facts {
    padding: 22px;
  }

  .review-page {
    gap: 12px;
  }

  .review-carousel {
    padding-bottom: 58px;
  }

  .review-arrow {
    top: auto;
    bottom: 0;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .review-arrow:hover {
    transform: none;
  }

  .review-arrow-prev {
    left: calc(50% - 54px);
  }

  .review-arrow-next {
    right: calc(50% - 54px);
  }

  .review-carousel .review-card {
    min-height: 300px;
    padding: 16px;
  }

  .review-card h3 {
    margin-bottom: 8px;
    font-size: 0.98rem;
    line-height: 1.32;
  }

  .review-card p {
    font-size: 0.86rem;
    line-height: 1.55;
  }

  .rating-stars {
    padding-top: 12px;
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .review-card strong {
    margin-top: 10px;
    font-size: 0.9rem;
  }

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

  .doctor-photo {
    min-height: 190px;
  }

  .page-hero-inner {
    min-height: 360px;
    padding: 68px 0 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-inner.footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-inner.footer-reference {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-info {
    width: 100%;
  }

  .footer-info li {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .back-to-top {
    right: 16px;
    bottom: 20px;
    width: 48px;
    height: 48px;
  }

  .cta-band {
    padding: 28px 22px;
  }
}

@media (max-width: 360px) {
  .container,
  .hero-inner,
  .hero-strip {
    width: calc(100% - 36px);
  }

  h1,
  .hero-title {
    font-size: 1.92rem;
  }

  .hero-kicker {
    font-size: 1.12rem;
  }

  .brand-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-tagline {
    display: none;
  }
}

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