:root {
  --navy: #07182b;
  --ink: #0f172a;
  --slate: #475569;
  --muted: #64748b;
  --line: #dce5ec;
  --soft: #f5f8fa;
  --sky-50: #effbf8;
  --sky-100: #d7f3ec;
  --sky-200: #a9e5d8;
  --sky-700: #087f75;
  --sky-800: #06665f;
  --coral: #df6c63;
  --coral-deep: #c6534b;
  --sun: #f5b94c;
  --lavender: #ddd7ff;
  --white: #ffffff;
  --amber: #92400e;
  --amber-bg: #fffbeb;
  --amber-line: #fde68a;
  --radius: 1.25rem;
  --shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  border-radius: 0.6rem;
  background: var(--navy);
  color: white;
  padding: 0.8rem 1rem;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), 1200px);
  margin-inline: auto;
}

.section {
  padding: 6rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(220, 229, 236, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(calc(100% - 2rem), 1200px);
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-700), #277eb5);
  color: white;
  box-shadow: 0 8px 22px rgba(3, 105, 161, 0.22);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.desktop-nav a {
  position: relative;
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--sky-700);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--sky-700);
}

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

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 15px;
  padding: 0.76rem 1.25rem;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}

.button svg {
  width: 18px;
  height: 18px;
}

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

.button:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(14, 165, 233, 0.28);
  outline-offset: 2px;
}

.button-primary {
  background: linear-gradient(135deg, var(--sky-700), #2d7fbb);
  color: white;
  box-shadow: 0 7px 18px rgba(3, 105, 161, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--sky-800), #21699f);
  box-shadow: 0 10px 25px rgba(3, 105, 161, 0.24);
}

.button-secondary {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.button-compact {
  min-height: 42px;
  border-radius: 13px;
  padding: 0.65rem 0.95rem;
  font-size: 0.8rem;
}

.button-large {
  min-height: 52px;
  padding-inline: 1.45rem;
}

.mobile-call,
.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 250, 247, 0.96) 0%, rgba(255, 252, 247, 0.96) 72%),
    radial-gradient(circle at 82% 16%, #bfe4f5 0, transparent 33%),
    radial-gradient(circle at 15% 0%, rgba(255, 204, 139, 0.35) 0, transparent 28%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -1px;
  left: -8%;
  height: 85px;
  opacity: 0.2;
  background:
    linear-gradient(168deg, transparent 49%, var(--coral) 50% 52%, transparent 53%) 0 0 / 220px 100% repeat-x;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-orb-one {
  top: -220px;
  left: 35%;
  width: 560px;
  height: 560px;
  background: rgba(169, 229, 216, 0.28);
}

.hero-orb-two {
  right: -120px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  background: rgba(221, 215, 255, 0.32);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 5rem;
  min-height: 720px;
  padding-top: 5rem;
  padding-bottom: 6.5rem;
}

.hero-grid > * {
  min-width: 0;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  margin: 0 0 1.5rem;
  border: 1px solid var(--sky-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--sky-800);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.opening-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), #e88c54);
  box-shadow: 0 8px 22px rgba(223, 108, 99, 0.26);
  color: white;
  box-shadow: 0 8px 22px rgba(3, 105, 161, 0.22);
  padding: 0.6rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.opening-notice svg {
  width: 17px;
  height: 17px;
}

.location-pill span {
  min-width: 0;
  white-space: normal;
}

.location-pill svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  line-height: 1.04;
}

.hero-intro {
  max-width: 680px;
  margin: 0;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.75;
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  max-width: 680px;
  margin-top: 2rem;
}

.hero-highlights div {
  display: flex;
  align-items: center;
  min-height: 84px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  padding: 1rem;
}

.hero-highlights strong {
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.featured-wrap {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: white;
  box-shadow: var(--shadow-lg);
  padding: 0.85rem;
}

.featured-wrap::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 28px;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--sun);
  opacity: 0.42;
  transform: rotate(12deg);
}

.featured-card {
  position: relative;
  border-radius: 25px;
  background:
    radial-gradient(circle at 95% 5%, rgba(169, 229, 216, 0.24), transparent 32%),
    radial-gradient(circle at 8% 92%, rgba(223, 108, 99, 0.16), transparent 30%),
    var(--navy);
  color: white;
  padding: 2rem;
}

