/* Mississauga Wellness — linen + forest sage clinic theme */

:root {
  --linen: #f3efe6;
  --cream: #fffdf8;
  --ink: #1a2a24;
  --muted: #5e6d66;
  --sage: #0d7a77;
  --sage-wash: #d6f4f3;
  --border: #d8d2c4;
  --on-sage: #f3efe6;
  --destructive: #8f3d32;
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "Figtree", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-soft: 0 18px 40px -24px rgb(26 42 36 / 0.35);
  --wrap: 72rem;
  --gutter: 1.25rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.mw-body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100vh;
}

img,
svg,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
  border: 0;
}

iframe {
  border: 0;
}

a {
  color: var(--sage);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.45rem; }

p { margin: 0; text-wrap: pretty; }

ul, ol { margin: 0; padding: 0; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
}

::selection {
  background: var(--sage);
  color: var(--on-sage);
}

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

.mw-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;
}

.mw-skip {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--cream);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  min-height: 44px;
}

.mw-skip:focus {
  top: 1rem;
}

.mw-wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.mw-eyebrow {
  margin: 0;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mw-eyebrow--on-sage {
  color: rgb(243 239 230 / 0.7);
}

.mw-lede {
  margin-top: 1.25rem;
  max-width: 38rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
}

.mw-muted { color: var(--muted); }
.mw-strong { font-weight: 600; }

.mw-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.mw-kicker--spaced { margin-top: 1.5rem; }

.mw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.mw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--sage);
  color: var(--on-sage);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.mw-btn:hover {
  background: #24493c;
  color: var(--on-sage);
}

.mw-btn:active { transform: scale(0.98); }

.mw-btn--sm {
  min-height: 40px;
  padding-inline: 1rem;
  font-size: 0.875rem;
}

.mw-btn--lg {
  min-height: 48px;
  padding-inline: 1.5rem;
  font-size: 1rem;
}

.mw-btn--outline {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--border);
}

.mw-btn--outline:hover {
  border-color: var(--sage);
  color: var(--sage);
  background: var(--cream);
}

.mw-btn--inverse {
  background: var(--cream);
  color: var(--sage);
}

.mw-btn--inverse:hover {
  background: var(--linen);
  color: var(--sage);
}

.mw-btn--outline-inverse {
  background: transparent;
  color: var(--on-sage);
  border-color: rgb(243 239 230 / 0.3);
}

.mw-btn--outline-inverse:hover {
  background: var(--on-sage);
  color: var(--sage);
}

.mw-btn svg { display: block; }

/* Header */

.mw-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgb(243 239 230 / 0.92);
  backdrop-filter: blur(12px);
}

.mw-topbar {
  display: none;
  background: var(--sage);
  color: var(--on-sage);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.mw-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
}

.mw-topbar a { color: inherit; text-decoration: none; }
.mw-topbar a:hover { text-decoration: underline; }
.mw-topbar__links { display: flex; gap: 1rem; }
.mw-dot { margin: 0 0.5rem; opacity: 0.5; }

.mw-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.65rem;
}

.mw-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.mw-logo:hover { color: var(--ink); }

.mw-logo__img {
  display: block;
  height: 2.6rem;
  width: auto;
}

.mw-nav-desktop { display: none; }

.mw-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.mw-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
}

.mw-nav a:hover,
.mw-nav .is-active a { color: var(--ink); }

.mw-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mw-header__call { display: none; }

.mw-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--ink);
}

.mw-menu-toggle__close { display: none; }
.mw-menu-toggle[aria-expanded="true"] .mw-menu-toggle__open { display: none; }
.mw-menu-toggle[aria-expanded="true"] .mw-menu-toggle__close { display: block; }

.mw-mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--cream);
  padding: 1rem var(--gutter) 1.25rem;
}

.mw-mobile-nav.is-open { display: block; }
html.no-js .mw-mobile-nav { display: block; }

.mw-mobile-nav .mw-nav,
.mw-mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  list-style: none;
}

