:root {
  --ink: #111518;
  --terracotta: #7c423c;
  --cream: #f9fbf2;
  --olive: #3a5922;
  --gold: #9d8206;
  --ink-soft: #1b2329;
  --cream-dark: #edf2e3;
  --muted: #4b575e;
  --olive-light: #4b6c30;
  --terracotta-dark: #673531;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 16px 42px rgba(17, 21, 24, 0.13);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Serif 4", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 110% 80% at 10% -10%, rgba(124, 66, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 85% 55% at 100% 0%, rgba(58, 89, 34, 0.16), transparent 50%),
    linear-gradient(180deg, #f9fbf2 0%, #f3f7ea 100%);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--terracotta);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--terracotta);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.5rem 1rem;
  background: var(--ink-soft);
  color: var(--cream);
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.narrow {
  max-width: 520px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 251, 242, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(17, 21, 24, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-decoration: none;
}

.logo-image {
  display: block;
  height: clamp(44px, 5vw, 64px);
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--olive);
}

.nav-cta {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--terracotta);
  color: var(--white) !important;
}

.messages {
  padding-top: 0.75rem;
}

.msg {
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.msg-success {
  background: rgba(58, 89, 34, 0.14);
  color: var(--olive);
  border: 1px solid rgba(58, 89, 34, 0.3);
}

.msg-error {
  background: rgba(124, 66, 60, 0.14);
  border: 1px solid rgba(103, 53, 49, 0.34);
}

.msg-warning {
  background: rgba(196, 112, 75, 0.1);
  border: 1px dashed var(--terracotta);
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='2' cy='2' r='1.5' fill='%233a5922' fill-opacity='0.07'/%3E%3C/svg%3E");
  opacity: 0.9;
  pointer-events: none;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(140deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: linear-gradient(140deg, var(--terracotta-dark) 0%, #512b28 100%);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  border-color: rgba(58, 89, 34, 0.4);
}

.btn-ghost:hover {
  border-color: var(--olive);
  color: var(--olive);
  background: rgba(58, 89, 34, 0.08);
}

.btn-block {
  width: 100%;
}

.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-muted {
  background: linear-gradient(180deg, #eef3e5 0%, #f8fbf1 100%);
  border-block: 1px solid rgba(17, 21, 24, 0.07);
}

.page-hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 1rem;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  color: var(--olive);
  margin: 0 0 0.75rem;
}

.split {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.checks {
  padding-left: 1.2rem;
  color: var(--muted);
}

.checks li {
  margin-bottom: 0.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 21, 24, 0.08);
}

.card-accent {
  background:
    radial-gradient(circle at 90% 12%, rgba(157, 130, 6, 0.11), transparent 34%),
    linear-gradient(145deg, var(--white) 0%, #f6f7f2 100%);
  border-color: rgba(157, 130, 6, 0.23);
}

.card-zelle {
  border-left: 4px solid var(--gold);
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  background:
    radial-gradient(circle at 0% 0%, rgba(157, 130, 6, 0.2), transparent 36%),
    linear-gradient(145deg, #243717 0%, var(--olive) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 0.35rem;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
}

.cta-band .btn-primary {
  background: var(--gold);
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: #b6990e;
  color: var(--ink);
}

.section-intro {
  color: var(--muted);
  max-width: 60ch;
}

.feature-grid,
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 760px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

.feature-card,
.step-card {
  background: var(--white);
  border: 1px solid rgba(17, 21, 24, 0.1);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 24px rgba(17, 21, 24, 0.08);
}

.feature-card h3,
.step-card h3 {
  margin: 0.15rem 0 0.45rem;
  color: var(--ink-soft);
}

.feature-card p,
.step-card p {
  margin: 0;
}

.feature-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
}

.step-number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.puppy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.puppy-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(17, 21, 24, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.puppy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(17, 21, 24, 0.19);
}

.puppy-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.puppy-card-image {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--cream-dark);
}

.puppy-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puppy-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  font-size: 0.9rem;
}

.puppy-card-body {
  padding: 1rem 1.15rem 1.25rem;
}

.puppy-card-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  color: var(--ink-soft);
}

.puppy-card-caption {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.badge-available {
  background: rgba(58, 89, 34, 0.18);
  color: var(--olive);
}

.badge-reserved {
  background: rgba(124, 66, 60, 0.2);
  color: var(--terracotta-dark);
}

.badge-sold {
  background: rgba(17, 21, 24, 0.15);
  color: var(--ink-soft);
}

.center {
  text-align: center;
  margin-top: 2rem;
}

.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 2rem;
}

.prose h2 {
  margin-top: 2rem;
  color: var(--olive);
}

.prose p {
  max-width: 65ch;
}

.prose-small {
  font-size: 0.95rem;
}

.form .field {
  margin-bottom: 1.1rem;
}

.form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-soft);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(17, 21, 24, 0.24);
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fcfdf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(157, 130, 6, 0.16);
}

.form textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error input,
.field-error textarea {
  border-color: var(--terracotta-dark);
}

.errorlist {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
  color: var(--terracotta-dark);
  font-size: 0.9rem;
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hp-field {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.zelle-payto {
  font-size: 1.15rem;
}

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

.calendly-embed {
  width: 100%;
  min-height: 720px;
}

.calendly-inline-widget.calendly-embed {
  min-width: 320px;
}

.booking-section {
  background: transparent;
  border: 0;
  padding-top: 1.2rem;
}

.booking-wrap {
  width: 100%;
  max-width: none;
  padding-inline: clamp(0.8rem, 2.4vw, 1.6rem);
}

.booking-stage {
  position: relative;
  padding-top: 0.55rem;
}

.booking-note {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-stage .calendly-embed {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: 0;
  background: transparent;
}

.empty-calendly code {
  font-size: 0.85em;
}

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 2rem;
  background:
    radial-gradient(circle at 5% 5%, rgba(157, 130, 6, 0.18), transparent 40%),
    linear-gradient(160deg, #0d1214 0%, #111518 100%);
  color: #f2f6e8;
}

.site-footer a {
  color: #f5f8ea;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

.footer-line {
  margin: 0.25rem 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  font-weight: 600;
}

.footer-copy {
  margin: 2rem 0 0;
  font-size: 0.85rem;
  opacity: 0.82;
}