.featured-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--sky-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--sky-200);
}

.featured-card h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.featured-card > p {
  margin: 1.5rem 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sky-200);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

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

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  padding: 0.8rem;
  font-size: 0.86rem;
  line-height: 1.55;
}

.feature-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.1rem;
  color: var(--sky-200);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-header h2,
.conditions-copy h2,
.insurance-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.section-header > p:last-child,
.conditions-copy > p,
.insurance-copy > p {
  margin: 0;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.75;
}

.service-search {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 570px;
  margin: 0 auto 2.25rem;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: white;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
  padding: 0.85rem 1rem;
}

.service-search:focus-within {
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px var(--sky-100);
}

.service-search svg {
  width: 20px;
  height: 20px;
  color: #94a3b8;
}

.service-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.service-search input::placeholder {
  color: #94a3b8;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.service-card,
.step-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 5px 18px rgba(15, 23, 42, 0.045);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

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

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--sky-100);
  color: var(--sky-700);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.service-card h3,
.step-card h3,
.info-card h3 {
  margin: 1.2rem 0 0.65rem;
  font-size: 1.1rem;
  line-height: 1.3;
}

.service-card > p,
.step-card > p,
.info-card > p {
  margin: 0;
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.65;
}

.service-card .details {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1.2rem;
}

.tags span {
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--slate);
  padding: 0.33rem 0.6rem;
  font-size: 0.69rem;
  font-weight: 700;
}

.service-card[hidden] {
  display: none;
}

.no-results {
  margin: 2rem auto 0;
  color: var(--muted);
  text-align: center;
}

.conditions-section,
.contact-section {
  background: var(--soft);
}

.conditions-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 4rem;
}

.conditions-copy > p {
  max-width: 560px;
}

.emergency-note {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  border: 1px solid var(--amber-line);
  border-radius: 20px;
  background: var(--amber-bg);
  color: var(--amber);
  padding: 1rem;
}

.emergency-note {
  margin-top: 1.8rem;
}

.emergency-note svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 0.15rem;
}

.emergency-note p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.condition-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0.75rem;
}

.accordion-column,
.faq-list {
  display: grid;
  gap: 0.7rem;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  box-shadow: 0 3px 12px rgba(15, 23, 42, 0.035);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.accordion-item.is-open {
  border-color: var(--sky-200);
  box-shadow: 0 0 0 4px rgba(224, 242, 254, 0.8);
}

.accordion-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  border: 0;
  background: white;
  color: #334155;
  padding: 1rem;
  cursor: pointer;
  text-align: left;
  font-weight: 700;
}

.accordion-item button:hover {
  background: #f8fafc;
}

.accordion-item button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: var(--sky-700);
  transition: transform 0.25s;
}

.accordion-item.is-open button svg {
  transform: rotate(90deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 0 solid #eef2f6;
  background: rgba(248, 250, 252, 0.85);
  transition: grid-template-rows 0.25s ease, border-width 0.25s;
}

.accordion-panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--slate);
  font-size: 0.82rem;
  line-height: 1.65;
  padding: 0 1rem;
  transition: padding 0.25s;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
  border-top-width: 1px;
}

.accordion-item.is-open .accordion-panel p {
  padding: 1rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.15rem;
}

.step-card {
  padding: 1.5rem;
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-top > strong {
  color: #e2e8f0;
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  font-size: 2rem;
}

.insurance-section {
  background:
    radial-gradient(circle at 15% 0, rgba(223, 108, 99, 0.3), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(169, 229, 216, 0.2), transparent 30%),
    var(--navy);
  color: white;
  padding: 6rem 0;
}

.insurance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.insurance-copy > p {
  color: #cbd5e1;
}

.payer-card {
  border-radius: 25px;
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  padding: 1.7rem;
}

.payer-card h3 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}

