/* ==========================================================================
 * Planting Zone — post-opt-in tripwire page (v14.4.0 redesign)
 *
 * Long-form sales page for the $17 Companion Planting Encyclopedia offer.
 * Everything scoped under `.pz-trip` so it doesn't leak into other
 * planting-guide templates.
 *
 * Loaded only on the tripwire route. See planting-zone-seo.php
 * enqueue_tripwire_assets(). Uses the path-versioned URL pattern from
 * v14.2.1 so cache plugins that strip ?ver= can't serve stale.
 * ========================================================================== */

.pz-trip {
  --parchment: #F4ECDC;
  --parchment-deep: #EBE0CA;
  --cream: #FAF5EA;
  --forest: #2C3E2D;
  --forest-deep: #1E2C1F;
  --moss: #5A7052;
  --terracotta: #B5543A;
  --terracotta-deep: #9A4330;
  --honey: #D4A73C;
  --honey-deep: #B88C28;
  --ink: #2A2723;
  --ink-soft: #4A453E;
  --stroke: rgba(42, 39, 35, 0.12);
  --stroke-strong: rgba(42, 39, 35, 0.25);

  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  --shadow-soft: 0 2px 8px rgba(42, 39, 35, 0.06), 0 8px 24px rgba(42, 39, 35, 0.08);
  --shadow-lift: 0 4px 12px rgba(42, 39, 35, 0.10), 0 20px 48px rgba(42, 39, 35, 0.14);
  --shadow-book: 0 20px 40px rgba(42, 39, 35, 0.25), 0 10px 20px rgba(42, 39, 35, 0.15);

  font-family: var(--sans);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(181, 84, 58, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(44, 62, 45, 0.05) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.15 0 0 0 0 0.13 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* Break out of any constrained WP content container so the tripwire
     fills the viewport. Classic transform-based breakout: position
     the left edge at 50% of the containing block, translate back by
     50% of the element's own width (which we set to 100vw). Works
     regardless of parent padding, constrained layouts, or margins —
     unlike `margin: calc(50% - 50vw)` which mis-calculates with
     padded parents. */
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 !important;
  padding: 0;
}

.pz-trip * { box-sizing: border-box; }

.pz-trip h1, .pz-trip h2, .pz-trip h3, .pz-trip h4 {
  font-family: var(--serif);
  color: var(--forest-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.pz-trip h1 { font-weight: 600; }
.pz-trip h2 { font-weight: 500; }
.pz-trip p  { margin: 0 0 1em; }
.pz-trip a  { color: var(--terracotta-deep); text-decoration: none; }
.pz-trip ul { margin: 0; padding: 0; list-style: none; }

.pz-trip .pz-trip-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.pz-trip .pz-trip-container--narrow { max-width: 780px; }

/* Top urgency strip */
.pz-trip .pz-trip-strip {
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  padding: 10px 16px;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 50;
}
.pz-trip .pz-trip-strip strong { color: var(--honey); font-weight: 600; }
.pz-trip .pz-trip-strip .pz-trip-timer {
  display: inline-block;
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  margin-left: 6px;
  color: var(--honey);
}

/* Header */
.pz-trip .pz-trip-header {
  padding: 28px 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--stroke);
}
.pz-trip .pz-trip-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: 0.01em;
}
.pz-trip .pz-trip-mark span { color: var(--terracotta); }

/* Hero + confirmation */
.pz-trip .pz-trip-hero {
  padding: 56px 0 40px;
  position: relative;
}
.pz-trip .pz-trip-confirm {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 28px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.pz-trip .pz-trip-confirm::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--moss), var(--honey), var(--terracotta));
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.pz-trip .pz-trip-check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--honey);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.pz-trip .pz-trip-confirm h2 { font-size: 28px; margin-bottom: 8px; }
.pz-trip .pz-trip-confirm p  { color: var(--ink-soft); font-size: 16px; margin-bottom: 0; }
.pz-trip .pz-trip-confirm em { color: var(--terracotta-deep); font-style: normal; font-weight: 600; }
/* Prominent download button in the confirm block (v14.4.2) — so the
   link isn't lost in the "check your inbox" copy the visitor might
   skim past. Big, contrasting terracotta button matching the primary
   CTA treatment elsewhere on the page. */
