/* =========================================================
   PIGS-FOR-SALE LANDING PAGE
   Conversion-focused. Mobile-first. FB ad ready.
   ========================================================= */

.pigs-lp { padding-bottom: 76px; } /* room for sticky mobile CTA */
@media (min-width: 900px){ .pigs-lp { padding-bottom: 0; } }

/* ---------- Top urgency bar ---------- */
.lp-bar{
  background: var(--ink);
  color: var(--cream);
  padding: 12px var(--gutter);
  font-size: 13px;
  text-align: center;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  z-index: 70;
}
.lp-bar__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.lp-bar strong{ color: var(--gold); font-weight: 700; }
.lp-bar__sep{ opacity: .35; }
.lp-bar__pulse{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  position: relative;
  margin-right: 4px;
}
.lp-bar__pulse::after{
  content:"";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .4;
  animation: lp-pulse 1.6s ease-out infinite;
}
@keyframes lp-pulse{
  0%{ transform: scale(.6); opacity: .55 }
  100%{ transform: scale(2.6); opacity: 0 }
}

/* ---------- Slim nav variant ---------- */
.nav--slim .nav__inner{ padding: 14px var(--gutter); }
.nav--slim .nav__cta, .nav--slim .nav__links, .nav--slim .nav__toggle{ display: none !important; }
.lp-call{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--green);
  background: rgba(46,93,58,.08);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all .3s var(--ease);
}
.lp-call:hover{ background: var(--green); color: var(--cream); }
.lp-call svg{ flex-shrink: 0; }

/* ---------- Hero ---------- */
.lp-hero{
  position: relative;
  min-height: clamp(560px, 86vh, 880px);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.lp-hero__bg{ position: absolute; inset: 0; z-index: 0; }
.lp-hero__bg img{
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 16s ease-out infinite alternate;
}
.lp-hero__bg::after{
  content:"";
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, rgba(31,45,36,.92) 0%, rgba(31,45,36,.7) 45%, rgba(31,45,36,.3) 100%),
    linear-gradient(180deg, rgba(31,45,36,.2) 0%, rgba(31,45,36,.6) 100%);
}
.lp-hero__inner{
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) var(--gutter);
  text-align: center;
}
.lp-hero__content{ max-width: 760px; margin: 0 auto; }
.lp-hero h1{
  color: var(--cream);
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px auto 0;
  max-width: 18ch;
}
.lp-hero__sub{
  margin: 20px auto 0;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: rgba(245,240,225,.92);
  font-weight: 300;
  max-width: 56ch;
}
.lp-hero__sub strong{ color: var(--gold); font-weight: 600; }

/* tag chips */
.lp-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(212,166,66,.15);
  color: var(--gold);
  border: 1px solid rgba(212,166,66,.4);
}
.lp-tag--gold{ background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lp-tag--pulse{
  animation: lp-tag-pulse 2.4s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(212,166,66,.6);
}
@keyframes lp-tag-pulse{
  0%,100%{ box-shadow: 0 0 0 0 rgba(212,166,66,.55); transform: translateY(0); }
  50%{ box-shadow: 0 0 0 12px rgba(212,166,66,0); transform: translateY(-1px); }
}

/* Star rating row */
.lp-stars{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(245,240,225,.92);
  font-weight: 500;
}
.lp-stars__icons{
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 18px;
  line-height: 1;
}
.lp-stars__copy strong{ color: var(--gold); font-weight: 700; }

/* Price anchor in headline */
.lp-hero__price{
  display: inline-block;
  color: var(--gold);
  font-weight: 500;
}

/* Click-to-call below CTA */
.lp-call-prominent{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 22px;
  background: rgba(245,240,225,.08);
  border: 1px solid rgba(245,240,225,.2);
  border-radius: 999px;
  color: var(--cream);
  font-size: 14.5px;
  font-weight: 500;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.lp-call-prominent:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.lp-call-prominent strong{ font-weight: 700; }
.lp-call-prominent svg{ width: 16px; height: 16px; flex-shrink: 0; }
@media(max-width: 600px){
  .lp-call-prominent{
    width: 100%;
    justify-content: center;
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
  }
  .lp-call-prominent:hover{ background: var(--gold-deep); color: var(--cream); }
}

/* CTA buttons */
.lp-cta-row{
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.lp-btn{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 28px;
  border-radius: 14px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .01em;
  line-height: 1.1;
  transition: all .35s var(--ease);
  text-align: center;
  cursor: pointer;
}
.lp-btn__sub{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  opacity: .82;
}
.lp-btn--gold{
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 32px -14px rgba(212,166,66,.55);
}
.lp-btn--gold:hover{
  background: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -16px rgba(212,166,66,.65);
}
.lp-btn--ghost{
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,240,225,.4);
}
.lp-btn--ghost:hover{
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  transform: translateY(-3px);
}
.lp-btn--ink{
  background: var(--ink);
  color: var(--cream);
}
.lp-btn--ink:hover{
  background: var(--green-deep);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(31,45,36,.6);
}
.lp-btn--lg{
  padding: 22px 40px;
  font-size: 17px;
  flex-direction: row;
  gap: 10px;
}
.lp-btn--block{ width: 100%; }
.lp-btn--sm{
  padding: 12px 20px;
  font-size: 14px;
  flex-direction: row;
  gap: 6px;
}
.lp-btn .arrow{ transition: transform .3s var(--ease); }
.lp-btn:hover .arrow{ transform: translateX(4px); }

/* trust bullets */
.lp-trust{
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 720px;
}
.lp-trust li{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,240,225,.92);
  font-weight: 500;
  white-space: nowrap;
}
.lp-trust svg{
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ---------- Visual stock indicator ---------- */
.lp-stock{
  text-align: center;
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(245,240,225,.08);
  margin-bottom: 28px;
}
.lp-stock__label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.lp-stock__label::before{
  content: "";
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: lp-live-pulse 2s ease-out infinite;
}
@keyframes lp-live-pulse{
  0%{ box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  100%{ box-shadow: 0 0 0 12px rgba(74,222,128,0); }
}
.lp-stock__icons{
  display: inline-flex;
  gap: 14px;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-pig{
  display: inline-block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.35));
  animation: lp-pig-bounce 3s ease-in-out infinite;
}
.lp-pig:nth-child(2){ animation-delay: .3s }
.lp-pig:nth-child(3){ animation-delay: .6s }
.lp-pig:nth-child(4){ animation-delay: .9s }
.lp-pig:nth-child(5){ animation-delay: 1.2s }
.lp-pig:nth-child(6){ animation-delay: 1.5s }
@keyframes lp-pig-bounce{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-3px); }
}
.lp-stock__count{
  font-size: 16px;
  color: rgba(245,240,225,.92);
  font-weight: 500;
}
.lp-stock__count strong{ color: var(--gold); font-weight: 700; font-size: 18px; }

