/* ============================================================
   Tierarztpraxis Dr. Rode — Design System v2
   Markenfarben: Firmenblau #0080C8 · Mint #B9CBCB · Orange #E59509
   ============================================================ */

:root {
  /* Brand colors */
  --slate:        #0080C8;
  --slate-deep:   #004E7C;
  --slate-dark:   #002740;
  --mint:         #B9CBCB;
  --mint-soft:    #D7E0E0;
  --mint-pale:    #EAEEEE;
  --orange:       #E59509;
  --orange-deep:  #B97400;
  --orange-soft:  #F4D9A8;

  /* Surfaces */
  --bg:           #FFFFFF;
  --bg-warm:      #F7F8F8;
  --paper:        #FFFFFF;
  --paper-tint:   #FAFBFB;

  /* Text */
  --ink:          #1B2530;
  --ink-soft:     #3F4B58;
  --ink-mute:     #6B7480;
  --ink-faint:    #97A0AB;

  /* Lines */
  --line:         #E5E7EA;
  --line-soft:    #EEF0F2;
  --line-mint:    #C9D4D4;

  /* Type */
  --display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
  --body:    "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max:     1280px;
  --gutter:  clamp(22px, 4vw, 64px);
  --radius:  2px;

  /* Motion */
  --ease:    cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 16.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
::selection { background: var(--orange); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0 0 0.4em;
  color: var(--ink);
  line-height: 1.05;
}
h1 { font-size: clamp(3rem, 7vw, 6rem); letter-spacing: -0.03em; line-height: 0.98; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.06; }
h3 { font-size: clamp(1.35rem, 1.9vw, 1.7rem); line-height: 1.22; }
em, .it { font-style: italic; color: var(--slate); }
em.orange, .it-orange { font-style: italic; color: var(--orange-deep); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--orange);
}
.eyebrow.center { justify-content: center; }
.eyebrow.orange { color: var(--orange-deep); }

.lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  line-height: 1.42;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
}
.lead em { font-style: italic; color: var(--slate); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.divider { height: 1px; background: var(--line); margin: 0; border: 0; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px var(--gutter);
  max-width: var(--max); margin: 0 auto;
  gap: 24px;
}
.nav-logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}
.nav-logo img {
  height: 100px;
  width: auto;
}
.nav-links {
  display: flex; gap: clamp(16px, 2.4vw, 36px); align-items: center;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a {
  color: var(--ink-soft);
  padding: 6px 0;
  position: relative;
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--slate); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--orange);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--slate); color: var(--paper);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .3s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--paper);
}
.nav-cta svg { transition: transform .3s var(--ease); }
.nav-cta:hover svg { transform: rotate(10deg) scale(1.1); }
.nav-toggle { display: none; }

@media (max-width: 920px) {
  .nav-logo img { height: 76px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 24px var(--gutter) 30px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    box-shadow: 0 24px 40px -24px rgba(0, 78, 124, 0.18);
  }
  .nav-cta { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--line); border-radius: 999px;
    color: var(--ink);
  }
}
@media (max-width: 480px) {
  .nav-logo img { height: 56px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--slate);
  color: var(--paper);
  border: 1px solid var(--slate);
}
.btn-primary:hover { background: var(--slate-deep); border-color: var(--slate-deep); transform: translateY(-1px); }

.btn-orange {
  background: var(--orange);
  color: var(--paper);
  border: 1px solid var(--orange);
  box-shadow: 0 2px 0 var(--orange-deep);
}
.btn-orange:hover { background: var(--orange-deep); border-color: var(--orange-deep); box-shadow: 0 0 0 var(--orange-deep); transform: translateY(2px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }

.btn-ghost {
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--slate); border-color: var(--orange); }

.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(60px, 8vw, 110px) 0 clamp(70px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-tagline .pulse {
  width: 8px; height: 8px;
  background: var(--orange); border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(229, 149, 9, 0.55);
  animation: pulse 2.6s infinite var(--ease);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 149, 9, 0.55); }
  60% { box-shadow: 0 0 0 14px rgba(229, 149, 9, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 149, 9, 0); }
}