.payer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.payer-grid div {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 0.9rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.payer-grid svg {
  width: 19px;
  height: 19px;
  color: var(--sky-700);
}

.payer-card > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.faq-container {
  max-width: 820px;
}

.faq-section .section-header {
  margin-bottom: 2.2rem;
}

.faq-list .accordion-item button {
  color: var(--ink);
  padding: 1.15rem 1.25rem;
}

.faq-list .accordion-panel p,
.faq-list .accordion-item.is-open .accordion-panel p {
  font-size: 0.88rem;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 1.6rem;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
}

.info-card {
  padding: 1.5rem;
}

.info-card h3 {
  margin-top: 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-list a,
.contact-list p {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  color: var(--slate);
  font-size: 0.86rem;
  line-height: 1.55;
}

.contact-list a:hover {
  color: var(--sky-700);
}

.contact-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 0.12rem;
  color: var(--sky-700);
}

.opening-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(169, 229, 216, 0.28), transparent 35%),
    radial-gradient(circle at 8% 90%, rgba(223, 108, 99, 0.18), transparent 34%),
    var(--navy);
  color: white;
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}

.opening-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--sky-200);
}

.opening-card-icon svg {
  width: 30px;
  height: 30px;
}

.opening-card h3 {
  max-width: 620px;
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  line-height: 1.15;
}

.opening-card > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.75;
}

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

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

.button-light:hover {
  background: var(--sky-50);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  background: var(--navy);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.8fr 0.8fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer-logo {
  color: white;
}

.footer-logo .brand-copy span,
.footer-brand > p,
.footer-grid > div > p {
  color: #94a3b8;
}

.footer-logo .brand-copy span {
  max-width: 470px;
}

.footer-brand > p {
  max-width: 620px;
  margin: 1.2rem 0 0;
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-grid h3 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-grid > div > p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.75;
}

.footer-grid a:hover {
  color: var(--sky-200);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.7rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

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

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 1rem;
  }

  .phone-desktop {
    display: none;
  }

  .hero-grid {
    gap: 3rem;
  }

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

@media (max-width: 850px) {
  .desktop-nav,
  .opening-desktop {
    display: none;
  }

  .mobile-call {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.58rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
  }

  .mobile-call svg {
    width: 17px;
    height: 17px;
    color: var(--sky-700);
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: #334155;
    cursor: pointer;
  }

  .menu-toggle:hover {
    background: #f1f5f9;
  }

  .menu-toggle svg {
    width: 24px;
    height: 24px;
  }

  .menu-toggle .close-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 77px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    border-top: 1px solid var(--line);
    background: white;
    padding: 1rem;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    border-radius: 12px;
    padding: 0.85rem;
    color: #334155;
    font-weight: 700;
  }

  .mobile-nav > a:not(.button):hover {
    background: #f1f5f9;
  }

  .mobile-nav .button {
    margin-top: 0.25rem;
  }

  .hero-grid,
  .conditions-grid,
  .insurance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 3rem;
    padding-top: 4rem;
  }

  .featured-wrap {
    max-width: 620px;
  }

  .conditions-grid,
  .insurance-grid {
    gap: 3rem;
  }

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

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 620px) {
  .container,
  .nav-shell {
    width: min(calc(100% - 1.25rem), 1200px);
  }

  .section,
  .insurance-section {
    padding: 4.5rem 0;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy span {
    font-size: 0.65rem;
  }

  .mobile-nav {
    top: 71px;
  }

  .mobile-call {
    padding: 0.55rem;
  }

  .mobile-call svg {
    width: 18px;
    height: 18px;
  }

  .mobile-call {
    font-size: 0;
  }

  .hero-grid {
    padding-top: 3.25rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .location-pill {
    width: 100%;
    align-items: flex-start;
  }

  .hero-intro {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-highlights div {
    min-height: 64px;
  }

  .featured-card {
    padding: 1.35rem;
  }

  .featured-card h2 {
    font-size: 1.4rem;
  }

  .service-grid,
  .steps-grid,
  .condition-columns,
  .payer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .condition-columns {
    gap: 0.7rem;
  }

  .section-header {
    margin-bottom: 2.3rem;
  }

  .section-header h2,
  .conditions-copy h2,
  .insurance-copy h2 {
    font-size: 2rem;
  }

  .opening-card-actions {
    flex-direction: column;
  }

  .opening-card-actions .button {
    width: 100%;
  }

  .footer-grid {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .mobile-call {
    display: none;
  }

  .header-actions {
    gap: 0.25rem;
  }
}
