:root {
  --ink: #173330;
  --ink-soft: #526864;
  --teal-950: #073d39;
  --teal-900: #084b46;
  --teal-800: #0b5c56;
  --teal-700: #117069;
  --sage: #c9dbcc;
  --sage-soft: #e8efe7;
  --cream: #f7f3e9;
  --cream-deep: #eee7d8;
  --paper: #fffdf8;
  --coral: #e2785b;
  --coral-soft: #f9ded3;
  --gold: #d5a94f;
  --blue: #4f8ca0;
  --white: #fff;
  --shadow-sm: 0 12px 30px rgba(9, 67, 61, 0.08);
  --shadow-lg: 0 30px 70px rgba(9, 67, 61, 0.15);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --container: 1180px;
  --header-height: 5rem;
  --font-display: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--teal-700);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--teal-950);
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(5rem, 9vw, 8rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.8rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  content: "";
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-lead {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--white);
  background: var(--teal-800);
  box-shadow: 0 12px 25px rgba(11, 92, 86, 0.2);
}

.button--primary:hover {
  background: var(--teal-950);
  box-shadow: 0 16px 30px rgba(11, 92, 86, 0.26);
}

.button--ghost {
  border-color: rgba(23, 51, 48, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.button--ghost:hover {
  border-color: var(--teal-800);
  background: var(--white);
}

.button--light {
  color: var(--teal-950);
  background: var(--cream);
}

.button svg,
.icon-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(9, 67, 61, 0.08);
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: var(--header-height);
  align-items: center;
  gap: 1.4rem;
}

.brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
  text-decoration: none;
}

.brand-logo {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-copy span {
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 1rem;
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.language-select {
  position: relative;
}

.language-trigger {
  display: flex;
  height: 2.75rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0 0.8rem;
  border: 1px solid rgba(23, 51, 48, 0.14);
  border-radius: var(--radius-pill);
  background: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-trigger svg {
  width: 0.9rem;
  transition: transform 180ms ease;
}

.language-select.is-open .language-trigger svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: 11rem;
  margin: 0;
  padding: 0.45rem;
  border: 1px solid rgba(23, 51, 48, 0.1);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.5rem);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.language-select.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.75rem;
  border: 0;
  border-radius: 0.7rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.87rem;
  text-align: left;
}

.language-option:hover,
.language-option:focus-visible {
  background: var(--sage-soft);
}

.language-option[aria-selected="true"] {
  color: var(--teal-800);
  font-weight: 800;
}

.language-option[aria-selected="true"]::after {
  content: "✓";
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 51, 48, 0.14);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  content: "";
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.menu-toggle {
  gap: 0.25rem;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 90;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 2rem 1.25rem;
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a:not(.button) {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(23, 51, 48, 0.1);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 7vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-decoration: none;
}

.hero {
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem) 0 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(201, 219, 204, 0.55), transparent 28rem),
    var(--cream);
}