h1 .underline {
  position: relative;
  display: inline-block;
}
h1 .underline svg {
  position: absolute;
  left: 0; right: 0; bottom: -0.1em;
  width: 100%; height: 0.22em;
  color: var(--orange);
  overflow: visible;
}

.hero-actions { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* Clean inline meta strip (no boxes) */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
  align-items: center;
}
.hero-meta .item {
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-meta .item svg {
  flex-shrink: 0;
  color: var(--slate);
  opacity: 0.8;
}
.hero-meta .item strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-meta .item + .item::before {
  content: "";
  display: block;
  width: 1px; height: 14px;
  background: var(--line);
  margin-right: 8px;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-tint);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92);
  transition: transform 8s var(--ease);
}
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 39, 64, 0.55) 100%);
  pointer-events: none;
}
.hero-frame {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  color: var(--paper);
  display: flex; align-items: center; gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.hero-frame .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { aspect-ratio: 4/3; max-height: 520px; }
}
@media (max-width: 520px) {
  .hero-meta { gap: 6px 18px; font-size: 0.85rem; }
  .hero-meta .item + .item::before { display: none; }
}

/* ---------- Statement (after hero) ---------- */
.statement {
  background: var(--paper-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statement-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.statement-grid .quote-mark {
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.5;
  color: var(--mint);
  margin-bottom: 24px;
  font-style: italic;
}
.statement-grid .quote {
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.32;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.015em;
}
.statement-grid .quote em { font-style: italic; color: var(--slate); }
.statement-grid p {
  margin: 0 0 1.1em;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.statement-attribution {
  margin-top: 30px;
  display: flex; align-items: center; gap: 14px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.statement-attribution::before {
  content: ""; width: 28px; height: 1px; background: var(--orange);
}
@media (max-width: 800px) { .statement-grid { grid-template-columns: 1fr; } }

/* ---------- Services Cards (Home) ---------- */
.services-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 30px; margin-bottom: 70px; flex-wrap: wrap;
}
.services-head h2 { max-width: 16ch; margin: 0; }
.services-head .meta { max-width: 38ch; }
.services-head .meta p { color: var(--ink-soft); margin: 0 0 16px; }

.svc-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.5vw, 32px);
}
.svc-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 44px 40px 38px;
  border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px -40px rgba(0, 78, 124, 0.20);
  border-color: var(--mint);
}
.svc-card .num {
  font-family: var(--display); font-style: italic;
  font-size: 0.92rem; color: var(--orange-deep);
  margin-bottom: 30px; letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.svc-card .num::after { content: ""; width: 36px; height: 1px; background: var(--orange); }
.svc-card h3 { font-size: clamp(1.7rem, 2.4vw, 2.15rem); margin-bottom: 16px; line-height: 1.1; }
.svc-card .desc { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.6; }
.svc-card ul {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px;
  font-size: 0.9rem;
}
.svc-card li { padding-left: 16px; position: relative; color: var(--ink-soft); }
.svc-card li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 1px; background: var(--slate);
}
.svc-card .arrow {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 500; font-size: 0.92rem;
  color: var(--ink);
}
.svc-card .arrow svg { transition: transform .35s var(--ease); }
.svc-card:hover .arrow { color: var(--slate); }
.svc-card:hover .arrow svg { transform: translateX(6px); }

/* Decorative corner wave */
.svc-card::after {
  content: "";
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  background:
    radial-gradient(circle at 100% 0%, var(--mint-soft) 0 80%, transparent 80%);
  opacity: 0.45;
}

@media (max-width: 760px) {
  .svc-cards { grid-template-columns: 1fr; }
  .svc-card ul { grid-template-columns: 1fr; }
}

