:root {
  color-scheme: light;
  --ink: #183330;
  --muted: #5d6b66;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --teal: #126c66;
  --teal-dark: #0b4d49;
  --mint: #edf6f1;
  --sage: #dcebe4;
  --sky: #dbe9f0;
  --clay: #b75f4e;
  --sun: #f2c76b;
  --line: #d6ded9;
  --shadow: 0 22px 55px rgba(24, 51, 48, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: clip;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 40;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 20;
}

main > section[id] {
  scroll-margin-top: 88px;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 72px;
  padding: 0.75rem 1rem;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(214, 222, 217, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
}

.brand-name,
.brand-subline {
  display: block;
}

.brand-name {
  font-weight: 800;
  line-height: 1.2;
}

.brand-subline {
  color: var(--muted);
  font-size: 0.83rem;
}

.nav-toggle {
  display: grid;
  gap: 4px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.site-nav {
  display: none;
  grid-column: 1 / -1;
  gap: 0.4rem;
  padding: 0.5rem 0 0.25rem;
}

.site-nav.is-open {
  display: grid;
}

.site-nav a,
.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a {
  justify-content: flex-start;
  padding: 0.5rem 0.75rem;
}

.site-nav a:hover {
  background: var(--sage);
}

.header-call {
  display: none;
  padding: 0.55rem 0.9rem;
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 37, 35, 0.78), rgba(13, 37, 35, 0.34)),
    url("assets/hero_background_001.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 37, 35, 0.12), rgba(13, 37, 35, 0.74));
}

.hero-content {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 7rem 1rem 3.5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe3a1;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 1rem;
  font-size: 2.45rem;
  line-height: 1.05;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: 2rem;
  line-height: 1.15;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 1.4rem;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1.12rem;
}

.button,
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button {
  border: 1px solid transparent;
  padding: 0.78rem 1rem;
  cursor: pointer;
}

.button.primary {
  background: var(--teal);
  color: #fff;
}

.hero .button.primary,
.contact .button.primary,
.form-submit {
  background: var(--sun);
  color: #1f2b25;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.contact .button.secondary,
.hours .button.secondary {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.button.secondary.subtle {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--ink);
}

.button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.vacation-banner {
  background: #fff4d2;
  border-bottom: 1px solid #efd28d;
  color: #3d3020;
}

.vacation-banner-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  padding: 0.8rem 1rem;
}

.vacation-banner strong {
  color: #7a3d31;
}

.announcement {
  background: var(--teal-dark);
  color: #fff;
}

.announcement[hidden] {
  display: none;
}

.announcement-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1.25rem 1rem;
}

.announcement-inner > *,
.intro-grid > *,
.hours-layout > *,
.contact-layout > *,
.prescription-layout > *,
.quick-number-grid > * {
  min-width: 0;
}

.announcement-kicker {
  margin: 0;
  color: #f5d88f;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.announcement h2 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
}

.announcement p {
  margin-bottom: 0;
}

.text-link {
  justify-self: start;
  color: #fff;
  border-bottom: 2px solid var(--sun);
  border-radius: 0;
}

.section-band {
  background: var(--mint);
}

.section-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.intro-grid,
.hours-layout,
.contact-layout,
.prescription-layout {
  display: grid;
  gap: 2rem;
}

.intro-grid p:last-child,
.section-heading p,
.hours-copy > p {
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.after-hours {
  background: var(--surface);
}

.after-hours .section-inner {
  padding-block: 3.25rem;
}

.after-hours .section-heading {
  margin-bottom: 1.35rem;
}

.quick-number-grid {
  display: grid;
  gap: 0.85rem;
}

.quick-number-card {
  min-height: 146px;
  display: grid;
  align-content: space-between;
  gap: 0.4rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.quick-number-card:hover {
  transform: translateY(-1px);
}

.quick-number-card span {
  color: var(--muted);
  font-weight: 850;
}

.quick-number-card strong {
  color: var(--teal-dark);
  font-size: 2.35rem;
  line-height: 1;
}

.quick-number-card small {
  color: var(--muted);
}

.quick-number-card.urgent {
  border-color: #e7b4a9;
  background: #fff4ef;
}

.quick-number-card.urgent strong {
  color: var(--clay);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.6rem;
  margin-top: 1rem;
  padding-top: 0.5rem;
  text-align: center;
  color: var(--muted);
}

.resource-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.service-grid,
.team-grid {
  display: grid;
  gap: 1rem;
}

.team-grid {
  justify-content: center;
}

.service-card,
.person-card,
.hours-panel,
.contact-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.35rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.person-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.person-card {
  overflow: hidden;
  max-width: 340px;
  justify-self: center;
}

.person-card img {
  width: 100%;
  height: clamp(360px, 92vw, 440px);
  object-fit: cover;
  background: linear-gradient(135deg, #edf6f1, #dbe9f0);
}

.person-body {
  padding: 1.35rem;
  text-align: center;
}

.role {
  color: var(--clay) !important;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hours-panel {
  overflow: hidden;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row span:first-child {
  font-weight: 850;
}

.hours-row span:not(:first-child) {
  color: var(--muted);
}

.hours-head {
  display: none;
  background: var(--ink);
  color: #fff;
}

.hours-head span {
  color: #fff !important;
}

.hours-row.is-today {
  background: var(--mint);
  box-shadow: inset 4px 0 0 var(--teal);
}

.hours-row.is-today span:first-child::after {
  content: "Heute";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  vertical-align: middle;
}

.hours-row.is-urlaub {
  background: #fbeee9;
  box-shadow: inset 4px 0 0 var(--clay);
}

/* Regulaere Zeiten bleiben sichtbar, aber durchgestrichen/gedaempft, damit
   klar ist: diese Woche geschlossen, aber so sind die normalen Zeiten. */
.hours-row.is-urlaub span:not(:first-child) {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: var(--clay);
  text-decoration-thickness: 2px;
}

.hours-urlaub-hinweis {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  background: #fbeee9;
  color: var(--clay);
  font-size: 0.85rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

.hours-urlaub-hinweis svg {
  flex-shrink: 0;
}

.hours-row.is-urlaub span:first-child::after {
  content: "Urlaub";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.1rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--clay);
  border-radius: 999px;
  vertical-align: middle;
}

.notice {
  margin-top: 1.4rem;
  padding: 1rem;
  border-left: 5px solid var(--clay);
  background: #fff7df;
  border-radius: var(--radius);
}

.notice p {
  margin: 0.35rem 0 0;
  color: var(--ink);
}

.contact-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
}

.contact-block,
.contact-actions {
  margin-bottom: 1.1rem;
}

.emergency-note {
  padding: 1rem;
  border-radius: var(--radius);
  background: #fff7df;
  color: #46362b;
  font-weight: 700;
}

.emergency-note a {
  color: var(--teal-dark);
}

.map-card {
  min-height: 380px;
  height: 100%;
  overflow: hidden;
}

.map-card iframe {
  width: 100%;
  min-height: 420px;
  height: 100%;
  border: 0;
}

.map-consent {
  min-height: 380px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0.9rem;
  padding: 1.35rem;
  background: var(--sky);
}

.map-consent p {
  color: var(--muted);
}

.text-link.dark {
  color: var(--teal-dark);
}

.legal-page {
  min-height: 100vh;
  background: var(--surface);
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 2rem 1rem;
  background: var(--ink);
  color: #fff;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font-weight: inherit;
}

.site-footer a:hover,
.footer-button:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -18px 55px rgba(24, 51, 48, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-panel {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1rem;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-title {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-weight: 850;
}

.cookie-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-preferences {
  gap: 0.75rem;
}

.cookie-preferences-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--sage);
}

.cookie-row strong,
.cookie-row small {
  display: block;
}

.cookie-row small {
  color: var(--muted);
}

.cookie-row input {
  width: 22px;
  height: 22px;
  accent-color: var(--teal);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
}

.legal-header .section-inner {
  padding-block: 2rem;
}

.legal-content {
  max-width: 820px;
}

.legal-lead {
  max-width: 720px;
  color: var(--muted);
}

.legal-section {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.legal-section + .legal-section {
  margin-top: 1rem;
}

.legal-section h2 {
  font-size: 1.35rem;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

@media (min-width: 720px) {
  .hero {
    min-height: 76vh;
  }

  .hero-content {
    padding-inline: 1.5rem;
  }

  h1 {
    font-size: 4.7rem;
    line-height: 1;
  }

  h1 span {
    display: inline;
  }

  h2 {
    font-size: 2.55rem;
  }

  .announcement-inner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding-inline: 1.5rem;
  }

  .section-inner {
    padding: 5rem 1.5rem;
  }

  .intro-grid,
  .hours-layout,
  .contact-layout,
  .prescription-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 340px));
  }

  .quick-number-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hours-row {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
  }

  .hours-head {
    display: grid;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-inline: 1.5rem;
  }

  .cookie-panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.25rem 1.5rem;
  }

  .cookie-preferences {
    display: block;
  }

  .cookie-preferences .cookie-actions {
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0.85rem 1.5rem;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    padding: 0;
  }

  .site-nav a {
    justify-content: center;
  }

  .header-call {
    display: inline-flex;
  }
}

.form-card {
  max-width: 820px;
  margin: 0;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-form {
  display: grid;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .form-card {
    padding: 1.5rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.custom-form label {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.9rem;
}

.custom-form label.required::after {
  content: " *";
  color: var(--clay);
}

.required-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.optional-hint {
  color: var(--muted);
  font-weight: 500;
  text-transform: none;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 1rem;
  width: 1.15rem;
  height: 1.15rem;
  color: var(--muted);
  pointer-events: none;
  transition: color 0.25s ease;
}

.custom-form input {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.custom-form input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px var(--mint);
  background: var(--surface-strong);
}

.input-wrapper input:focus + .input-icon {
  color: var(--teal);
}

/* Validation & Error states */
.custom-form input.input-error {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(183, 95, 78, 0.12);
}

.custom-form input.input-error + .input-icon {
  color: var(--clay);
}

.field-error {
  font-size: 0.82rem;
  color: var(--clay);
  font-weight: 600;
  margin-top: 0.2rem;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* Prescription section: kompakt, auf einen Blick erfassbar */
.prescription .section-inner {
  padding-block: 2.75rem;
}

@media (min-width: 720px) {
  .prescription .section-inner {
    padding-block: 2.5rem;
  }
}

.prescription-layout {
  gap: 1.75rem;
}

#prescription-title {
  font-size: 1.9rem;
}

.prescription-copy .notice {
  background: var(--surface-strong);
  border-left: 4px solid var(--teal);
  padding: 0.95rem 1.15rem;
  margin-top: 1.1rem;
  box-shadow: var(--shadow);
}

.prescription-copy .notice strong {
  color: var(--teal-dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.prescription-copy .notice svg.icon-notice {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  color: var(--teal);
}

.form-actions {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  box-shadow: 0 2px 8px rgba(18, 108, 102, 0.18);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.form-submit-button::after {
  content: "→";
  font-size: 1.1em;
  transition: transform 0.22s ease;
  display: inline-block;
}

@media (min-width: 600px) {
  .form-submit-button {
    width: auto;
  }
}

.form-submit-button:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 77, 73, 0.22);
}

.form-submit-button:hover::after {
  transform: translateX(4px);
}

.form-submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(11, 77, 73, 0.15);
}

.form-status {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  display: none;
  box-sizing: border-box;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.success {
  display: block;
  background-color: #e6f4ea;
  border: 1px solid #137333;
  color: #137333;
}

.form-status.error {
  display: block;
  background-color: #fce8e6;
  border: 1px solid #c5221f;
  color: #c5221f;
}

.form-status.loading {
  display: block;
  background-color: var(--mint);
  border: 1px solid var(--teal);
  color: var(--teal-dark);
  animation: statusPulse 1.5s infinite ease-in-out;
}

@keyframes statusPulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

@media (min-width: 1040px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
