/* === Hund & Wald Design === */
:root {
  --primary: #2D5F3F;
  --primary-light: #4A8C66;
  --accent: #E8995C;
  --warm: #F4E8D6;
  --cream: #FAF6EE;
  --bg: #FFFEFA;
  --text: #2A2A2A;
  --text-soft: #5C5C5C;
  --shadow: 0 8px 32px rgba(45, 95, 63, 0.08);
  --radius: 20px;
  --radius-lg: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 254, 250, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(45, 95, 63, 0.08);
  transition: all 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.75rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    width: 240px;
    height: calc(100vh - 70px);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm) 100%);
}

.hero::before {
  content: '🐾';
  position: absolute;
  font-size: 30rem;
  opacity: 0.04;
  top: -8rem;
  right: -8rem;
  transform: rotate(-15deg);
  pointer-events: none;
}

.hero::after {
  content: '🌿';
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  bottom: -4rem;
  left: -4rem;
  transform: rotate(20deg);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-text h1 .highlight {
  color: var(--accent);
  display: inline-block;
  position: relative;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 95, 63, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.hero-image:hover { transform: rotate(0deg) scale(1.02); }

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

.hero-badge {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: var(--accent);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(232, 153, 92, 0.4);
  transform: rotate(8deg);
  animation: bounce-soft 3s ease-in-out infinite;
}

@keyframes bounce-soft {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-8px); }
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { max-width: 400px; margin: 0 auto; aspect-ratio: 1/1; }
}

/* Sections */
section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-head p {
  color: var(--text-soft);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Services */
.services {
  background: var(--cream);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img { transform: scale(1.08); }

.service-body { padding: 2rem; }

.service-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-body p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 700;
}

.service-price .amount { font-size: 1.8rem; font-family: 'Fredoka', sans-serif; }
.service-price .unit { font-size: 0.9rem; color: var(--text-soft); font-weight: 400; }

.service-body .wchat-placeholder {
  display: inline-block;
  margin-top: 0.5rem;
}

@media (max-width: 880px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow);
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(45, 95, 63, 0.15);
}

.stat .number {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.5rem;
  color: var(--accent);
  font-weight: 600;
  display: block;
  line-height: 1;
}

.stat .label {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-top: 0.5rem;
}

@media (max-width: 880px) {
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-width: 400px; margin: 0 auto; }
}

/* Testimonials */
.testimonials {
  background: linear-gradient(180deg, var(--cream) 0%, var(--bg) 100%);
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Fredoka', sans-serif;
}

.author-info .name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.author-info .role { color: var(--text-soft); font-size: 0.85rem; }

@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  background: var(--primary);
  color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '🐕';
  position: absolute;
  font-size: 12rem;
  opacity: 0.1;
  bottom: -2rem;
  right: -2rem;
  transform: rotate(-15deg);
}

.contact-info h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.contact-info > p {
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-body .label {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.contact-item-body .value {
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.contact-form > p {
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid transparent;
  border-radius: 12px;
  background: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(45, 95, 63, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

button.btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }

@media (max-width: 880px) {
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem 1.5rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.footer-brand h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p { opacity: 0.8; font-size: 0.95rem; line-height: 1.6; }

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: white;
  opacity: 0.75;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom a { color: white; text-decoration: none; }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.15s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.45s; }

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Placeholder Styling */
.wchat-placeholder {
  background: rgba(232, 153, 92, 0.15);
  border: 1px dashed var(--accent);
  border-radius: 6px;
  padding: 0.1em 0.4em;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85em;
  display: inline-block;
}
