:root {
  --cream: #F7F2EB;
  --green: #1E3A2F;
  --green-light: #2D5240;
  --gold: #B8843B;
  --gold-light: #D4A85C;
  --text: #1A1814;
  --text-muted: #6B6459;
  --white: #FFFFFF;
  --card-bg: #FDFAF6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--text); font-family: 'Jost', sans-serif; font-weight: 300; overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10,20,15,0.7) 0%, rgba(10,20,15,0.3) 70%, transparent 100%);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(247,242,235,0.97);
  padding: 14px 60px;
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--white); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.4s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
nav.scrolled .nav-logo { text-shadow: none; }
nav.scrolled .nav-logo { color: var(--green); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.3s, text-shadow 0.3s;
}
nav.scrolled .nav-links a { text-shadow: none; }
nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-cta {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 24px; border: 1px solid rgba(255,255,255,0.6);
  color: var(--white); text-decoration: none; transition: all 0.3s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
nav.scrolled .nav-cta { text-shadow: none; }
nav.scrolled .nav-cta { border-color: var(--green); color: var(--green); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: flex-end; justify-content: flex-start;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,20,15,0.75) 0%, rgba(10,20,15,0.2) 50%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  animation: fadeUp 1.2s ease 0.3s both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.75); max-width: 440px; line-height: 1.7; margin-bottom: 40px; }
.btn-primary {
  display: inline-block; padding: 16px 40px;
  background: var(--gold); color: var(--white);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: background 0.3s, transform 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block; padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.5); color: var(--white);
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s; margin-left: 16px;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.hero-scroll {
  position: absolute; bottom: 36px; right: 60px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 48px; background: rgba(255,255,255,0.3);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{transform:scaleY(1);opacity:0.5} 50%{transform:scaleY(0.5);opacity:1} }

/* ─── SECTIONS ─── */
section { padding: 100px 80px; }
.section-label {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--green); margin-bottom: 24px;
}
.section-title em { font-style: italic; }
.section-text { font-size: 0.98rem; line-height: 1.8; color: var(--text-muted); max-width: 560px; }

/* ─── ABOUT ─── */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  display: block;
}
.about-img-deco {
  position: absolute; bottom: -24px; right: -24px; width: 60%; aspect-ratio: 1;
  border: 1px solid var(--gold); z-index: -1;
}
.about-stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem; font-weight: 300; color: var(--green); line-height: 1;
  display: block;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ─── PUPPIES ─── */
.puppies-section { background: var(--green); padding: 100px 80px; }
.puppies-section .section-title { color: var(--white); }
.puppies-section .section-label { color: var(--gold-light); }
.puppies-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.puppies-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.puppy-card {
  background: var(--card-bg); overflow: hidden;
  transition: transform 0.4s;
  cursor: pointer;
}
.puppy-card:hover { transform: translateY(-6px); z-index: 1; }
.puppy-card:hover .puppy-img { transform: scale(1.05); }
.puppy-img-wrap { overflow: hidden; position: relative; aspect-ratio: 4/5; }
.puppy-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.puppy-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-free { background: var(--green); color: var(--white); }
.badge-reserved { background: var(--gold); color: var(--white); }
.badge-sold { background: #666; color: var(--white); }
.puppy-info { padding: 20px 22px 24px; }
.puppy-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 400; color: var(--green); }
.puppy-meta { display: flex; gap: 16px; margin: 6px 0 14px; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }
.puppy-meta span::before { content: '·'; margin-right: 8px; }
.puppy-meta span:first-child::before { content: ''; margin-right: 0; }
.puppy-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); }

/* ─── PARENTS ─── */
.parents-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: 60px; }
.parent-card { position: relative; overflow: hidden; aspect-ratio: 3/2; }
.parent-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; display: block; }
.parent-card:hover img { transform: scale(1.05); }
.parent-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 32px 28px;
  background: linear-gradient(transparent, rgba(10,20,15,0.85));
  color: var(--white);
}
.parent-role { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.parent-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; }
.parent-awards { font-size: 0.75rem; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ─── LITTERS ─── */
.litters-section { background: #F0EBE2; }
.litters-table { width: 100%; border-collapse: collapse; margin-top: 48px; }
.litters-table th {
  text-align: left; font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); padding: 0 0 16px; border-bottom: 1px solid #DDD5C8;
}
.litters-table td { padding: 22px 0; border-bottom: 1px solid #E8E0D4; vertical-align: middle; }
.litters-table tr:last-child td { border-bottom: none; }
.litter-breed { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--green); }
.litter-date { font-size: 0.85rem; color: var(--text-muted); }
.litter-available { font-size: 0.85rem; color: var(--text-muted); }
.litter-price { font-size: 0.9rem; color: var(--text); }
.litter-btn {
  display: inline-block; padding: 8px 20px;
  border: 1px solid var(--green); color: var(--green);
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.litter-btn:hover { background: var(--green); color: var(--white); }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px; margin-top: 56px;
}
.gallery-item { overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:first-child { grid-row: span 2; aspect-ratio: unset; }
.gallery-item:not(:first-child) { aspect-ratio: 4/3; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--green); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { color: var(--gold-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.testimonial-card { background: var(--green-light); padding: 36px 32px; }
.testimonial-stars { color: var(--gold-light); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.testimonial-city { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* ─── CONTACT ─── */
.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  padding: 14px 16px; border: 1px solid #D5CCC0; background: var(--white);
  font-family: 'Jost', sans-serif; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item-label { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.contact-item-value { font-size: 0.95rem; color: var(--text-muted); }
.contact-map {
  width: 100%; aspect-ratio: 4/3; background: #E0D8CE;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 32px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text); color: rgba(255,255,255,0.5);
  padding: 48px 80px; font-size: 0.8rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--white); font-weight: 300; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.72rem; }

/* ─── DIVIDER ─── */
.divider { width: 48px; height: 1px; background: var(--gold); margin: 20px 0 28px; }
