/* ─────────────────────────────────────────
   Calm Dog Funnel — Stylesheet
   Warm · Premium · Humble · Patty's brand
   ───────────────────────────────────────── */

:root {
  --cream:      #faf7f2;
  --cream-dark: #f0ebe1;
  --brown-soft: #c8aa8a;
  --brown:      #8b6848;
  --green:      #5a7a5c;
  --green-deep: #3d5c40;
  --charcoal:   #2c2c2a;
  --text:       #3a3733;
  --text-light: #7a7370;
  --gold:       #b8933e;
  --white:      #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 30px rgba(60,45,30,0.10);
  --shadow-lg: 0 12px 60px rgba(60,45,30,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── NAV ── */
.nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(139,104,72,0.12);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-cta {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-deep);
  border: 1px solid var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* ── HERO ── */
.hero {
  padding: 80px 28px 70px;
  max-width: 1080px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-deep);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 14px;
}
.hero-note {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown);
  margin-bottom: 36px;
}

/* OPTIN CARD */
.optin-card {
  background: var(--white);
  border: 1px solid rgba(139,104,72,0.15);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  box-shadow: var(--shadow);
}
.optin-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.optin-form .field-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.optin-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(139,104,72,0.25);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.optin-form input:focus {
  border-color: var(--green);
  background: var(--white);
}
.optin-form input::placeholder { color: var(--text-light); }

.btn-primary {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.btn-primary:hover  { background: var(--green); }
.btn-primary:active { transform: scale(0.99); }

.micro {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

/* HERO IMAGE */
.hero-image { position: relative; }
.image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--cream-dark);
  position: relative;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
}
.image-placeholder span { font-size: 2.5rem; }

/* ── PROOF BAR ── */
.proof-bar {
  background: var(--green-deep);
  color: rgba(255,255,255,0.85);
  padding: 14px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  text-align: center;
}
.proof-bar .dot { opacity: 0.4; }

/* ── SECTIONS ── */
.section-why {
  padding: 90px 0;
  text-align: center;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-why h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── PILLARS ── */
.section-pillars {
  padding: 0 0 90px;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  border: 1px solid rgba(139,104,72,0.12);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s;
}
.pillar:hover { box-shadow: var(--shadow); }
.pillar-icon { font-size: 2rem; margin-bottom: 14px; }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.pillar p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ── ABOUT ── */
.section-about {
  background: var(--cream-dark);
  padding: 90px 28px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
  background: var(--cream);
  position: relative;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.85rem;
  text-align: center;
}
.about-placeholder span { font-size: 2rem; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 22px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown);
  margin-top: 24px;
}

/* ── BELLA SECTION ── */
.section-bella { padding: 70px 28px; }
.bella-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.bella-inner img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}
.bella-caption h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.bella-caption p { color: var(--text-light); font-size: 1rem; }

/* ── SECOND CTA ── */
.section-cta {
  background: var(--green-deep);
  padding: 80px 28px;
  text-align: center;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-inner > p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 1rem;
}
.optin-form--center {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 28px;
}
.optin-form--center input {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}
.optin-form--center input::placeholder { color: rgba(255,255,255,0.5); }
.optin-form--center input:focus {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}
.optin-form--center .btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.optin-form--center .btn-primary:hover { background: #d4a84a; }
.optin-form--center .micro { color: rgba(255,255,255,0.5); }

/* ── FOOTER ── */
.footer {
  padding: 36px 28px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  border-top: 1px solid rgba(139,104,72,0.12);
}
.footer a { color: var(--green); }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 6px;
  color: var(--brown-soft);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .about-inner,
  .bella-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .image-frame { aspect-ratio: 4/3; }
  .about-image { aspect-ratio: 4/3; }
  .pillars-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 20px 50px; }
  .section-about { padding: 60px 20px; }
  .proof-bar { flex-direction: column; gap: 6px; }
  .proof-bar .dot { display: none; }
}
