/* Base tokens and reset */
:root {
  --color-ink: #17324d;
  --color-ink-soft: #40586e;
  --color-primary: #0c71c3;
  --color-primary-light: #2ea3f2;
  --color-accent: #0a47aa;
  --color-accent-soft: #eaf6fd;
  --color-mint: #7ebec5;
  --color-mint-soft: #e2f0ed;
  --color-surface: #ffffff;
  --color-surface-alt: #f4ede5;
  --color-line: #d7e3ec;
  --color-white: #ffffff;
  --shadow-utility: 0 7px 22px rgba(19, 56, 83, 0.05);
  --shadow-feature: 0 14px 36px rgba(12, 73, 128, 0.1);
  --shadow-soft: var(--shadow-feature);
  --shadow-card: var(--shadow-feature);
  --radius-small: 12px;
  --radius-control: 11px;
  --radius-card: 16px;
  --radius-medium: 20px;
  --radius-large: 32px;
  --container: 1180px;
  --font-heading: Poppins, Segoe UI, Arial, sans-serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
  --font-bangla: SutonnyMJ, Noto Serif Bengali, Nirmala UI, serif;
  --transition: 180ms ease;
  --transition-fast: 160ms ease;
  --space-section-feature: clamp(76px, 9vw, 128px);
  --space-section-content: clamp(64px, 7vw, 96px);
  --space-section-compact: clamp(48px, 6vw, 78px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-surface);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3,
h4 {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

::selection {
  color: var(--color-primary);
  background: var(--color-mint);
}

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

.section {
  padding: var(--space-section-feature) 0;
}

.section--tinted {
  background: var(--color-surface-alt);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

/* Shared components */
.eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--color-primary-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

.section-heading {
  max-width: 710px;
  margin-bottom: clamp(38px, 5vw, 64px);
}

.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.25rem);
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  column-gap: clamp(48px, 8vw, 110px);
  align-items: end;
}

.section-heading--split .section-heading__title {
  max-width: 650px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split p {
  padding-bottom: 8px;
}

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

.section-heading--center .eyebrow::before {
  display: none;
}

.section-heading--center p {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    color var(--transition),
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  box-shadow: 0 10px 24px rgba(18, 63, 73, 0.18);
  transform: translateY(-2px);
}

.button--secondary {
  color: var(--color-primary);
  background: transparent;
  border-color: var(--color-line);
}

.button--secondary:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-primary);
}

.button--light {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button--light:hover {
  color: var(--color-primary);
  background: var(--color-mint-soft);
  border-color: var(--color-mint-soft);
}

.button--outline-light {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button--outline-light:hover {
  color: var(--color-primary);
  background: var(--color-white);
  border-color: var(--color-white);
}

.button--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-primary-light);
  font-weight: 700;
}

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

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.icon--small {
  width: 18px;
  height: 18px;
}

.icon--large {
  width: 30px;
  height: 30px;
}

.placeholder-chip {
  display: inline-block;
  padding: 6px 10px;
  color: #355a5f;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(18, 63, 73, 0.1);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

/* Announcement and header */
.announcement {
  min-height: 46px;
  padding: 7px 20px;
  color: rgba(255, 255, 255, 0.96);
  background: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-align: center;
}

.announcement__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1.35;
  transition: color var(--transition);
}

.topbar-item:not(.topbar-item--featured) {
  color: rgba(235, 248, 252, 0.82);
}

.topbar-item--featured {
  padding: 6px 12px;
  color: var(--color-white);
  background: rgba(71, 182, 224, 0.2);
  border: 1px solid rgba(174, 228, 247, 0.3);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  font-weight: 700;
  letter-spacing: 0.045em;
}

.topbar-item:hover {
  color: var(--color-white);
}

.topbar-item .icon {
  opacity: 0.88;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 253, 253, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(18, 63, 73, 0.09);
  box-shadow: 0 8px 30px rgba(18, 63, 73, 0.06);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 42px;
  height: 42px;
}

.brand__text {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.17rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.primary-nav {
  margin-left: auto;
}

.primary-nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  list-style: none;
}

.primary-nav__link {
  position: relative;
  color: #3e565a;
  font-size: 0.87rem;
  font-weight: 600;
}

.primary-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--color-primary-light);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

.primary-nav__link:hover,
.primary-nav__link.is-active {
  color: var(--color-primary);
}

.primary-nav__link:hover::after,
.primary-nav__link.is-active::after {
  transform: scaleX(1);
}

.header-cta {
  flex: 0 0 auto;
  margin-left: 8px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-primary);
  border-radius: 2px;
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: #f2f6f8;
  border-bottom: 1px solid rgba(18, 111, 153, 0.1);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 650px;
  padding: clamp(48px, 6vw, 78px) 0;
}

.hero__copy {
  max-width: 680px;
  padding-block: 8px;
}

.hero__content {
  max-width: 680px;
}

.hero__location-lockup {
  display: grid;
  width: 100%;
  margin-bottom: 16px;
  padding: 15px 16px 15px 14px;
  grid-template-columns: 52px auto auto;
  align-items: center;
  gap: 0 11px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 111, 153, 0.16);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(8, 59, 85, 0.09);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__location-lockup:hover {
  box-shadow: 0 14px 34px rgba(8, 59, 85, 0.13);
  transform: translateY(-2px);
}

.hero__location-icon {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: 1 / 3;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 13px;
  box-shadow: 0 7px 16px rgba(21, 152, 207, 0.22);
  place-items: center;
}

.hero__location-icon .icon {
  width: 23px;
  height: 23px;
}

