/* ===========================================
   guide.css — /guide free-guide landing page
   Page-scoped: loaded only by guide.php.
   Reuses global tokens & components from style.css;
   every .guide-form override below is intentionally
   page-scoped (this file never loads elsewhere).
   =========================================== */

/* ---- Hero ------------------------------------------------ */
.guide-hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  padding: clamp(130px, 15vw, 200px) 0 clamp(72px, 9vw, 120px);
}
.guide-hero-glow {
  position: absolute;
  top: -14%; right: -6%;
  width: min(760px, 78vw);
  height: min(760px, 78vw);
  background: radial-gradient(circle,
    rgba(186,145,107,0.30) 0%,
    rgba(186,145,107,0.06) 46%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.guide-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.guide-hero .eyebrow {
  color: var(--copper);
  display: inline-block;
  margin-bottom: 22px;
}
.guide-hero h1.display {
  color: var(--white);
  margin: 0;
  font-size: clamp(2.3rem, 1.5rem + 2.7vw, 4.3rem);
  line-height: 1.0;
}
.guide-hero h1 .display-italic {
  display: block;
  color: var(--copper);
  text-transform: none;
  margin-top: 0.08em;
}
.guide-hero .lead {
  color: var(--white-soft);
  margin: 26px 0 0;
  max-width: 46ch;
}

/* ---- Hero form + trust ----------------------------------- */
.guide-hero-form {
  margin-top: 32px;
  max-width: 480px;
  min-width: 0;
}
.guide-hero-form input { min-width: 0; }
.guide-hero-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--white-soft);
}
.guide-hero-trust svg {
  width: 15px; height: 15px;
  color: var(--copper);
  flex-shrink: 0;
}

/* ---- Hero cover mockup ----------------------------------- */
.guide-hero-visual { display: flex; justify-content: center; }
.guide-cover {
  position: relative;
  width: min(320px, 76vw);
}
.guide-cover img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  transform: rotate(-4deg);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.45),
    0 32px 60px -18px rgba(0,0,0,0.78),
    0 0 0 1px rgba(255,255,255,0.05);
  transition: transform var(--t-slow);
}
.guide-cover:hover img { transform: rotate(0deg) translateY(-5px); }
.guide-cover-seal {
  position: absolute;
  top: -26px; right: -22px;
  width: 98px; height: 98px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--copper);
  color: var(--white);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.05;
  transform: rotate(-12deg);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.38),
    0 14px 26px -8px rgba(0,0,0,0.65);
}

/* ---- "What's inside" grid -------------------------------- */
.guide-inside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 52px) clamp(40px, 6vw, 92px);
}
.guide-inside-item {
  border-top: 1.5px solid rgba(17,17,17,0.18);
  padding-top: 26px;
  transition: border-color var(--t-mid);
}
.guide-inside-item:hover { border-top-color: var(--copper); }
.guide-inside-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 1.4rem + 2vw, 3rem);
  color: var(--copper);
  line-height: 1;
  margin-bottom: 14px;
}
.guide-inside-item h3 {
  font-family: var(--serif);
  text-transform: uppercase;
  font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem);
  line-height: 1.12;
  margin: 0 0 10px;
}
.guide-inside-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.62;
}

/* ---- "Who it's for" (dark) ------------------------------- */
.guide-for {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}
.guide-for-head .eyebrow-italic {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--copper);
  display: block;
  margin-bottom: 14px;
}
.guide-for-head h2.display {
  color: var(--white);
  margin: 0;
}
.guide-for-head h2 .display-italic {
  color: var(--copper);
  text-transform: none;
}
.guide-for-note {
  margin: 20px 0 0;
  max-width: 32ch;
  color: var(--white-soft);
  font-size: 15px;
  line-height: 1.62;
}
.guide-for-list {
  display: grid;
  gap: 20px;
  margin: 6px 0 0;
}
.guide-for-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 16px;
  align-items: start;
  color: var(--white-soft);
  font-size: clamp(15px, 0.4rem + 0.7vw, 17px);
  line-height: 1.55;
}
.guide-for-list svg {
  width: 24px; height: 24px;
  color: var(--copper);
  margin-top: 1px;
}

/* ---- "Get the guide" card -------------------------------- */
.guide-card-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--copper);
  display: block;
  margin-bottom: 14px;
}
.guide-card-final h2.display {
  font-size: clamp(1.5rem, 1.05rem + 1.6vw, 2.6rem);
  line-height: 1.08;
}
.guide-card-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-card-form-wrap .guide-form { min-width: 0; }
.guide-card-form-wrap .guide-form input { min-width: 0; }
.guide-card-trust {
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--white-soft);
}

/* ---- FAQ accordion --------------------------------------- */
.guide-faq { margin-top: 6px; }
.faq-item { border-top: 1px solid rgba(17,17,17,0.16); }
.faq-item:last-child { border-bottom: 1px solid rgba(17,17,17,0.16); }
.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 46px 24px 0;
  font-family: var(--serif);
  text-transform: uppercase;
  font-size: clamp(17px, 1rem + 0.45vw, 22px);
  line-height: 1.25;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--copper); }
.faq-item[open] summary { color: var(--copper); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.6px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.6px 100% no-repeat;
  transition: transform var(--t-mid);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item p {
  margin: 0;
  padding: 0 46px 26px 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- Final CTA bridge ------------------------------------ */
.guide-final .cta-big h2.display {
  font-size: clamp(1.8rem, 1.2rem + 2.3vw, 3.4rem);
  line-height: 1.1;
}

/* ---- Focus states (accessibility) ------------------------ */
.guide-form:focus-within { border-color: var(--copper); }
.guide-form button:focus-visible,
.guide-final .cta-shine:focus-visible,
.faq-item summary:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 940px) {
  .guide-hero-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .guide-hero-copy { text-align: center; }
  .guide-hero .lead,
  .guide-hero-form { margin-left: auto; margin-right: auto; }
  .guide-hero-trust { justify-content: center; }
  .guide-for {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .guide-for-note { max-width: none; }
}

@media (max-width: 720px) {
  .guide-inside { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  /* Stack the pill form so input + button never crowd on phones */
  .guide-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 22px;
  }
  .guide-form input {
    width: 100%;
    padding: 12px 8px;
    text-align: center;
  }
  .guide-form button {
    width: 100%;
    justify-content: center;
  }
  .guide-cover-seal {
    width: 78px; height: 78px;
    font-size: 15px;
    top: -16px; right: -6px;
  }
}