.mw-mobile-nav a {
  display: block;
  padding: 0.85rem 0.75rem;
  min-height: 44px;
  border-radius: var(--radius-md);
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.mw-mobile-nav .is-active a { background: var(--sage-wash); }
.mw-mobile-nav__extra { color: var(--muted) !important; }

/* Layout sections */

.mw-main { padding-bottom: 4.5rem; }

.mw-section {
  padding: 4rem 0;
}

.mw-section--tight { padding-top: 0; }

.mw-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.mw-section__head h2 { margin-top: 0.7rem; }

.mw-hero {
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.mw-hero__grid {
  display: grid;
  gap: 2.5rem;
}

.mw-hero h1 { margin-top: 1rem; line-height: 0.95; }

.mw-hero__media { position: relative; }

.mw-hero__media img,
.mw-hero__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--radius-xl);
}

.mw-hero--service .mw-hero__img {
  aspect-ratio: 4 / 3;
}

.mw-hero__caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgb(255 253 248 / 0.95);
  border-radius: var(--radius-lg);
  padding: 1rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-soft);
}

.mw-hero__caption-title { font-weight: 600; }
.mw-hero__caption p + p { margin-top: 0.25rem; color: var(--muted); }

.mw-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mw-stats dt {
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--sage);
}

.mw-stats dd {
  margin: 0.25rem 0 0;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.mw-stats--ruled {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.mw-stats--ruled dt { font-size: 2.2rem; }
.mw-stats--ruled dd { font-size: 0.9rem; letter-spacing: 0; text-transform: none; }

.mw-cards {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mw-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

a.mw-card:hover { color: inherit; }
a.mw-card:hover h2,
a.mw-card:hover h3 { color: var(--sage); }

.mw-card--pad { padding: 1.5rem; }
.mw-card--media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

a.mw-card--media:hover img { transform: scale(1.03); }

.mw-card__body { padding: 1.25rem; }
.mw-card__body h3 { margin-top: 0.5rem; }
.mw-card__body p { margin-top: 0.5rem; }
.mw-card__meta {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.mw-card--row {
  display: grid;
}

.mw-card--row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.mw-card h3 { margin-top: 0.15rem; }
.mw-card .mw-muted { margin-top: 0.75rem; }

.mw-band {
  background: var(--sage);
  color: var(--on-sage);
  padding: 4rem 0;
}

.mw-band h2 { color: inherit; }
.mw-band p { margin-top: 1.25rem; max-width: 32rem; color: rgb(243 239 230 / 0.8); }
.mw-band .mw-btn { margin-top: 2rem; }

.mw-band__grid {
  display: grid;
  gap: 2.5rem;
}

.mw-feature-grid {
  display: grid;
  gap: 1rem;
  list-style: none;
}

.mw-feature-grid li {
  border: 1px solid rgb(243 239 230 / 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.mw-feature-grid h3 {
  margin-top: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 600;
}

.mw-feature-grid p {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: rgb(243 239 230 / 0.75);
}

.mw-split {
  display: grid;
  gap: 2.5rem;
}

.mw-quotes {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mw-quotes blockquote {
  margin: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

.mw-quotes p { font-size: 1.05rem; line-height: 1.65; }

.mw-quotes footer {
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.mw-hours-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.mw-hours-card__status {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.85rem;
}

.mw-hours-card__note { margin-top: 1.25rem; font-size: 0.9rem; line-height: 1.6; }

.mw-hours-list {
  list-style: none;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.mw-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.mw-hours-list li:last-child { border-bottom: 0; }
.mw-hours-list .is-today span:first-child { font-weight: 600; }
.mw-hours-list li span:last-child { color: var(--muted); }

.mw-hours-list--inverse { margin-top: 0.75rem; }
.mw-hours-list--inverse li { border-color: rgb(243 239 230 / 0.15); padding-block: 0.4rem; }
.mw-hours-list--inverse li span:last-child { color: rgb(243 239 230 / 0.75); }

.mw-team-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  height: 100%;
}

.mw-team-card:hover {
  transform: translateY(-2px);
  color: inherit;
}

.mw-team-card h3 { margin-top: 1.25rem; }
.mw-team-card:hover h3 { color: var(--sage); }

.mw-team-card__initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-lg);
  background: var(--sage-wash);
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.mw-team-card__role {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  color: var(--sage);
}

.mw-team-card .mw-muted { margin-top: 0.75rem; font-size: 0.9rem; }

.mw-map-band {
  border-top: 1px solid var(--border);
  background: rgb(231 239 233 / 0.5);
  padding: 4rem 0;
}

.mw-map-band__grid {
  display: grid;
  gap: 2.5rem;
}

.mw-map-band h2 { margin-top: 0.7rem; }
.mw-map-band .mw-muted { margin-top: 0.75rem; max-width: 28rem; font-size: 0.95rem; line-height: 1.6; }

.mw-map {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--cream);
  min-height: 320px;
}

.mw-map iframe {
  width: 100%;
  height: 320px;
  display: block;
}

.mw-cta {
  background: var(--sage);
  color: var(--on-sage);
  border-radius: var(--radius-xl);
  padding: 3rem 1.75rem;
}

.mw-cta p {
  margin-top: 1rem;
  max-width: 36rem;
  color: rgb(243 239 230 / 0.8);
}

.mw-page-hero {
  border-bottom: 1px solid var(--border);
  background: rgb(231 239 233 / 0.6);
  padding: 3.5rem 0;
}

.mw-page-hero h1 { margin-top: 0.7rem; max-width: 46rem; font-size: clamp(2.1rem, 5vw, 3.2rem); }

.mw-about-grid {
  display: grid;
  gap: 2.5rem;
}

.mw-about-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.mw-about-grid h2 { margin-bottom: 0.25rem; }
.mw-about-grid .mw-muted { margin-top: 1rem; line-height: 1.65; }

.mw-photo-strip {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}
.mw-photo-strip figure { margin: 0; }
.mw-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}
.mw-contact-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--radius-xl);
  margin: 1.5rem 0 1rem;
  border: 1px solid var(--border);
}

.mw-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mw-chip,
.mw-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.875rem;
  text-decoration: none;
}

.mw-chip.is-active,
.mw-pill--sage {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--on-sage);
}

a.mw-pill:hover { border-color: var(--sage); color: var(--sage); }
.mw-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.mw-bio-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.mw-prose { font-size: 1.125rem; line-height: 1.7; max-width: 40rem; }
.mw-prose-stack { display: grid; gap: 1rem; font-size: 1.125rem; line-height: 1.7; }
.mw-prose-stack a { color: var(--sage); }
.mw-bio-grid h2 { margin-top: 2.5rem; }

.mw-chip-grid {
  display: grid;
  gap: 0.5rem;
  list-style: none;
  margin-top: 1rem;
}

.mw-chip-grid li {
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.mw-aside {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  height: fit-content;
}

.mw-plain-list { list-style: none; margin-top: 0.5rem; }
.mw-plain-list li + li { margin-top: 0.45rem; }
.mw-plain-list a { font-size: 0.9rem; }

.mw-ruled-list { list-style: none; margin-top: 1rem; }
.mw-ruled-list li {
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  font-size: 0.9rem;
}

.mw-service-list {
  display: grid;
  gap: 1.5rem;
}

.mw-faq-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mw-faq-search { max-width: 20rem; }

.mw-accordion {
  margin-top: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--cream);
  overflow: hidden;
}

.mw-accordion__item + .mw-accordion__item {
  border-top: 1px solid var(--border);
}

.mw-accordion__btn {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  min-height: 44px;
  background: transparent;
}

.mw-accordion__q {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
}

.mw-accordion__icon { color: var(--muted); font-size: 1.2rem; line-height: 1; }
.mw-accordion__panel { padding: 0 1.25rem 1.25rem; }
.mw-accordion__panel p { font-size: 0.95rem; line-height: 1.65; color: var(--muted); }
.mw-faq-empty { padding: 2rem 1.25rem; font-size: 0.95rem; color: var(--muted); }

.mw-input,
select.mw-input,
textarea.mw-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.9rem;
}

textarea.mw-textarea { min-height: 7.5rem; resize: vertical; border-radius: var(--radius-lg); }

.mw-input:focus {
  outline: none;
  border-color: var(--sage);
}

.mw-field { display: grid; gap: 0.4rem; }
.mw-field label { font-size: 0.9rem; font-weight: 500; }
.mw-hint { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.mw-form-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0;
}
.mw-form-error { margin: 0.75rem 0; font-size: 0.9rem; color: var(--destructive); }

.mw-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.mw-banner {
  border-radius: var(--radius-lg);
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.mw-banner--ok { background: var(--sage-wash); color: var(--sage); }
.mw-banner--error { background: #f6e6e3; color: var(--destructive); }

.mw-book-grid {
  display: grid;
  gap: 2.5rem;
}

.mw-book-aside { display: grid; gap: 1.5rem; align-content: start; }

.mw-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.mw-steps li {
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.mw-steps .is-active {
  background: var(--sage-wash);
  color: var(--sage);
}

.mw-steps .is-done { color: var(--ink); }

.mw-service-picks,
.mw-day-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.mw-pick {
  display: block;
  border: 1px solid var(--border);
  background: var(--linen);
  border-radius: var(--radius-lg);
  padding: 1rem;
  cursor: pointer;
}

.mw-pick input { position: absolute; opacity: 0; pointer-events: none; }
.mw-pick:has(input:checked) {
  border-color: var(--sage);
  background: var(--sage-wash);
}
.mw-pick:has(input:focus-visible) { outline: 2px solid var(--sage); outline-offset: 3px; }
.mw-pick.is-disabled { opacity: 0.4; pointer-events: none; }
.mw-pick__name { display: block; font-weight: 500; }
.mw-pick__meta { display: block; margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted); }

.mw-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.mw-slot {
  min-height: 40px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--linen);
  font-size: 0.875rem;
}

.mw-slot.is-active {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--on-sage);
}

.mw-slot-grid { margin: 1.25rem 0; }

.mw-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--sage-wash);
  color: var(--sage);
}

