/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #4a3f38;
  line-height: 1.7;
  background: #fdf8f4;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #d97f66;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #c26a52;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: #3d2e28;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #f7e4da;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #b5604a;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #b5604a;
}

.nav-list {
  display: flex;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #8a6156;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-list a:hover {
  background: #fbeee7;
  color: #c26a52;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #fdf1ea 0%, #f8ddd0 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #7d4a3d;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #8a6156;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: #8a6156;
  margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.btn-primary {
  background: #d97f66;
  color: #fff;
}

.btn-primary:hover {
  background: #c26a52;
  color: #fff;
}

/* ===== SECTIONS ===== */
.section { padding: 64px 0; }
.section-light { background: #fff; }
.section-accent { background: #fbf2ec; }

.section-cta {
  background: linear-gradient(135deg, #c98a72 0%, #a8695a 100%);
  color: #fff;
}
.section-cta h2 { color: #fff; }
.section-cta .section-sub { color: #fbe6dc; }

.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 2rem; margin-bottom: 10px; color: #7d4a3d; }
.section-sub { font-size: 1.1rem; color: #8a6156; max-width: 650px; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 14px rgba(180,120,100,0.08);
  border: 1px solid #f7e4da;
  margin-bottom: 20px;
}
.card p { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.card-icon { text-align: center; padding: 32px 24px; }
.card-icon .icon { font-size: 2.5rem; margin-bottom: 12px; }
.card-icon h3 { font-size: 1.2rem; margin-bottom: 10px; color: #b5604a; }
.card-icon p { font-size: 0.95rem; color: #6b5a53; }

/* ===== PUPPY / PARENT CARDS ===== */
.puppy-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(180,120,100,0.08);
  border: 1px solid #f7e4da;
}
.puppy-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.puppy-card-body { padding: 20px 24px 24px; }
.puppy-card-body h3 { font-size: 1.3rem; margin-bottom: 4px; }
.puppy-card-tag {
  display: inline-block;
  background: #fbeee7;
  color: #b5604a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ===== ACCORDION ===== */
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item {
  border: 1px solid #f7e4da;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}
.accordion-header {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #7d4a3d;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.accordion-header:hover { background: #fbf2ec; }
.accordion-icon { font-size: 1.3rem; color: #d97f66; transition: transform 0.2s; }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.accordion-content.open { max-height: 600px; padding: 0 24px 18px; }
.accordion-content p { color: #6b5a53; font-size: 0.95rem; }

/* ===== CALLOUTS ===== */
.callout { padding: 18px 20px; border-radius: 12px; margin: 16px 0; font-size: 0.95rem; }
.callout-info { background: #fbeee7; border-left: 4px solid #d97f66; }
.callout-recommendation { background: #eaf3e9; border-left: 4px solid #7ba17a; }

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #f7e4da;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 12px;
}
.faq-item h3 { font-size: 1.1rem; color: #b5604a; margin-bottom: 10px; }
.faq-item p { font-size: 0.95rem; color: #6b5a53; margin-bottom: 8px; }
.faq-item p:last-child { margin-bottom: 0; }

/* ===== CONTACT ===== */
.contact-info { max-width: 500px; margin: 0 auto; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.contact-label { font-size: 1.3rem; }

/* ===== FOOTER ===== */
.footer { background: #6b4a3d; color: #f0d9cd; padding: 32px 0; text-align: center; font-size: 0.9rem; }
.footer-inner p { margin-bottom: 4px; }
.footer-corgi { color: #dbb7a8; font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 50px 0 40px; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #f7e4da;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .section-header h2 { font-size: 1.6rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .card { padding: 24px 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.section { animation: fadeInUp 0.5s ease-out; }