/* ---------- Hours panel ---------- */
.hours {
  background: var(--slate-deep);
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  overflow: hidden;
}
.hours::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 95% 0%, rgba(229, 149, 9, 0.13), transparent 60%),
    radial-gradient(700px 600px at 0% 100%, rgba(185, 203, 203, 0.07), transparent 60%);
  pointer-events: none;
}
.hours .container { position: relative; z-index: 1; }
.hours h2, .hours h3 { color: var(--paper); }
.hours .eyebrow { color: var(--orange); }
.hours .eyebrow::before { background: var(--orange); }
.hours .lead { color: rgba(255, 255, 255, 0.7); }

.hours-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  margin-top: 50px;
}
.hours-block h3 {
  font-size: 1.55rem;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 22px;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 20px;
}
.hours-block h3 span {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange); font-weight: 500;
  white-space: nowrap;
}
.hours-row {
  display: grid; grid-template-columns: 1.1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  align-items: baseline;
}
.hours-row .day { color: rgba(255, 255, 255, 0.65); }
.hours-row .time {
  font-family: var(--display);
  font-size: 1.18rem;
  color: var(--paper);
  letter-spacing: 0.01em;
}
.hours-note {
  margin-top: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 38ch;
  line-height: 1.55;
}
.hours-note a {
  color: var(--paper);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
}
@media (max-width: 800px) { .hours-grid { grid-template-columns: 1fr; } }