.pz-trip .pz-trip-confirm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 28px;
  background: var(--terracotta);
  color: var(--cream) !important;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  border-radius: var(--r-md);
  box-shadow: 0 4px 0 var(--terracotta-deep), var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pz-trip .pz-trip-confirm-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--terracotta-deep), var(--shadow-soft);
  text-decoration: none;
  color: var(--cream) !important;
}
.pz-trip .pz-trip-confirm-btn:active { transform: translateY(4px); box-shadow: 0 0 0 var(--terracotta-deep); }
.pz-trip .pz-trip-confirm-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}
.pz-trip .pz-trip-confirm-download {
  font-weight: 600;
  color: var(--terracotta-deep);
  border-bottom: 1px solid currentColor;
}
.pz-trip .pz-trip-confirm-download:hover { color: var(--terracotta); }

.pz-trip .pz-trip-eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 18px;
}
.pz-trip .pz-trip-eyebrow::before,
.pz-trip .pz-trip-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--terracotta);
  vertical-align: middle;
  margin: 0 14px;
}

.pz-trip .pz-trip-headline {
  text-align: center;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  max-width: 900px;
  margin: 0 auto 18px;
  font-weight: 500;
}
.pz-trip .pz-trip-headline em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
}
.pz-trip .pz-trip-headline .pz-trip-ul {
  position: relative;
  display: inline-block;
}
.pz-trip .pz-trip-headline .pz-trip-ul::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: var(--honey);
  opacity: 0.45;
  border-radius: 8px;
  z-index: -1;
}
.pz-trip .pz-trip-sub {
  text-align: center;
  font-size: 19px;
  max-width: 680px;
  margin: 0 auto;
  color: var(--ink-soft);
}

/* Primary offer card */
.pz-trip .pz-trip-offer {
  margin: 56px auto 40px;
  background: var(--cream);
  border: 1px solid var(--stroke-strong);
  border-radius: var(--r-lg);
  padding: 48px;
  position: relative;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}
.pz-trip .pz-trip-offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(212, 167, 60, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(44, 62, 45, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.pz-trip .pz-trip-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.pz-trip .pz-trip-book { position: relative; text-align: center; }
.pz-trip .pz-trip-book img {
  max-width: 360px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(42, 39, 35, 0.25)) drop-shadow(0 6px 12px rgba(42, 39, 35, 0.15));
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.pz-trip .pz-trip-book:hover img { transform: rotate(0) scale(1.02); }
.pz-trip .pz-trip-book-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 50%;
  transform: rotate(12deg);
  width: 96px;
  height: 96px;
  display: flex; align-items: center; justify-content: center; text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow-soft);
}

.pz-trip .pz-trip-offer-tag {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--moss);
  font-weight: 700;
  margin-bottom: 12px;
}
.pz-trip .pz-trip-offer h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 18px;
  line-height: 1.05;
}
.pz-trip .pz-trip-offer-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.pz-trip .pz-trip-bullets { margin-bottom: 28px; }
.pz-trip .pz-trip-bullets li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 16px;
  color: var(--ink);
}
.pz-trip .pz-trip-bullets li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--honey-deep);
  font-size: 16px;
  font-weight: bold;
}

