:root {
  --ink: #0e1116;
  --muted: #586574;
  --soft: #e7f0f2;
  --sky: #f3f8f9;
  --cloud: #ffffff;
  --edge: #d9e5e8;
  --blue: #146f94;
  --teal: #1aa7a1;
  --mint: #e8f7f4;
  --warm: #f2a365;
  --green: #5ca76d;
  --shadow: 0 22px 60px rgba(14, 17, 22, 0.10);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(180deg, rgba(232, 247, 244, 0.85) 0%, rgba(255, 255, 255, 0) 34rem),
    linear-gradient(135deg, #f8fbfc 0%, #eef7f7 44%, #fff7ef 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.sr-only,
.skip-link {
  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:focus {
  z-index: 20;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

:focus-visible {
  outline: 3px solid rgba(20, 111, 148, 0.35);
  outline-offset: 3px;
}

.concept-bar {
  padding: 9px 20px;
  color: #35515b;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--edge);
  font-size: 13px;
  text-align: center;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid rgba(217, 229, 232, 0.75);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 190px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #28414b;
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
}

.site-nav a:hover {
  background: white;
}

.site-nav .nav-cta {
  color: white;
  background: var(--ink);
}

.menu-button {
  display: none;
}

.section {
  padding: 86px 0;
}

.hero {
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.appointment-grid p,
.provider-copy p,
.footer-grid p {
  color: var(--muted);
  font-size: 18px;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button-primary {
  color: white;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(14, 17, 22, 0.16);
}

.button-secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--edge);
}

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

.panel-top {
  margin-bottom: 18px;
}

.panel-top strong {
  display: block;
  font-size: 26px;
  line-height: 1.14;
}

.path-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid var(--edge);
}

.path-card strong,
.path-card small {
  display: block;
}

.path-card small {
  margin-top: 3px;
  color: var(--muted);
}

.path-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--mint);
  font-weight: 850;
  font-size: 13px;
}

.trust-strip {
  padding: 20px 0;
  border-block: 1px solid var(--edge);
  background: rgba(255, 255, 255, 0.72);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: var(--edge);
}

.trust-grid div {
  min-width: 0;
  padding: 20px;
  background: white;
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.trust-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.25;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 0;
}

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

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 34px rgba(14, 17, 22, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.service-card div {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.provider-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(232, 247, 244, 0.42));
}

.provider-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.provider-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--edge);
  box-shadow: var(--shadow);
}

.provider-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.sedation-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.sedation-options div {
  min-width: 0;
  padding: 18px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--edge);
}

.sedation-options strong,
.sedation-options span {
  display: block;
}

.sedation-options span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.proof-section {
  background: #0f2f3d;
  color: white;
}

.proof-section .eyebrow,
.proof-section .section-heading p {
  color: #a9e5df;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  align-items: stretch;
}

.quote-card {
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quote-card blockquote {
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.quote-card figcaption {
  margin-top: 22px;
  color: #b7d5dc;
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 36px;
  align-items: start;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-action {
  display: block;
  padding: 20px;
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: white;
  text-decoration: none;
}

.contact-action span,
.contact-action strong {
  display: block;
}

.contact-action span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-action strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 20px;
}

.visit-section {
  padding-top: 0;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
}

.visit-card,
.hours-card {
  padding: 28px;
  border: 1px solid var(--edge);
  border-radius: 20px;
  background: white;
}

.hours-card dl,
.hours-card dd {
  margin: 0;
}

.hours-card dl {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--edge);
}

.hours-card dt {
  color: var(--muted);
}

.hours-card dd {
  font-weight: 800;
  text-align: right;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 120px;
}

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

details {
  border: 1px solid var(--edge);
  border-radius: 8px;
  background: white;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.owner-cta {
  padding: 44px 0;
  color: white;
  background: var(--ink);
}

.owner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.owner-grid .eyebrow {
  color: var(--warm);
}

.owner-grid h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.8vw, 44px);
}

.owner-grid .button-primary {
  background: white;
  color: var(--ink);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 36px;
}

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

.footer-grid strong,
.footer-grid a {
  display: block;
}

.footer-grid a {
  margin-top: 8px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 980px) {
  .hero-grid,
  .provider-grid,
  .appointment-grid,
  .visit-grid,
  .faq-grid,
  .proof-grid,
  .owner-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .owner-grid {
    justify-items: start;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }

  .brand img {
    width: 158px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--edge);
    border-radius: 999px;
    background: white;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--edge);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: center;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    padding-top: 46px;
  }

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

  .comfort-panel {
    padding: 20px;
  }

  .trust-grid,
  .service-grid,
  .sedation-options {
    grid-template-columns: 1fr;
  }

  .hours-card div {
    display: grid;
    gap: 4px;
  }

  .hours-card dd {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