.mw-success h2 { margin-top: 1.25rem; }
.mw-success .mw-muted { margin-top: 0.75rem; }

.mw-contact-grid {
  display: grid;
  gap: 2.5rem;
}

.mw-dl {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mw-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.mw-dl dd {
  margin: 0.5rem 0 0;
  font-size: 1.125rem;
}

.mw-dl a { color: inherit; text-decoration: none; }
.mw-dl a:hover { text-decoration: underline; }

.mw-narrow { max-width: 40rem; }
.mw-stack + .mw-stack { margin-top: 1.25rem; }
.mw-careers-form { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }

.entry-content > * + * { margin-top: 1rem; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; }

.mw-pagination { margin-top: 2rem; }

/* Footer */

.mw-footer {
  margin-top: 5rem;
  background: var(--sage);
  color: var(--on-sage);
}

.mw-footer a { color: inherit; text-decoration: none; }
.mw-footer a:hover { text-decoration: underline; color: inherit; }

.mw-footer__grid {
  display: grid;
  gap: 2.5rem;
  padding: 4rem 0;
}

.mw-footer__lede {
  margin-top: 1rem;
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgb(243 239 230 / 0.75);
}

.mw-footer__label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgb(243 239 230 / 0.6);
}

.mw-footer__grid p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.6; }
.mw-footer__links { list-style: none; margin-top: 0.75rem; }
.mw-footer__links li + li { margin-top: 0.45rem; }
.mw-footer__links a { font-size: 0.9rem; }
.mw-footer__note { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.55; color: rgb(243 239 230 / 0.7); }

