/* ═══════════════════════════════════════════════════════
   MINDFUL RETRIEVER — Main Stylesheet
   mindfulretriever.com
   Design: Lavender Coastal / English Cream palette
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --plum-dark:   #2E1E58;
  --plum:        #5A4791;
  --plum-mid:    #7A67B0;
  --lavender:    #A99ACC;
  --periwinkle:  #C4B6F4;
  --peri-soft:   #DDD3F8;
  --lilac:       #EAE4F8;
  --frost:       #F5F2FC;
  --ocean-deep:  #A99ACD;
  --ocean:       #B4B0D0;
  --gold-dark:   #9B7A52;
  --sand:        #D4B4A1;
  --sand-warm:   #E6C8B3;
  --cream:       #F5EAE0;
  --ivory:       #FDF8F4;
  --sunset:      #C87A5A;
  --blush:       #E8C0A8;
  --sage:        #8A9870;
  --t-dark:      #2E2248;
  --t-mid:       #4A3870;
  --t-soft:      #7A6898;
  --t-pale:      #A898C0;
  --white:       #FFFFFF;
  --shadow-sm:   0 4px 14px rgba(46,30,88,.08);
  --shadow-md:   0 12px 32px rgba(46,30,88,.12);
  --shadow-lg:   0 24px 60px rgba(46,30,88,.15);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --max: 1100px;
  --transition: all .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  color: var(--t-dark);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-b); }

/* ── UTILITY ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 24px; }
.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--plum-mid);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.13;
  color: var(--plum-dark);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--plum-mid); }
.lead {
  font-size: 17px;
  color: var(--t-mid);
  line-height: 1.82;
  max-width: 620px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: var(--font-b);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary   { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,71,145,.28); }
.btn-outline   { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-cream     { background: var(--cream); color: var(--plum-dark); }
.btn-cream:hover   { background: var(--sand-warm); }
.btn-gold      { background: var(--gold-dark); color: var(--white); }
.btn-gold:hover    { background: #7A5E38; transform: translateY(-1px); }
.btn-ghost     { background: transparent; color: var(--peri-soft); border: 1.5px solid rgba(196,182,244,.35); }
.btn-ghost:hover   { border-color: var(--peri-soft); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 13.5px; }

/* ── PAWS DIVIDER ── */
.paw-rule {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0; color: var(--plum-mid);
  font-size: 15px; letter-spacing: 6px;
}
.paw-rule::before, .paw-rule::after {
  content: ''; flex: 1; height: .5px; background: var(--peri-soft);
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,248,244,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: .5px solid var(--peri-soft);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; gap: 20px;
}
.nav-logo {
  font-family: var(--font-d); font-size: 21px; font-weight: 500;
  color: var(--plum-dark); white-space: nowrap; flex-shrink: 0;
}
.nav-logo em { font-style: italic; color: var(--plum-mid); }
.nav-links {
  display: flex; align-items: center; gap: 26px;
}
.nav-links a {
  font-size: 13px; color: var(--t-mid);
  letter-spacing: .03em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--plum); }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--plum-dark); border-radius: 2px;
  transition: var(--transition);
}
.nav-mobile {
  display: none; position: fixed; inset: 70px 0 0;
  background: var(--ivory); z-index: 99;
  padding: 32px 24px; flex-direction: column; gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 18px; color: var(--t-mid);
  padding: 12px 0; border-bottom: .5px solid var(--peri-soft);
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  background: var(--frost); overflow: hidden; position: relative;
}
.hero-wash {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--periwinkle) 0%, var(--frost) 52%, var(--cream) 100%);
  opacity: .28; pointer-events: none;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 54px; background: var(--ivory);
  clip-path: ellipse(54% 100% at 50% 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto;
  padding: 80px 24px 104px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lilac); border: .5px solid var(--periwinkle);
  border-radius: 20px; padding: 6px 16px;
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--plum-mid); margin-bottom: 22px;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--plum-mid); }
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(32px, 5.2vw, 54px);
  line-height: 1.1; color: var(--plum-dark);
  font-weight: 400; margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--plum-mid); display: block; }
