@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@1&display=swap");

:root {
  --sky: #edf2f7;
  --horizon: #b8d4f1;
  --cloud: #ffffff;
  --ink: #0e1116;
  --mist: #5b6472;
  --edge: #e3e8ee;
  --soft: #f7fafc;
  --brand-blue: #064878;
  --signal: #2e7def;
  --gold: #f7e9a6;
  --green: #2f9b73;
  --coral: #e46c44;
  --shadow: 0 1px 1px rgba(14, 17, 22, 0.04), 0 20px 40px -24px rgba(14, 17, 22, 0.2);
  --shadow-strong: 0 1px 1px rgba(14, 17, 22, 0.04), 0 24px 50px -26px rgba(14, 17, 22, 0.28);
  --font-display: "Inter Tight", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(58rem 34rem at 12% 24%, rgba(255, 255, 255, 0.92), transparent 68%),
    radial-gradient(46rem 28rem at 86% 8%, rgba(255, 255, 255, 0.72), transparent 64%),
    linear-gradient(180deg, var(--horizon), var(--sky) 34rem, #f9fbfd 100%);
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--brand-blue);
}

button,
summary {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(46, 125, 239, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
}

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

.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;
}

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

.concept-bar {
  background: var(--brand-blue);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  padding: 9px 20px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 232, 238, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: clamp(174px, 18vw, 250px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  color: #26313d;
  font-size: 14px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  background: var(--ink);
  color: #fff;
}

.btn-primary:hover {
  color: #fff;
  background: var(--brand-blue);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-color: var(--edge);
}

.btn-secondary:hover {
  background: #fff;
  border-color: #c5d5e4;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--edge);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  padding: 0 20px 20px;
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section-tight {
  padding: clamp(42px, 6vw, 72px) 0;
}

.hero {
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.86fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 13px;
}

.hero h1,
.section-heading h2,
.story h2,
.location h2,
.faq h2,
.owner-panel h2 {
  font-family: var(--font-display);
  line-height: 1.04;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  max-width: 830px;
}

.hero h1 span {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--mist);
}

.hero-lede {
  margin: 26px 0 0;
  max-width: 660px;
  color: #3d4a58;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.quick-facts div,
.trust-grid article,
.service-grid a,
.process-grid article,
.faq-list details {
  border: 1px solid var(--edge);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-facts div {
  padding: 16px;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  line-height: 1.25;
}

.quick-facts span {
  color: var(--mist);
  font-size: 14px;
  margin-top: 4px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--edge);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow-strong);
}

.media-frame {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
  background: #d8e3ed;
}

.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-card {
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 20px;
}

.card-kicker {
  margin: 0 0 12px;
  font-weight: 800;
  color: var(--brand-blue);
}

.visit-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.visit-card li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 10px;
  align-items: start;
  color: #3f4b58;
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 7px;
}

.dot.blue {
  background: var(--signal);
}

.dot.gold {
  background: #d6ad3f;
}

.dot.green {
  background: var(--green);
}

.visit-card a,
.process-grid a {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 800;
  color: var(--brand-blue);
}

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

.section-heading.compact {
  max-width: 920px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  align-items: end;
}

.section-heading h2,
.story h2,
.location h2,
.faq h2,
.owner-panel h2 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
}

.section-heading p:last-child,
.story-copy p,
.location p,
.faq p,
.owner-panel p {
  color: #465464;
  font-size: 17px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article {
  padding: 22px;
  min-height: 184px;
}

.trust-grid span {
  display: block;
  color: var(--brand-blue);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 10px;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
}

.trust-grid p {
  margin: 12px 0 0;
  color: var(--mist);
  font-size: 14px;
}

.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.service-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow);
}

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

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

.service-grid a {
  min-height: 148px;
  padding: 22px;
}

.service-grid strong,
.service-grid span {
  display: block;
}

.service-grid strong {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.22;
}

.service-grid span {
  color: var(--mist);
  margin-top: 12px;
  font-size: 14px;
}

.story-grid,
.location-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.portrait-panel {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow-strong);
  max-height: 720px;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.process-grid article {
  padding: 26px;
}

.step {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
  color: #3e3510;
}

.process-grid h3 {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.2;
  margin: 20px 0 10px;
}

.process-grid p {
  color: var(--mist);
  margin: 0;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--shadow-strong);
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-panel div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--edge);
  padding-bottom: 16px;
}

.contact-panel dt {
  color: var(--brand-blue);
  font-weight: 800;
}

.contact-panel dd {
  margin: 0;
  color: #2e3a46;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.logo-strip img {
  width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.9);
}

.faq-grid {
  align-items: start;
}

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

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--mist);
  font-size: 15px;
}

.owner-panel {
  background:
    linear-gradient(135deg, rgba(6, 72, 120, 0.97), rgba(14, 17, 22, 0.96)),
    var(--brand-blue);
  color: #fff;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-strong);
}

.owner-panel .eyebrow,
.owner-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.owner-panel .btn-primary {
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--edge);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(160px, 0.5fr));
  gap: 32px;
  align-items: start;
}

.footer-logo {
  width: 190px;
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 620px;
  color: var(--mist);
  margin: 0;
}

.site-footer h2 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  color: var(--mist);
  margin-top: 8px;
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .services-layout,
  .story-grid,
  .location-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .quick-facts,
  .trust-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.compact {
    display: block;
  }

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

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

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }

  .concept-bar {
    font-size: 12px;
  }

  .header-shell {
    min-height: 76px;
  }

  .brand img {
    width: 188px;
  }

  .section {
    padding: 56px 0;
  }

  .section-tight {
    padding: 38px 0;
  }

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

  .cta-row,
  .owner-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-panel,
  .contact-panel,
  .owner-panel,
  .portrait-panel,
  .service-photo,
  .logo-strip {
    border-radius: 14px;
  }

  .media-frame {
    border-radius: 10px;
  }

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

  .contact-panel div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  video {
    display: none;
  }

  .media-frame {
    background: url("assets/patient-room.jpg") center / cover;
  }
}
