/* =========================================================
   Haustier-Urlaubsservice Bad Oldesloe — modernes Design
   ========================================================= */

:root {
  --green-900: #1f3d2b;
  --green-700: #2e6b46;
  --green-600: #3a865a;
  --green-500: #4caf78;
  --green-100: #e7f4ec;
  --amber: #f6a623;
  --amber-soft: #fbe2b3;
  --cream: #fbf8f3;
  --ink: #2a2a26;
  --muted: #5f6b62;
  --white: #ffffff;
  --shadow: 0 14px 40px rgba(31, 61, 43, 0.12);
  --shadow-sm: 0 6px 18px rgba(31, 61, 43, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.2;
  color: var(--green-900);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--green-700); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 107, 70, 0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--green-900);
  text-decoration: none;
  font-size: 1.05rem;
}
.brand__paw { font-size: 1.6rem; line-height: 1; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav__links a:hover { background: var(--green-100); color: var(--green-700); }
.nav__links .btn { color: #fff; }
.nav__toggle {
  display: none;
  border: none;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 1.4rem;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-600);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}
.btn:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: #3a2a00; }
.btn--amber:hover { background: #e5961a; }
.btn--ghost {
  background: #fff;
  color: var(--green-700);
  box-shadow: inset 0 0 0 2px var(--green-100);
}
.btn--ghost:hover { background: var(--green-100); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, var(--amber-soft), transparent 60%),
    linear-gradient(160deg, var(--green-100), var(--cream) 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 84px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-700);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 7px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--green-600); }
.hero__lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 30em;
  margin-bottom: 28px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__media {
  position: relative;
}
.hero__media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero__badge {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--green-900);
}
.hero__badge span { font-size: 1.8rem; }
.hero__badge small { display: block; font-weight: 600; color: var(--muted); font-size: 0.8rem; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--tint { background: var(--green-100); }
.section__head {
  max-width: 42em;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head .kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-600);
}
.section__head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-top: 6px; }
.section__head p { color: var(--muted); font-size: 1.1rem; }

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.about .signature {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--green-700);
  margin-top: 8px;
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
.values li {
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: var(--green-100);
  border-radius: 18px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.2rem; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.price-card {
  background: linear-gradient(165deg, var(--green-700), var(--green-900));
  color: #fff;
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow);
}
.price-card .amount {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.price-card .amount span { font-size: 1rem; font-weight: 600; opacity: 0.85; }
.price-card p { color: rgba(255, 255, 255, 0.85); }
.price-card .hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 22px 0;
  border: none;
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 107, 70, 0.12);
}
.price-list li:last-child { border-bottom: none; }
.price-list .ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  border-radius: 10px;
}
.price-list strong { display: block; color: var(--green-900); }
.price-list span { color: var(--muted); font-size: 0.96rem; }

.tax-note {
  margin-top: 22px;
  background: var(--amber-soft);
  color: #5a4100;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-weight: 600;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact__info .contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact__item .ico {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 1.3rem;
}
.contact__item strong { display: block; color: var(--green-900); }
.contact__item a { color: var(--green-700); text-decoration: none; word-break: break-word; }
.contact__item a:hover { text-decoration: underline; }

form.card { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; color: var(--green-900); font-size: 0.95rem; }
.field input,
.field textarea {
  font: inherit;
  padding: 13px 16px;
  border: 2px solid var(--green-100);
  border-radius: var(--radius-sm);
  background: var(--cream);
  resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: #fff;
}
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0; }

.form-alert {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.form-alert--success {
  background: var(--green-100);
  border: 1px solid var(--green-500);
  color: var(--green-700);
}
.form-alert--error {
  background: #fdecea;
  border: 1px solid #e8a49a;
  color: #a33a2a;
}

/* Honeypot: für Menschen unsichtbar, für Bots ein normales Feld */
.field--hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 0 30px;
}
.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer .brand { color: #fff; }
.footer a { color: #fff; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { text-decoration: none; opacity: 0.9; }
.footer__links a:hover { opacity: 1; text-decoration: underline; }
.footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

/* ---------- Legal page ---------- */
.legal {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.legal h1 { font-size: 2.2rem; }
.legal address {
  font-style: normal;
  background: var(--green-100);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--green-900);
  margin-bottom: 24px;
}
.legal .tip {
  border-left: 4px solid var(--amber);
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero__inner,
  .about,
  .pricing,
  .contact { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .about__media { order: -1; }
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 12px 14px; }
  .nav__links .btn { justify-content: center; margin-top: 6px; }
  .nav__toggle { display: grid; place-items: center; }
}

@media (max-width: 520px) {
  .section { padding: 56px 0; }
  .legal { padding: 28px 22px; }
  .hero__badge { left: 0; }
}
