:root {
  --bg: #faf6ef;
  --fg: #1e1e1e;
  --accent: #1e3a1c;
  --warm: #c07050;
  --muted: #7a7468;
  --border: #e2dcd0;
  --charcoal: #2c2c2c;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--accent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 75% 35%, rgba(80, 120, 80, 0.35) 0%, transparent 65%),
    linear-gradient(165deg, #0a1a0a 0%, #1e3a1c 35%, #2a5a2a 55%, #c07050 88%, #e8a878 100%);
}

.hero-dog-silhouette {
  position: absolute;
  bottom: -8%;
  right: 3%;
  width: 48%;
  opacity: 0.7;
  pointer-events: none;
}

.dog-svg {
  width: 100%;
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 6rem 6rem;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--warm);
}

.eyebrow-text {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.55);
}

.hero-headline {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  color: #faf6ef;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: italic;
  color: #e8a878;
}

.hero-lede {
  font-size: 1.05rem;
  color: rgba(250, 246, 239, 0.7);
  max-width: 500px;
  line-height: 1.75;
}

/* PROBLEM */
.problem {
  background: var(--charcoal);
  padding: 5rem 6rem;
}

.problem-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.problem-stat {
  border-left: 2px solid var(--warm);
  padding-left: 1.75rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #faf6ef;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.9rem;
}

.stat-desc {
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.5);
  line-height: 1.65;
}

.problem-quote-wrap {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
}

.problem-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--warm);
  margin-bottom: 0.5rem;
}

.problem-cite {
  font-size: 0.72rem;
  color: rgba(250, 246, 239, 0.35);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* BREEDS */
.breeds {
  padding: 5rem 6rem;
  background: var(--bg);
}

.breeds-header {
  margin-bottom: 3rem;
  max-width: 460px;
}

.section-title {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--muted);
}

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

.breed-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  background: white;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.breed-card:hover {
  border-color: var(--warm);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.breed-icon-wrap {
  margin-bottom: 1rem;
}

.breed-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.breed-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  padding: 5rem 6rem;
  background: #f0ebe2;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.philosophy-text h2 {
  font-size: 2.4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  font-size: 0.95rem;
  color: #4a4a40;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.philosophy-highlight {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent);
  margin-top: 1.5rem;
  font-weight: 600;
}

.promise-card {
  background: white;
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: sticky;
  top: 2rem;
}

.promise-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.promise-list li {
  font-size: 0.88rem;
  color: #4a4a40;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.promise-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--warm);
  font-size: 0.75rem;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 7rem 6rem;
  text-align: center;
}

.closing-inner {
  max-width: 620px;
  margin: 0 auto;
}

.closing-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 1.5rem;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-style: italic;
  color: #faf6ef;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing-body {
  font-size: 0.93rem;
  color: rgba(250, 246, 239, 0.55);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--warm);
  margin: 2rem auto;
}

.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--warm);
}

/* FOOTER */
.site-footer {
  background: #0a1a0a;
  padding: 3rem 6rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #faf6ef;
  margin-bottom: 0.75rem;
}

.footer-mission {
  font-size: 0.78rem;
  color: rgba(250, 246, 239, 0.3);
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto 0.5rem;
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--warm);
  letter-spacing: 0.08em;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-content { padding: 3.5rem 2.5rem 4rem; }
  .problem { padding: 3.5rem 2.5rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .breeds { padding: 3.5rem 2.5rem; }
  .breed-grid { grid-template-columns: 1fr 1fr; }
  .philosophy { padding: 3.5rem 2.5rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .closing { padding: 5rem 2.5rem; }
  .site-footer { padding: 2.5rem 2.5rem; }
}

@media (max-width: 600px) {
  .breed-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
  .section-title { font-size: 1.9rem; }
  .hero-dog-silhouette { display: none; }
}