/* /press-playbook — The Press Playbook lead-magnet funnel
   Light editorial: warm cream, near-black, Shanar brand orange (#E8A847), Playfair Display + Inter.
   Self-contained — does not depend on evermind-template CSS. */

:root {
  --bg: #faf7f2;
  --bg-1: #f3eee4;
  --bg-2: #ffffff;
  --fg: #1a1612;
  --fg-2: #4f463c;
  --muted: #8c8174;
  --accent: #e8a847;        /* Shanar brand orange (#E8A847 — from the IG highlight covers) */
  --accent-deep: #b9831f;   /* deeper shade — for accent TEXT on the cream bg (legible) */
  --on-accent: #1a1612;     /* near-black text on the brand-orange buttons (high contrast) */
  --line: rgba(26, 22, 18, 0.09);
  --line-strong: rgba(26, 22, 18, 0.16);
  --danger: #d23f3f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* honeypot — kept out of view for real users */
.hp-field {
  position: absolute !important;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  opacity: 0; pointer-events: none;
}

/* ────────────────────────── HERO ────────────────────────── */
.hero {
  position: relative;
  padding: 96px 24px 76px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 600px at 50% -5%, rgba(232, 168, 71, 0.10), transparent 62%),
    var(--bg);
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid rgba(232, 168, 71, 0.32);
  border-radius: 999px;
  background: rgba(232, 168, 71, 0.07);
  margin-bottom: 26px;
}
.eyebrow .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(232, 168, 71, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 168, 71, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(232, 168, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 168, 71, 0); }
}
h1.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 22px;
}
h1.hero-headline em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 900;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 auto 34px;
  max-width: 560px;
}

/* ────────────────────────── CAPTURE FORM ────────────────────────── */
.capture-form {
  display: flex; gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}
.capture-form.centered { margin: 0 auto; }
.capture-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.capture-form input[type="email"]::placeholder { color: var(--muted); }
.capture-form input[type="email"]:focus {
  border-color: var(--accent-deep);
  box-shadow: 0 0 0 3px rgba(232, 168, 71, 0.16);
}
.capture-form input[type="email"].invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(210, 63, 63, 0.14);
}
.capture-form button {
  padding: 16px 26px;
  background: var(--accent);
  color: var(--on-accent);
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.15s, transform 0.05s;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(232, 168, 71, 0.28);
}
.capture-form button:hover { filter: brightness(1.06); }
.capture-form button:active { transform: translateY(1px); }
.capture-form button:disabled { opacity: 0.7; cursor: default; }
.capture-form .arrow { display: inline-block; margin-left: 4px; }
.form-microcopy {
  margin-top: 13px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* ────────────────────────── SUCCESS ────────────────────────── */
.success-card {
  max-width: 520px;
  margin: 8px auto 0;
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(232, 168, 71, 0.08), var(--bg-2));
  border: 1px solid rgba(232, 168, 71, 0.35);
  border-radius: 18px;
  text-align: center;
}
.success-card .check-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 900;
  margin: 0 auto 16px;
  box-shadow: 0 8px 22px rgba(232, 168, 71, 0.3);
}
.success-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 8px;
}
.success-card p { color: var(--fg-2); font-size: 15px; line-height: 1.55; }
.success-card .download-btn {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px;
  padding: 13px 26px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(232, 168, 71, 0.28);
  transition: filter 0.15s;
}
.success-card .download-btn:hover { filter: brightness(1.06); }

/* ────────────────────────── SECTIONS ────────────────────────── */
.section { padding: 84px 24px; position: relative; }
.section-inner { max-width: 860px; margin: 0 auto; }
.section-eyebrow {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-eyebrow.centered { text-align: center; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 36px;
}
.section-title em { font-style: italic; color: var(--accent-deep); }

/* What's inside — checklist */
.inside {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.checklist { list-style: none; }
.checklist li {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.checklist li:last-child { border-bottom: none; }
.checklist .check {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(232, 168, 71, 0.12);
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  margin-top: 3px;
}
.checklist h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.checklist p { color: var(--fg-2); font-size: 15.5px; line-height: 1.55; }

/* Credibility bar */
.cred {
  background: var(--bg);
  padding: 34px 24px;
  border-bottom: 1px solid var(--line);
}
.cred-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center;
}
.cred-label {
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.cred-marks {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px 18px;
}
.cred-marks .mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 27px);
  letter-spacing: 0.01em;
  color: var(--fg);
  opacity: 0.82;
}
.cred-marks .dot-sep { color: var(--accent-deep); font-weight: 700; opacity: 0.7; }

/* Bio */
.bio { background: var(--bg); }
.bio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 52px;
  align-items: center;
}
.bio-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}
.bio-title em { font-style: italic; color: var(--accent-deep); }
.bio p { color: var(--fg-2); font-size: 17px; line-height: 1.65; }
.bio strong { color: var(--fg); font-weight: 700; }
.bio .stat-row { display: flex; gap: 30px; margin-top: 28px; flex-wrap: wrap; }
.bio .stat .v {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--accent-deep);
  line-height: 1;
}
.bio .stat .l {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; max-width: 150px;
}
.bio-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-1), #e9e2d6);
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 15px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.12);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* Closing capture */
.capture-section {
  background:
    radial-gradient(ellipse 900px 500px at 50% 50%, rgba(232, 168, 71, 0.08), transparent 70%),
    var(--bg-1);
  border-top: 1px solid var(--line);
  text-align: center;
}
.capture-card-wrap {
  max-width: 640px; margin: 0 auto;
  padding: 48px 36px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.08);
}
.capture-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.capture-title em { font-style: italic; color: var(--accent-deep); }
.capture-lead { color: var(--fg-2); font-size: 16.5px; line-height: 1.55; margin-bottom: 26px; }

