/* ============================================================
   Lühr Tiergesundheit – Design System
   Cormorant Garamond + Montserrat · blau/grün/cream
   Strikt: keine Schatten, keine Blur, border-radius ≤ 4px
   ============================================================ */

:root {
  --blue: #2C3E50;
  --green: #5F8F6B;
  --green-light: #8FBF9A;
  --cream: #F7F5F2;
  --anthracite: #2A2A2A;

  --line: rgba(44, 62, 80, 0.12);
  --line-soft: rgba(44, 62, 80, 0.07);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1180px;
  --nav-h: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--anthracite);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--blue); }

/* ---- Typografie ---- */
h1, h2, h3 { font-family: var(--serif); font-weight: 400; color: var(--blue); margin: 0; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 300; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--green); }
p { margin: 0 0 1.1em; }
strong { font-weight: 500; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  margin: 0 0 1.3rem;
  display: block;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.6; color: var(--blue); font-weight: 300; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }
section { padding: clamp(64px, 9vw, 130px) 0; }
.section-cream { background: var(--cream); }
.section-blue { background: var(--blue); color: rgba(255, 255, 255, .85); }
.section-blue h1, .section-blue h2, .section-blue h3 { color: #fff; }
.section-blue .eyebrow { color: var(--green-light); }
.section-line { border-top: 1px solid var(--line-soft); }

/* ---- Top-Bar Gradient ---- */
.top-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--green) 30%, var(--blue) 70%, transparent);
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav-inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
/* Logo: am Inhalt ausgerichtet, ragt dezent in den Hero, schrumpft beim Scrollen.
   Cremefarbener Hintergrund deckt die Header-Linie hinter dem (transparenten) Logo ab. */
.nav-logo {
  position: absolute;
  left: 24px;
  top: 8px;
  z-index: 2;
  display: block;
  line-height: 0;
  background: var(--cream);
  padding-right: 14px;
  transition: top .35s var(--ease);
}
.nav-logo img {
  height: 124px;
  width: auto;
  transition: height .35s var(--ease);
}
.nav.scrolled .nav-logo { top: 8px; }
.nav.scrolled .nav-logo img { height: 84px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  color: rgba(42, 42, 42, .78);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .02em;
  padding: 8px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--blue); background: rgba(44, 62, 80, .05); }
.nav-links a.active { color: var(--green); }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Sprachumschalter */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--line);
  color: var(--blue); padding: 6px 9px; border-radius: 3px;
  cursor: pointer; font-family: var(--sans); font-size: 12px;
  transition: border-color .25s var(--ease);
}
.lang-btn:hover { border-color: rgba(44, 62, 80, .4); }
.lang-btn svg.flag { width: 20px; height: 14px; display: block; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line);
  border-radius: 3px; padding: 6px; min-width: 92px;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  z-index: 50;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 9px; border-radius: 2px; font-size: 12px; color: rgba(42, 42, 42, .78);
}
.lang-menu a:hover { background: rgba(44, 62, 80, .05); color: var(--blue); }
.lang-menu a.active { color: var(--green); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--blue); color: #fff;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: .14em;
  padding: 15px 30px; border: 1px solid var(--blue); border-radius: 3px;
  cursor: pointer; transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { background: var(--green); border-color: var(--green); color: #fff; }
.btn-outline { background: transparent; color: var(--blue); border-color: var(--line); }
.btn-outline:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-light { background: #fff; color: var(--blue); border-color: #fff; }
.btn-light:hover { background: var(--green-light); border-color: var(--green-light); color: var(--blue); }
.btn:disabled { opacity: .65; cursor: default; }

.nav-cta { padding: 11px 20px; font-size: 11px; }

/* ---- Divider (Linie · Blatt · Linie) ---- */
.divider { display: flex; align-items: center; justify-content: center; gap: 18px; margin: 2rem 0; }
.divider.left { justify-content: flex-start; }
.divider .ln { height: 1px; width: 70px; background: var(--line); }
.divider .leaf { color: var(--green); flex-shrink: 0; }
.divider .leaf svg { width: 24px; height: 24px; display: block; }

/* ---- Hero ---- */
/* Extra Oberraum, damit das überstehende Logo (links) frei in den Hero ragt */
.hero { padding-top: 84px; padding-bottom: clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero p.subtitle { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--anthracite); margin-top: 1.5rem; }
.hero .btn { margin-top: 2rem; }

/* ---- Foto-Platzhalter ---- */
.photo {
  position: relative;
  background: linear-gradient(160deg, #fff, var(--cream));
  border: 1px solid var(--line);
  border-radius: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 12px; padding: 28px;
  color: var(--blue);
  aspect-ratio: 4 / 3;
}
.photo.portrait { aspect-ratio: 3 / 4; }
.photo.wide { aspect-ratio: 16 / 9; }
.photo.has-img { padding: 0; margin: 0; overflow: hidden; background: var(--cream); }
.photo.has-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo .leaf svg { width: 34px; height: 34px; color: var(--green-light); }
.photo .photo-badge { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--green); }
.photo .photo-label { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--blue); line-height: 1.3; }

/* ---- Generische Bausteine ---- */
.text-block { max-width: 760px; }
.text-block p { color: var(--anthracite); }
.muted { color: rgba(42, 42, 42, .7); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-left: auto; margin-right: auto; }

/* Grid-Helfer */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.narrow-img { grid-template-columns: 1.1fr .9fr; }

/* ---- Karten (Säulen, Behandlungen) ---- */
.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 32px 28px;
}
.card h3 { margin-bottom: .5rem; }
.card .card-num { font-family: var(--serif); font-style: italic; color: var(--green-light); font-size: 1.4rem; margin-bottom: .4rem; display: block; }
.card p { margin: 0; color: rgba(42, 42, 42, .82); font-size: .95rem; }

