:root {
  --ink: #173f38;
  --ink-deep: #0d2a26;
  --text: #334a46;
  --muted: #657470;
  --paper: #fffdf8;
  --cream: #f5f1e8;
  --cream-deep: #ebe5d9;
  --sage: #dde8df;
  --sage-light: #eef4ef;
  --red: #bd252b;
  --red-dark: #961b21;
  --line: rgba(23, 63, 56, 0.16);
  --shadow: 0 24px 60px rgba(22, 52, 47, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.scroll-progress {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.js [data-reveal] {
  opacity: 0;
  translate: 0 30px;
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal="left"] {
  translate: -38px 0;
}

.js [data-reveal="right"] {
  translate: 38px 0;
}

.js [data-reveal="image"] {
  opacity: 0;
  scale: 0.96;
  translate: 0 0;
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  translate: 0 0;
}

.js [data-reveal="image"].is-visible {
  opacity: 1;
  scale: 1;
}

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

a {
  color: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.7vw, 4.45rem);
}

h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

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

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

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  color: white;
  background: var(--ink-deep);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid rgba(189, 37, 43, 0.44);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #f5cbc7;
}

.button {
  display: inline-flex;
  min-height: 54px;
  gap: 11px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(164, 29, 36, 0.2);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  color: white;
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 16px 34px rgba(164, 29, 36, 0.25);
  transform: translateY(-2px);
}

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

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

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
  box-shadow: none;
}

.button-secondary:hover {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.button-light {
  color: var(--ink-deep);
  background: white;
  border-color: white;
  box-shadow: none;
}

.button-light:hover {
  color: var(--ink-deep);
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.3;
  text-decoration-color: rgba(23, 63, 56, 0.32);
  text-underline-offset: 5px;
}

.text-link svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.utility-bar {
  position: relative;
  z-index: 40;
  color: #edf5f1;
  background: var(--ink-deep);
  font-size: 0.79rem;
}

.utility-inner {
  display: flex;
  min-height: 39px;
  align-items: center;
  justify-content: space-between;
}

.opening-status {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 0;
  letter-spacing: 0.015em;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #e2b66f;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(226, 182, 111, 0.12);
}

.opening-status.is-open .status-dot {
  background: #89d39c;
  box-shadow: 0 0 0 4px rgba(137, 211, 156, 0.12);
}

.emergency-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: white;
  font-weight: 720;
  text-decoration: none;
}

.emergency-link svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(22, 52, 47, 0.07);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-deep);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(13, 42, 38, 0.1);
  border-radius: 50%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 2.2vw, 32px);
  align-items: center;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 670;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a[aria-current="page"] {
  color: var(--red);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding: clamp(60px, 6.5vw, 96px) 0 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(221, 232, 223, 0.9), transparent 30%),
    linear-gradient(180deg, var(--cream) 0%, var(--paper) 82%);
}

.hero::before {
  position: absolute;
  top: 14%;
  left: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(23, 63, 56, 0.1);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.78fr);
  gap: clamp(54px, 7vw, 100px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 74px;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 21px;
}
.appointment-note {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-media {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(7, 30, 26, 0.56) 100%);
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 56% center;
  transform: translateY(var(--parallax-offset, 0)) scale(1.04);
  will-change: transform;
}

.hero-media > .hero-practice-photo {
  object-position: 46% center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
  font-size: 0.84rem;
  font-weight: 700;
}

.quick-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(13, 42, 38, 0.2);
  transform: translateY(40px);
}