.hero-sub {
  font-size: 17px; color: var(--t-mid);
  line-height: 1.8; margin-bottom: 32px; max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-creds { font-size: 11.5px; color: var(--t-pale); letter-spacing: .04em; }
.hero-visual { position: relative; }
.hero-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--periwinkle) 0%, var(--ocean) 45%, var(--sand-warm) 100%);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-frame-placeholder {
  width: 100%; height: 100%; display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: rgba(255,255,255,.6);
  font-family: var(--font-d); font-size: 15px; font-style: italic;
  text-align: center; padding: 32px;
}
.hero-frame-placeholder .ph-icon { font-size: 40px; opacity: .45; }
.float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 15px 20px; box-shadow: var(--shadow-md);
  border: .5px solid var(--peri-soft);
}
.float-card-val {
  font-family: var(--font-d); font-size: 24px;
  color: var(--plum-mid); line-height: 1;
}
.float-card-label { font-size: 11px; color: var(--t-pale); margin-top: 3px; letter-spacing: .05em; }
.float-pill {
  position: absolute; top: 18px; right: -14px;
  background: var(--plum-dark); color: var(--white);
  border-radius: 20px; padding: 8px 15px;
  font-size: 11.5px; font-weight: 500; letter-spacing: .05em;
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════
   PILLARS BAR
═══════════════════════════════════════════════════════ */
.pillars { background: var(--plum-dark); padding: 6px 24px; }
.pillars-row {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.055);
  border-radius: 10px; overflow: hidden;
}
.pillar {
  padding: 24px 28px; text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
}
.pillar-icon { font-size: 18px; }
.pillar-title { font-family: var(--font-d); font-size: 17px; color: var(--cream); letter-spacing: .03em; }
.pillar-sub { font-size: 11.5px; color: var(--lavender); letter-spacing: .05em; }