/* ---------- Scarcity strip ---------- */
.lp-scarcity{
  background: var(--green-deep);
  color: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid rgba(245,240,225,.08);
}
.lp-scarcity__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-scarcity__item{
  flex: 1;
  min-width: 140px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lp-scarcity__num{
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.lp-scarcity__label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,240,225,.65);
}
.lp-scarcity__divider{
  width: 1px; height: 36px;
  background: rgba(245,240,225,.15);
}
@media (max-width: 700px){
  .lp-scarcity__divider{ display: none; }
  .lp-scarcity__row{ gap: 28px; }
  .lp-scarcity__item{ flex: 0 0 calc(50% - 14px); }
}

/* ---------- Math / comparison ---------- */
.lp-math__head{
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.lp-math__head h2{ margin-top: 18px; }
.lp-math__head .lead{ margin: 18px auto 0; }

.lp-compare{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 860px){
  .lp-compare{ grid-template-columns: 1fr; gap: 16px; }
  .lp-compare__vs{ order: 1; }
}
.lp-compare__col{
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.lp-compare__col--bad{
  background: rgba(178,58,44,.04);
  border-color: rgba(178,58,44,.18);
}
.lp-compare__col--good{
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  color: var(--cream);
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(46,93,58,.5);
}
.lp-compare__col--good::before{
  content:"";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,66,.25) 0%, transparent 70%);
  pointer-events: none;
}
.lp-compare__label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--graphite);
  margin-bottom: 12px;
}
.lp-compare__col--good .lp-compare__label{ color: var(--gold); }
.lp-compare__col h3{
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  font-weight: 400;
  font-family: var(--serif);
  line-height: 1;
  margin-bottom: 24px;
}
.lp-compare__col--good h3{ color: var(--gold); }
.lp-compare__col ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 20px;
}
.lp-compare__col li{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(31,45,36,.08);
  font-size: 14px;
}
.lp-compare__col--good li{ border-color: rgba(245,240,225,.12); color: rgba(245,240,225,.92); }
.lp-compare__col li strong{ font-weight: 600; white-space: nowrap; }
.lp-compare__col--good li strong{ color: var(--gold); }
.lp-compare__note{
  margin-top: auto;
  font-size: 13px;
  font-style: italic;
  color: var(--graphite);
  line-height: 1.55;
}
.lp-compare__note--good{
  color: var(--cream);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
.lp-compare__vs{
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--gold);
  align-self: center;
  padding: 0 8px;
}

.lp-cta-center{
  margin-top: 56px;
  text-align: center;
}
.lp-cta-fineprint{
  margin-top: 16px;
  font-size: 13px;
  color: var(--graphite);
  font-family: var(--mono);
  letter-spacing: .04em;
}