.treat-card { position: relative; }
.treat-card .leaf { color: var(--green); margin-bottom: 14px; }
.treat-card .leaf svg { width: 26px; height: 26px; }

/* "Bald verfügbar" Badge */
.soon {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--green); border-radius: 3px;
  padding: 18px 26px; background: rgba(95, 143, 107, .06);
}
.soon .tag { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--green); font-weight: 500; }
.soon .txt { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--blue); }

/* ---- Themen-Tags / Listen ---- */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  border: 1px solid var(--line); border-radius: 3px;
  padding: 9px 16px; font-size: .85rem; color: var(--blue);
  background: #fff;
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--anthracite); }
.check-list li::before {
  content: ""; flex-shrink: 0; width: 8px; height: 8px; margin-top: .55em;
  border-radius: 50%; background: var(--green-light);
}
.section-blue .check-list li { color: rgba(255, 255, 255, .8); }

/* Zitate */
.quotes { display: grid; gap: 16px; }
.quote {
  font-family: var(--serif); font-style: italic; font-size: 1.4rem; color: var(--blue);
  border-left: 1px solid var(--green); padding-left: 22px; line-height: 1.4;
}

/* ---- Ausbildungen ---- */
.edu-list { display: grid; gap: 0; border-top: 1px solid var(--line-soft); }
.edu-item { display: flex; flex-direction: column; gap: 3px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.edu-item .edu-title { font-family: var(--serif); font-size: 1.3rem; color: var(--blue); }
.edu-item .edu-place { font-size: .9rem; color: rgba(42, 42, 42, .65); }

/* ---- Preise ---- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.price-cell { padding: 38px 30px; border-right: 1px solid var(--line-soft); background: #fff; }
.price-cell:last-child { border-right: none; }
.price-cell .p-name { font-family: var(--serif); font-size: 1.5rem; color: var(--blue); }
.price-cell .p-dur { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--green); margin: 8px 0 18px; }
.price-cell .p-amount { font-family: var(--serif); font-size: 2.2rem; color: var(--blue); margin-bottom: 16px; }
.price-cell .p-text { font-size: .92rem; color: rgba(42, 42, 42, .78); margin: 0; }

/* ---- Hinweis-Box ---- */
.notice {
  border: 1px solid var(--line); border-left: 2px solid var(--green);
  border-radius: 3px; padding: 22px 26px; background: #fff;
  font-size: .92rem; color: rgba(42, 42, 42, .82);
}
.notice strong { color: var(--blue); }

/* ---- CTA-Band ---- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 720px; margin: 0 auto 1rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; }

/* ---- Kontakt ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: start; }
.info-block { margin-bottom: 28px; }
.info-block .info-title { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--green); margin-bottom: 12px; }
.info-block p { margin: 0; line-height: 1.8; }
.info-block a { color: var(--blue); }
.info-block a:hover { color: var(--green); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 11px 0; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
.hours-table td:first-child { color: var(--blue); font-weight: 400; }
.hours-table td:last-child { text-align: right; color: rgba(42, 42, 42, .75); }

/* ---- Formular ---- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: .04em; color: var(--blue); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .95rem; font-weight: 300; color: var(--anthracite);
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 13px 15px; transition: border-color .25s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--green); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; margin-top: 4px; }
.form-privacy { font-size: 12px; color: rgba(42, 42, 42, .6); margin: 0; }
.form-msg { font-size: 13px; margin: 0; }
.form-msg.error { color: #b23b3b; }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .leaf svg { width: 40px; height: 40px; color: var(--green); margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 10px; }

/* ---- Footer ---- */
.footer { background: var(--blue); color: rgba(255, 255, 255, .7); }
.footer-inner { max-width: var(--maxw); margin: 0 auto; padding: 64px 24px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: var(--green-light); font-family: var(--sans); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; font-weight: 500; margin: 0 0 16px; }
.footer img.f-logo { height: 150px; width: auto; max-width: 100%; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer p { font-size: .9rem; line-height: 1.7; color: rgba(255, 255, 255, .6); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer ul a { color: rgba(255, 255, 255, .65); font-size: .9rem; }
.footer ul a:hover { color: #fff; }
.footer address { font-style: normal; font-size: .9rem; line-height: 1.8; color: rgba(255, 255, 255, .65); }
.footer address a { color: rgba(255, 255, 255, .65); }
.footer address a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 56px;
  padding: 22px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  font-size: 12px; color: rgba(255, 255, 255, .45);
}
.footer-bottom a { color: rgba(255, 255, 255, .55); }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .links { display: flex; gap: 18px; }

/* ---- Cookie-Banner ---- */
.cookie-banner {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 999;
  background: var(--blue); border: 1px solid rgba(255, 255, 255, .12); border-radius: 3px;
  padding: 18px 20px; max-width: 380px; margin-left: auto;
}
.cookie-banner p { color: rgba(255, 255, 255, .8); font-size: 13px; margin: 0 0 14px; line-height: 1.6; }
.cookie-banner .row { display: flex; align-items: center; gap: 12px; }
.cookie-banner .btn { padding: 10px 18px; font-size: 10px; }
.cookie-banner a.more { font-size: 12px; color: rgba(255, 255, 255, .6); }

/* ---- Mobile-Menü-Button ---- */
.nav-burger { display: none; background: transparent; border: none; color: var(--blue); cursor: pointer; padding: 6px; }
.nav-burger svg { width: 26px; height: 26px; }
.nav-mobile { display: none; }  /* nur in der Mobile-Media-Query (geöffnet) sichtbar */

/* ---- Scroll-Reveal ---- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in { animation: fadeUp .9s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin: 0 auto; }
  .split, .split.narrow-img, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-cell { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .price-cell:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  :root { --nav-h: 84px; }
  .nav-logo { left: 20px; top: 6px; }
  .nav-logo img { height: 96px; }
  .nav.scrolled .nav-logo { top: 8px; }
  .nav.scrolled .nav-logo img { height: 68px; }
  .hero { padding-top: 56px; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-mobile {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 36px 24px 22px;
  }
  .nav-mobile.open { display: block; }
  .nav-mobile a { display: block; color: rgba(42, 42, 42, .82); padding: 11px 0; font-size: .95rem; border-bottom: 1px solid var(--line-soft); }
  .nav-mobile a.active { color: var(--green); }
  .nav-mobile .btn { width: 100%; margin-top: 16px; }
}

@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