.pz-trip .pz-trip-price-block {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.pz-trip .pz-trip-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1;
}
.pz-trip .pz-trip-price .pz-trip-dollar {
  font-size: 28px; vertical-align: top; position: relative; top: 8px;
}
.pz-trip .pz-trip-price-strike {
  font-family: var(--serif);
  text-decoration: line-through;
  text-decoration-color: var(--terracotta);
  text-decoration-thickness: 2px;
  color: var(--ink-soft);
  font-size: 20px;
}
.pz-trip .pz-trip-price-strike small {
  display: block;
  font-size: 12px;
  text-decoration: none;
  color: var(--ink-soft);
  opacity: 0.7;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* Buttons */
.pz-trip .pz-trip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
  padding: 18px 32px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
}
.pz-trip .pz-trip-btn--primary {
  background: var(--terracotta);
  color: var(--cream) !important;
  box-shadow: 0 6px 0 var(--terracotta-deep), var(--shadow-soft);
}
.pz-trip .pz-trip-btn--primary:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 var(--terracotta-deep), var(--shadow-soft);
  color: var(--cream) !important;
}
.pz-trip .pz-trip-btn--primary:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 var(--terracotta-deep), var(--shadow-soft);
}
.pz-trip .pz-trip-btn--xl { font-size: 19px; padding: 22px 40px; width: 100%; max-width: 520px; }
.pz-trip .pz-trip-btn-note {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.pz-trip .pz-trip-btn-note::before { content: '✓ '; color: var(--moss); font-weight: bold; }

/* Section layout */
.pz-trip .pz-trip-section { padding: 72px 0; position: relative; }
.pz-trip .pz-trip-section--dark { background: var(--forest-deep); color: var(--cream); }
.pz-trip .pz-trip-section--dark h2,
.pz-trip .pz-trip-section--dark h3 { color: var(--cream); }
.pz-trip .pz-trip-section--alt { background: var(--parchment-deep); }

.pz-trip .pz-trip-sec-eyebrow {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 14px;
}
.pz-trip .pz-trip-section--dark .pz-trip-sec-eyebrow { color: var(--honey); }
.pz-trip .pz-trip-sec-title {
  text-align: center;
  font-size: clamp(30px, 4vw, 48px);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.05;
}
.pz-trip .pz-trip-sec-sub {
  text-align: center;
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 56px;
  color: var(--ink-soft);
}
.pz-trip .pz-trip-section--dark .pz-trip-sec-sub { color: rgba(250, 245, 234, 0.75); }

/* Problem / agitation */
.pz-trip .pz-trip-problem {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: 36px 40px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  max-width: 780px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.pz-trip .pz-trip-problem strong { color: var(--terracotta-deep); font-weight: 600; font-style: normal; }
.pz-trip .pz-trip-problem-attrib {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

/* How it works */
.pz-trip .pz-trip-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1020px;
  margin: 0 auto;
}
.pz-trip .pz-trip-step { text-align: center; padding: 32px 24px; }
.pz-trip .pz-trip-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--honey);
  opacity: 0.55;
  margin-bottom: -20px;
  font-weight: 400;
}
.pz-trip .pz-trip-step h3 { font-size: 22px; margin-bottom: 10px; color: var(--cream); }
/* v14.4.2 — bumped from 0.75 to 0.92 so the copy is legible on the
   forest-deep background for readers who hit dark-mode OS themes. */
.pz-trip .pz-trip-step p  { font-size: 15px; color: rgba(250, 245, 234, 0.92); margin-bottom: 0; }

/* Modules grid */
.pz-trip .pz-trip-modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1040px;
  margin: 0 auto;
}
.pz-trip .pz-trip-module {
  background: var(--cream);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pz-trip .pz-trip-module:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pz-trip .pz-trip-module--featured {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--cream);
}
.pz-trip .pz-trip-module--featured h3 { color: var(--honey); }
/* v14.4.2 — the generic .pz-trip-module p rule below this block
   originally set color: var(--ink-soft) which rendered near-black on
   the dark forest card (invisible). !important forces the featured
   override to win regardless of source-order or future refactor. */
.pz-trip .pz-trip-module--featured p { color: #FAF5EA !important; }
.pz-trip .pz-trip-module--featured .pz-trip-module-price { color: rgba(250, 245, 234, 0.82) !important; }
.pz-trip .pz-trip-module-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.pz-trip .pz-trip-module--featured .pz-trip-module-tag { color: var(--honey); }
.pz-trip .pz-trip-module h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.2; }
.pz-trip .pz-trip-module-price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
}
.pz-trip .pz-trip-module--featured .pz-trip-module-price { color: rgba(250, 245, 234, 0.6); }
.pz-trip .pz-trip-module p { font-size: 15.5px; margin-bottom: 0; color: var(--ink-soft); }