/* ---------- Section heads ---------- */
.lp-section-head{
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.lp-section-head h2{ margin-top: 18px; }
.lp-section-head .lead{ margin: 18px auto 0; }

/* ---------- Cuts grid ---------- */
.lp-cuts{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-cut{
  background: var(--cream);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.lp-cut:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 32px -20px rgba(212,166,66,.4);
}
.lp-cut__amt{
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}
.lp-cut__name{
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.lp-cut__note{
  font-size: 13px;
  color: var(--graphite);
  line-height: 1.5;
}

.lp-callout{
  margin: 56px auto 0;
  max-width: 720px;
  background: rgba(212,166,66,.1);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.lp-callout strong{ color: var(--green); display: block; margin-bottom: 6px; font-size: 17px; }

/* ---------- Bullets in story ---------- */
.lp-bullets{
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-bullets li{
  display: flex;
  gap: 14px;
  padding-left: 0;
  font-size: 15px;
  color: var(--graphite);
  line-height: 1.55;
}
.lp-bullets li::before{
  content:"";
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 9px;
}
.lp-bullets li strong{ color: var(--ink); font-weight: 600; }

/* ---------- Steps ---------- */
.lp-steps{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.lp-step{
  background: var(--cream);
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.lp-step:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
}
.lp-step__num{
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.lp-step h3{
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.lp-step p{
  font-size: 14.5px;
  color: var(--graphite);
  line-height: 1.6;
}

/* ---------- Quotes ---------- */
.lp-quotes{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lp-quote{
  background: rgba(245,240,225,.05);
  border: 1px solid rgba(245,240,225,.12);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}
.lp-quote__stars{
  color: var(--gold);
  letter-spacing: .15em;
  font-size: 17px;
  margin-bottom: 14px;
}
.lp-quote blockquote{
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 18px;
  font-style: italic;
}
.lp-quote figcaption{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,225,.65);
}

/* ---------- Reserve / final CTA ---------- */
.lp-reserve{
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 9vw, 120px);
}
.lp-reserve__inner{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.lp-reserve__inner h2{
  margin-top: 18px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.lp-reserve__inner .lead{
  margin: 18px auto 48px;
}

.lp-products{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.lp-product{
  position: relative;
  background: var(--cream);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.lp-product:hover{
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 24px 50px -28px rgba(212,166,66,.5);
}
.lp-product--featured{
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green) 100%);
  border-color: var(--green-deep);
  color: var(--cream);
}
.lp-product--featured h3,
.lp-product--featured .lp-product__price{ color: var(--cream); }
.lp-product--featured .lp-product__price span{ color: var(--gold); }
.lp-product--featured ul li{ color: rgba(245,240,225,.85); }
.lp-product--featured .lp-product__stock{ color: var(--gold); border-top-color: rgba(245,240,225,.12); }

.lp-product__badge{
  position: absolute;
  top: -12px; left: 24px;
  background: var(--ink);
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.lp-product__badge--gold{ background: var(--gold); color: var(--ink); }
.lp-product h3{
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.lp-product__price{
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--green);
  line-height: 1;
  margin-bottom: 24px;
}
.lp-product__price span{
  font-size: 14px;
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 500;
  margin-left: 6px;
  vertical-align: middle;
}
.lp-product ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--graphite);
}
.lp-product ul li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.5;
}
.lp-product ul li::before{
  content:"";
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4A642' stroke-width='2.5'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 3px;
}
.lp-product__stock{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
}

.lp-guarantee{
  max-width: 720px;
  margin: 56px auto 0;
  background: rgba(46,93,58,.06);
  border: 1px solid rgba(46,93,58,.15);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  text-align: left;
}
.lp-guarantee svg{
  width: 48px; height: 48px;
  color: var(--green);
  flex-shrink: 0;
}
.lp-guarantee strong{
  display: block;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}
.lp-guarantee div{
  font-size: 14px;
  color: var(--graphite);
  line-height: 1.55;
}

.lp-callback{
  margin-top: 32px;
  font-size: 14px;
  color: var(--graphite);
  font-family: var(--sans);
}
.lp-callback a{
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* ---------- Sticky mobile CTA ---------- */
.lp-sticky{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px var(--gutter);
  z-index: 80;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,.4);
  border-top: 1px solid rgba(212,166,66,.3);
}
.lp-sticky__inner{
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-sticky__copy{
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(245,240,225,.85);
}
.lp-sticky__copy strong{ color: var(--gold); display: block; font-size: 14.5px; margin-bottom: 1px; }

@media (min-width: 900px){
  .lp-sticky{ display: none; }
}

/* ---------- Slim footer override for LP ---------- */
.footer--slim{
  background: var(--ink);
  padding: 24px 0;
}
.footer--slim .footer__bottom{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

/* ---------- Wrap-narrow shim for LP ---------- */
.wrap-narrow{ max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Mobile fine-tuning ---------- */
@media (max-width: 600px){
  .lp-bar{ font-size: 12px; padding: 10px var(--gutter); }
  .lp-bar__sep{ display: none; }
  .lp-cta-row{ flex-direction: column; }
  .lp-cta-row .lp-btn{ width: 100%; }
  .lp-trust{ grid-template-columns: 1fr; }
  .lp-product__badge{ left: 16px; }
  .lp-guarantee{ flex-direction: column; text-align: center; }
}
