/* ═══════════════════════════════════════════
   Collars & Fluffs — Temp Homepage
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

:root {
  --sage:    #5C8A76;
  --sage-m:  #7AA898;
  --sage-l:  #EBF4EF;
  --sage-ll: #F5FAF7;
  --ink:     #2C2C2C;
  --mid:     #7A8C82;
  --border:  #D4E4DA;
  --white:   #FFFFFF;
  --amber:   #E8993A;
}

.cnf-home * { box-sizing: border-box; margin: 0; padding: 0; }
.cnf-home { font-family: 'Nunito', sans-serif; color: var(--ink); }

/* ── Hero ── */
.cnf-hero {
  display: flex;
  align-items: stretch;
}
.cnf-hero-image {
  width: 33.333%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cnf-hero-text {
  flex: 1;
  background: var(--sage);
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.cnf-hero-text h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
}
.cnf-hero-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 480px;
}
.cnf-launch {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
/* JustGiving banner strip */
.cnf-jg-strip {
  background: var(--amber-l);
  border-top: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  padding: 12px 52px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #7A5020;
}
.cnf-jg-strip a {
  color: #7A5020;
  font-weight: 800;
  text-decoration: underline;
}
.cnf-jg-strip a:hover { color: #5A3010; }

/* ── Hero/Story gap ── */
.cnf-hero-gap {
  height: 40px;
  background: var(--white);
}

/* ── Story ── */
.cnf-story {
  display: flex;
  min-height: 500px;
}
.cnf-story-image {
  width: 33.333%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  background-color: var(--sage-l);
}
.cnf-story-text {
  flex: 1;
  padding: 60px 52px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.cnf-story-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--sage);
}
.cnf-story-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #444;
  max-width: 580px;
}

/* ── Handmade to Order ── */
.cnf-handmade {
  background: var(--sage-ll);
  padding: 72px 52px;
  text-align: center;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.cnf-handmade h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.cnf-handmade > p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 48px;
}
.cnf-handmade-steps {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.cnf-step-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
}
.cnf-step-icon { font-size: 36px; margin-bottom: 14px; }
.cnf-step-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.cnf-step-card p  { font-size: 14px; color: var(--mid); line-height: 1.65; }

/* ── Every Dog ── */
.cnf-every-dog {
  background: var(--sage);
  padding: 80px 52px;
  text-align: center;
}
.cnf-every-dog h2 {
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cnf-every-dog p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}


/* ── Footer ── */
.cnf-home-footer {
  background: var(--sage-ll);
  border-top: 1.5px solid var(--border);
  padding: 20px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--mid);
}
.cnf-footer-left { display: flex; flex-direction: column; gap: 6px; }
.cnf-footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.cnf-footer-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}
.cnf-footer-links a:hover { color: var(--sage-dd); }
.cnf-portal-link {
  font-size: 18px;
  text-decoration: none;
  opacity: 0.4;
  transition: opacity .2s;
}
.cnf-portal-link:hover { opacity: 1; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .cnf-hero, .cnf-story { flex-direction: column; }
  .cnf-hero-image, .cnf-story-image { width: 100%; min-height: 240px; }
  .cnf-hero-text, .cnf-story-text { padding: 40px 24px; }
  .cnf-handmade, .cnf-every-dog { padding: 52px 24px; }
  .cnf-home-footer { padding: 16px 24px; }
}