/* ═══════════════════════════════════════════════════════
   PAIN POINT SECTION
═══════════════════════════════════════════════════════ */
.pain { padding: 80px 24px; background: var(--ivory); }
.pain-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.pain-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 28px;
}
.pain-card {
  background: var(--frost); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-md); padding: 22px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.pain-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
}
.pain-card:nth-child(1)::before { background: var(--sunset); }
.pain-card:nth-child(2)::before { background: var(--plum-mid); }
.pain-card:nth-child(3)::before { background: var(--ocean); }
.pain-card:nth-child(4)::before { background: var(--gold-dark); }
.pain-card h3 { font-family: var(--font-d); font-size: 18px; font-weight: 500; color: var(--plum-dark); margin-bottom: 7px; }
.pain-card p { font-size: 13.5px; color: var(--t-mid); line-height: 1.7; }
.pain-cta { margin-top: 30px; }
.insight {
  background: var(--plum-dark); border-radius: var(--radius-lg); padding: 40px;
}
.insight blockquote {
  font-family: var(--font-d); font-size: clamp(20px, 2.6vw, 27px);
  font-style: italic; font-weight: 300; line-height: 1.5;
  color: var(--cream); margin-bottom: 20px;
}
.insight p { font-size: 15px; color: var(--lavender); line-height: 1.85; margin-bottom: 13px; }
.insight .hi { color: var(--periwinkle); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.about { padding: 80px 24px; background: var(--cream); }
.about-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 310px 1fr;
  gap: 60px; align-items: start;
}
.about-frame {
  border-radius: var(--radius-md); overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
  background: linear-gradient(175deg, var(--periwinkle) 0%, var(--ocean) 40%, var(--sand-warm) 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-ph {
  text-align: center; color: rgba(255,255,255,.6);
  font-family: var(--font-d); font-size: 14px; font-style: italic;
  padding: 24px; line-height: 1.6;
}
.cred-badges { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.cred-badge {
  background: var(--white); border: .5px solid var(--peri-soft);
  border-radius: 20px; padding: 5px 13px;
  font-size: 11px; font-weight: 500; color: var(--plum-mid); letter-spacing: .05em;
}
.about-content .greeting {
  font-family: var(--font-d); font-size: clamp(16px, 2vw, 21px);
  font-style: italic; color: var(--plum-mid); margin-bottom: 18px; display: block;
}
.about-content p { font-size: 15.5px; color: var(--t-mid); line-height: 1.85; margin-bottom: 15px; }
.about-content p strong { color: var(--plum-dark); font-weight: 500; }

/* ═══════════════════════════════════════════════════════
   PAWS METHOD SECTION
═══════════════════════════════════════════════════════ */
.paws-sec { padding: 80px 24px; background: var(--frost); }
.paws-hd { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.paws-grid {
  max-width: var(--max); margin: 0 auto 42px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.paws-card {
  background: var(--white); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-lg); padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.paws-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.paws-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.p-card::after { background: var(--sunset); }
.a-card::after { background: var(--gold-dark); }
.w-card::after { background: var(--plum-mid); }
.s-card::after { background: var(--ocean); }
.paws-letter {
  font-family: var(--font-d); font-size: 60px; font-weight: 300;
  line-height: 1; margin-bottom: 4px;
}
.p-card .paws-letter { color: var(--sunset); }
.a-card .paws-letter { color: var(--gold-dark); }
.w-card .paws-letter { color: var(--plum-mid); }
.s-card .paws-letter { color: var(--ocean-deep); }
.paws-word {
  font-size: 10px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--t-pale); margin-bottom: 12px;
}
.paws-card h3 { font-family: var(--font-d); font-size: 17px; color: var(--plum-dark); margin-bottom: 8px; }
.paws-card p { font-size: 13.5px; color: var(--t-mid); line-height: 1.7; }
.paws-strip {
  max-width: var(--max); margin: 0 auto;
  background: var(--plum-dark); border-radius: var(--radius-lg);
  padding: 36px 44px; display: flex;
  align-items: center; justify-content: space-between; gap: 28px;
}
.paws-strip h3 {
  font-family: var(--font-d); font-size: clamp(17px, 2.2vw, 24px);
  font-style: italic; color: var(--cream); font-weight: 300;
  margin-bottom: 6px; line-height: 1.4;
}
.paws-strip p { font-size: 14px; color: var(--lavender); }

/* ═══════════════════════════════════════════════════════
   FETCH PROGRAM SECTION
═══════════════════════════════════════════════════════ */
.fetch-sec { padding: 80px 24px; background: var(--ivory); }
.fetch-inner { max-width: var(--max); margin: 0 auto; }
.fetch-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start; margin-bottom: 50px;
}
.fetch-name {
  font-family: var(--font-d);
  font-size: clamp(58px, 9.5vw, 88px);
  font-weight: 300; color: var(--plum-dark);
  line-height: 1; letter-spacing: -.02em;
}
.fetch-name span {
  font-style: italic; color: var(--plum-mid);
  display: block; font-size: .58em;
  letter-spacing: .05em; margin-top: 2px;
}
.fetch-pill {
  display: inline-block; background: var(--lilac);
  border: .5px solid var(--periwinkle); border-radius: 20px;
  padding: 5px 15px; font-size: 11px; font-weight: 500;
  color: var(--plum-mid); letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 16px;
}
.fetch-tag {
  font-family: var(--font-d); font-size: 20px; font-style: italic;
  color: var(--t-mid); margin-bottom: 14px; line-height: 1.5;
}
.fetch-right p { font-size: 15.5px; color: var(--t-mid); line-height: 1.85; margin-bottom: 13px; }
.weeks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 34px;
}
.wk {
  background: var(--frost); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-sm); padding: 17px 13px;
  transition: var(--transition);
}
.wk:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.wk-num {
  font-size: 10px; font-weight: 500; letter-spacing: .15em;
  color: var(--t-pale); text-transform: uppercase; margin-bottom: 5px;
}
.wk-title { font-family: var(--font-d); font-size: 16px; font-weight: 500; color: var(--plum-dark); margin-bottom: 4px; }
.wk-desc { font-size: 12px; color: var(--t-soft); line-height: 1.6; }
.includes-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 30px;
}
.inc {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 13px 15px; background: var(--cream);
  border-radius: var(--radius-sm); border: .5px solid var(--sand-warm);
}
.inc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--plum-mid); flex-shrink: 0; margin-top: 6px;
}
.inc p { font-size: 13.5px; color: var(--t-dark); line-height: 1.6; }
.fetch-cta-box {
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%);
  border-radius: var(--radius-lg); padding: 44px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 28px; align-items: center;
}
.fetch-cta-box h3 {
  font-family: var(--font-d); font-size: clamp(18px, 2.6vw, 27px);
  font-style: italic; color: var(--cream); font-weight: 300;
  margin-bottom: 7px; line-height: 1.4;
}
.fetch-cta-box p { font-size: 14px; color: var(--lavender); }
.fetch-btns { display: flex; flex-direction: column; gap: 10px; align-items: center; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testi-sec { padding: 80px 24px; background: var(--frost); }
.testi-inner { max-width: var(--max); margin: 0 auto; }
.testi-hd { text-align: center; margin-bottom: 44px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: var(--white); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-lg); padding: 30px; position: relative;
}
.testi-card::before {
  content: '\201C'; font-family: var(--font-d); font-size: 68px;
  color: var(--peri-soft); position: absolute;
  top: 10px; left: 22px; line-height: 1;
}
.testi-quote {
  font-family: var(--font-d); font-size: 17px; font-style: italic;
  color: var(--t-mid); line-height: 1.7;
  margin-bottom: 18px; margin-top: 18px; position: relative; z-index: 1;
}
.testi-name { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--plum-mid); }