.mw-footer__bottom { border-top: 1px solid rgb(243 239 230 / 0.15); }

.mw-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
}

.mw-newsletter__title { font-weight: 500; font-size: 0.9rem; }
.mw-newsletter__hint { margin-top: 0.25rem; font-size: 0.75rem; color: rgb(243 239 230 / 0.7); }
.mw-newsletter__row { display: flex; gap: 0.5rem; margin-top: 0.75rem; }

.mw-newsletter input {
  flex: 1;
  min-height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgb(243 239 230 / 0.2);
  background: rgb(243 239 230 / 0.1);
  color: var(--on-sage);
  padding: 0 0.9rem;
}

.mw-newsletter input::placeholder { color: rgb(243 239 230 / 0.5); }
.mw-footer__copy { font-size: 0.75rem; color: rgb(243 239 230 / 0.55); }
.mw-footer__thanks { font-size: 0.95rem; }

.mw-footer__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding-bottom: 2.5rem;
  font-size: 0.75rem;
  color: rgb(243 239 230 / 0.5);
}

.mw-footer__services a:hover { color: var(--on-sage); }

.mw-mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  border-top: 1px solid var(--border);
  background: rgb(255 253 248 / 0.95);
  backdrop-filter: blur(10px);
}

html.js .mw-no-js { display: none !important; }
html.no-js .mw-js-only { display: none !important; }
html.no-js .mw-book__step,
html.no-js .mw-book__step[hidden] { display: block !important; }
html.no-js .mw-book [data-mw-next],
html.no-js .mw-book [data-mw-back] { display: none; }
html.no-js .mw-book [data-mw-time] { display: none; }