/* Bonuses */
.pz-trip .pz-trip-bonuses {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}
.pz-trip .pz-trip-bonus {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px dashed var(--honey-deep);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.pz-trip .pz-trip-bonus-label {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
  padding: 4px;
  flex-direction: column;
}
.pz-trip .pz-trip-bonus-label span { display: block; font-size: 20px; font-style: normal; font-weight: 700; }
.pz-trip .pz-trip-bonus h4 {
  font-family: var(--serif);
  font-size: 18px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.pz-trip .pz-trip-bonus-val {
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pz-trip .pz-trip-bonus p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 0; line-height: 1.55; }

/* Value stack */
.pz-trip .pz-trip-stack-wrap { max-width: 640px; margin: 0 auto; }
.pz-trip .pz-trip-stack {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 8px 0;
  box-shadow: var(--shadow-soft);
  margin-bottom: 32px;
}
.pz-trip .pz-trip-stack-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 28px;
  border-bottom: 1px dashed var(--stroke);
  font-size: 15.5px;
}
.pz-trip .pz-trip-stack-row:last-child { border-bottom: none; }
.pz-trip .pz-trip-stack-val {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
}
.pz-trip .pz-trip-stack-row--total {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 18px 28px;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pz-trip .pz-trip-stack-row--total .pz-trip-stack-val {
  color: var(--honey);
  font-size: 22px;
  text-decoration: line-through;
}
.pz-trip .pz-trip-final-price { text-align: center; margin: 40px 0 24px; }
.pz-trip .pz-trip-final-price-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.pz-trip .pz-trip-final-price-amount {
  font-family: var(--serif);
  font-size: 88px;
  line-height: 1;
  color: var(--terracotta);
  font-weight: 600;
}
.pz-trip .pz-trip-final-price-amount .pz-trip-d {
  font-size: 44px; vertical-align: top; position: relative; top: 12px;
}

/* Guarantee */
.pz-trip .pz-trip-guarantee {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border: 2px solid var(--moss);
  border-radius: var(--r-lg);
  padding: 40px 40px;
  text-align: center;
  position: relative;
}
.pz-trip .pz-trip-guarantee-seal {
  width: 130px;
  height: 130px;
  margin: -100px auto 20px;
  background: var(--moss);
  color: var(--cream);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--parchment-deep);
}
.pz-trip .pz-trip-guarantee-seal .pz-trip-d1 { font-size: 36px; font-weight: 600; line-height: 1; font-style: normal; }
.pz-trip .pz-trip-guarantee-seal .pz-trip-d2 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-style: normal; margin-top: 4px; }
.pz-trip .pz-trip-guarantee h3 { font-size: 30px; margin-bottom: 14px; color: var(--forest-deep); }
.pz-trip .pz-trip-guarantee p  { font-size: 16px; color: var(--ink-soft); margin-bottom: 0; }

/* Founder */
.pz-trip .pz-trip-founder {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.pz-trip .pz-trip-founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--parchment-deep);
  box-shadow: var(--shadow-lift);
  transform: rotate(-2deg);
}
.pz-trip .pz-trip-founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.pz-trip .pz-trip-founder-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--terracotta);
  margin-top: 16px;
}
.pz-trip .pz-trip-founder h3 { font-size: 30px; margin-bottom: 16px; }
.pz-trip .pz-trip-founder p  { font-size: 16.5px; margin-bottom: 14px; color: var(--ink-soft); }
.pz-trip .pz-trip-founder strong { color: var(--forest-deep); font-weight: 600; }

/* Addons */
.pz-trip .pz-trip-addons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}
.pz-trip .pz-trip-addon {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pz-trip .pz-trip-addon:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pz-trip .pz-trip-addon-top { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 20px; }
.pz-trip .pz-trip-addon-img { flex-shrink: 0; width: 130px; }
.pz-trip .pz-trip-addon-img img {
  width: 100%; height: auto;
  filter: drop-shadow(0 10px 20px rgba(42, 39, 35, 0.2));
  transform: rotate(-3deg);
}
.pz-trip .pz-trip-addon-head { flex: 1; }
.pz-trip .pz-trip-addon-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 8px;
}
.pz-trip .pz-trip-addon h3 {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.15;
}
.pz-trip .pz-trip-addon-hook {
  font-size: 15.5px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
}
.pz-trip .pz-trip-addon-body { font-size: 15px; color: var(--ink-soft); margin-bottom: 22px; flex: 1; }
.pz-trip .pz-trip-addon-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.pz-trip .pz-trip-addon-price .pz-trip-p {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--forest-deep);
  line-height: 1;
}
.pz-trip .pz-trip-addon-price .pz-trip-p .pz-trip-d {
  font-size: 20px; vertical-align: top; position: relative; top: 4px;
}
.pz-trip .pz-trip-addon-price .pz-trip-s {
  font-family: var(--serif);
  text-decoration: line-through;
  color: var(--ink-soft);
  font-size: 16px;
}
.pz-trip .pz-trip-btn--outline {
  background: transparent;
  color: var(--forest-deep) !important;
  border: 2px solid var(--forest-deep);
  box-shadow: none;
  padding: 14px 24px;
  font-size: 15px;
}
.pz-trip .pz-trip-btn--outline:hover {
  background: var(--forest-deep);
  color: var(--cream) !important;
  transform: none;
}