.hero-grid {
  display: grid;
  min-height: min(760px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 3rem 5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(11, 92, 86, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 750;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(226, 120, 91, 0.13);
}

.status-pill.is-open .status-dot {
  background: #25a56f;
  box-shadow: 0 0 0 4px rgba(37, 165, 111, 0.13);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7.2vw, 7rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 span {
  display: block;
  color: var(--teal-700);
  font-style: italic;
  font-weight: 500;
}

.hero-lead {
  max-width: 590px;
  margin: 1.6rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
}

.hero-image-frame {
  position: absolute;
  inset: 0 calc((100vw - min(calc(100vw - 2.5rem), var(--container))) / -2) 0 0;
  overflow: hidden;
  border-radius: 12rem 0 0 2rem;
}

.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 243, 233, 0.13), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card {
  position: absolute;
  right: -0.5rem;
  bottom: 2rem;
  z-index: 2;
  display: grid;
  width: min(20rem, 70%);
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1.25rem;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.hero-card-icon {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
}

.hero-card-icon svg {
  width: 1.35rem;
}

.hero-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.92rem;
}

.hero-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.proof-bar {
  border-bottom: 1px solid rgba(23, 51, 48, 0.08);
  background: var(--white);
}

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

.proof-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(23, 51, 48, 0.08);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--teal-800);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.proof-item span {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.intro {
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: 8rem;
  right: -7rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid var(--sage);
  border-radius: 50%;
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.intro-statement {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  align-self: start;
}

.intro-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.intro-copy > p + p {
  margin-top: 1.2rem;
}

.value-list {
  display: grid;
  gap: 0;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.value-item {
  display: grid;
  grid-template-columns: 2.7rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(23, 51, 48, 0.12);
}

.value-number {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
}

.value-item strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.value-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.services {
  overflow: hidden;
  background: var(--sage-soft);
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}

.services-header .section-lead {
  max-width: 440px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 17rem;
  flex-direction: column;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(23, 51, 48, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.84);
  transition:
    background-color 200ms ease,
    transform 200ms ease,
    box-shadow 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -2.4rem;
  bottom: -2.4rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(11, 92, 86, 0.12);
  border-radius: 50%;
  content: "";
  transition: transform 300ms ease;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.2);
}

.service-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: auto;
  color: var(--teal-800);
  background: var(--sage-soft);
  border-radius: 0.9rem;
}

.service-icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.service-card h3 {
  margin: 2rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-card[data-expanded="false"] {
  display: none;
}

.services-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.clinic {
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.clinic::before,
.clinic::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.clinic::before {
  top: -13rem;
  right: -9rem;
  width: 36rem;
  height: 36rem;
}

.clinic::after {
  right: 15rem;
  bottom: -18rem;
  width: 30rem;
  height: 30rem;
}

.clinic-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.clinic .eyebrow {
  color: #a7d4cb;
}

.clinic .section-title {
  color: var(--white);
}

.clinic .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.clinic-list-title {
  margin: 2rem 0 0.75rem;
  font-size: 0.9rem;
}

.clinic-list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clinic-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.clinic-list li::before {
  width: 0.42rem;
  height: 0.42rem;
  flex: 0 0 auto;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.clinic-note {
  margin: 1.8rem 0 0;
  padding-left: 1rem;
  border-left: 2px solid var(--coral);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

.care-orbit {
  position: relative;
  display: grid;
  width: min(100%, 29rem);
  aspect-ratio: 1;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.care-orbit::before {
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.orbit-centre {
  position: relative;
  z-index: 2;
  display: grid;
  width: 9.5rem;
  height: 9.5rem;
  place-items: center;
  padding: 1rem;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 1rem rgba(226, 120, 91, 0.1);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
}

.orbit-step {
  position: absolute;
  display: grid;
  width: 6rem;
  min-height: 2.4rem;
  place-items: center;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-pill);
  background: var(--teal-900);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

.orbit-step:nth-of-type(2) {
  top: -1.2rem;
}

.orbit-step:nth-of-type(3) {
  right: -1.6rem;
}

.orbit-step:nth-of-type(4) {
  bottom: -1.2rem;
}

.orbit-step:nth-of-type(5) {
  left: -1.6rem;
}

.team {
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 219, 204, 0.35), transparent 22rem),
    var(--paper);
}

.team-header {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.team-card {
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid rgba(23, 51, 48, 0.09);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(9, 67, 61, 0.05);
}

.team-avatar {
  display: grid;
  width: 100%;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 1rem;
  color: var(--teal-950);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.55), transparent),
    var(--sage);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 650;
  letter-spacing: -0.06em;
}

.team-card[data-tone="coral"] .team-avatar {
  background-color: var(--coral-soft);
}

.team-card[data-tone="gold"] .team-avatar {
  background-color: #f3e4bd;
}

.team-card[data-tone="blue"] .team-avatar {
  background-color: #cfe1e7;
}

.team-card[data-tone="teal"] .team-avatar {
  color: var(--white);
  background-color: var(--teal-700);
}

.team-card h3 {
  margin: 0;
  overflow-wrap: break-word;
  font-size: 0.95rem;
  line-height: 1.25;
}

.team-card p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.training-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  margin-top: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--cream);
}

.training-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 50%;
}

.training-icon svg {
  width: 1.35rem;
}

.training-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.training-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

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

.schedule-header {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.schedule-shell {
  overflow: hidden;
  border: 1px solid rgba(23, 51, 48, 0.1);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0.45rem;
  background: var(--sage-soft);
}

.day-tab {
  min-height: 3.2rem;
  padding: 0.5rem;
  border: 0;
  border-radius: 0.9rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.day-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--teal-800);
  box-shadow: 0 7px 16px rgba(11, 92, 86, 0.2);
}

.schedule-panels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.day-panel {
  min-width: 0;
  padding: 1.4rem 1rem;
  border-right: 1px solid rgba(23, 51, 48, 0.09);
}

.day-panel:last-child {
  border-right: 0;
}

.shift + .shift {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(23, 51, 48, 0.09);
}

.shift-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.shift-heading strong {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.shift-heading span {
  color: var(--ink-soft);
  font-size: 0.64rem;
}

.doctor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.doctor-chip {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border-radius: var(--radius-pill);
  background: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.chip-avatar {
  display: grid;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  font-size: 0.48rem;
}

.schedule-notice {
  display: flex;
  align-items: start;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(226, 120, 91, 0.2);
  border-radius: var(--radius-md);
  background: var(--coral-soft);
  color: #674138;
  font-size: 0.82rem;
}

.schedule-notice svg {
  width: 1.15rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.contact {
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 2.5rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(23, 51, 48, 0.1);
}

.contact-row dt {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 650;
}

.contact-row a {
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}

.visit-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage-soft);
  box-shadow: var(--shadow-sm);
}

.map-visual {
  position: relative;
  display: grid;
  min-height: 18rem;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(45deg, transparent 46%, rgba(11, 92, 86, 0.1) 47% 49%, transparent 50%) 0 0 / 90px 90px,
    linear-gradient(-45deg, transparent 46%, rgba(11, 92, 86, 0.08) 47% 49%, transparent 50%) 20px 0 / 110px 110px,
    var(--sage);
}

.map-visual::before,
.map-visual::after {
  position: absolute;
  border-radius: var(--radius-pill);
  background: var(--cream);
  content: "";
  transform: rotate(-17deg);
}

.map-visual::before {
  width: 120%;
  height: 2.3rem;
}

.map-visual::after {
  width: 2.3rem;
  height: 130%;
  transform: rotate(24deg);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: grid;
  width: 5.5rem;
  height: 5.5rem;
  place-items: center;
  border: 0.55rem solid rgba(255, 255, 255, 0.8);
  border-radius: 50% 50% 50% 0;
  background: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: rotate(-45deg);
}

.map-pin img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  transform: rotate(45deg);
}

.visit-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.6rem;
  background: var(--white);
}

.visit-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.visit-content p {
  margin: 0.4rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.78rem;
}

.hours-list span:last-child {
  font-weight: 750;
}

.emergency-note {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  background: var(--coral-soft);
  color: #674138;
  font-size: 0.75rem;
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal-950);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 4rem;
  height: 4rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-brand span {
  font-size: 0.82rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer-nav a {
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-800);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.scroll-top svg {
  width: 1.2rem;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7vw, 5.5rem);
  }

  .hero-visual {
    min-height: 560px;
  }

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

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

  .day-tab {
    font-size: 0.7rem;
  }

  .schedule-panels {
    grid-template-columns: repeat(5, minmax(10.5rem, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 4.5rem;
  }

  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .section {
    padding-block: 4.5rem;
  }

  .header-inner {
    gap: 0.55rem;
  }

  .brand-logo {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-copy strong {
    max-width: 9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy span {
    display: none;
  }

  .language-trigger {
    height: 2.6rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-copy {
    padding-block: 3.5rem 2.5rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.7rem);
  }

  .hero-visual {
    min-height: 25rem;
    margin-inline: -1rem;
  }

  .hero-image-frame {
    inset: 0;
    border-radius: 5rem 5rem 0 0;
  }

  .hero-card {
    right: 1rem;
    bottom: 1rem;
  }

  .proof-item {
    display: grid;
    gap: 0.15rem;
    padding: 1rem 0.4rem;
  }

  .proof-item strong {
    font-size: 1.45rem;
  }

  .proof-item span {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .intro-grid,
  .clinic-grid,
  .team-header,
  .schedule-header,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-statement {
    position: static;
  }

  .services-header {
    display: block;
  }

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

  .service-card {
    min-height: 14rem;
  }

  .care-orbit {
    width: min(85vw, 23rem);
    margin-top: 2rem;
  }

  .orbit-step {
    width: 5.5rem;
  }

  .team-list {
    display: flex;
    margin-inline: -1rem;
    padding: 0 1rem 0.7rem;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .team-card {
    width: 12.5rem;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .day-tabs {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
  }

  .day-tab {
    min-width: 6.8rem;
    flex: 1 0 auto;
  }

  .schedule-panels {
    display: block;
    overflow: visible;
  }

  .day-panel {
    display: none;
    padding: 1.4rem;
    border: 0;
  }

  .day-panel.is-active {
    display: block;
  }

  .visit-content {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    display: grid;
  }

  .scroll-top {
    right: 1rem;
    bottom: 5.3rem;
  }

  .mobile-call {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 60;
    display: flex;
    min-height: 3.5rem;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 390px) {
  .brand-copy {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-card {
    width: calc(100% - 2rem);
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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