/* ═══════════════════════════════════════════════════════
   THREE STEPS
═══════════════════════════════════════════════════════ */
.steps-sec { padding: 80px 24px; background: var(--ivory); }
.steps-inner { max-width: var(--max); margin: 0 auto; text-align: center; }
.steps-hd { margin-bottom: 50px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 44px; }
.step {
  background: var(--white); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-lg); padding: 36px 24px;
  transition: var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--font-d); font-size: 19px; font-weight: 500;
}
.step:nth-child(1) .step-num { background: var(--lilac); color: var(--plum); }
.step:nth-child(2) .step-num { background: var(--cream); color: var(--gold-dark); }
.step:nth-child(3) .step-num { background: var(--plum-dark); color: var(--cream); }
.step h3 { font-family: var(--font-d); font-size: 21px; color: var(--plum-dark); margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--t-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   LEAD MAGNET / OPT-IN
═══════════════════════════════════════════════════════ */
.optin-sec {
  padding: 80px 24px; background: var(--plum-dark);
  position: relative; overflow: hidden;
}
.optin-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,182,244,.1) 0%, transparent 60%);
  pointer-events: none;
}
.optin-inner {
  max-width: var(--max); margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.optin-inner h2 {
  font-family: var(--font-d); font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 300; color: var(--cream); line-height: 1.2; margin-bottom: 8px;
}
.optin-inner h2 em { font-style: italic; color: var(--periwinkle); }
.optin-sub { font-size: 16px; color: var(--lavender); line-height: 1.8; margin-bottom: 24px; }
.optin-list { margin-bottom: 0; }
.optin-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--peri-soft); line-height: 1.6; margin-bottom: 9px;
}
.optin-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--periwinkle); flex-shrink: 0; margin-top: 7px;
}
.optin-form {
  background: rgba(255,255,255,.06); border: .5px solid rgba(196,182,244,.22);
  border-radius: var(--radius-lg); padding: 38px; backdrop-filter: blur(8px);
}
.optin-form h3 { font-family: var(--font-d); font-size: 24px; font-style: italic; color: var(--cream); margin-bottom: 5px; }
.form-hint { font-size: 13px; color: var(--lavender); margin-bottom: 22px; }
.field { margin-bottom: 13px; }
.field label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--t-pale); margin-bottom: 5px;
}
.field input {
  width: 100%; padding: 12px 15px; border-radius: 7px;
  border: .5px solid rgba(196,182,244,.22);
  background: rgba(255,255,255,.07); color: var(--white);
  font-family: var(--font-b); font-size: 14px;
  outline: none; transition: border-color .2s;
}
.field input::placeholder { color: rgba(255,255,255,.3); }
.field input:focus { border-color: var(--periwinkle); background: rgba(255,255,255,.11); }
.submit-btn {
  width: 100%; padding: 15px; background: var(--cream);
  color: var(--plum-dark); border: none; border-radius: 7px;
  font-family: var(--font-b); font-size: 13px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; margin-top: 6px; transition: var(--transition);
}
.submit-btn:hover { background: var(--white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,.14); }
.form-privacy { font-size: 11px; color: rgba(169,154,204,.5); text-align: center; margin-top: 9px; line-height: 1.5; }
.form-privacy a { color: rgba(169,154,204,.5); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--plum-dark); padding: 52px 24px 28px;
  border-top: .5px solid rgba(196,182,244,.1);
}
.footer-top {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; padding-bottom: 36px;
  border-bottom: .5px solid rgba(196,182,244,.1); margin-bottom: 22px;
}
.footer-brand-name {
  font-family: var(--font-d); font-size: 21px;
  color: var(--cream); margin-bottom: 10px; display: block;
}
.footer-brand-name em { font-style: italic; color: var(--periwinkle); }
.footer-brand p { font-size: 13px; color: var(--lavender); line-height: 1.8; max-width: 260px; }
.f-creds { font-size: 11px; color: rgba(169,154,204,.4); margin-top: 12px; line-height: 1.7; }
.f-col h4 {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--peri-soft); margin-bottom: 14px;
}
.f-col ul li { margin-bottom: 9px; }
.f-col ul li a { font-size: 13px; color: var(--lavender); transition: color .2s; }
.f-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.f-legal { font-size: 12px; color: rgba(169,154,204,.4); }