.mw-cards [hidden],
.mw-accordion__item[hidden] {
  display: none !important;
}

.mw-hide-sm { display: none; }

@media (min-width: 640px) {
  .mw-stats { grid-template-columns: repeat(4, 1fr); }
  .mw-cards--2 { grid-template-columns: 1fr 1fr; }
  .mw-header__call { display: inline-flex; }
  .mw-service-picks,
  .mw-day-grid { grid-template-columns: 1fr 1fr; }
  .mw-form-grid { grid-template-columns: 1fr 1fr; }
  .mw-field--wide { grid-column: 1 / -1; }
  .mw-chip-grid { grid-template-columns: 1fr 1fr; }
  .mw-dl { grid-template-columns: 1fr 1fr; }
  .mw-dl--wide { grid-column: 1 / -1; }
  .mw-feature-grid { grid-template-columns: 1fr 1fr; }
  .mw-cta { padding: 3rem; }
}

@media (min-width: 768px) {
  .mw-topbar { display: block; }
  .mw-hero { padding: 4rem 0; }
  .mw-hero__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
  .mw-hero__media img { aspect-ratio: 16 / 10; }
  .mw-hero--service .mw-hero__grid { grid-template-columns: 1fr 1fr; }
  .mw-hero--service { padding-block: 3rem; }
  .mw-cards--3 { grid-template-columns: 1fr 1fr; }
  .mw-about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .mw-photo-strip { grid-template-columns: 1fr 1fr 1fr; }
  .mw-map-band__grid,
  .mw-band__grid,
  .mw-contact-grid { grid-template-columns: 1fr 1fr; }
  .mw-map iframe { height: 100%; min-height: 340px; }
  .mw-card--row { grid-template-columns: 0.9fr 1.1fr; }
  .mw-card--row img { height: 100%; aspect-ratio: auto; }
  .mw-hours-card { padding: 2rem; }
  .mw-page-hero { padding: 5rem 0; }
  .mw-section { padding: 5rem 0; }
  .mw-faq-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
  .mw-day-grid { grid-template-columns: repeat(3, 1fr); }
  .mw-mobile-bar { display: none; }
  .mw-main { padding-bottom: 0; }
  .mw-footer__bottom-inner { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .mw-footer__grid { grid-template-columns: 1.1fr 1fr 1fr 1.1fr; }
  .mw-hide-sm { display: inline-flex; }
}

@media (min-width: 1024px) {
  .mw-nav-desktop { display: block; }
  .mw-menu-toggle { display: none; }
  .mw-mobile-nav { display: none !important; }
  .mw-cards--3 { grid-template-columns: repeat(3, 1fr); }
  .mw-cards--4 { grid-template-columns: repeat(4, 1fr); }
  .mw-split { grid-template-columns: 0.9fr 1.1fr; }
  .mw-bio-grid { grid-template-columns: 1.4fr 0.8fr; }
  .mw-book-grid { grid-template-columns: 1.4fr 0.8fr; }
  .mw-day-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* Comfortable spacing for the six feature cards on Home and About. */
.mw-section--tight .mw-cards--3 > article.mw-card {
    box-sizing: border-box;
    height: auto;
    min-height: 10rem;
    padding: 1.5rem;
    overflow: hidden;
}

@media (max-width: 639px) {
    .mw-section--tight .mw-cards--3 > article.mw-card {
        min-height: 0;
        padding: 1.25rem;
    }
}


/* Teal category symbols for the About-page advantages. */
.mw-advantage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.6rem;
    color: var(--sage);
    border: 1.5px solid currentColor;
    border-radius: 50%;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
}


/* Production-inspired after-hours message in the footer logo column. */
.mw-footer__after-hours {
    margin-top: 1.25rem;
    max-width: 18rem;
}

.mw-footer__after-hours h2 {
    color: var(--on-sage);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.mw-footer__after-hours .mw-btn {
    margin-top: 1rem;
    min-width: 10rem;
}

.mw-footer__after-hours .mw-btn:hover {
    text-decoration: none;
}


/* High-contrast text for the footer patient-form button. */
.mw-footer .mw-footer__after-hours .mw-btn,
.mw-footer .mw-footer__after-hours .mw-btn:hover {
    color: #24493c;
}


/* Keep the homepage hero photograph unobstructed. */
.home .mw-hero__caption {
    display: none;
}


/* Improve legibility of the turquoise logo in the light header. */
.mw-header .mw-logo__img {
    filter: brightness(0.64) saturate(1.15) contrast(1.1);
}

/* Connected Mailchimp footer form */
.mw-newsletter__mailchimp {
  margin-top: 0.75rem;
}

.mw-newsletter__mailchimp .mc_container,
.mw-newsletter__mailchimp .mc_signup_form,
.mw-newsletter__mailchimp .mc_merge_var,
.mw-newsletter__mailchimp .mc_signup_submit {
  margin: 0;
}

.mw-newsletter__mailchimp .mc_custom_border_hdr {
  display: none;
}

.mw-newsletter__mailchimp .mc_form_inside {
  display: flex;
  align-items: end;
  gap: 0.5rem;
}

.mw-newsletter {
  flex: 1 1 420px;
  max-width: 520px;
}

.mw-newsletter__mailchimp .mc_merge_var {
  flex: 1 1 260px;
  min-width: 220px;
}

.mw-newsletter__mailchimp .mc_var_label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
  color: rgb(243 239 230 / 0.78);
}

.mw-newsletter__mailchimp .mc_input {
  width: 100%;
}

.mw-newsletter__mailchimp .mc_signup_submit_button {
  flex: none;
  width: auto;
  min-width: 76px;
  cursor: pointer;
  border-radius: 999px;
  background: transparent;
  color: var(--on-sage);
  font-weight: 600;
}

.mw-newsletter__mailchimp .mc_message_wrapper:not(:empty) {
  flex-basis: 100%;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

@media (max-width: 520px) {
  .mw-newsletter__mailchimp .mc_form_inside {
    align-items: end;
    flex-direction: row;
    gap: 0.375rem;
  }

  .mw-newsletter__mailchimp .mc_merge_var {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .mw-newsletter__mailchimp .mc_input {
    width: 100%;
    min-width: 0;
  }

  .mw-newsletter__mailchimp .mc_signup_submit {
    flex: 0 0 auto;
  }

  .mw-newsletter__mailchimp .mc_signup_submit_button {
    width: auto;
    min-width: 64px;
    padding-inline: 0.75rem;
  }

  .mw-footer__bottom-inner {
    gap: 1rem;
    padding: 1.5rem 0 1rem;
  }

  .mw-footer__services {
    padding-bottom: 1.5rem;
  }
}

/* Align Mailchimp field with footer heading */
.mw-newsletter__mailchimp .mc_form_inside {
  flex-wrap: wrap;
}

.mw-newsletter__mailchimp .mc_message_wrapper:empty {
  display: none;
}