/* FAQ */
.pz-trip .pz-trip-faq { max-width: 780px; margin: 0 auto; }
.pz-trip .pz-trip-faq details {
  background: var(--cream);
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.pz-trip .pz-trip-faq details[open] { box-shadow: var(--shadow-soft); }
.pz-trip .pz-trip-faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  color: var(--forest-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.pz-trip .pz-trip-faq summary::-webkit-details-marker { display: none; }
.pz-trip .pz-trip-faq summary::after {
  content: '+';
  font-size: 26px;
  color: var(--terracotta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.pz-trip .pz-trip-faq details[open] summary::after { transform: rotate(45deg); }
.pz-trip .pz-trip-faq details p {
  padding: 0 24px 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 0;
}

/* Final CTA */
.pz-trip .pz-trip-final {
  text-align: center;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--parchment) 0%, var(--parchment-deep) 100%);
}
.pz-trip .pz-trip-final h2 {
  font-size: clamp(30px, 4vw, 52px);
  max-width: 820px;
  margin: 0 auto 24px;
  line-height: 1.05;
}
.pz-trip .pz-trip-final h2 em { font-style: italic; color: var(--terracotta); }
.pz-trip .pz-trip-final p { font-size: 18px; color: var(--ink-soft); max-width: 620px; margin: 0 auto 36px; }

/* Footer */
.pz-trip .pz-trip-footer {
  background: var(--forest-deep);
  color: rgba(250, 245, 234, 0.6);
  padding: 32px 0;
  text-align: center;
  font-size: 13px;
}
.pz-trip .pz-trip-footer a { color: rgba(250, 245, 234, 0.8); margin: 0 10px; }

/* Mobile sticky CTA */
.pz-trip-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(30, 44, 31, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212, 167, 60, 0.3);
  z-index: 100;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.15);
}
.pz-trip-sticky-cta a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #B5543A;
  color: #FAF5EA;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 4px 0 #9A4330;
  text-decoration: none;
}
.pz-trip-sticky-cta .pz-trip-pr { font-family: 'Fraunces', Georgia, serif; font-size: 20px; }
.pz-trip-sticky-cta .pz-trip-pr s { opacity: 0.55; font-size: 14px; margin-right: 6px; font-weight: 400; }