.hero__location-label {
  grid-column: 2 / 4;
  color: var(--color-ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__location-city {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

.hero__location-country {
  padding: 3px 7px;
  color: #0b668d;
  background: var(--color-accent-soft);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero__hours-panel {
  padding: clamp(20px, 2.5vw, 28px);
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(8, 59, 85, 0.18);
}

.hero__hours-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.hero__hours-heading small,
.hero__hours-heading strong {
  display: block;
}

.hero__hours-heading small {
  margin-bottom: 3px;
  color: rgba(229, 246, 251, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__hours-heading strong {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero__hours-icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: #9bdef2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  flex: 0 0 auto;
  place-items: center;
}

.hero__hours-icon .icon {
  width: 21px;
  height: 21px;
}

.hero .eyebrow {
  margin-bottom: 13px;
  color: var(--color-primary-light);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.15rem, 5.15vw, 4.8rem);
  line-height: 1.01;
}

.hero__lead {
  max-width: 590px;
  margin-bottom: 22px;
  color: var(--color-ink-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__quick-facts {
  display: grid;
  max-width: 610px;
  margin: 20px 0 0;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.hero-fact {
  display: flex;
  min-height: 66px;
  padding: 12px 14px;
  align-items: center;
  gap: 11px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-small);
}

.hero-fact__icon {
  display: grid;
  width: 36px;
  height: 36px;
  color: #8ed7ed;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(11, 61, 86, 0.08);
  flex: 0 0 auto;
  place-items: center;
}

.hero-fact small,
.hero-fact strong {
  display: block;
}

.hero-fact small {
  margin-bottom: 1px;
  color: rgba(229, 246, 251, 0.7);
  font-size: 0.66rem;
  line-height: 1.25;
}

.hero-fact strong {
  color: var(--color-white);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero__phone {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 12px;
  color: var(--color-ink-soft);
  font-size: 0.86rem;
}

.hero__phone-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--color-primary);
  background: var(--color-mint-soft);
  border-radius: 50%;
  place-items: center;
}

.hero__phone strong {
  display: block;
  color: var(--color-primary);
  font-size: 1rem;
}

.hero__visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
}

.hero-portrait {
  display: flex;
  position: relative;
  min-height: 560px;
  align-items: flex-end;
  justify-content: center;
  isolation: isolate;
}

.hero-portrait::before {
  position: absolute;
  inset: 5% -8% 1% 4%;
  z-index: -3;
  background: #dceaf0;
  border-radius: 50%;
  content: "";
}

.hero-portrait::after {
  display: none;
  content: none;
}

.hero-portrait__image {
  position: relative;
  z-index: 1;
  width: min(112%, 720px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 18px 20px rgba(11, 61, 86, 0.16));
  transform-origin: center bottom;
  animation: portrait-arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

.hero-portrait__badge {
  display: flex;
  position: absolute;
  right: -10px;
  bottom: 88px;
  z-index: 4;
  max-width: 210px;
  padding: 12px 15px;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(11, 61, 86, 0.22);
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero-portrait__badge > span {
  color: var(--color-mint);
  flex: 0 0 auto;
}

.hero-portrait__badge .icon {
  transform-origin: center;
  animation: heartbeat-icon-pulse 2.6s ease-in-out infinite;
}

.hero-portrait__caption {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 4;
  width: max-content;
  max-width: 82%;
  margin: 0;
  padding: 7px 12px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 127, 172, 0.12);
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(10px);
  transform: translateX(-50%);
}

.hero__ecg-band {
  position: relative;
  z-index: 2;
  width: 100%;
  height: var(--ecg-height);
  margin-top: clamp(10px, 2vw, 28px);
  overflow: hidden;
  pointer-events: none;
}

.hero__ecg-band svg {
  width: 100%;
  height: 100%;
}

.hero__ecg-path,
.hero__ecg-baseline {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hero__ecg-baseline {
  stroke: var(--color-primary-light);
  stroke-opacity: 0.28;
  stroke-width: 1;
}

.hero__ecg-path {
  stroke: var(--color-primary-light);
  stroke-dasharray: 1750;
  stroke-dashoffset: 1750;
  stroke-width: 2;
  animation: draw-ecg 1.9s cubic-bezier(0.65, 0, 0.35, 1) 350ms both;
}

.hero__trust {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 125px;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  min-height: 54px;
  padding: 0 clamp(20px, 4vw, 54px);
  align-items: center;
  gap: 16px;
  border-left: 1px solid var(--color-line);
}

.trust-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.trust-item__value {
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
}

.trust-item__pulse {
  width: 8px;
  height: 8px;
  margin-right: -5px;
  background: var(--color-primary-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 100, 112, 0.1);
  flex: 0 0 auto;
  animation: soft-pulse 2.6s ease-in-out infinite;
}

.trust-item__label {
  max-width: 150px;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Doctor cards */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.doctor-card {
  display: grid;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1.1fr);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.doctor-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.doctor-card__media {
  display: grid;
  position: relative;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  background: #e3eef3;
  place-items: center;
}

.doctor-card__media img {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  height: auto;
  aspect-ratio: 1;
  border: 5px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(11, 61, 86, 0.15);
  object-fit: cover;
}

.doctor-card__media::before,
.doctor-card__media::after {
  position: absolute;
  border: 1px solid rgba(18, 63, 73, 0.11);
  border-radius: 50%;
  content: "";
}

.doctor-card__media::before {
  right: -70px;
  bottom: -48px;
  width: 210px;
  height: 210px;
}

.doctor-card__media::after {
  top: 36px;
  left: -48px;
  width: 120px;
  height: 120px;
}

.photo-placeholder {
  display: flex;
  position: absolute;
  inset: 0;
  padding: 22px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.photo-placeholder__initials {
  display: grid;
  width: 92px;
  height: 92px;
  margin-bottom: 20px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  place-items: center;
}

.photo-placeholder .placeholder-chip {
  position: relative;
  z-index: 1;
  max-width: 185px;
}

.doctor-card__body {
  padding: clamp(28px, 4vw, 42px);
}

.doctor-card__specialty {
  margin-bottom: 9px;
  color: var(--color-accent);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin-bottom: 7px;
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
}

.doctor-card__experience {
  margin-bottom: 18px;
  color: var(--color-primary-light);
  font-size: 0.82rem;
  font-weight: 700;
}

.doctor-card__bio {
  margin-bottom: 24px;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.credential-list {
  display: grid;
  margin: 0 0 24px;
  padding: 0;
  gap: 9px;
  list-style: none;
}

.credential-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #3d575b;
  font-size: 0.81rem;
  line-height: 1.45;
}

.credential-list svg {
  margin-top: 2px;
  color: var(--color-primary-light);
  flex: 0 0 auto;
}

.doctor-card__meta {
  display: grid;
  padding-top: 22px;
  gap: 12px;
  border-top: 1px solid var(--color-line);
}

.doctor-meta-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.doctor-meta-row strong {
  display: block;
  margin-bottom: 1px;
  color: var(--color-ink);
  font-size: 0.8rem;
}

.doctor-meta-row svg {
  margin-top: 2px;
  color: var(--color-accent);
}

.recognition {
  display: grid;
  margin-top: 34px;
  padding: clamp(30px, 4.5vw, 50px);
  align-items: center;
  gap: 28px;
  background: var(--color-surface-alt);
  border-radius: var(--radius-medium);
  grid-template-columns: auto 1fr;
}

.recognition__seal {
  display: grid;
  width: 76px;
  height: 76px;
  color: var(--color-primary);
  background: var(--color-mint-soft);
  border: 1px solid #c8ded9;
  border-radius: 50%;
  place-items: center;
}

.recognition__label {
  margin-bottom: 5px;
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition h3 {
  margin-bottom: 6px;
  font-size: 1.65rem;
}

.recognition p {
  max-width: 800px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 258px;
  padding: clamp(26px, 3vw, 36px);
  background: var(--color-white);
  border: 1px solid transparent;
  border-radius: var(--radius-medium);
  box-shadow: 0 6px 24px rgba(18, 63, 73, 0.045);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card:hover {
  border-color: #c9e0ea;
  box-shadow: var(--shadow-card);
  transform: translateY(-5px);
}

.service-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 35px;
  color: var(--color-primary-light);
  background: var(--color-mint-soft);
  border-radius: 16px;
  place-items: center;
}

.service-card:nth-child(3n + 2) .service-card__icon {
  color: var(--color-primary-light);
  background: var(--color-accent-soft);
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.service-card p {
  color: var(--color-ink-soft);
  font-size: 0.87rem;
  line-height: 1.65;
}

.insurance-note {
  display: flex;
  margin-top: 24px;
  padding: 26px 30px;
  align-items: center;
  gap: 20px;
  background: #e6f0f4;
  border: 1px solid #d2e1e8;
  border-radius: var(--radius-small);
}

.insurance-note__icon {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  flex: 0 0 auto;
  place-items: center;
}

.insurance-note__content {
  margin-right: auto;
}

.insurance-note h3 {
  margin-bottom: 3px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
}

.insurance-note p {
  color: var(--color-ink-soft);
  font-size: 0.82rem;
}

/* Appointment call to action */
.appointment {
  padding: 0;
  background: var(--color-surface-alt);
}

.appointment__inner {
  display: grid;
  position: relative;
  padding: clamp(50px, 7vw, 82px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: var(--color-primary);
  border-radius: var(--radius-large);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.appointment__inner::before {
  position: absolute;
  top: -240px;
  right: -90px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(148, 210, 200, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(148, 210, 200, 0.035),
    0 0 0 140px rgba(148, 210, 200, 0.025);
  content: "";
}

.appointment__copy,
.appointment__options {
  position: relative;
  z-index: 1;
}

.appointment .eyebrow {
  color: var(--color-mint);
}

.appointment h2 {
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: clamp(2.55rem, 5vw, 4.5rem);
}

.appointment__copy > p {
  max-width: 580px;
  margin-bottom: 0;
  font-size: 1rem;
}

.appointment__options {
  display: grid;
  gap: 12px;
}

.phone-option {
  display: flex;
  padding: 18px 20px;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-small);
  transition:
    background var(--transition),
    transform var(--transition);
}

.phone-option:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateX(3px);
}

.phone-option__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  background: var(--color-mint);
  border-radius: 50%;
  place-items: center;
}

.phone-option span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.phone-option strong {
  color: var(--color-white);
  font-size: 1.08rem;
}


/* Location */
.location-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.74fr) minmax(0, 1.25fr);
  gap: 24px;
}

.location-card {
  padding: clamp(30px, 4vw, 48px);
  background: var(--color-surface-alt);
  border-radius: var(--radius-medium);
}

.location-card__address {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  gap: 14px;
}

.location-card__address .location-card__icon {
  margin-top: 3px;
}

.location-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--color-primary-light);
  background: var(--color-mint-soft);
  border-radius: 12px;
  flex: 0 0 auto;
  place-items: center;
}

.location-card__address strong {
  display: block;
  margin-bottom: 3px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.2;
}

.location-card__address span {
  display: block;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hours-panel {
  margin-bottom: 27px;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
}

.hours-panel h3 {
  margin-bottom: 17px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.hours-list li {
  display: flex;
  padding-bottom: 12px;
  justify-content: space-between;
  gap: 24px;
  color: var(--color-ink-soft);
  border-bottom: 1px solid rgba(216, 227, 225, 0.8);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hours-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-list strong {
  max-width: 190px;
  color: var(--color-ink);
  font-weight: 600;
}

.hours-list time {
  min-width: max-content;
  text-align: right;
}

.emergency-note {
  display: flex;
  margin-bottom: 26px;
  padding: 13px 14px;
  align-items: flex-start;
  gap: 10px;
  color: #28566e;
  background: var(--color-accent-soft);
  border-radius: 9px;
  font-size: 0.72rem;
  line-height: 1.5;
}

.emergency-note svg {
  margin-top: 2px;
  flex: 0 0 auto;
}

.map-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #e3edf1;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.76) contrast(0.96);
}

.map-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 9px 13px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  font-size: 0.72rem;
  font-weight: 700;
}

/* Gallery */
.gallery-grid {
  display: grid;
  min-height: 530px;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: #e2ebef;
  border-radius: var(--radius-medium);
}

.gallery-item--wide {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-placeholder {
  display: grid;
  position: absolute;
  inset: 0;
  padding: 30px;
  color: var(--color-primary);
  place-items: center;
  text-align: center;
}

.gallery-placeholder::before,
.gallery-placeholder::after {
  position: absolute;
  content: "";
}

.gallery-placeholder::before {
  top: 12%;
  right: 10%;
  width: 140px;
  height: 140px;
  border: 1px solid rgba(18, 63, 73, 0.1);
  border-radius: 50%;
}

.gallery-placeholder::after {
  bottom: 13%;
  left: 12%;
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  transform: rotate(14deg);
}

.gallery-placeholder__content {
  position: relative;
  z-index: 1;
}

.gallery-placeholder__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 17px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  place-items: center;
}

.gallery-placeholder strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
}

.gallery-placeholder .placeholder-chip {
  max-width: 260px;
}

/* Testimonials */
.testimonials-section {
  overflow: hidden;
}

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

.testimonials-grid[data-count="2"] {
  max-width: 860px;
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card {
  position: relative;
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
}

.testimonial-card__quote-mark {
  margin-bottom: 23px;
  color: var(--color-mint);
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 0.7;
}

.testimonial-card blockquote {
  margin-bottom: 30px;
  color: #2d484c;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.45;
}

.testimonial-card footer {
  position: absolute;
  right: 40px;
  bottom: 34px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.testimonial-card footer::before {
  width: 24px;
  height: 1px;
  background: var(--color-accent);
  content: "";
}

.testimonial-card--placeholder {
  background: var(--color-surface-alt);
  border-style: solid;
  box-shadow: none;
}

.testimonial-card--placeholder blockquote {
  color: var(--color-ink-soft);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

/* Contact and footer */
.contact-strip {
  padding: clamp(68px, 8vw, 100px) 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-primary);
}

.contact-strip__heading {
  display: grid;
  margin-bottom: 42px;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.contact-strip .eyebrow {
  color: var(--color-mint);
}

.contact-strip h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.contact-strip__heading > .button {
  justify-self: end;
}

.contact-grid {
  display: grid;
  padding-top: 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-item svg {
  margin-top: 3px;
  color: var(--color-mint);
  flex: 0 0 auto;
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item strong {
  color: var(--color-white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--color-mint);
}

.site-footer {
  padding: 56px 0 28px;
  color: rgba(255, 255, 255, 0.56);
  background: #24566f;
}

.footer__top {
  display: grid;
  padding-bottom: 44px;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  gap: 50px;
}

.footer__brand .brand {
  margin-bottom: 17px;
}

.footer__brand .brand__text {
  color: var(--color-white);
}

.footer__brand p {
  max-width: 380px;
  font-size: 0.82rem;
}

.footer__column h3 {
  margin-bottom: 17px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer__links a {
  font-size: 0.8rem;
}

.footer__links a:hover {
  color: var(--color-mint);
}

.footer__bottom {
  display: flex;
  padding-top: 25px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.69rem;
  line-height: 1.5;
}

.footer__bottom p {
  max-width: 640px;
  margin-bottom: 0;
}

.footer__credit {
  display: block;
  margin-top: 6px;
}

.footer__credit a {
  color: var(--color-white);
  font-weight: 700;
}

.footer__credit a:hover {
  color: var(--color-primary-light);
}

.back-to-top {
  display: grid;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 44px;
  height: 44px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(18, 63, 73, 0.22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    background var(--transition);
}

.mobile-actions {
  display: none;
}

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

.back-to-top:hover {
  background: var(--color-accent);
}

.noscript-message {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  padding: 16px;
  color: #174c66;
  background: #e7f5fb;
  border: 1px solid #9bcde2;
  border-radius: 10px;
  text-align: center;
}

/* Scroll reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal--delay {
  transition-delay: 120ms;
}

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

@keyframes draw-ecg {
  0% {
    opacity: 0;
    stroke-dashoffset: 1750;
  }

  14% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes heartbeat-icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes portrait-arrive {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


@keyframes soft-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.14);
  }
}

/* Short laptop screens */
@media (min-width: 921px) and (max-height: 820px) {
  .hero {
    --ecg-height: 80px;
    padding-top: 28px;
  }

  .hero__grid {
    padding-block: 30px;
  }

  .hero__copy {
    padding-bottom: 20px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3.15rem, 4.4vw, 3.9rem);
    line-height: 1;
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero__phone {
    margin-top: 18px;
  }

  .hero-portrait {
    min-height: 480px;
  }

  .hero-portrait__image {
    width: min(108%, 650px);
  }

  .hero__ecg-band {
    margin-top: 6px;
  }
}

/* Tablet */
@media (max-width: 1080px) {
  .site-header__inner {
    gap: 20px;
  }

  .header-cta {
    margin-left: 4px;
  }

  .primary-nav__list {
    gap: 18px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 32px;
    padding: 40px 0;
  }

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

  .doctor-card__media {
    min-height: 330px;
  }
}

@media (max-width: 920px) {
  .hero {
    --trust-height: 184px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .header-cta {
    display: none;
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: 118px;
    right: 16px;
    left: 16px;
    z-index: 99;
    margin: 0;
    padding: 16px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity var(--transition),
      transform var(--transition);
  }

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

  .primary-nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-nav__link {
    display: block;
    padding: 12px 10px;
    font-size: 0.95rem;
  }

  .primary-nav__link::after {
    display: none;
  }

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

  .hero::after {
    bottom: 183px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 44px 0 34px;
  }

  .hero__copy {
    max-width: 760px;
    min-width: 0;
    padding-bottom: 38px;
  }

  .hero__visual {
    max-width: 660px;
    min-width: 0;
  }

  .hero-portrait {
    min-height: 570px;
  }

  .hero__trust {
    min-height: 184px;
  }

  .section-heading--split,
  .appointment__inner,
  .contact-strip__heading {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 20px;
  }

  .section-heading--split h2 {
    margin-bottom: 0;
  }

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

  .appointment__inner {
    gap: 42px;
  }

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

  .map-wrap,
  .map-wrap iframe {
    min-height: 430px;
  }

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

  .contact-strip__heading {
    gap: 28px;
  }

  .contact-strip__heading > .button {
    justify-self: start;
  }

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

/* Mobile */
@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .announcement {
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .announcement__inner {
    gap: 7px;
  }

  .topbar-item {
    gap: 5px;
    white-space: nowrap;
  }

  .topbar-item--featured {
    padding: 5px 8px;
  }

  .topbar-item:nth-child(3) {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 1.02rem;
  }

  .section {
    padding: 72px 0;
  }

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

  .section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .section-heading--split h2 {
    margin-bottom: 0;
  }

  .hero {
    padding-top: 0;
  }

  .hero__grid {
    padding: 30px 0 26px;
  }

  .hero__copy {
    display: contents;
  }

  #hero-location {
    order: 1;
  }

  .hero__visual {
    order: 3;
  }

  .hero__content {
    order: 2;
    padding-top: 0;
  }

  .hero__location-lockup {
    width: 100%;
    max-width: none;
    margin-bottom: 12px;
  }

  .hero__quick-facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .hero-fact {
    min-height: 74px;
    padding: 10px;
  }

  .hero-fact__icon {
    width: 32px;
    height: 32px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero-portrait {
    min-height: 430px;
  }

  .hero-portrait__image {
    width: min(118%, 560px);
  }

  .hero-portrait__badge {
    right: 0;
    bottom: 62px;
    max-width: 180px;
    font-size: 0.65rem;
  }

  .hero-portrait__caption {
    bottom: 15px;
    max-width: 92%;
  }

  .hero::after {
    bottom: 324px;
  }

  .hero__ecg-band {
    margin-top: 18px;
  }

  .hero__trust {
    min-height: 325px;
    padding: 30px 0;
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child {
    padding: 22px 0;
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .trust-item__label {
    max-width: none;
  }

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

  .doctor-card__media {
    min-height: 360px;
  }

  .recognition {
    padding: 28px;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .recognition__seal {
    width: 62px;
    height: 62px;
  }

  .service-card {
    min-height: 230px;
  }

  .insurance-note {
    padding: 24px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .insurance-note__content {
    width: calc(100% - 70px);
  }

  .insurance-note .text-link {
    margin-left: 66px;
  }

  .appointment__inner {
    width: 100%;
    padding: 58px 26px;
    border-radius: 0;
  }

  .appointment h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .location-card {
    padding: 28px 24px;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hours-list time {
    text-align: left;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 380px;
  }

  .gallery-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item,
  .gallery-item--wide {
    min-height: 340px;
    grid-row: auto;
  }

  .testimonial-card {
    min-height: 290px;
  }

  .testimonials-grid[data-count="2"] {
    grid-template-columns: 1fr;
  }

  .testimonial-card footer {
    right: 28px;
    bottom: 28px;
    left: 28px;
  }

  .contact-grid,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 28px;
  }

  .footer__top {
    gap: 34px;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    padding-bottom: calc(98px + env(safe-area-inset-bottom));
  }

  .mobile-actions {
    display: grid;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.94);
    border-top: 1px solid rgba(18, 63, 73, 0.12);
    box-shadow: 0 -10px 32px rgba(18, 63, 73, 0.1);
    backdrop-filter: blur(16px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mobile-actions__link {
    display: inline-flex;
    min-height: 48px;
    padding: 10px 14px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-primary);
    background: var(--color-surface-alt);
    border: 1px solid var(--color-line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-actions__link--primary {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
  }

  .back-to-top {
    right: 14px;
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

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

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

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


/* Bilingual doctor portfolio and refined hero utilities */
.hero-portrait__tools {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-tool {
  display: grid;
  position: absolute;
  width: 50px;
  height: 50px;
  color: var(--color-primary-light);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(21, 127, 172, 0.16);
  border-radius: 15px;
  box-shadow: 0 12px 28px rgba(8, 59, 85, 0.12);
  place-items: center;
  backdrop-filter: blur(10px);
}

.hero-tool::after {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: rgba(43, 102, 131, 0.3);
  content: "";
}

.hero-tool .icon {
  width: 23px;
  height: 23px;
}

.hero-tool--stethoscope {
  top: 32%;
  left: 1%;
}

.hero-tool--stethoscope::after {
  right: -24px;
}

.hero-tool--syringe {
  top: 20%;
  right: 1%;
}

.hero-tool--syringe::after {
  left: -24px;
  transform: rotate(180deg);
}

.hero-tool--syringe .icon {
  transform: rotate(-8deg);
}

.section--doctors .section-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.doctor-heading__copy {
  max-width: 760px;
}

.language-switcher {
  display: inline-grid;
  padding: 5px;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  background: #eaf3f6;
  border: 1px solid rgba(18, 111, 153, 0.13);
  border-radius: 999px;
  box-shadow: inset 0 1px 3px rgba(8, 59, 85, 0.06);
  flex: 0 0 auto;
}

.language-switcher button {
  min-height: 40px;
  padding: 8px 17px;
  color: var(--color-ink-soft);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.language-switcher button:last-child {
  font-family: var(--font-bangla);
}

.language-switcher button:hover {
  color: var(--color-primary);
}

.language-switcher button.is-active {
  color: var(--color-white);
  background: var(--color-primary);
  box-shadow: 0 7px 18px rgba(8, 59, 85, 0.18);
}

.doctors-grid[lang="bn"] .doctor-card__body,
.doctors-grid[lang="bn"] .doctor-card h3,
.doctors-grid[lang="bn"] .doctor-card__specialty {
  font-family: var(--font-bangla);
}

.doctors-grid[lang="bn"] .doctor-card__specialty {
  letter-spacing: 0.02em;
  text-transform: none;
}

.portfolio-location {
  display: grid;
  min-width: min(100%, 285px);
  margin-left: auto;
  padding: 12px 14px;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 10px;
  color: var(--color-primary);
  background: rgba(232, 246, 250, 0.78);
  border: 1px solid rgba(18, 111, 153, 0.14);
  border-radius: 15px;
}

.portfolio-location__icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  background: var(--color-primary-light);
  border-radius: 11px;
  place-items: center;
}

.portfolio-location small,
.portfolio-location strong {
  display: block;
}

.portfolio-location small {
  margin-bottom: 2px;
  color: var(--color-ink-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-location strong {
  font-size: 0.82rem;
}

.announcement {
  padding-block: 6px;
  background: var(--color-primary);
}

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

.topbar-item,
.topbar-item--featured {
  min-height: 34px;
  padding: 5px 12px;
  justify-content: center;
  color: rgba(240, 250, 253, 0.9);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
}

.topbar-item + .topbar-item {
  border-left-color: rgba(210, 239, 248, 0.16);
  border-radius: 0;
}

.topbar-item--featured {
  color: var(--color-white);
  background: rgba(89, 190, 225, 0.15);
  border-color: rgba(174, 228, 247, 0.26);
  border-radius: 999px;
}

.topbar-item .icon {
  display: block;
  width: 15px;
  height: 15px;
  color: #8edaf0;
  opacity: 1;
}

@media (max-width: 920px) {
  .section--doctors .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .portfolio-location {
    margin: 16px 0 0;
  }
}

@media (max-width: 680px) {

  .language-switcher {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .topbar-item,
  .topbar-item--featured {
    min-width: 0;
    padding-inline: 7px;
  }

  .topbar-item:nth-child(2) {
    border-left-color: rgba(210, 239, 248, 0.16);
  }
}


@media (min-width: 921px) {
  .recognition {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }
}


.section--doctors.is-bangla .doctor-heading__copy,
.section--doctors.is-bangla .recognition,
.section--doctors.is-bangla .portfolio-location {
  font-family: var(--font-bangla);
}

.section--doctors.is-bangla .recognition__label,
.section--doctors.is-bangla .portfolio-location small {
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Maximum-priority responsive refinement */
.language-switcher button:last-child {
  font-weight: 700;
}

.doctors-grid[lang="bn"] .doctor-card__media {
  font-family: var(--font-bangla);
}

.section--doctors.is-bangla .portfolio-location small {
  font-weight: 700;
}


.hero {
  background: #f2f6f8;
}

.topbar-label--short {
  display: none;
}

.hero-tool {
  box-shadow:
    0 12px 28px rgba(8, 59, 85, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.section--doctors.is-bangla .doctor-heading__copy h2,
.section--doctors.is-bangla .recognition h3 {
  font-family: var(--font-bangla);
}

.section--doctors.is-bangla .doctor-heading__copy h2 {
  line-height: 1.28;
}

.section--doctors.is-bangla .doctor-card__bio,
.section--doctors.is-bangla .credential-list li,
.section--doctors.is-bangla .doctor-meta-row,
.section--doctors.is-bangla .recognition p {
  line-height: 1.7;
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .announcement {
    min-height: 44px;
    padding: 5px 0;
    font-size: 0.61rem;
    letter-spacing: 0.025em;
  }

  .announcement__inner {
    width: calc(100% - 16px);
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 4px;
  }

  .topbar-item,
  .topbar-item--featured {
    min-width: 0;
    min-height: 34px;
    padding: 5px 9px;
    gap: 5px;
    line-height: 1.1;
    white-space: normal;
  }

  .topbar-item--featured {
    white-space: nowrap;
  }

  .topbar-item + .topbar-item {
    border-left-color: rgba(210, 239, 248, 0.16);
  }

  .topbar-item .icon {
    width: 14px;
    height: 14px;
  }

  .topbar-item:nth-child(2) .topbar-label--full {
    display: none;
  }

  .topbar-item:nth-child(2) .topbar-label--short {
    display: inline;
  }

  .site-header__inner {
    min-height: 66px;
  }

  .primary-nav {
    top: 110px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text {
    font-size: 1rem;
  }

  .hero {
    padding-top: 0;
  }

  .hero__grid {
    min-height: 0;
    padding: 20px 0 12px;
  }

  .hero__location-lockup {
    margin-bottom: 9px;
    padding: 10px 11px 10px 10px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0 10px;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(8, 59, 85, 0.08);
  }

  .hero__location-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero__location-icon .icon {
    width: 20px;
    height: 20px;
  }

  .hero__location-label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .hero__location-city {
    min-width: 0;
    font-size: clamp(1.23rem, 5.8vw, 1.46rem);
    line-height: 1.13;
    white-space: normal;
  }

  .hero__location-country {
    padding: 3px 7px;
    font-size: 0.56rem;
  }

  .hero__hours-panel {
    padding: 16px;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(8, 59, 85, 0.16);
  }

  .hero__hours-heading {
    gap: 10px;
  }

  .hero__hours-heading > span:last-child {
    min-width: 0;
  }

  .hero__hours-heading small {
    margin-bottom: 2px;
    font-size: 0.61rem;
    letter-spacing: 0.1em;
  }

  .hero__hours-heading strong {
    font-size: clamp(1.14rem, 5.4vw, 1.3rem);
    line-height: 1.16;
  }

  .hero__hours-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero__hours-icon .icon {
    width: 19px;
    height: 19px;
  }

  .hero__quick-facts {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-fact {
    min-height: 58px;
    padding: 9px 10px;
    gap: 9px;
    border-radius: 11px;
  }

  .hero-fact__icon {
    width: 30px;
    height: 30px;
  }

  .hero-fact small {
    font-size: 0.6rem;
  }

  .hero-fact strong {
    font-size: clamp(0.7rem, 3.15vw, 0.8rem);
    line-height: 1.3;
  }

  .hero__visual {
    width: 100%;
    overflow: hidden;
    overflow: clip;
  }

  .hero-portrait {
    width: 100%;
    height: clamp(300px, 86vw, 365px);
    min-height: 0;
  }

  .hero-portrait::before {
    inset: 3% -5% 0 3%;
    background: #dceaf0;
  }

  .hero-portrait::after {
    inset: 6% 4% 8% 20%;
  }

  .hero-portrait__image {
    width: min(114%, 520px);
  }

  .hero-tool {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .hero-tool .icon {
    width: 21px;
    height: 21px;
  }

  .hero-tool::after {
    width: 19px;
  }

  .hero-tool--stethoscope {
    top: 33%;
    left: 4px;
  }

  .hero-tool--stethoscope::after {
    right: -19px;
  }

  .hero-tool--syringe {
    top: 21%;
    right: 4px;
  }

  .hero-tool--syringe::after {
    left: -19px;
  }

  .hero-portrait__badge {
    right: 2px;
    bottom: 50px;
    max-width: 176px;
    padding: 9px 11px;
    gap: 8px;
    font-size: 0.62rem;
  }

  .hero-portrait__caption {
    bottom: 9px;
    max-width: 90%;
    padding: 6px 9px;
    font-size: 0.59rem;
  }

  .section--doctors {
    padding: 56px 0;
  }

  .section--doctors .section-heading {
    margin-bottom: 28px;
    gap: 18px;
  }

  .section--doctors .section-heading h2 {
    margin-bottom: 13px;
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .section--doctors .section-heading p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .language-switcher {
    width: 100%;
    padding: 4px;
  }

  .language-switcher button {
    min-height: 42px;
    padding: 8px 14px;
  }

  .doctor-card {
    border-radius: 18px;
  }

  .doctor-card__media {
    height: clamp(245px, 72vw, 310px);
    min-height: 0;
    padding: 18px;
  }

  .doctor-card__media img {
    width: min(100%, 274px);
    border-width: 4px;
    border-radius: 20px;
  }

  .doctor-card__body {
    padding: 22px 20px;
  }

  .doctor-card__specialty {
    margin-bottom: 7px;
    font-size: 0.68rem;
  }

  .doctor-card h3 {
    font-size: clamp(1.55rem, 7.6vw, 2rem);
  }

  .doctor-card__experience {
    margin-bottom: 15px;
  }

  .doctor-card__bio {
    margin-bottom: 18px;
    font-size: 0.88rem;
  }

  .credential-list {
    margin-bottom: 18px;
    gap: 8px;
  }

  .credential-list li {
    font-size: 0.79rem;
  }

  .doctor-card__meta {
    padding-top: 18px;
    gap: 10px;
  }

  .recognition {
    margin-top: 26px;
    padding: 22px 20px;
    gap: 18px;
    border-radius: 18px;
  }

  .recognition__seal {
    width: 52px;
    height: 52px;
  }

  .recognition h3 {
    font-size: 1.4rem;
  }

  .recognition p {
    font-size: 0.86rem;
  }

  .portfolio-location {
    width: 100%;
    min-width: 0;
    margin: 0;
  }

  .section.appointment {
    padding: 56px 0;
  }

  .appointment__inner {
    min-width: 0;
    padding: 42px 20px;
    gap: 30px;
    border-radius: 20px;
  }

  .appointment__copy,
  .appointment__options,
  .phone-option {
    min-width: 0;
  }

  .appointment h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
  }

  .phone-option {
    padding: 15px 14px;
    gap: 11px;
  }

  .phone-option__icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
  }

  .phone-option strong {
    font-size: clamp(0.92rem, 4.5vw, 1.06rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .announcement {
    font-size: 0.58rem;
  }

  .topbar-item,
  .topbar-item--featured {
    padding-inline: 7px;
  }

  .brand__text {
    font-size: 0.96rem;
  }

  .hero__location-lockup {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 0 8px;
  }

  .hero__location-icon {
    width: 42px;
    height: 42px;
  }

  .hero__location-city {
    font-size: clamp(1.18rem, 5.8vw, 1.36rem);
  }

  .hero-portrait__image {
    width: min(116%, 520px);
  }
}

/* Flat clinical surface refinement */
.announcement {
  background: var(--color-primary);
}

.topbar-item,
.topbar-item--featured {
  border-radius: 8px;
}

.topbar-item--featured {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.topbar-item .icon {
  color: #c6e1eb;
}

.hero__location-lockup {
  background: var(--color-white);
  border-color: #cddde5;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(24, 56, 74, 0.08);
}

.hero__location-lockup:hover {
  box-shadow: 0 10px 26px rgba(24, 56, 74, 0.1);
  transform: none;
}

.hero__location-icon {
  background: var(--color-primary);
  box-shadow: none;
}

.hero__hours-panel {
  background: var(--color-primary);
  border-color: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(24, 56, 74, 0.14);
}

.hero__hours-icon,
.hero-fact,
.hero-fact__icon {
  box-shadow: none;
}

.hero-fact {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-portrait::before {
  inset: 8% 4% 0 8%;
  background: #dceaf0;
  border: 1px solid #c7dce5;
  border-radius: 48% 48% 20px 20px;
}

.hero-tool {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.94);
  border-color: #c8dce5;
  box-shadow: 0 8px 20px rgba(24, 56, 74, 0.1);
}

.hero-tool::after {
  display: none;
  content: none;
}

.doctor-card__media {
  background: #e3eef3;
}

.service-card:nth-child(3n + 2) .service-card__icon {
  color: var(--color-primary-light);
}

.testimonial-card footer::before {
  display: none;
  content: none;
}

.testimonial-card footer {
  gap: 0;
}

.appointment__inner,
.contact-strip {
  background: var(--color-primary);
}

.site-footer {
  background: #24566f;
}

@media (max-width: 680px) {
  .topbar-item,
  .topbar-item--featured {
    border-radius: 7px;
  }

  .hero__location-lockup {
    border-radius: 13px;
  }

  .hero__hours-panel {
    border-radius: 15px;
  }

  .hero-portrait::before {
    inset: 8% 3% 0 7%;
    background: #dceaf0;
    border-radius: 46% 46% 16px 16px;
  }
}

/* Unified practice summary */
.site-header {
  background: var(--color-white);
  backdrop-filter: none;
}

.topbar-item,
.topbar-item--featured,
.topbar-item + .topbar-item {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}

.topbar-item--featured {
  color: var(--color-white);
  font-weight: 800;
}

.hero__grid {
  min-height: 590px;
  padding: 40px 0;
}

.hero__copy {
  max-width: 650px;
  padding: 0;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid #235a75;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(24, 56, 74, 0.14);
}

.hero__location-lockup {
  margin: 0;
  padding: 22px 24px;
  color: var(--color-white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero__location-lockup:hover {
  box-shadow: none;
  transform: none;
}

.hero__location-icon {
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: none;
}

.hero__location-label {
  color: rgba(230, 245, 250, 0.78);
}

.hero__location-city {
  color: var(--color-white);
}

.hero__location-country {
  padding: 0;
  color: rgba(230, 245, 250, 0.8);
  background: transparent;
  border-radius: 0;
  font-style: normal;
}

.hero__content {
  max-width: none;
}

.hero__hours-panel {
  padding: 22px 24px 24px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero__quick-facts {
  margin-top: 18px;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-fact {
  min-height: 0;
  padding: 13px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hero-fact + .hero-fact {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.hero-fact__icon {
  background: rgba(255, 255, 255, 0.11);
}

.hero-portrait {
  min-height: 520px;
}

.hero-portrait__badge {
  border-radius: 12px;
}

.hero-portrait__badge .icon {
  animation: none;
}

.hero-portrait__caption {
  border-radius: 10px;
  backdrop-filter: none;
}

.hero-tool--stethoscope {
  left: 5%;
}

.hero-tool--syringe {
  right: 5%;
}

@media (max-width: 920px) {
  .hero__grid {
    min-height: 0;
  }

  .hero__copy {
    width: 100%;
    max-width: 680px;
  }

  .hero-portrait {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  .hero__grid {
    min-height: 0;
    padding: 18px 0 12px;
    gap: 10px;
  }

  .hero__copy {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0;
    border-radius: 17px;
    box-shadow: 0 12px 28px rgba(24, 56, 74, 0.13);
  }

  .hero__location-lockup {
    margin: 0;
    padding: 15px 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__location-icon {
    width: 42px;
    height: 42px;
  }

  .hero__hours-panel {
    padding: 16px;
    border-radius: 0;
    box-shadow: none;
  }

  .hero__quick-facts {
    margin-top: 14px;
    gap: 0;
  }

  .hero-fact {
    min-height: 0;
    padding: 11px 0;
    border-radius: 0;
  }

  .hero__visual {
    order: 3;
  }

  .hero-portrait {
    height: clamp(295px, 84vw, 350px);
    min-height: 0;
  }

  .hero-tool--stethoscope {
    top: 34%;
    left: 6px;
  }

  .hero-tool--syringe {
    top: 21%;
    right: 6px;
  }
}

/* Mobile navigation viewport anchoring */
@media (max-width: 920px) {
  .primary-nav {
    position: fixed;
    top: 133px;
  }

  .site-header.is-scrolled .primary-nav {
    top: 87px;
  }
}

@media (max-width: 680px) {
  .primary-nav {
    top: 119px;
  }

  .site-header.is-scrolled .primary-nav {
    top: 75px;
  }
}

/* Media spotlight */
.media-spotlight {
  background: var(--color-white);
  border-top: 1px solid var(--color-line);
}

.media-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 20px;
  align-items: stretch;
}

.media-feature {
  min-width: 0;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.media-feature--video {
  display: grid;
  grid-template-rows: auto 1fr;
}

.media-feature__video {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #dfeaf0;
  aspect-ratio: 16 / 9;
}

.media-feature__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.media-feature__video:hover img {
  transform: scale(1.015);
}

.media-feature__play {
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58px;
  height: 58px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(24, 56, 74, 0.2);
  place-items: center;
  transform: translate(-50%, -50%);
}

.media-feature__play .icon {
  width: 25px;
  height: 25px;
  margin-left: 2px;
}

.media-feature__body {
  padding: 26px 28px 28px;
}

.media-feature__body--article {
  display: flex;
  height: 100%;
  padding: clamp(30px, 4vw, 46px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.media-feature__source {
  margin-bottom: 12px;
  color: var(--color-primary-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.media-feature__publisher-logo {
  width: min(190px, 60%);
  height: auto;
  margin-bottom: 22px;
}

.media-feature__meta {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--color-ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
}

.media-feature h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
  font-family: var(--font-bangla);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.media-feature__summary {
  margin-bottom: 24px;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.media-feature__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.media-feature__link:hover {
  color: var(--color-primary-light);
}

.media-feature__link--button {
  padding: 11px 16px;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 10px;
}

.media-feature__link--button:hover {
  color: var(--color-white);
  background: #235a75;
  border-color: #235a75;
}

@media (max-width: 920px) {
  .media-spotlight__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .media-feature__body--article {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .media-spotlight {
    padding: 56px 0;
  }

  .media-spotlight__grid {
    gap: 16px;
  }

  .media-feature {
    border-radius: 16px;
  }

  .media-feature__body,
  .media-feature__body--article {
    min-height: 0;
    padding: 20px;
  }

  .media-feature__publisher-logo {
    width: min(160px, 56%);
    margin-bottom: 22px;
  }

  .media-feature h3 {
    font-size: clamp(1.3rem, 6.7vw, 1.6rem);
  }
}

@media (max-width: 480px) {
  .media-feature__link--button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* Appointment app guide */
.appointment {
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--color-surface-alt);
}

.appointment__inner {
  display: block;
  width: min(calc(100% - 28px), var(--container));
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.appointment__inner::before {
  display: none;
}

.appointment__heading {
  max-width: 760px;
  margin-bottom: clamp(30px, 5vw, 48px);
}

.appointment .eyebrow {
  color: var(--color-primary);
}

.appointment h2 {
  margin-bottom: 16px;
  color: var(--color-ink);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
}

.appointment__heading > p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
}

.appointment-app {
  display: grid;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 22px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}

.appointment-app__guide {
  min-width: 0;
  padding: clamp(24px, 4vw, 42px);
}

.app-identity {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  gap: 15px;
}

.app-identity > img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: 15px;
  box-shadow: 0 8px 22px rgba(24, 56, 74, 0.1);
}

.app-identity span,
.app-preview figcaption span,
.appointment-call > div > span {
  display: block;
  margin-bottom: 2px;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.app-identity h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.55rem;
}

.app-identity p {
  margin: 1px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.84rem;
}

.appointment-steps {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.appointment-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
}

.appointment-step__number {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 11px;
  font-size: 0.85rem;
  font-weight: 800;
  place-items: center;
}

.appointment-step h4 {
  margin: 0 0 3px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
}

.appointment-step p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

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

.app-download-card {
  display: grid;
  min-width: 0;
  padding: 13px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.app-download-card__qr {
  display: block;
  width: 96px;
  height: 96px;
  padding: 5px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 9px;
}

.app-download-card__content {
  min-width: 0;
}

.app-download-card__content > span {
  display: block;
  margin-bottom: 7px;
  color: var(--color-ink-soft);
  font-size: 0.7rem;
  font-weight: 700;
}

.app-store-link {
  display: flex;
  min-height: 44px;
  padding: 9px 10px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 9px;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  transition: background var(--transition), transform var(--transition);
}

.app-store-link:hover {
  color: var(--color-white);
  background: #24566f;
  transform: translateY(-1px);
}

.app-store-link strong {
  font-size: 0.72rem;
  line-height: 1.25;
}

.app-download-card small {
  display: block;
  margin-top: 6px;
  color: var(--color-ink-soft);
  font-size: 0.61rem;
  line-height: 1.35;
}

.app-preview {
  display: flex;
  min-width: 0;
  margin: 0;
  padding: clamp(26px, 4vw, 42px) 24px;
  color: var(--color-white);
  background: var(--color-primary);
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.app-preview figcaption {
  width: min(100%, 270px);
  margin-bottom: 20px;
}

.app-preview figcaption span {
  color: #cde2eb;
}

.app-preview figcaption strong {
  display: block;
  color: var(--color-white);
  font-size: 1rem;
}

.app-phone {
  position: relative;
  width: min(220px, 78%);
  padding: 18px 9px 10px;
  overflow: hidden;
  background: #173f54;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 30px;
  box-shadow: 0 18px 34px rgba(18, 51, 68, 0.24);
}

.app-phone__speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  transform: translateX(-50%);
}

.app-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 19px;
}

.app-preview > p {
  max-width: 270px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

.appointment-call {
  display: grid;
  margin-top: 18px;
  padding: 22px;
  background: var(--color-mint-soft);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 22px;
}

.appointment-call h3 {
  margin: 0 0 4px;
  color: var(--color-ink);
  font-size: 1.35rem;
}

.appointment-call p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.83rem;
}

.appointment__options {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.phone-option {
  display: flex;
  min-width: 0;
  padding: 12px 13px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}

.phone-option:hover {
  background: var(--color-white);
  border-color: var(--color-primary-light);
  transform: translateY(-1px);
}

.phone-option__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  border-radius: 9px;
  place-items: center;
}

.phone-option .phone-option__text,
.phone-option .phone-option__text > span {
  display: block;
  min-width: 0;
  color: var(--color-ink-soft);
  font-size: 0.64rem;
  line-height: 1.3;
}

.phone-option .phone-option__text strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.84rem;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .appointment-app {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 0.72fr);
  }

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

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

@media (max-width: 760px) {
  .appointment-app {
    grid-template-columns: minmax(0, 1fr);
  }

  .app-preview {
    padding: 32px 20px;
  }

  .app-phone {
    width: min(218px, 72%);
  }
}

@media (max-width: 680px) {
  .section.appointment {
    padding: 56px 0;
  }

  .appointment__inner {
    width: calc(100% - 28px);
    padding: 22px 18px;
    border-radius: 20px;
  }

  .appointment__heading {
    margin-bottom: 26px;
  }

  .appointment h2 {
    font-size: clamp(2rem, 9.4vw, 2.8rem);
  }

  .appointment__heading > p {
    font-size: 0.93rem;
  }

  .appointment-app {
    border-radius: 17px;
  }

  .appointment-app__guide {
    padding: 22px 17px;
  }

  .app-identity {
    margin-bottom: 24px;
  }

  .app-identity > img {
    width: 56px;
    height: 56px;
    border-radius: 13px;
  }

  .app-identity h3 {
    font-size: 1.35rem;
  }

  .appointment-steps {
    margin-bottom: 24px;
    gap: 17px;
  }

  .appointment-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
  }

  .appointment-step__number {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .app-download-card {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .app-download-card__qr {
    width: 88px;
    height: 88px;
  }

  .app-preview {
    padding: 28px 18px 30px;
  }

  .app-phone {
    width: min(210px, 76%);
  }

  .appointment-call {
    margin-top: 14px;
    padding: 18px 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

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

  .phone-option {
    padding: 12px;
  }

  .phone-option .phone-option__text strong {
    font-size: 0.92rem;
  }
}


/* About the practice and completed clinic gallery */
.about-section {
  background: var(--color-surface-alt);
}

.about-practice {
  display: grid;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.about-practice__media {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: var(--color-accent-soft);
}

.about-practice__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.about-practice__media figcaption {
  display: flex;
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 13px 15px;
  color: var(--color-white);
  background: rgba(36, 86, 111, 0.94);
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.about-practice__copy {
  display: flex;
  min-width: 0;
  padding: clamp(34px, 5vw, 64px);
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.about-practice__copy h2 {
  max-width: 700px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.about-practice__copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 1rem;
}

.about-highlights {
  display: grid;
  width: 100%;
  margin: 30px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-highlight {
  min-width: 0;
  padding: 18px 14px;
}

.about-highlight + .about-highlight {
  border-left: 1px solid var(--color-line);
}

.about-highlight strong,
.about-highlight span {
  display: block;
}

.about-highlight strong {
  margin-bottom: 3px;
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-highlight span {
  color: var(--color-ink-soft);
  font-size: 0.7rem;
  line-height: 1.45;
}

.about-info-grid {
  display: grid;
  margin-top: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-info-card {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 16px;
}

.about-info-card__icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 19px;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  border-radius: 11px;
  place-items: center;
}

.about-info-card h3 {
  margin-bottom: 8px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
}

.about-info-card p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.insurance-note {
  display: block;
  padding: 0;
  overflow: hidden;
}

.insurance-note__summary {
  display: flex;
  padding: 24px 28px;
  align-items: center;
  gap: 18px;
}

.insurance-plans {
  border-top: 1px solid #d2e1e8;
}

.insurance-plans ul {
  display: grid;
  margin: 0;
  padding: 22px 28px 26px;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 18px;
}

.insurance-plans li {
  display: flex;
  min-width: 0;
  color: var(--color-ink-soft);
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
}

.insurance-plans li .icon {
  flex: 0 0 auto;
  color: var(--color-primary);
}

.gallery-grid {
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(310px, 36vw));
}

.gallery-item,
.gallery-item--wide {
  min-height: 310px;
  grid-row: auto;
}

.gallery-item figcaption {
  display: flex;
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 15px;
  color: var(--color-white);
  background: rgba(36, 86, 111, 0.94);
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gallery-item figcaption strong,
.gallery-item figcaption span {
  display: block;
}

.gallery-item figcaption strong {
  font-size: 0.78rem;
}

.gallery-item figcaption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
  text-align: right;
}

@media (max-width: 920px) {
  .about-practice {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  }

  .about-practice__media {
    min-height: 520px;
  }

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

  .about-highlight + .about-highlight {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }

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

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

@media (max-width: 680px) {
  .about-practice {
    border-radius: 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  .about-practice__media {
    min-height: 0;
    aspect-ratio: 4 / 4.4;
  }

  .about-practice__copy {
    padding: 28px 20px 30px;
  }

  .about-practice__copy h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .about-practice__copy > p {
    font-size: 0.91rem;
  }

  .about-highlights {
    margin: 24px 0;
  }

  .about-highlight {
    padding: 13px 4px;
  }

  .about-info-grid {
    gap: 12px;
  }

  .about-info-card {
    padding: 21px 19px;
  }

  .insurance-note__summary {
    padding: 21px 18px;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .insurance-note__summary .text-link {
    width: 100%;
    margin-left: 64px;
  }

  .insurance-plans ul {
    padding: 19px 18px 22px;
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
  }

  .gallery-item,
  .gallery-item--wide {
    min-height: 0;
    aspect-ratio: 4 / 4.5;
  }

  .gallery-item figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px 12px;
  }
}


/* Current-site theme alignment and simple hero */
.eyebrow::before { display: none !important; }
.eyebrow { gap: 0; color: #0c71c3; letter-spacing: .11em; }
.announcement { min-height: 42px; padding-block: 6px; background: #2ea3f2; }
.announcement__inner { min-height: 30px; }
.topbar-item:not(.topbar-item--featured), .topbar-item--featured { color: #fff; }
.topbar-item--featured { background: rgba(10,71,170,.18); border-color: rgba(255,255,255,.42); box-shadow: none; }
.topbar-item .icon { color: #fff; opacity: 1; }

.site-header { background: rgba(255,255,255,.97); border-bottom-color: #e7edf2; backdrop-filter: blur(12px); }
.site-header.is-scrolled { border-color: #d7e3ec; box-shadow: 0 8px 24px rgba(12,73,128,.08); }
.site-header__inner { min-height: 92px; gap: clamp(20px,2.2vw,34px); }
.brand { flex: 0 0 auto; }
.brand__logo { display: block; width: clamp(235px,20vw,292px); height: auto; }
.primary-nav__list { gap: clamp(15px,1.6vw,25px); }
.primary-nav__link { color: #1d3449; font-size: .82rem; font-weight: 700; }
.primary-nav__link::after { bottom: -10px; height: 3px; background: #2ea3f2; }
.primary-nav__link:hover, .primary-nav__link.is-active { color: #0a47aa; }
.header-cta { margin-left: 4px; color: #fff; background: #0c71c3; border-color: #0c71c3; box-shadow: 0 7px 18px rgba(12,113,195,.16); }
.header-cta:hover { color: #fff; background: #0a47aa; border-color: #0a47aa; }

/* Source-inspired hero: physicians and location remain the only focus. */
.hero {
  min-height: 0;
  padding: 0;
  background-color: #f4ede5;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 0;
}
.hero__grid {
  min-height: 500px;
  padding: 34px 0 0;
  grid-template-columns: minmax(350px,.78fr) minmax(540px,1.22fr);
  gap: clamp(20px,3.2vw,50px);
  align-items: end;
}
.hero__copy {
  align-self: center;
  max-width: 510px;
  padding: 0 0 44px;
  color: #111;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  animation: hero-copy-arrive 760ms cubic-bezier(.22,1,.36,1) both;
}
.hero__kicker {
  display: inline-flex;
  margin-bottom: 15px;
  color: #0c71c3;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 510px;
  margin: 0 0 20px;
  color: #101010;
  font-size: clamp(3.2rem,4.3vw,4.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero__location-line {
  display: inline-flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: #101010;
  font-size: clamp(1.08rem,1.6vw,1.42rem);
  font-weight: 600;
  line-height: 1.3;
}
.hero__location-line .icon { width: 21px; height: 21px; color: #0c71c3; }
.hero__visual { display: flex; min-width: 0; overflow: visible; align-self: end; justify-content: center; border-radius: 0; }
.hero-portrait { width: 100%; min-height: 466px; overflow: visible; align-items: flex-end; border: 0; border-radius: 0; }
.hero-portrait::before, .hero-portrait::after { display: none; content: none; }
.hero-portrait__image {
  display: block;
  width: min(100%,760px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 18px rgba(55,68,79,.1));
  animation: hero-portrait-arrive 900ms cubic-bezier(.22,1,.36,1) 100ms both;
}
@keyframes hero-copy-arrive {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-portrait-arrive {
  from { opacity: 0; transform: translate3d(30px,14px,0) scale(.985); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}

/* Office details immediately follow the hero. */
.office-overview { padding: clamp(64px,7vw,92px) 0; background: #fff; }
.office-overview__heading { max-width: 720px; margin: 0 auto clamp(30px,4vw,44px); text-align: center; }
.office-overview__heading .eyebrow { margin-bottom: 10px; }
.office-overview__heading h2 { margin-bottom: 12px; color: #17324d; font-size: clamp(2.25rem,4vw,3.45rem); }
.office-overview__heading p { margin: 0; color: var(--color-ink-soft); }
.office-overview__grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.office-detail-card {
  display: flex;
  min-width: 0;
  min-height: 330px;
  padding: clamp(24px,3vw,32px);
  background: #fff;
  border: 1px solid #d7e3ec;
  border-top: 4px solid #2ea3f2;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(12,73,128,.08);
  flex-direction: column;
}
.office-detail-card--location { color: rgba(255,255,255,.82); background: #0c71c3; border-color: #0c71c3; border-top-color: #2ea3f2; }
.office-detail-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: #0c71c3;
  background: #eaf6fd;
  border-radius: 12px;
  place-items: center;
}
.office-detail-card--location .office-detail-card__icon { color: #fff; background: rgba(255,255,255,.16); }
.office-detail-card__icon .icon { width: 23px; height: 23px; }
.office-detail-card__label {
  margin: 0 0 7px;
  color: #0c71c3;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}
.office-detail-card--location .office-detail-card__label { color: #bfe6ff; }
.office-detail-card h3 { margin: 0 0 13px; color: #17324d; font-size: clamp(1.3rem,2vw,1.65rem); line-height: 1.2; }
.office-detail-card--location h3 { color: #fff; }
.office-detail-card > p:not(.office-detail-card__label) { margin: 0 0 18px; color: var(--color-ink-soft); font-size: .88rem; }
.office-detail-card--location > p:not(.office-detail-card__label) { color: rgba(255,255,255,.78); }
.office-detail-card > a {
  display: inline-flex;
  min-height: 44px;
  margin-top: auto;
  align-items: center;
  gap: 7px;
  color: #0c71c3;
  font-size: .83rem;
  font-weight: 800;
}
.office-detail-card--location > a { color: #fff; }
.office-hours-list, .office-contact-list { display: grid; margin-bottom: 18px; gap: 9px; }
.office-hours-list > div { padding: 10px 12px; background: #f4f9fc; border-radius: 9px; }
.office-hours-list span, .office-hours-list strong { display: block; }
.office-hours-list span { margin-bottom: 1px; color: #6e8191; font-size: .67rem; font-weight: 700; }
.office-hours-list strong { color: #17324d; font-size: .77rem; line-height: 1.4; }
.office-contact-list a { display: flex; min-height: 35px; color: #17324d; font-size: .85rem; font-weight: 700; align-items: center; }
.office-contact-list a:hover, .office-detail-card > a:hover { color: #0a47aa; }

/* Appointment guide aligned to the clinic blue identity. */
.appointment { padding: clamp(72px,8vw,104px) 0; background: #eef8fd; }
.appointment__inner {
  display: block;
  width: min(100%,var(--container));
  padding: clamp(28px,5vw,56px);
  color: #17324d;
  background: #fff;
  border: 1px solid #cfe2ef;
  border-top: 5px solid #2ea3f2;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(12,73,128,.11);
}
.appointment__inner::before { display: none; }
.appointment__heading { max-width: 760px; margin-bottom: clamp(30px,5vw,46px); }
.appointment .eyebrow { color: #0c71c3; }
.appointment h2 { margin-bottom: 14px; color: #17324d; font-size: clamp(2.35rem,4.6vw,3.8rem); }
.appointment__heading > p { margin: 0; color: var(--color-ink-soft); }
.appointment-app { overflow: hidden; background: #fff; border-color: #cfe2ef; border-radius: 16px; box-shadow: 0 10px 28px rgba(12,73,128,.06); }
.appointment-app__guide { padding: clamp(24px,4vw,40px); }
.app-identity > img { border-color: #cfe2ef; border-radius: 13px; }
.app-identity span, .app-preview figcaption span, .appointment-call > div > span { color: #0c71c3; }
.app-identity h3, .appointment-step h4, .appointment-call h3 { color: #17324d; }
.app-identity p, .appointment-step p, .appointment-call p, .app-download-card small { color: var(--color-ink-soft); }
.appointment-step__number { background: #0c71c3; border-radius: 9px; }
.app-download-card { background: #eef8fd; border-color: #cfe2ef; border-radius: 12px; }
.app-download-card__qr { border-color: #cfe2ef; }
.app-store-link { background: #0c71c3; }
.app-store-link:hover { background: #0a47aa; }
.app-preview { background: #0c71c3; }
.app-preview figcaption span { color: #bfe6ff; }
.app-phone { background: #083f6d; border-color: rgba(255,255,255,.65); }
.appointment-call { background: #f4ede5; border-color: #e5d8cb; border-radius: 14px; }
.phone-option { border-color: #cfe2ef; border-radius: 9px; }
.phone-option__icon { color: #0c71c3; background: #eaf6fd; }
.phone-option:hover { border-color: #2ea3f2; }
.recognition__link {
  display: inline-flex;
  min-height: 42px;
  margin-top: 13px;
  padding: 9px 12px;
  color: #0c71c3;
  background: #eaf6fd;
  border: 1px solid #cfe2ef;
  border-radius: 8px;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}
.recognition__link:hover { color: #fff; background: #0c71c3; border-color: #0c71c3; }
.contact-strip { background: #0c71c3; }
.site-footer { background: #073b63; }

@media (max-width: 1080px) {
  .brand__logo { width: 220px; }
  .site-header__inner { gap: 16px; }
  .primary-nav__list { gap: 14px; }
  .primary-nav__link { font-size: .76rem; }
  .header-cta { padding-inline: 16px; font-size: .72rem; }
  .hero__grid { min-height: 470px; grid-template-columns: minmax(315px,.76fr) minmax(470px,1.24fr); gap: 16px; }
  .hero h1 { font-size: clamp(2.9rem,4.8vw,3.8rem); }
  .hero-portrait { min-height: 430px; }
  .office-overview__grid { gap: 14px; }
}
@media (max-width: 920px) {
  .site-header__inner { min-height: 80px; }
  .brand__logo { width: min(270px,58vw); }
  .primary-nav { position: absolute; top: calc(100% + 8px); }
  .hero__grid { min-height: 430px; padding-top: 26px; grid-template-columns: minmax(280px,.8fr) minmax(390px,1.2fr); gap: 8px; }
  .hero__copy { padding-bottom: 30px; }
  .hero h1 { font-size: clamp(2.55rem,5.3vw,3.25rem); }
  .hero-portrait { min-height: 404px; }
  .office-overview__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .office-detail-card--location { grid-column: 1 / -1; min-height: 270px; }
}
@media (max-width: 760px) {
  .hero { background-position: 58% center; }
  .hero__grid { min-height: 0; padding: 44px 0 0; grid-template-columns: minmax(0,1fr); gap: 14px; }
  .hero__copy { max-width: 540px; padding: 0; text-align: center; justify-self: center; }
  .hero h1 { max-width: 540px; margin-bottom: 15px; font-size: clamp(2.55rem,9vw,3.45rem); }
  .hero__location-line { justify-content: center; }
  .hero__visual { width: 100%; }
  .hero-portrait { min-height: 0; }
  .hero-portrait__image { width: min(100%,650px); }
  .office-overview__grid { grid-template-columns: minmax(0,1fr); }
  .office-detail-card--location { grid-column: auto; }
}
@media (max-width: 680px) {
  html { scroll-padding-top: 78px; }
  .announcement { padding-inline: 10px; font-size: .63rem; }
  .topbar-item--featured { padding: 5px 7px; }
  .site-header__inner { min-height: 72px; }
  .brand__logo { width: min(228px,67vw); }
  .hero__grid { padding-top: 34px; gap: 6px; }
  .hero__kicker { margin-bottom: 11px; font-size: .65rem; }
  .hero h1 { margin-bottom: 13px; font-size: clamp(2.2rem,11vw,2.85rem); line-height: 1.06; }
  .hero__location-line { font-size: 1.05rem; }
  .hero-portrait__image { width: 112%; max-width: 112%; margin-left: -6%; }
  .office-overview { padding: 56px 0; }
  .office-overview__heading { margin-bottom: 28px; }
  .office-overview__heading h2 { font-size: clamp(2rem,10vw,2.65rem); }
  .office-detail-card { min-height: 0; padding: 24px 21px; }
  .appointment { padding: 56px 0; }
  .appointment__inner { width: 100%; padding: 22px 18px; border-radius: 16px; }
  .appointment h2 { font-size: clamp(2rem,9.4vw,2.7rem); }
  .appointment-app { border-radius: 13px; }
  .appointment-app__guide { padding: 22px 16px; }
  .app-preview { padding: 30px 18px; }
  .appointment-call { padding: 20px 16px; }
  .appointment__options { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 390px) {
  .brand__logo { width: min(210px,64vw); }
  .hero h1 { font-size: 2.12rem; }
  .app-download-card { grid-template-columns: 82px minmax(0,1fr); }
  .app-download-card__qr { width: 82px; height: 82px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__copy, .hero-portrait__image { animation: none; }
}

/* Final mobile containment fixes */
.brand { min-width: 0; }
@media (max-width: 760px) {
  .hero__copy { display: block; width: 100%; min-width: 0; }
}
@media (max-width: 920px) {
  .menu-toggle { display: block; flex: 0 0 44px; margin-left: auto; }
}

/* Original hero composition and enhanced information rows */
.hero {
  isolation: isolate;
  background-color: #eef7fc;
  background-image: none;
}

.hero::before {
  display: block;
  position: absolute;
  inset: 0 0 0 52%;
  z-index: 0;
  background: #d9edf9;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  display: block;
  position: absolute;
  top: 11%;
  right: 5%;
  z-index: 0;
  width: min(34vw, 480px);
  height: 72%;
  background: #c6e5f6;
  border: 1px solid #aed9ef;
  border-radius: 44px 44px 12px 44px;
  content: "";
  pointer-events: none;
  transform: rotate(5deg);
}

.hero__visual::before {
  position: absolute;
  inset: 18% 10% 6% 17%;
  z-index: 0;
  background: rgba(255, 255, 255, .62);
  border: 1px solid #c3dfed;
  border-radius: 36px 10px 36px 10px;
  content: "";
  pointer-events: none;
  transform: rotate(-4deg);
}

.hero-portrait {
  z-index: 1;
}

.office-detail-card:nth-child(3) {
  background: #f7fbfe;
  border-top-color: #0c71c3;
}

.office-contact-list {
  gap: 8px;
}

.office-contact-row {
  display: grid !important;
  min-height: 56px !important;
  padding: 8px 10px;
  color: #17324d !important;
  background: #fff;
  border: 1px solid #d6e7f1;
  border-radius: 10px;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  transition: border-color var(--transition), transform var(--transition);
}

.office-contact-row:hover {
  color: #17324d !important;
  border-color: #2ea3f2;
  transform: translateX(2px);
}

.office-contact-row__icon {
  display: grid;
  width: 36px;
  height: 36px;
  color: #0c71c3;
  background: #e7f5fd;
  border-radius: 9px;
  place-items: center;
}

.office-contact-row__icon .icon {
  width: 17px;
  height: 17px;
}

.office-contact-row > span:last-child,
.office-contact-row small,
.office-contact-row strong {
  display: block;
  min-width: 0;
}

.office-contact-row small {
  margin-bottom: 1px;
  color: #718596;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.25;
}

.office-contact-row strong {
  overflow-wrap: anywhere;
  color: #17324d;
  font-size: .76rem;
  line-height: 1.35;
}

.insurance-note {
  background: #f4f9fc;
  border-color: #cfe2ef;
}

.insurance-plans {
  padding: 0 28px 26px;
  border-top: 1px solid #d2e3ed;
}

.insurance-plans__label {
  margin: 0;
  padding: 18px 0 11px;
  color: #0c71c3 !important;
  font-size: .7rem !important;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insurance-plans ul {
  padding: 0;
  gap: 9px;
}

.insurance-plans li {
  min-height: 42px;
  padding: 9px 11px;
  color: #435f72;
  background: #fff;
  border: 1px solid #d7e7f0;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .hero::before {
    inset: 42% 0 0;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }

  .hero::after {
    top: auto;
    right: -16%;
    bottom: 7%;
    width: 66%;
    height: 38%;
    border-radius: 32px 10px 32px 10px;
    transform: rotate(7deg);
  }

  .hero__visual::before {
    inset: 13% 7% 5%;
    border-radius: 28px 8px 28px 8px;
  }
}

@media (max-width: 680px) {
  .insurance-plans {
    padding: 0 18px 22px;
  }

  .insurance-plans__label {
    padding-top: 17px;
  }
}

/* Focused appointment journey */
.appointment--summary {
  padding: clamp(72px, 8vw, 100px) 0;
  background: #eef8fd;
}

.appointment--summary .appointment__inner {
  display: grid;
  padding: clamp(32px, 5vw, 54px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.appointment-summary__copy h2 {
  max-width: 690px;
  margin: 0 0 16px;
  color: #17324d;
  font-size: clamp(2.35rem, 4.4vw, 3.7rem);
}

.appointment-summary__copy > p {
  max-width: 650px;
  margin-bottom: 26px;
  color: var(--color-ink-soft);
}

.appointment-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.appointment-summary__actions .button {
  min-height: 48px;
}

.appointment-summary__app {
  display: grid;
  min-width: 0;
  padding: 25px;
  background: #0c71c3;
  border-radius: 16px;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, .78);
}

.appointment-summary__app > img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 13px;
}

.appointment-summary__app span {
  display: block;
  color: #bfe6ff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.appointment-summary__app h3 {
  margin: 2px 0;
  color: #fff;
  font-size: 1.45rem;
}

.appointment-summary__app p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: .76rem;
}

.appointment-summary__app ul {
  display: grid;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  grid-column: 1 / -1;
  gap: 10px;
  list-style: none;
}

.appointment-summary__app li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
}

.appointment-summary__app li .icon {
  flex: 0 0 auto;
  color: #bfe6ff;
}

.appointment-page-intro {
  padding: clamp(64px, 7vw, 92px) 0;
  background: #eef7fc;
  border-bottom: 1px solid #d3e7f2;
}

.appointment-page-intro__inner {
  max-width: 880px;
}

.appointment-page-back {
  display: inline-flex;
  min-height: 44px;
  margin-bottom: 26px;
  align-items: center;
  gap: 8px;
  color: #0c71c3;
  font-size: .78rem;
  font-weight: 800;
}

.appointment-page-intro .eyebrow {
  display: block;
  margin-bottom: 12px;
}

.appointment-page-intro h1 {
  max-width: 780px;
  margin: 0 0 18px;
  color: #17324d;
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.appointment-page-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.appointment--page {
  padding-top: clamp(48px, 6vw, 76px);
}

.appointment--page .appointment__heading {
  max-width: 840px;
}

.appointment-page-note {
  padding: 0 0 clamp(72px, 8vw, 100px);
  background: #eef8fd;
}

.appointment-page-note__inner {
  display: grid;
  padding: 25px 28px;
  background: #fff;
  border: 1px solid #cfe2ef;
  border-left: 5px solid #2ea3f2;
  border-radius: 14px;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.appointment-page-note__icon {
  display: grid;
  width: 44px;
  height: 44px;
  color: #0c71c3;
  background: #e7f5fd;
  border-radius: 11px;
  font-weight: 900;
  place-items: center;
}

.appointment-page-note h2 {
  margin: 0 0 3px;
  color: #17324d;
  font-size: 1.25rem;
}

.appointment-page-note p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: .84rem;
}

@media (max-width: 820px) {
  .appointment--summary .appointment__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .appointment-summary__app {
    width: 100%;
  }

  .appointment-page-note__inner {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .appointment-page-note__inner .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .appointment--summary .appointment__inner {
    padding: 26px 20px;
  }

  .appointment-summary__copy h2 {
    font-size: clamp(2rem, 9.5vw, 2.7rem);
  }

  .appointment-summary__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .appointment-summary__actions .button {
    width: 100%;
  }

  .appointment-summary__app {
    padding: 21px 18px;
  }

  .appointment-page-intro {
    padding: 48px 0 54px;
  }

  .appointment-page-intro h1 {
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }

  .appointment--page {
    padding-top: 42px;
  }

  .appointment-page-note__inner {
    padding: 22px 18px;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
  }

  .appointment-page-note__icon {
    width: 38px;
    height: 38px;
  }

  .appointment-page-note__inner .button {
    width: 100%;
    grid-column: 1 / -1;
  }
}

/* Faster appointment entry points */
.appointment--summary .appointment__inner {
  grid-template-columns: minmax(0, .88fr) minmax(470px, 1.12fr);
  gap: clamp(28px, 4vw, 50px);
}

.appointment-summary__copy h2 {
  font-size: clamp(2.25rem, 3.8vw, 3.35rem);
}

.appointment-summary__app {
  padding: 22px;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
}

.appointment-summary__app-heading {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.appointment-summary__app-heading > img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, .78);
  border-radius: 12px;
}

.appointment-summary__app-heading span {
  color: #bfe6ff;
}

.appointment-summary__downloads {
  display: grid;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.appointment-summary__download {
  display: grid;
  min-width: 0;
  padding: 10px;
  color: #17324d;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 11px;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.appointment-summary__download:hover {
  color: #17324d;
  box-shadow: 0 8px 20px rgba(4, 54, 91, .2);
  transform: translateY(-2px);
}

.appointment-summary__download > img {
  display: block;
  width: 82px;
  height: 82px;
  padding: 3px;
  background: #fff;
  border: 1px solid #d5e4ed;
  border-radius: 7px;
}

.appointment-summary__download span,
.appointment-summary__download strong,
.appointment-summary__download small {
  display: block;
  min-width: 0;
  color: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.appointment-summary__download strong {
  margin-bottom: 4px;
  font-size: .72rem;
  line-height: 1.25;
}

.appointment-summary__download small {
  color: #657c8e;
  font-size: .6rem;
  font-weight: 700;
  line-height: 1.35;
}

.appointment-summary__detail-link {
  display: inline-flex;
  min-height: 42px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.appointment-summary__detail-link:hover {
  color: #bfe6ff;
}

.appointment-page-intro {
  padding: 34px 0 38px;
}

.appointment-page-intro__inner {
  display: grid;
  max-width: var(--container);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 42px;
}

.appointment-page-back {
  min-height: 36px;
  margin-bottom: 0;
  grid-column: 1 / -1;
}

.appointment-page-intro .eyebrow {
  margin-bottom: 8px;
}

.appointment-page-intro h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(2.55rem, 4.2vw, 3.85rem);
  line-height: 1.03;
}

.appointment-page-intro p {
  max-width: 660px;
  font-size: .95rem;
}

.appointment-page-intro__actions {
  display: flex;
  padding-bottom: 3px;
  align-items: center;
  gap: 9px;
}

.appointment-page-intro__actions .button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.appointment--page {
  padding: 34px 0 70px;
}

.appointment--page .appointment__inner {
  padding: clamp(28px, 4vw, 44px);
}

.appointment--page .appointment__heading {
  display: grid;
  max-width: none;
  margin-bottom: 28px;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  align-items: end;
  gap: 10px 38px;
}

.appointment--page .appointment__heading .eyebrow {
  grid-column: 1 / -1;
}

.appointment--page .appointment__heading h2 {
  margin: 0;
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
}

.appointment--page .appointment__heading > p {
  padding-bottom: 4px;
}

@media (max-width: 980px) {
  .appointment--summary .appointment__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .appointment-page-intro__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .appointment-page-intro__actions {
    padding-bottom: 0;
  }

  .appointment--page .appointment__heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 10px;
  }

  .appointment--page .appointment__heading .eyebrow {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .appointment--summary {
    padding: 52px 0;
  }

  .appointment-summary__copy h2 {
    font-size: clamp(1.95rem, 9vw, 2.5rem);
  }

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

  .appointment-summary__download {
    padding: 9px 7px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .appointment-summary__download > img {
    width: 92px;
    height: 92px;
  }

  .appointment-summary__detail-link {
    justify-content: center;
    text-align: center;
  }

  .appointment-page-intro {
    padding: 27px 0 31px;
  }

  .appointment-page-back {
    margin-bottom: 3px;
  }

  .appointment-page-intro h1 {
    font-size: clamp(2.3rem, 10.5vw, 2.85rem);
  }

  .appointment-page-intro__actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-page-intro__actions .button {
    min-width: 0;
    padding: 11px 8px;
    font-size: .68rem;
    white-space: normal;
    text-align: center;
  }

  .appointment--page {
    padding: 24px 0 56px;
  }

  .appointment--page .appointment__inner {
    padding-top: 24px;
  }

  .appointment--page .appointment__heading {
    margin-bottom: 23px;
  }

  .appointment--page .appointment__heading h2 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }
}

@media (max-width: 390px) {
  .appointment-summary__download > img {
    width: 82px;
    height: 82px;
  }
}

/* Multi-page content architecture */
.appointment-guide-page {
  padding: clamp(46px, 6vw, 78px) 0 clamp(72px, 8vw, 106px);
  background: #eef8fd;
}

.appointment-guide-page__inner {
  padding: 0;
}

.appointment-guide-page .appointment__heading {
  display: grid;
  margin-bottom: clamp(34px, 5vw, 52px);
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: 10px clamp(30px, 5vw, 70px);
}

.appointment-guide-page .appointment__heading .eyebrow {
  grid-column: 1 / -1;
}

.appointment-guide-page .appointment__heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.appointment-guide-page .appointment__heading > p {
  max-width: 650px;
  padding-bottom: 7px;
}

.appointment-guide-page .appointment-app {
  overflow: visible;
  background: transparent;
  border: 0;
  border-top: 1px solid #bcd8e8;
  border-bottom: 1px solid #bcd8e8;
  border-radius: 0;
  box-shadow: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr);
  gap: clamp(28px, 5vw, 62px);
}

.appointment-guide-page .appointment-app__guide {
  padding: 38px 0;
}

.appointment-guide-page .app-preview {
  margin: 0;
  padding: 38px 24px;
  border-radius: 0;
}

.appointment-guide-page .app-downloads {
  gap: 18px;
}

.appointment-guide-page .app-download-card {
  padding: 15px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid #cfe2ef;
  border-radius: 0;
}

.appointment-guide-page .appointment-call {
  margin-top: 0;
  padding: 32px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  border-top: 1px solid #bcd8e8;
}

.standalone-page {
  min-height: 70vh;
  padding-top: clamp(54px, 7vw, 88px);
}

.standalone-page__back {
  display: inline-flex;
  min-height: 40px;
  margin-bottom: 30px;
  align-items: center;
  gap: 7px;
  color: #0c71c3;
  font-size: .75rem;
  font-weight: 800;
}

.standalone-page .section-heading h1 {
  margin-bottom: 18px;
  color: #17324d;
  font-size: clamp(3rem, 6vw, 5rem);
}

.standalone-page--services .services-grid {
  margin-top: 10px;
}

.standalone-page--gallery {
  background: #fff;
}

.standalone-page--gallery .gallery-grid {
  margin-top: 16px;
}

.standalone-page-cta {
  padding: clamp(48px, 6vw, 72px) 0;
  color: rgba(255, 255, 255, .78);
  background: #0c71c3;
}

.standalone-page-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.standalone-page-cta .eyebrow {
  color: #bfe6ff;
}

.standalone-page-cta h2 {
  margin: 5px 0 8px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.standalone-page-cta p {
  margin: 0;
}

@media (max-width: 980px) {
  .appointment-guide-page .appointment__heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 12px;
  }

  .appointment-guide-page .appointment__heading .eyebrow {
    grid-column: auto;
  }

  .appointment-guide-page .appointment-app {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .appointment-guide-page .app-preview {
    min-height: 600px;
  }
}

@media (max-width: 680px) {
  .appointment-guide-page {
    padding: 40px 0 64px;
  }

  .appointment-guide-page .appointment__heading {
    margin-bottom: 28px;
  }

  .appointment-guide-page .appointment__heading h2 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .appointment-guide-page .appointment-app__guide {
    padding: 28px 0;
  }

  .appointment-guide-page .app-preview {
    min-height: 0;
    padding: 32px 18px;
  }

  .appointment-guide-page .appointment-call {
    padding-top: 26px;
  }

  .standalone-page {
    padding-top: 44px;
  }

  .standalone-page__back {
    margin-bottom: 22px;
  }

  .standalone-page .section-heading h1 {
    font-size: clamp(2.7rem, 12vw, 3.5rem);
  }

  .standalone-page-cta__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .standalone-page-cta__inner .button {
    width: 100%;
  }
}


/* Appointment guide compact editorial heading */
.appointment-guide-page .appointment__heading {
  display: block;
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.appointment-guide-page .appointment__heading .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
}

.appointment-guide-page .appointment__heading h1 {
  margin: 0 0 12px;
  color: #0c71c3;
  font-size: clamp(2.55rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.appointment-guide-page .appointment__heading > p {
  max-width: 720px;
  padding: 0;
}

@media (max-width: 680px) {
  .appointment-guide-page .appointment__heading h1 {
    font-size: clamp(2.25rem, 10vw, 2.8rem);
  }
}


/* Persistent two-row site navigation */
.announcement {
  position: sticky;
  top: 0;
  z-index: 102;
}

.site-header {
  top: 46px;
  z-index: 101;
}

html {
  scroll-padding-top: 150px;
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 124px;
  }

  body[data-page="appointment"] .announcement__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
  }

  body[data-page="appointment"] .topbar-item:nth-child(3) {
    display: inline-flex;
  }

  body[data-page="appointment"] .topbar-item {
    padding-inline: 3px;
    gap: 3px;
    font-size: .56rem;
    letter-spacing: 0;
  }

  body[data-page="appointment"] .topbar-item .icon {
    width: 12px;
    height: 12px;
  }
}


/* Compact standalone introductions and mobile appointment action */
.primary-nav__appointment {
  display: none;
}

.standalone-page {
  min-height: 0;
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.standalone-page__back {
  min-height: 32px;
  margin-bottom: 14px;
}

.standalone-page .section-heading {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.standalone-page .section-heading h1 {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 4.4vw, 3.8rem);
  line-height: 1.03;
}

.standalone-page .section-heading p {
  font-size: 1rem;
}

@media (max-width: 920px) {
  .primary-nav__appointment {
    display: block;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid #d7e3ec;
  }

  .primary-nav__appointment-link {
    padding: 14px 16px;
    color: #fff;
    background: #0c71c3;
    border-radius: 10px;
    text-align: center;
  }

  .primary-nav__appointment-link:hover,
  .primary-nav__appointment-link.is-active {
    color: #fff;
    background: #0a47aa;
  }
}

@media (max-width: 680px) {
  .standalone-page {
    padding-top: 26px;
    padding-bottom: 58px;
  }

  .standalone-page__back {
    margin-bottom: 10px;
  }

  .standalone-page .section-heading {
    margin-bottom: 26px;
  }

  .standalone-page .section-heading h1 {
    margin-bottom: 8px;
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
}


/* Final standalone intro density */
.standalone-page {
  padding-top: clamp(26px, 3vw, 40px);
}

.standalone-page__back {
  min-height: 28px;
  margin-bottom: 8px;
}

.standalone-page .section-heading {
  margin-bottom: clamp(22px, 3vw, 32px);
}

.standalone-page .section-heading h1 {
  font-size: clamp(2.35rem, 3.5vw, 3.2rem);
}

@media (max-width: 680px) {
  .standalone-page {
    padding-top: 20px;
  }

  .standalone-page__back {
    min-height: 26px;
    margin-bottom: 6px;
  }

  .standalone-page .section-heading {
    margin-bottom: 20px;
  }

  .standalone-page .section-heading h1 {
    font-size: clamp(2.05rem, 9vw, 2.45rem);
  }

  .standalone-page .section-heading p {
    font-size: .94rem;
  }
}


/* Subtle scroll-start navigation and portrait motion */
.announcement {
  transition: background-color 380ms ease, box-shadow 380ms ease;
}

.site-header {
  transition:
    background-color 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.primary-nav__link {
  transition:
    color 320ms ease,
    background-color 320ms ease;
}

.hero-portrait {
  transform: translate3d(0, 0, 0);
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

body.is-page-scrolled .announcement {
  background-color: #168bd3;
  box-shadow: 0 4px 14px rgba(12, 73, 128, .12);
}

.site-header.is-scrolled {
  background-color: #edf8fd;
  border-bottom-color: #c9e3f1;
  box-shadow: 0 10px 28px rgba(12, 73, 128, .11);
}

.site-header.is-scrolled .primary-nav__link {
  color: #123f63;
}

body.is-page-scrolled .hero-portrait {
  transform: translate3d(18px, -7px, 0);
}

@media (max-width: 760px) {
  body.is-page-scrolled .hero-portrait {
    transform: translate3d(10px, -4px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement,
  .site-header,
  .primary-nav__link,
  .hero-portrait {
    transition: none;
  }

  body.is-page-scrolled .hero-portrait {
    transform: none;
  }
}


/* Hero practice identity badge */
.hero__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 7px 13px 7px 10px;
  align-items: center;
  gap: 8px;
  color: #095f91;
  background-color: #dff1f9;
  border: 1px solid #b9dce9;
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 6px 16px rgba(12, 73, 128, .07);
  line-height: 1;
}

.hero__kicker::before {
  width: 4px;
  height: 16px;
  flex: 0 0 auto;
  background-color: #c51632;
  border-radius: 3px;
  content: "";
}

@media (max-width: 760px) {
  .hero__kicker {
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .hero__kicker {
    min-height: 31px;
    margin-bottom: 13px;
    padding: 6px 11px 6px 9px;
    gap: 7px;
  }

  .hero__kicker::before {
    height: 14px;
  }
}


/* Shared section identity badges */
.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 29px;
  margin-bottom: 14px;
  padding: 6px 11px 6px 8px;
  align-items: center;
  gap: 7px;
  color: #095f91;
  background-color: #dff1f9;
  border: 1px solid #b9dce9;
  border-radius: 12px 12px 12px 4px;
  box-shadow: 0 4px 12px rgba(12, 73, 128, .055);
  line-height: 1;
}

.eyebrow::before {
  display: block !important;
  width: 3px;
  height: 13px;
  flex: 0 0 auto;
  background-color: #c51632;
  border-radius: 3px;
  content: "" !important;
}

.section-heading--center .eyebrow {
  margin-inline: auto;
}

.contact-strip .eyebrow,
.standalone-page-cta .eyebrow {
  color: #095f91;
  background-color: #fff;
  border-color: rgba(255, 255, 255, .78);
  box-shadow: none;
}

@media (max-width: 680px) {
  .eyebrow {
    min-height: 27px;
    margin-bottom: 12px;
    padding: 5px 9px 5px 7px;
    gap: 6px;
    font-size: .67rem;
  }

  .eyebrow::before {
    height: 12px;
  }
}


/* Official footer logo and appointment badge contrast */
.footer__logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
}

/* Final information architecture: accessible navigation menus */
.primary-nav__item {
  position: relative;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > summary {
  position: relative;
  display: flex;
  min-height: 40px;
  padding-right: 20px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary::after {
  display: none;
}

.nav-dropdown__chevron {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.nav-dropdown[open] .nav-dropdown__chevron {
  transform: translateY(-50%) rotate(180deg);
}

.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary {
  color: #0a47aa;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 120;
  width: max-content;
  min-width: 220px;
  margin: 0;
  padding: 8px;
  background: #fff;
  border: 1px solid #d7e4ed;
  border-radius: 12px;
  box-shadow: 0 14px 36px rgba(10, 48, 78, 0.13);
  list-style: none;
  transform: translateX(-50%);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  color: #1d3449;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: #0a47aa;
  background: #eef7fd;
}

/* Patient information, forms, privacy, and FAQ */
.patient-resources-page {
  padding: clamp(28px, 4vw, 48px) 0 clamp(64px, 8vw, 96px);
  background: #f7fafc;
}

#patient-resources-content.is-overview {
  max-width: 1080px;
}

.resource-intro {
  max-width: 780px;
  margin-bottom: 24px;
}

.resource-intro h1 {
  max-width: 720px;
  margin: 12px 0 16px;
  color: #102f4b;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.resource-intro > p,
.resource-section__heading > p {
  max-width: 700px;
  color: var(--color-ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.urgent-notice {
  display: flex;
  margin-bottom: clamp(48px, 6vw, 72px);
  padding: 14px 16px;
  align-items: flex-start;
  gap: 8px;
  color: #173f60;
  background: #eaf5fc;
  border: 1px solid #c9e4f5;
  border-radius: 12px;
}

.urgent-notice .icon {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #0a78c7;
}

.urgent-notice p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.resource-page-nav {
  display: flex;
  margin: -24px 0 clamp(42px, 6vw, 66px);
  padding-bottom: 2px;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.resource-page-nav a {
  min-height: 42px;
  padding: 10px 14px;
  color: #3c566b;
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.resource-page-nav a:hover,
.resource-page-nav a:focus-visible {
  color: #0a64a4;
  background: #eaf5fc;
}

.resource-page-nav a.is-active {
  color: #fff;
  background: var(--color-primary);
}

.resource-hub {
  display: grid;
  margin-bottom: clamp(64px, 8vw, 96px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-hub-card {
  display: grid;
  min-height: 176px;
  padding: 24px;
  align-content: start;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  color: var(--color-ink);
  background: #fff;
  border: 1px solid #d8e5ed;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(19, 56, 83, 0.045);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.resource-hub-card:hover,
.resource-hub-card:focus-visible {
  color: #0a64a4;
  border-color: #9fcae6;
  box-shadow: 0 12px 28px rgba(19, 78, 119, 0.09);
  transform: translateY(-2px);
}

.resource-hub-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  grid-column: 1 / -1;
  place-items: center;
  color: var(--color-primary);
  background: #eaf5fc;
  border-radius: 11px;
}

.resource-hub-card__icon .icon {
  width: 21px;
  height: 21px;
}

.resource-hub-card strong,
.resource-hub-card small {
  display: block;
}

.resource-hub-card strong {
  margin-bottom: 7px;
  font-size: 1rem;
}

.resource-hub-card small {
  color: #405a70;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.55;
}

.resource-hub-card > .icon {
  margin-top: 3px;
  color: var(--color-primary);
}

.resource-section {
  scroll-margin-top: 150px;
  margin-bottom: clamp(64px, 8vw, 96px);
}

.resource-section__heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.resource-section__heading h2,
.poster-feature h2,
.privacy-panel h2 {
  margin: 10px 0 12px;
  color: #102f4b;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

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

.resource-card {
  padding: clamp(22px, 3vw, 30px);
  background: #fff;
  border: 1px solid #dce7ee;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(19, 56, 83, 0.055);
}

.resource-card__icon,
.privacy-panel__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--color-primary);
  background: #eaf5fc;
  border-radius: 11px;
}

.resource-card__icon .icon,
.privacy-panel__icon .icon {
  width: 21px;
  height: 21px;
}

.resource-card h3 {
  margin: 0 0 14px;
  color: var(--color-ink);
  font-size: 1.08rem;
}

.resource-card ul {
  display: grid;
  margin: 0;
  padding-left: 19px;
  gap: 9px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  line-height: 1.62;
}

.poster-feature {
  display: grid;
  scroll-margin-top: 150px;
  margin-bottom: clamp(64px, 8vw, 96px);
  padding: clamp(24px, 4vw, 46px);
  align-items: center;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 6vw, 68px);
  background: #fff;
  border: 1px solid #d6e5ee;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(19, 56, 83, 0.07);
}

.poster-feature__image {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  justify-self: center;
  background: #f3f8fb;
  border: 1px solid #d5e3ec;
  border-radius: 13px;
  box-shadow: 0 14px 32px rgba(20, 66, 99, 0.11);
}

.poster-feature__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.poster-feature__copy,
.poster-feature__copy h2 {
  color: #102f4b;
}

.poster-feature__copy p {
  max-width: 520px;
  margin: 0 0 24px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.poster-feature__copy .eyebrow {
  color: var(--color-primary);
}

.poster-feature__copy .button {
  color: #fff;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.privacy-panel {
  display: grid;
  scroll-margin-top: 150px;
  margin-bottom: clamp(64px, 8vw, 96px);
  padding: clamp(26px, 5vw, 48px);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  background: #fff;
  border: 1px solid #cfe0eb;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(19, 56, 83, 0.06);
}

.privacy-panel__content > p {
  max-width: 780px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.privacy-panel__note {
  padding: 12px 14px;
  background: #f4f8fb;
  border-left: 3px solid #2ea3f2;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
}

.privacy-panel__actions {
  display: flex;
  margin-top: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-panel__actions .button {
  border-radius: 999px;
}

.faq-list {
  display: grid;
  max-width: 900px;
  gap: 10px;
}

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

.faq-item summary {
  display: flex;
  min-height: 58px;
  padding: 15px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #183c59;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary span {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 18px 17px;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
  line-height: 1.68;
}

.faq-item__answer p {
  margin: 0;
}

@media (max-width: 920px) {
  .primary-nav {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .nav-dropdown__menu {
    position: static;
    width: auto;
    min-width: 0;
    margin: 0 0 5px 12px;
    padding: 2px 0 4px 12px;
    border: 0;
    border-left: 2px solid #cfe4f3;
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

.nav-dropdown > summary {
  justify-content: space-between;
  padding: 12px 34px 12px 10px;
}

  .nav-dropdown__chevron {
    right: 12px;
  }

.nav-dropdown__menu a {
  padding: 10px;
  white-space: normal;
  font-size: 0.75rem;
  font-weight: 600;
}
}

/* Shared active visual system */
.button--secondary,
.button--light,
.button--outline-light {
  border-radius: 999px;
}

.eyebrow {
  background-color: var(--color-accent-soft);
  box-shadow: var(--shadow-utility);
}

.doctor-card {
  border-color: var(--color-line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-feature);
}

.service-card,
.resource-card,
.resource-hub-card,
.privacy-panel,
.insurance-note,
.appointment-call {
  border-color: var(--color-line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-utility);
}

.service-card:hover,
.resource-hub-card:hover,
.resource-hub-card:focus-visible {
  box-shadow: 0 10px 26px rgba(19, 56, 83, 0.075);
}

.section-heading p,
.doctor-card__bio,
.doctor-meta-row,
.service-card p,
.recognition p,
.resource-intro > p,
.resource-section__heading > p,
.resource-card ul,
.privacy-panel__content > p,
.faq-item__answer,
.patient-info-teaser p {
  color: var(--color-ink-soft);
}

.resource-card__icon,
.resource-hub-card__icon,
.privacy-panel__icon {
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  border-radius: var(--radius-control);
}

.appointment {
  padding-block: var(--space-section-content);
}

.patient-info-teaser {
  padding: 32px 0;
  background: #eaf5fc;
  border-block: 1px solid #cee5f4;
}

.patient-info-teaser__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.patient-info-teaser h2 {
  margin: 8px 0;
  color: #102f4b;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.patient-info-teaser p {
  max-width: 700px;
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.65;
}

.patient-info-teaser__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

@media (max-width: 720px) {
  .patient-info-teaser__inner,
  .patient-info-teaser__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .patient-info-teaser__actions {
    gap: 10px;
  }

  .patient-info-teaser__actions .button {
    width: 100%;
  }

  .patient-resources-page {
    padding-top: 18px;
  }

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

  .resource-hub-card {
    min-height: 0;
  }

  .resource-card-grid,
  .poster-feature {
    grid-template-columns: minmax(0, 1fr);
  }

  .poster-feature__image {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }

  .poster-feature__copy {
    text-align: left;
  }

  .poster-feature__copy p {
    margin-inline: 0;
  }

  .privacy-panel {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .privacy-panel__actions {
    flex-direction: column;
  }

  .privacy-panel__actions .button,
  .poster-feature__copy .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .patient-resources-page .container {
    width: min(100% - 32px, var(--container));
  }

  .resource-hub {
    margin-bottom: 48px;
    gap: 12px;
  }

  .resource-hub-card {
    padding: 20px;
    gap: 14px;
  }

  .poster-feature {
    margin-bottom: 56px;
    padding: 16px;
    gap: 24px;
    border-radius: 15px;
  }

  .poster-feature__image {
    padding: 6px;
    border-radius: 10px;
  }

  .poster-feature__copy h2 {
    font-size: 1.65rem;
  }

  .resource-card,
  .privacy-panel {
    padding: 20px;
  }

  .faq-item summary {
    padding-inline: 15px;
  }
}

/* Final compact mobile navigation */
@media (max-width: 920px) {
  .primary-nav {
    padding: 8px 12px 14px;
  }

  .primary-nav__list > .primary-nav__item {
    border-bottom: 1px solid rgba(215, 227, 236, 0.62);
  }

  .primary-nav__list > .primary-nav__item:last-of-type {
    border-bottom: 0;
  }

  .primary-nav__list > .primary-nav__item > .primary-nav__link,
  .primary-nav__list > .primary-nav__item > .nav-dropdown > summary {
    display: flex;
    min-height: 54px;
    padding: 0 12px;
    align-items: center;
    justify-content: space-between;
    line-height: 1.35;
  }

  .primary-nav__list > .primary-nav__item > .primary-nav__link.is-active {
    color: var(--color-accent);
    background: #f3f8fc;
    border-radius: 9px;
  }

  .nav-dropdown__chevron {
    right: 12px;
  }

  .nav-dropdown__menu {
    margin: 0 0 4px 12px;
    padding: 0 0 4px 12px;
  }

  .nav-dropdown__menu a {
    display: flex;
    min-height: 42px;
    padding: 8px 10px;
    align-items: center;
    line-height: 1.35;
  }

  .primary-nav__appointment {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-line);
  }

  .primary-nav__appointment-link {
    display: flex;
    min-height: 48px;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
  }
}

/* Consolidated Office Details */
.office-overview {
  padding: var(--space-section-compact) 0;
  background: var(--color-white);
}

.office-overview__heading {
  max-width: 720px;
  margin: 0 auto clamp(26px, 3vw, 36px);
  text-align: center;
}

.office-overview__heading .eyebrow {
  margin-bottom: 10px;
}

.office-overview__heading h2 {
  margin-bottom: 12px;
  color: var(--color-ink);
  font-size: clamp(2.25rem, 4vw, 3.45rem);
}

.office-overview__heading p {
  margin: 0;
  color: var(--color-ink-soft);
}

.office-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.41fr) minmax(0, 0.59fr);
  gap: 20px;
  align-items: stretch;
}

.office-overview__utilities {
  display: grid;
  min-width: 0;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.office-detail-card,
.office-detail-card:nth-child(3) {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: clamp(20px, 2.2vw, 25px);
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 15px;
  box-shadow: var(--shadow-utility);
  flex-direction: column;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.office-detail-card:hover {
  border-color: #b9cfdd;
  box-shadow: 0 10px 26px rgba(19, 56, 83, 0.075);
  transform: translateY(-2px);
}

.office-detail-card--location {
  min-height: 380px;
  padding: clamp(23px, 2.5vw, 28px);
  color: rgba(255, 255, 255, 0.88);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 10px 28px rgba(12, 82, 137, 0.12);
}

.office-detail-card--location:hover {
  border-color: #0a64ad;
  box-shadow: 0 12px 30px rgba(12, 82, 137, 0.16);
}

.office-detail-card__header {
  display: grid;
  margin-bottom: 12px;
  align-items: center;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
}

.office-detail-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  border-radius: var(--radius-control);
  place-items: center;
}

.office-detail-card__icon .icon {
  width: 20px;
  height: 20px;
}

.office-detail-card--location .office-detail-card__icon {
  margin-bottom: 22px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.15);
}

.office-detail-card__label {
  margin: 0 0 4px;
  color: var(--color-primary);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.office-detail-card--location .office-detail-card__label {
  margin-bottom: 6px;
  color: #bfe6ff;
}

.office-detail-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.4rem, 2vw, 1.65rem);
  line-height: 1.15;
}

.office-detail-card--contact h3 {
  font-size: clamp(1.35rem, 1.75vw, 1.55rem);
  line-height: 1.18;
}

.office-detail-card--location h3 {
  margin-bottom: 14px;
  color: var(--color-white);
}

.office-detail-card--location > p:not(.office-detail-card__label) {
  max-width: 280px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  line-height: 1.65;
}

.office-hours-list,
.office-contact-list {
  display: grid;
  margin: 0;
  gap: 0;
}

.office-schedule-row {
  padding: 9px 11px;
  background: #f8fbfd;
  border-radius: 8px;
}

.office-schedule-row + .office-schedule-row {
  margin-top: 6px;
}

.office-schedule-row > span {
  display: block;
  margin-bottom: 4px;
  color: #4a6377;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.office-schedule-row > div {
  display: grid;
  align-items: baseline;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

.office-schedule-row strong {
  color: var(--color-ink);
  font-size: 0.87rem;
  line-height: 1.4;
}

.office-schedule-row time {
  color: #294a65;
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.4;
  white-space: nowrap;
}

.office-detail-card--contact .office-contact-list {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.25fr);
}

.office-contact-row {
  display: grid;
  min-width: 0;
  min-height: 42px !important;
  padding: 5px 11px;
  align-items: center;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.office-contact-row:first-child {
  padding-left: 0;
}

.office-contact-row + .office-contact-row {
  border-left: 1px solid #e0e8ee;
}

.office-contact-row:hover {
  color: var(--color-accent) !important;
  background: transparent;
  border-color: transparent;
  transform: none;
}

.office-contact-row > .icon {
  width: 17px;
  height: 17px;
  color: var(--color-primary);
}

.office-contact-row small,
.office-contact-row strong {
  display: block;
  min-width: 0;
}

.office-contact-row small {
  margin-bottom: 0;
  color: #4a6377;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.25;
}

.office-contact-row strong {
  overflow-wrap: normal;
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
  word-break: normal;
}

.office-detail-card--location > a,
.office-detail-card > .office-detail-card__action {
  display: inline-flex;
  min-height: 42px;
  margin-top: auto;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.office-detail-card--location > a {
  color: var(--color-white);
}

.office-detail-card--location > a .icon,
.office-detail-card > .office-detail-card__action .icon {
  width: 16px;
  height: 16px;
}

.office-detail-card--location > a:hover {
  color: var(--color-white);
  transform: translateX(2px);
}

.office-detail-card > .office-detail-card__action:hover {
  color: var(--color-accent);
  transform: translateX(2px);
}

@media (max-width: 1050px) and (min-width: 921px) {
  .office-detail-card--contact .office-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .office-detail-card--contact .office-contact-row:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid #e0e8ee;
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .office-overview__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .office-overview__utilities {
    grid-template-rows: auto;
    gap: 14px;
  }

  .office-detail-card--location {
    min-height: 270px;
  }

  .office-detail-card--contact .office-contact-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .office-contact-row,
  .office-contact-row:first-child {
    min-height: 44px !important;
    padding: 7px 0;
  }

  .office-contact-row + .office-contact-row {
    border-top: 1px solid #e0e8ee;
    border-left: 0;
  }

  .office-contact-row strong {
    white-space: normal;
  }

  .office-contact-row[href^="mailto:"] strong {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 560px) {
  .office-overview {
    padding-block: 48px;
  }

  .office-overview__heading {
    margin-bottom: 26px;
  }

  .office-detail-card,
  .office-detail-card:nth-child(3) {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .office-detail-card--location {
    min-height: 0;
  }

  .office-schedule-row > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .office-detail-card,
  .office-detail-card--location > a,
  .office-detail-card > .office-detail-card__action {
    transition: none;
  }

  .office-detail-card:hover,
  .office-detail-card--location > a:hover,
  .office-detail-card > .office-detail-card__action:hover {
    transform: none;
  }
}
.appointment--summary .eyebrow {
  color: #095f91;
  background-color: #dff1f9;
  border-color: #b9dce9;
  box-shadow: 0 4px 12px rgba(12, 73, 128, .055);
}

@media (max-width: 680px) {
  .footer__logo {
    width: min(100%, 270px);
  }
}

/* =========================================================
   FINAL ANNOUNCEMENT BAR
   ========================================================= */

body[data-page] .announcement__inner {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 32px !important;
}

/* Location — left */
body[data-page] .topbar-item--location {
  justify-self: start;
}

/* Opening hours — true center */
body[data-page] .topbar-item--hours {
  justify-self: center;
}

/* Phone numbers — grouped right */
body[data-page] .topbar-phones {
  justify-self: end;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  white-space: nowrap;
}

/* Phone links */
body[data-page] .topbar-phones a {
  color: inherit;
  text-decoration: none;
}

/* Subtle divider between numbers */
body[data-page] .topbar-phone-divider {
  display: block;

  width: 1px;
  height: 14px;

  margin: 0 3px;

  background: rgba(255, 255, 255, 0.42);
}

/* Keep all utility icons aligned */
body[data-page] .announcement__inner .icon {
  flex-shrink: 0;
}


/* =========================================================
   MOBILE
   Location + main phone only
   ========================================================= */

@media (max-width: 680px) {

  body[data-page] .announcement__inner {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    min-height: 44px;
  }

  /* Slightly larger mobile utility text */
  body[data-page] .announcement__inner .topbar-item,
  body[data-page] .announcement__inner .topbar-phones {
    font-size: 14px !important;
    font-weight: 700;
  }

  /* Slightly larger icons */
  body[data-page] .announcement__inner .icon--small {
    width: 16px;
    height: 16px;
  }

  /* Hide opening hours */
  body[data-page] .topbar-item--hours {
    display: none !important;
  }

  body[data-page] .topbar-item--location {
    justify-self: start;
    gap: 7px;
  }

  body[data-page] .topbar-phones {
    justify-self: end;
    gap: 7px;
  }

  /* Hide divider + second phone */
  body[data-page] .topbar-phone-divider,
  body[data-page] .topbar-phone-secondary {
    display: none !important;
  }
}

/* Final utility-bar refinement */
body[data-page] .topbar-item,
body[data-page] .topbar-item--featured {
  min-height: 34px;
  padding: 5px 12px;
  justify-content: center;
  color: var(--color-white);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 700;
}

body[data-page] .topbar-item + .topbar-item {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 680px) {
  body[data-page] .announcement__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page] .topbar-item:nth-child(1),
  body[data-page] .topbar-item:nth-child(3) {
    display: inline-flex;
    padding-inline: 7px;
    justify-content: center;
  }

  body[data-page] .topbar-item:nth-child(2),
  body[data-page] .topbar-item:nth-child(4) {
    display: none;
  }
}

/* Group utility information without segmenting every item. */
body[data-page] .announcement__inner {
  display: flex;
  justify-content: flex-start;
  gap: clamp(24px, 3vw, 42px);
}

body[data-page] .topbar-item,
body[data-page] .topbar-item + .topbar-item {
  padding-inline: 0;
  border-left: 0;
}

body[data-page] .topbar-item:nth-child(3) {
  margin-left: auto;
  padding-left: clamp(24px, 3vw, 38px);
  padding-right: 0;
  justify-content: flex-start;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

body[data-page] .topbar-item:nth-child(4) {
  padding-left: 0;
  justify-content: flex-start;
  border-left: 0;
}

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

.career-card {
  display: flex;
  flex-direction: column;
}

.career-card > p {
  color: var(--color-ink-soft);
  line-height: 1.7;
}

.career-contact {
  max-width: 680px;
  margin: clamp(30px, 4vw, 44px) auto 0;
  text-align: center;
}

.career-contact h2 {
  margin-bottom: 10px;
  color: var(--color-ink);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

.career-contact p {
  margin: 0 auto 20px;
  color: var(--color-ink-soft);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .career-opportunities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .career-opportunities {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  body[data-page] .announcement__inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  body[data-page] .topbar-item:nth-child(1),
  body[data-page] .topbar-item:nth-child(3) {
    margin-left: 0;
    padding-inline: 0;
    justify-content: center;
    border-left: 0;
  }
}
/* End of site styles. */