/* Footer — text only, no links (single-purpose page) */
.pp-footer {
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}

/* Real placements (proof) */
.proof { background: var(--bg); border-top: 1px solid var(--line); }
.proof-lead {
  color: var(--fg-2); font-size: 16.5px; line-height: 1.55;
  max-width: 640px; margin: -22px 0 36px;
}
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-item { margin: 0; }
.proof-item img {
  width: 100%; height: auto; aspect-ratio: 25 / 18;
  object-fit: cover; object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  box-shadow: 0 12px 30px rgba(26, 22, 18, 0.10);
}
.proof-item figcaption {
  margin-top: 10px; font-size: 12.5px; color: var(--muted); line-height: 1.4;
}
.proof-item .po-outlet {
  color: var(--fg); font-weight: 700;
  font-family: 'Playfair Display', Georgia, serif;
}
.results-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px;
}
.result {
  padding: 22px 22px 24px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.result h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px; font-weight: 700; line-height: 1.2; margin-bottom: 8px;
}
.result p { color: var(--fg-2); font-size: 14.5px; line-height: 1.55; }
.result strong { color: var(--accent-deep); font-weight: 700; }

/* Next step (book a call) on the success state */
.next-step { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.next-step p { color: var(--fg-2); font-size: 14.5px; line-height: 1.5; margin-bottom: 12px; }
.next-step p em { font-style: italic; color: var(--accent-deep); font-weight: 600; }
.next-step-link {
  display: inline-block; font-weight: 700; font-size: 14px;
  color: var(--accent-deep);
  border-bottom: 2px solid var(--accent); padding-bottom: 2px;
  transition: color 0.15s;
}
.next-step-link:hover { color: var(--fg); }

/* Hero portrait */
.hero-portrait { margin-bottom: 22px; display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.hero-portrait img {
  width: 86px; height: 86px; border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  border: 3px solid var(--bg-2);
  box-shadow: 0 0 0 1px var(--line-strong), 0 12px 26px rgba(26, 22, 18, 0.18);
}
.hero-portrait-cap { font-size: 12px; letter-spacing: 0.03em; color: var(--muted); }

/* The "borrowed the door" story */
.story { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-inner { max-width: 720px; }
.story p { color: var(--fg-2); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.story strong { color: var(--fg); font-weight: 700; }
.story em { font-style: italic; }
.story .story-kicker { color: var(--fg); font-size: 16px; font-style: italic; margin-top: 4px; }

/* Apply / qualification page */
.apply-hero { padding-bottom: 36px; }
.apply-section { padding-top: 30px; }
.apply-wrap {
  max-width: 720px; margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 40px 38px;
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.08);
}
.apply-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.apply-form .field { margin-bottom: 16px; }
.apply-form label {
  display: block; font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 7px;
}
.apply-form input, .apply-form select, .apply-form textarea {
  width: 100%; padding: 13px 15px;
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--fg); font-family: inherit; font-size: 15px; outline: none;
  transition: border-color 0.15s, box-shadow 0.15s; resize: vertical;
}
.apply-form input:focus, .apply-form select:focus, .apply-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 168, 71, 0.16);
}
.apply-form input.invalid, .apply-form textarea.invalid {
  border-color: var(--danger); box-shadow: 0 0 0 3px rgba(210, 63, 63, 0.14);
}
.apply-form button {
  width: 100%; margin-top: 8px; padding: 16px;
  background: var(--accent); color: var(--on-accent); border: none; border-radius: 12px;
  font-family: inherit; font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: filter 0.15s; box-shadow: 0 8px 22px rgba(232, 168, 71, 0.28);
}
.apply-form button:hover { filter: brightness(1.06); }
.apply-form button:disabled { opacity: 0.7; cursor: default; }
.apply-microcopy { margin-top: 14px; text-align: center; font-size: 12px; color: var(--muted); }
.apply-section .success-card { max-width: 720px; }

/* Scroll-reveal — subtle premium motion as sections enter view */
@media (prefers-reduced-motion: no-preference) {
  /* scoped to .js so content is always visible if JS is off/fails (never hide unconditionally) */
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .js .reveal.is-visible { opacity: 1; transform: none; }
}

/* Mobile sticky CTA bar — always-visible "get the playbook" on phones (IG traffic) */
.sticky-cta { display: none; }

/* ────────────────────────── RESPONSIVE ────────────────────────── */
@media (max-width: 860px) {
  .bio-grid { grid-template-columns: 1fr; gap: 36px; }
  .bio-photo { max-width: 320px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .results-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hero { padding: 64px 20px 56px; }
  .section { padding: 60px 20px; }
  .capture-form { flex-direction: column; }
  .capture-form button { width: 100%; }
  .capture-card-wrap { padding: 36px 22px; }
  .checklist li { gap: 14px; }
  .bio .stat-row { gap: 22px; }
  .proof-grid { grid-template-columns: 1fr; gap: 22px; }
  .proof-lead { margin-top: -10px; }
  .apply-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .apply-wrap { padding: 28px 20px; }

  /* sticky bottom CTA — phones only */
  body { padding-bottom: 76px; }
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom, 0px));
    background: rgba(250, 247, 242, 0.94);
    backdrop-filter: saturate(140%) blur(12px);
    border-top: 1px solid var(--line-strong);
  }
  .sticky-cta a {
    display: block; text-align: center;
    padding: 15px; border-radius: 12px;
    background: var(--accent); color: var(--on-accent);
    font-weight: 700; font-size: 13.5px; letter-spacing: 0.08em; text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(232, 168, 71, 0.32);
  }
  /* don't show the sticky bar once they've reached a form/success */
  .sticky-cta.hidden { display: none; }
}