/* Responsive */
@media (max-width: 900px) {
  .pz-trip .pz-trip-offer { padding: 32px 24px; }
  .pz-trip .pz-trip-offer-grid { grid-template-columns: 1fr; gap: 32px; }
  .pz-trip .pz-trip-book img { max-width: 260px; }
  .pz-trip .pz-trip-book-badge { width: 84px; height: 84px; font-size: 12px; right: 0; }
  .pz-trip .pz-trip-steps { grid-template-columns: 1fr; gap: 16px; }
  .pz-trip .pz-trip-modules { grid-template-columns: 1fr; }
  .pz-trip .pz-trip-bonuses { grid-template-columns: 1fr; }
  .pz-trip .pz-trip-founder { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .pz-trip .pz-trip-founder-photo { max-width: 220px; margin: 0 auto; }
  .pz-trip .pz-trip-addons { grid-template-columns: 1fr; }
  .pz-trip .pz-trip-section { padding: 56px 0; }
  .pz-trip .pz-trip-hero { padding: 36px 0 24px; }
  .pz-trip .pz-trip-confirm { padding: 24px 20px; }
  .pz-trip .pz-trip-price { font-size: 44px; }
  .pz-trip .pz-trip-final-price-amount { font-size: 72px; }
  .pz-trip-sticky-cta { display: block; }
  .pz-trip .pz-trip-bonus { padding: 22px; gap: 16px; }
  .pz-trip .pz-trip-bonus-label { width: 60px; height: 60px; font-size: 11px; }
  .pz-trip .pz-trip-bonus-label span { font-size: 16px; }
  .pz-trip .pz-trip-addon { padding: 24px; }
  .pz-trip .pz-trip-addon-top { gap: 18px; }
  .pz-trip .pz-trip-addon-img { width: 100px; }
  .pz-trip .pz-trip-problem { padding: 28px 24px; font-size: 18px; }
  .pz-trip .pz-trip-guarantee-seal { width: 110px; height: 110px; margin: -80px auto 18px; }
  .pz-trip .pz-trip-guarantee-seal .pz-trip-d1 { font-size: 30px; }
  .pz-trip .pz-trip-guarantee { padding: 28px 24px; }
  .pz-trip .pz-trip-strip { font-size: 12px; padding: 8px 12px; }
  .pz-trip .pz-trip-btn--xl { font-size: 17px; padding: 18px 28px; }
}

@media (max-width: 520px) {
  .pz-trip .pz-trip-container { padding: 0 18px; }
  .pz-trip .pz-trip-headline { font-size: 36px; }
  .pz-trip .pz-trip-sub { font-size: 16px; }
  .pz-trip .pz-trip-price-block { gap: 12px; }
  .pz-trip .pz-trip-price { font-size: 38px; }
  .pz-trip .pz-trip-price .pz-trip-dollar { font-size: 20px; top: 5px; }
  .pz-trip .pz-trip-eyebrow::before,
  .pz-trip .pz-trip-eyebrow::after { width: 20px; margin: 0 8px; }
}

/* Animations */
@keyframes pzTripFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pz-trip .pz-trip-fade-up { animation: pzTripFadeUp 0.8s ease both; }

@keyframes pzTripGentlePulse {
  0%, 100% { transform: rotate(12deg) scale(1); }
  50%      { transform: rotate(12deg) scale(1.05); }
}
.pz-trip .pz-trip-book-badge { animation: pzTripGentlePulse 2s ease-in-out infinite; }

/* Hide the iframe we use to auto-trigger the download */
.pz-trip-iframe {
  position: absolute !important;
  width: 0; height: 0; border: 0;
}

/* ==========================================================================
 * Theme-chrome suppression — applied to <body> when the tripwire renders
 * so the visitor gets a single-purpose sales page, not a page title +
 * nav + sidebar + footer wrapping the tripwire.
 * Covers GeneratePress, Astra, Kadence, Blocksy, OceanWP, TwentyTwenty*.
 * ========================================================================== */
body.pz-trip-page {
  background: #F4ECDC;               /* parchment — fills gaps around the breakout */
}
body.pz-trip-page .site-header,
body.pz-trip-page #masthead,
body.pz-trip-page .site-branding,
body.pz-trip-page .main-navigation,
body.pz-trip-page .site-footer,
body.pz-trip-page #colophon,
body.pz-trip-page .entry-header,
body.pz-trip-page .page-header,
body.pz-trip-page .breadcrumbs,
/* Twenty Twenty* and other block themes: header / footer template parts,
   post title / meta blocks, nav blocks. Kept .pz-trip- prefixed selectors
   whitelisted so OUR tripwire markup isn't clobbered. */
body.pz-trip-page header.wp-block-template-part:not(.pz-trip-header),
body.pz-trip-page footer.wp-block-template-part,
body.pz-trip-page .wp-block-post-title,
body.pz-trip-page .wp-block-post-date,
body.pz-trip-page .wp-block-post-author,
body.pz-trip-page .wp-block-post-terms,
body.pz-trip-page nav.wp-block-navigation:not(.pz-trip-header *),
body.pz-trip-page .pz-share-floating,   /* our own floating share rail */
body.pz-trip-page .pz-sticky-bar,        /* and our sticky opt-in bar */
body.pz-trip-page .pz-exit-intent {      /* and the exit-intent modal */
  display: none !important;
}
/* Strip post/page wrappers that constrain the breakout to their max-width. */
body.pz-trip-page .site-content,
body.pz-trip-page #content,
body.pz-trip-page #primary,
body.pz-trip-page .content-area,
body.pz-trip-page .entry-content,
body.pz-trip-page article.page,
body.pz-trip-page article {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