.quick-fact {
  display: flex;
  min-height: 124px;
  gap: 17px;
  align-items: center;
  padding: 26px 30px;
  color: white;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.quick-fact:last-child {
  border-right: 0;
}

.quick-fact:hover {
  background: var(--ink-deep);
}

.quick-fact svg {
  width: 28px;
  min-width: 28px;
  height: 28px;
  color: #cdded3;
}

.quick-fact span {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.quick-fact small {
  display: block;
  margin-bottom: 6px;
  color: #aec3bc;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promise-section {
  padding: clamp(120px, 12vw, 120px) 0 clamp(72px, 8vw, 72px);
  background: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-grid article {
  padding: 34px clamp(24px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.promise-grid article:first-child {
  padding-left: 0;
}

.promise-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.promise-number {
  display: block;
  margin-bottom: 42px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 0.84rem;
  font-style: italic;
}

.promise-grid h3 {
  margin-bottom: 12px;
}

.promise-grid p {
  max-width: 330px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.services {
  padding-top: clamp(88px, 10vw, 150px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(36px, 8vw, 100px);
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 440px;
  margin-bottom: 5px;
  color: var(--muted);
}

.section-heading-narrow {
  display: block;
  max-width: 760px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: clamp(28px, 3.2vw, 42px);
  overflow: hidden;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(23, 63, 56, 0.12);
  border-radius: 50%;
  transition: transform 300ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--sage-light);
  box-shadow: 0 18px 45px rgba(22, 52, 47, 0.1);
  transform: translateY(-5px);
}

.service-card:hover::after {
  transform: scale(1.18);
}

.service-card-featured {
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.service-card-featured h3,
.service-card-featured .service-number,
.service-card-featured .service-icon {
  color: white;
}

.service-card-featured::after {
  border-color: rgba(255, 255, 255, 0.14);
}

.service-card-featured:hover {
  background: var(--ink-deep);
}

.service-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: #83938e;
  font-family: var(--serif);
  font-size: 0.88rem;
  font-style: italic;
}

.service-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 44px;
  color: var(--red);
  background: rgba(189, 37, 43, 0.08);
  border-radius: 50%;
  place-items: center;
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
}

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

.service-card h3 {
  position: relative;
  z-index: 1;
  max-width: 300px;
}

.service-card p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.service-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 2px 0;
}

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

.practice {
  overflow: hidden;
  background: var(--cream);
}

.practice-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 130px);
  align-items: center;
}

.practice-media {
  position: relative;
  max-width: 500px;
  margin: 0;
}

.practice-media::before {
  position: absolute;
  top: -34px;
  right: -34px;
  width: 72%;
  height: 70%;
  content: "";
  background: var(--sage);
  border-radius: var(--radius);
}

.image-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d9e2dd;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.practice-media figcaption {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: -24px 0 0 30px;
  padding: 13px 18px;
  color: white;
  background: var(--ink);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.practice-copy {
  max-width: 650px;
}

.practice-copy .large-copy {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.practice-copy > p:not(.eyebrow, .large-copy) {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 34px 0 38px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 670;
}

.check-list svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  color: white;
  background: var(--red);
  border-radius: 50%;
  stroke-width: 2.5;
}

.practice-album {
  overflow: hidden;
  background: #f2ece2;
}

.practice-album-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.practice-album-copy h2 {
  font-size: clamp(2.6rem, 4.1vw, 3.75rem);
  line-height: 1.12;
}

.practice-album-copy h2 em {
  color: #966047;
  font-weight: 500;
}

.practice-album-copy > p:not(.eyebrow) {
  max-width: 390px;
}

.practice-album-link {
  margin-top: 12px;
  padding-block: 10px;
}

.practice-album-copy .practice-album-address {
  margin: 36px 0 0;
  padding-left: 18px;
  color: var(--muted);
  border-left: 1px solid #c7bba9;
  font-size: 0.8rem;
  line-height: 1.6;
}

.practice-album-photos {
  position: relative;
  min-width: 0;
  height: clamp(420px, 43vw, 510px);
}

.album-print {
  position: absolute;
  margin: 0;
  padding: 10px 10px 0;
  background: var(--paper);
  border: 1px solid rgba(96, 69, 47, 0.1);
  border-radius: 5px;
  box-shadow: 0 12px 25px rgba(69, 48, 31, 0.12);
}

.album-print-patient {
  top: 18px;
  left: 12px;
  width: 54%;
  rotate: -5deg;
}

.album-print-room {
  z-index: 1;
  top: 36%;
  right: 10px;
  width: 53%;
  rotate: 5deg;
}

.album-print a {
  display: block;
  overflow: hidden;
  border-radius: 2px;
}

.album-print img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.album-print-patient img {
  aspect-ratio: 4 / 5;
  object-position: center 48%;
}

.album-print a:hover img,
.album-print a:focus-visible img {
  transform: scale(1.035);
}

.album-print figcaption {
  display: flex;
  min-height: 48px;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(0.78rem, 1.2vw, 1rem);
  font-style: italic;
  line-height: 1.3;
}

.album-print figcaption span:last-child {
  color: #a78d73;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
}

.practice-album-note {
  position: absolute;
  top: 28px;
  right: 8px;
  max-width: 32%;
  margin: 0;
  color: #966047;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.4;
  rotate: 5deg;
}

@media (max-width: 820px) {
  .practice-album-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .practice-album-copy > p:not(.eyebrow) {
    max-width: 520px;
  }

  .practice-album-copy .practice-album-address {
    display: none;
  }

  .practice-album-photos {
    width: min(100%, 620px);
    height: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  .practice-album-photos {
    height: 360px;
  }

  .album-print {
    padding: 7px 7px 0;
  }

  .album-print-patient {
    left: 9px;
    width: 55%;
  }

  .album-print-room {
    top: 43%;
    right: 7px;
    width: 54%;
  }

  .album-print figcaption {
    min-height: 42px;
    font-size: 0.75rem;
  }

  .practice-album-note {
    right: 9px;
    max-width: 30%;
    font-size: 0.92rem;
  }
}

.visit {
  background: var(--paper);
}

.visit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: visit;
}

.visit-steps li {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--sage-light);
  border-radius: var(--radius);
}

.visit-steps li:nth-child(2) {
  background: var(--cream);
}

.visit-steps li:nth-child(3) {
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.visit-steps li:nth-child(3) h3 {
  color: white;
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  color: var(--red);
  background: white;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  place-items: center;
}

.visit-steps h3 {
  margin-bottom: 12px;
}

.visit-steps p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

.hours {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.hours::after {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 540px;
  height: 540px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hours-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 0.75fr);
  gap: clamp(70px, 10vw, 150px);
  align-items: center;
}

.hours-intro {
  max-width: 580px;
}

.hours-intro h2 {
  color: white;
}

.hours-intro p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 36px;
}

.hours-card {
  padding: clamp(28px, 4vw, 46px);
  color: var(--ink-deep);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.2);
}

.hours-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto;
  gap: 3px 24px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.hours-row:first-child {
  padding-top: 0;
}

.hours-row > span {
  grid-row: 1 / span 2;
  font-size: 0.92rem;
  font-weight: 700;
}

.hours-row strong {
  font-size: 0.91rem;
  text-align: right;
}

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

.emergency-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  margin-top: 30px;
  padding: 23px;
  background: #fff0ed;
  border-radius: var(--radius-sm);
}

