:root {
  --kraft: #C4A47A;
  --kraft-light: #D9C9A8;
  --kraft-dark: #8B7355;
  --ink: #2C1810;
  --ink-soft: #5A4030;
  --ink-muted: #8B7B65;
  --cream: #FAF6EE;
  --cream-warm: #F5EDE0;
  --egg-blue: #5B9EC4;
  --egg-olive: #7A9B6B;
  --egg-choc: #3E2010;
  --egg-pink: #C08898;
  --egg-cream: #F0E6C8;
  --egg-spotted: #A08868;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* --- NAV (shared across all pages) --- */
.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 20px;
  padding: 16px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--kraft-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}
.brand-name {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name .brand-llc {
  font-size: 0.72em;
  font-weight: 700;
}
.brand-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.nav-links a {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* --- HERO --- */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(139,115,85,0.03) 40px,
    rgba(139,115,85,0.03) 41px
  );
  pointer-events: none;
}

/* Smaller hero for inner pages */
.page-hero { min-height: 40vh; }

.dot-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.dot {
  width: 18px;
  height: 22px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: inline-block;
}

.hero h1 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 6vw, 48px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero h1 .llc {
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 2px;
  vertical-align: baseline;
}
.hero .location {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.hero .tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 3.5vw, 26px);
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-weight: 400;
}

.order-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.3s, transform 0.2s;
}
.order-btn:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
}
.order-btn.outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.order-btn.outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* --- PHOTO --- */
.photo-section {
  width: 100%;
  background: var(--kraft-light);
  overflow: hidden;
}
.photo-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.photo-placeholder {
  width: 100%;
  height: 300px;
  background: var(--kraft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- SECTIONS --- */
section {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 24px;
}

.section-label {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(24px, 4.5vw, 36px);
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 24px;
}

p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  font-weight: 400;
}
p strong {
  color: var(--ink);
  font-weight: 700;
}

/* --- COMPARISON --- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (max-width: 520px) {
  .compare { grid-template-columns: 1fr; }
}
.compare-card {
  padding: 28px 24px;
  border-radius: 2px;
}
.compare-card.ours {
  background: var(--cream-warm);
  border-left: 3px solid var(--egg-olive);
}
.compare-card.theirs {
  background: #f5f3f0;
  border-left: 3px solid var(--ink-muted);
}
.compare-card h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--ink);
}
.compare-card ul {
  list-style: none;
  padding: 0;
}
.compare-card ul li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 4px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.compare-card.ours ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--egg-olive);
}
.compare-card.theirs ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

/* --- BLOOM SECTION --- */
.bloom-highlight {
  background: var(--cream-warm);
  padding: 32px;
  margin: 24px 0;
  border-left: 3px solid var(--egg-blue);
}
.bloom-highlight p {
  margin-bottom: 0;
  font-size: 16px;
}

/* --- EGG COLOR GRID --- */
.egg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 420px) {
  .egg-grid { grid-template-columns: repeat(2, 1fr); }
}
.egg-card {
  text-align: center;
  padding: 20px 12px;
  background: var(--cream-warm);
  border-radius: 2px;
}
.egg-card .egg {
  width: 36px;
  height: 44px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: inline-block;
  margin-bottom: 10px;
}
.egg-card .color-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.egg-card .breed {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
}

/* --- SEPARATOR --- */
.sep {
  width: 48px;
  height: 2px;
  background: var(--kraft);
  margin: 0 auto;
}

/* --- ORDER / CONTACT --- */
.order-section {
  text-align: center;
  padding: 80px 24px;
  background: var(--ink);
  color: var(--cream);
}
.order-section .section-label {
  color: var(--kraft);
}
.order-section h2 {
  color: var(--cream);
}
.order-section p {
  color: var(--kraft-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.order-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}
.order-method {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
}
.order-method a { color: var(--cream); }
.order-method span {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--kraft);
  display: block;
  margin-bottom: 2px;
}
.price-tag {
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--cream);
}
.price-tag .per {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: var(--kraft);
}

/* --- PRODUCT GRID (Products page) --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
}
.product-card {
  background: var(--cream-warm);
  border-radius: 2px;
  padding: 24px;
  border-top: 3px solid var(--kraft);
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-card p { font-size: 15px; margin-bottom: 12px; }
.product-card .price {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.badge.available { background: var(--egg-olive); color: #fff; }
.badge.soon { background: var(--kraft-light); color: var(--ink-soft); }

/* --- MEET THE GIRLS GRID --- */
.girl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
@media (max-width: 560px) {
  .girl-grid { grid-template-columns: repeat(2, 1fr); }
}
.girl-card {
  text-align: center;
  background: var(--cream-warm);
  border-radius: 2px;
  padding: 16px;
}
.girl-card .photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--kraft);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.girl-card .name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: block;
}
.girl-card .breed {
  font-size: 12px;
  color: var(--ink-muted);
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 40px 24px;
  background: var(--cream-warm);
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}
footer .footer-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
}
footer p {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 1px;
}

/* --- FADE IN ANIMATION --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