/* ---------- Emergency Banner ---------- */
.emergency {
  background: linear-gradient(90deg, var(--orange-soft) 0%, var(--bg-warm) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.emergency-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 30px; flex-wrap: wrap;
}
.emergency-text {
  display: flex; align-items: center; gap: 22px;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--ink);
  line-height: 1.3;
}
.emergency-text .ico {
  width: 48px; height: 48px; border-radius: 999px;
  background: var(--orange); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: var(--body); font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(229, 149, 9, 0.18);
}
.emergency-text em { color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer {
  background: var(--slate-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 36px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
  opacity: 0.5;
}
footer h4 {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin: 0 0 18px;
}
footer a:hover { color: var(--orange); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid p { margin: 0 0 10px; font-size: 0.95rem; line-height: 1.7; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; font-size: 0.95rem; }
.footer-grid li { padding: 4px 0; }
.footer-logo {
  margin-bottom: 22px;
  display: block; line-height: 0;
}
.footer-logo img { height: 96px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Page Header (inner pages) ---------- */
.page-header {
  padding: clamp(80px, 10vw, 140px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 50%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(185, 203, 203, 0.32), transparent 65%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 26px; max-width: 14ch; }
.page-header .lead { max-width: 58ch; }

/* ---------- Detailed services (Leistungen) ---------- */
.svc-section {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(70px, 9vw, 120px) 0;
  border-bottom: 1px solid var(--line);
}
.svc-section:last-of-type { border-bottom: 0; }
.svc-section .side { position: sticky; top: 110px; align-self: start; }
.svc-section .side h2 { margin-bottom: 22px; }
.svc-section .side p { color: var(--ink-soft); font-size: 1rem; }

.svc-groups { display: grid; gap: 16px; }
.svc-group {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px 36px;
  border-radius: var(--radius);
  transition: border-color .3s var(--ease);
}
.svc-group:hover { border-color: var(--mint); }
.svc-group h3 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  display: flex; align-items: baseline; gap: 14px;
  flex-wrap: wrap;
}
.svc-group h3 small {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange-deep); font-weight: 500;
}
.svc-group ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 26px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.svc-group li { padding-left: 18px; position: relative; }
.svc-group li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 9px; height: 1px; background: var(--slate);
}
@media (max-width: 820px) {
  .svc-section { grid-template-columns: 1fr; }
  .svc-section .side { position: static; }
  .svc-group ul { grid-template-columns: 1fr; }
}

/* ---------- Equipment grid ---------- */
.equip-intro {
  max-width: 720px; margin-bottom: 60px;
}
.equip-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 0;
  list-style: none;
  padding: 0;
}
.equip-grid li {
  background: var(--paper-tint);
  padding: 32px 30px 36px;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.3;
  position: relative;
  transition: background .3s var(--ease);
}
.equip-grid li:hover { background: var(--paper); }
.equip-grid li::before {
  content: attr(data-n);
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.22em; color: var(--orange-deep);
  display: block; margin-bottom: 16px; font-weight: 500;
}

/* ---------- Praxis (About) page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-grid .image-wrap {
  position: relative;
}
.about-grid img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius);
  filter: saturate(0.88);
}
.about-grid .image-wrap::after {
  content: "";
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 30%;
  background: var(--mint-soft);
  z-index: -1;
  border-radius: var(--radius);
}
.about-grid h2 { margin-top: 0; }
.about-grid .lead { margin-bottom: 24px; }
.about-grid p { color: var(--ink-soft); margin: 0 0 1em; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }

.values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 70px;
}
.value {
  background: var(--bg-warm);
  padding: 40px 34px 36px;
  transition: background .3s var(--ease);
}
.value:hover { background: var(--paper); }
.value .num {
  font-family: var(--display); font-style: italic;
  color: var(--orange-deep); font-size: 0.92rem;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
}
.value .num::after { content: ""; width: 30px; height: 1px; background: var(--orange); }
.value h3 { font-size: 1.4rem; margin-bottom: 12px; }
.value p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; line-height: 1.6; }

/* ---------- Kontakt page ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 48px 44px;
  border-radius: var(--radius);
}
.contact-card .label {
  font-family: var(--body); font-size: 0.7rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 500;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.contact-card .label::before {
  content: ""; width: 24px; height: 1px; background: var(--orange);
}
.contact-card .big {
  font-family: var(--display); font-size: 1.55rem; line-height: 1.3;
  color: var(--ink);
}
.contact-card .big a { display: block; transition: color .3s var(--ease); }
.contact-card .big a:hover { color: var(--slate); }
.contact-card .field { padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.contact-card .field:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-card .field:first-child { padding-top: 0; }

.contact-card.hours-card .label { color: var(--ink-mute); }
.contact-card .hours-list { margin: 0; }
.contact-card .hours-list .hours-row {
  border-bottom-color: var(--line-soft);
}
.contact-card .hours-list .hours-row .day { color: var(--ink-mute); }
.contact-card .hours-list .hours-row .time { color: var(--ink); }

.partner-list {
  display: grid; gap: 1px; background: var(--line);
  border: 1px solid var(--line); margin-top: 32px;
}
.partner-row {
  background: var(--paper);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
  padding: 24px 30px;
  align-items: center;
  font-size: 0.96rem;
  transition: background .3s var(--ease);
}
.partner-row:hover { background: var(--paper-tint); }
.partner-row .name { font-family: var(--display); font-size: 1.18rem; color: var(--ink); }
.partner-row .meta { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.5; }
.partner-row .tel a {
  color: var(--slate); font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease);
}
.partner-row .tel a:hover { border-bottom-color: var(--orange); }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; gap: 4px; padding: 20px 24px; }
}

.notdienst-warning {
  background: var(--paper);
  border-left: 3px solid var(--orange);
  padding: 22px 28px;
  margin-top: 24px;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 70ch;
}

/* Impressum / Datenschutz */
.legal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.legal-grid h2 { font-size: clamp(1.6rem, 2.5vw, 2.1rem); margin-bottom: 22px; }
.legal-grid p { color: var(--ink-soft); }
.legal-grid a {
  color: var(--slate);
  border-bottom: 1px solid var(--orange);
  padding-bottom: 1px;
}
@media (max-width: 700px) { .legal-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  animation: rise .95s var(--ease) forwards;
}
.reveal.d0 { animation-delay: 0s; }
.reveal.d1 { animation-delay: .08s; }
.reveal.d2 { animation-delay: .18s; }
.reveal.d3 { animation-delay: .30s; }
.reveal.d4 { animation-delay: .44s; }
.reveal.d5 { animation-delay: .58s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
  .pulse { animation: none; }
}