.emergency-icon {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--red);
  background: white;
  border-radius: 50%;
  place-items: center;
}

.emergency-icon svg {
  width: 22px;
  height: 22px;
}

.emergency-box h3 {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 780;
  letter-spacing: 0;
}

.emergency-box p {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.5;
}

.emergency-box a {
  color: var(--red-dark);
  font-weight: 800;
  text-underline-offset: 4px;
}

.faq {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 140px);
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-deep);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 28px;
  min-width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  content: "";
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -1px 50px 28px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 4px;
  margin: 34px 0 30px;
  font-style: normal;
}

.contact-list a {
  display: flex;
  width: fit-content;
  gap: 15px;
  align-items: center;
  padding: 8px 0;
  color: var(--ink-deep);
  text-decoration: none;
}

.contact-list a:hover span:last-child {
  text-decoration: underline;
  text-decoration-color: rgba(23, 63, 56, 0.3);
  text-underline-offset: 5px;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--red);
  background: rgba(189, 37, 43, 0.08);
  border-radius: 50%;
  place-items: center;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-list small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.map-embed {
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
}

.site-footer {
  color: #c2d0cb;
  background: #0a2420;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 50px;
  align-items: center;
  padding-block: 58px;
}

.footer-brand {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-brand img {
  border-radius: 50%;
}

.footer-brand p {
  margin-bottom: 0;
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-brand strong {
  color: white;
}

.footer-contact p {
  margin-bottom: 3px;
  font-size: 0.84rem;
}

.footer-contact a,
.footer-links a,
.footer-bottom a {
  color: white;
  font-size: 0.84rem;
  text-underline-offset: 4px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-bottom {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.76rem;
}

.mobile-actions {
  display: none;
}

.legal-page {
  min-height: 100vh;
  padding-bottom: 0;
  background: var(--cream);
}

.legal-header {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-back svg {
  width: 17px;
  height: 17px;
}

.legal-content {
  width: min(calc(100% - 40px), 800px);
  margin-inline: auto;
  padding-block: 80px 120px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.legal-content h2 {
  margin: 48px 0 16px;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.legal-content h3 {
  margin: 30px 0 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 760;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text);
  font-size: 0.95rem;
}

.legal-notice {
  margin: 30px 0 44px;
  padding: 20px 22px;
  color: #633d15;
  background: #fff3d8;
  border: 1px solid #e5c985;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.legal-content a {
  color: var(--ink);
  text-underline-offset: 4px;
}

@media (max-width: 1050px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
    gap: 45px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 550px;
  }

  .quick-fact {
    padding: 24px 22px;
  }

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

}

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

  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .utility-inner {
    min-height: 36px;
  }

  .opening-status {
    font-size: 0.73rem;
  }

  .emergency-link {
    font-size: 0;
  }

  .emergency-link::after {
    content: "Notfall";
    font-size: 0.74rem;
  }

  .emergency-link svg {
    width: 14px;
    height: 14px;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-header {
    backdrop-filter: none;
  }

  .brand {
    position: relative;
    z-index: 42;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

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

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

  .menu-toggle {
    position: relative;
    z-index: 42;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-content: center;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 19px;
    height: 1.5px;
    margin: 3px 0;
    background: var(--ink-deep);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(3.75px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 40;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 34px 90px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    display: block;
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.035em;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    margin-top: 15px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .section-heading,
  .practice-grid,
  .hours-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 10px;
  }

  .hero-copy {
    padding-bottom: 45px;
  }

  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    translate: 0 26px;
  }

  .hero-media {
    min-height: 430px;
    border-radius: var(--radius-lg);
  }

  .hero-media > img {
    min-height: 430px;
  }

  .quick-facts {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), var(--container));
    border-radius: var(--radius-lg);
    transform: translateY(34px);
  }

  .quick-fact {
    min-height: 98px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .quick-fact:last-child {
    border-bottom: 0;
  }

  .promise-section {
    padding: 105px 0 72px;
  }

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

  .promise-grid article,
  .promise-grid article:first-child,
  .promise-grid article:last-child {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-grid article:last-child {
    border-bottom: 0;
  }

  .promise-number {
    margin-bottom: 15px;
  }

  .promise-grid p {
    max-width: 600px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 44px;
  }

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

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

  .practice-grid {
    gap: 70px;
  }

  .practice-media {
    width: min(90%, 500px);
  }


  .visit-steps {
    grid-template-columns: 1fr;
  }

  .visit-steps li {
    min-height: 220px;
  }

  .hours-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }

  .faq-intro {
    position: static;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 480px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }

  .mobile-actions {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 68px;
    padding: 7px;
    background: rgba(255, 253, 248, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 30px rgba(13, 42, 38, 0.08);
    backdrop-filter: blur(16px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.menu-open .mobile-actions {
    visibility: hidden;
    opacity: 0;
    transform: translateY(100%);
  }

  .mobile-actions a {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border-radius: 12px;
    font-size: 0.83rem;
    font-weight: 780;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    color: white;
    background: var(--red);
  }

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

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding-block: 78px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.4rem);
  }

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

  .hero {
    padding-top: 42px;
  }

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

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    gap: 12px;
    justify-content: space-evenly;
  }

  .hero-actions > a {
    gap: 7px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero-actions .button {
    padding-inline: 14px;
  }

  .hero-media,
  .hero-media > img {
    min-height: 370px;
  }

  .hero-media figcaption {
    right: 20px;
    bottom: 19px;
    left: 20px;
    font-size: 0.75rem;
  }

  .hours {
    margin-top: 24px;
  }

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

  .services {
    padding-top: 112px;
  }

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

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

  .service-note {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .practice-media::before {
    top: -22px;
    right: -18px;
  }

  .practice-media figcaption {
    margin-left: 16px;
  }


  .visit-steps li {
    min-height: 235px;
  }

  .hours-card {
    padding: 24px 20px;
  }

  .hours-row {
    grid-template-columns: 1fr auto;
    gap: 2px 14px;
  }

  .emergency-box {
    grid-template-columns: 1fr;
  }

  .faq-list summary {
    min-height: 88px;
    font-size: 1.12rem;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 400px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    gap: 12px;
    justify-content: center;
  }

  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .footer-links {
    grid-column: auto;
    justify-content: center;
  }

  .footer-bottom {
    min-height: 86px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .legal-content {
    width: min(calc(100% - 28px), 800px);
    padding-block: 60px 100px;
  }
}

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

  .js [data-reveal],
  .js [data-reveal="left"],
  .js [data-reveal="right"] {
    opacity: 1;
    translate: 0 0;
  }

  .js [data-reveal="image"] {
    opacity: 1;
    scale: 1;
  }

  .hero-media > img {
    transform: none;
  }
}

 @media (max-width: 600px) {
    .hide-on-mobile {
      display: none;
    }
  }