/* ═══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════ */
.page-hero {
  background: var(--plum-dark); padding: 72px 24px 64px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(196,182,244,.12) 0%, transparent 55%);
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--periwinkle); margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-d); font-size: clamp(34px, 5vw, 54px);
  font-weight: 300; color: var(--cream); line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--periwinkle); }
.page-hero p { font-size: 17px; color: var(--lavender); line-height: 1.8; max-width: 580px; }

/* ═══════════════════════════════════════════════════════
   ABOUT PAGE EXTRAS
═══════════════════════════════════════════════════════ */
.credentials-section { padding: 64px 24px; background: var(--cream); }
.credentials-inner { max-width: var(--max); margin: 0 auto; }
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.cred-card {
  background: var(--white); border: .5px solid var(--peri-soft);
  border-radius: var(--radius-md); padding: 28px;
}
.cred-card-title { font-family: var(--font-d); font-size: 17px; font-weight: 500; color: var(--plum-dark); margin-bottom: 8px; }
.cred-card p { font-size: 13.5px; color: var(--t-mid); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════ */
.contact-sec { padding: 72px 24px; background: var(--ivory); }
.contact-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.contact-form-wrap { background: var(--white); border: .5px solid var(--peri-soft); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h2 { font-family: var(--font-d); font-size: 28px; color: var(--plum-dark); margin-bottom: 6px; }
.contact-form-wrap p { font-size: 14px; color: var(--t-mid); margin-bottom: 28px; }
.field-light input,
.field-light textarea,
.field-light select {
  width: 100%; padding: 12px 15px; border-radius: 7px;
  border: .5px solid var(--peri-soft); background: var(--frost);
  color: var(--t-dark); font-family: var(--font-b); font-size: 14px;
  outline: none; transition: border-color .2s; resize: vertical;
}
.field-light input:focus,
.field-light textarea:focus { border-color: var(--plum-mid); background: var(--white); }
.field-light label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--t-soft); margin-bottom: 5px;
}
.field-light { margin-bottom: 14px; }
.contact-info h2 { font-family: var(--font-d); font-size: 32px; color: var(--plum-dark); margin-bottom: 16px; }
.contact-info p { font-size: 15.5px; color: var(--t-mid); line-height: 1.85; margin-bottom: 14px; }
.contact-detail { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-detail-icon { font-size: 18px; }
.contact-detail p { margin: 0; font-size: 14px; color: var(--t-mid); }

/* ═══════════════════════════════════════════════════════
   PRIVACY / TERMS
═══════════════════════════════════════════════════════ */
.legal-sec { padding: 64px 24px; background: var(--ivory); }
.legal-inner { max-width: 760px; margin: 0 auto; }
.legal-inner h2 { font-family: var(--font-d); font-size: 26px; color: var(--plum-dark); margin: 32px 0 10px; }
.legal-inner p { font-size: 15px; color: var(--t-mid); line-height: 1.85; margin-bottom: 14px; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp .6s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .22s; }
.hero-content > *:nth-child(3) { animation-delay: .34s; }
.hero-content > *:nth-child(4) { animation-delay: .46s; }
.hero-content > *:nth-child(5) { animation-delay: .56s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner, .pain-inner, .about-inner, .fetch-top,
  .fetch-cta-box, .optin-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .about-frame { aspect-ratio: 16/9; max-height: 300px; }
  .paws-grid { grid-template-columns: 1fr 1fr; }
  .weeks-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pillars-row { grid-template-columns: 1fr; }
  .float-card, .float-pill { display: none; }
  .paws-strip { flex-direction: column; text-align: center; }
  .creds-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .paws-grid, .weeks-grid, .includes-grid, .pain-cards, .creds-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fetch-btns { width: 100%; }
  .fetch-btns .btn { width: 100%; text-align: center; }
}
