/* ─────────────────────────────────────────────────────────────────────────
 * clever-prep-misc-pages.css
 * Page-scoped styles for: /contact/, /faq/, /legal/, /privacy/.
 * (The faq-tabs COMPONENT lives in clever-prep-recipes.css — this file is
 *  only page chrome: heroes, the contact form, and the legal prose layout.)
 * ───────────────────────────────────────────────────────────────────────── */

/* ── Shared light hero (contact / faq / legal) ────────────────────────── */
.cp-contact-hero,
.cp-faq-hero,
.cp-legal-hero {
  background: var(--cp-cream-bg, #F7F4ED);
  padding: clamp(80px, 12vw, 150px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 72px);
  text-align: center;
}
.cp-contact-hero__inner,
.cp-faq-hero__inner,
.cp-legal-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cp-contact-hero__eyebrow,
.cp-faq-hero__eyebrow,
.cp-legal-hero__eyebrow { opacity: 0.6; }
.cp-contact-hero__title,
.cp-faq-hero__title,
.cp-legal-hero__title {
  font-family: var(--cp-font-heading, Georgia, serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cp-text-headline, #28354A);
}
.cp-contact-hero__body,
.cp-faq-hero__body {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  max-width: 540px;
  color: var(--cp-text-secondary, #4a5568);
  margin: 0;
}
.cp-legal-hero__updated {
  font-family: var(--cp-font-mono, ui-monospace);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--cp-text-meta, rgba(15, 18, 23, 0.55));
  margin: 0;
}

/* ── Contact body ─────────────────────────────────────────────────────── */
.cp-contact-body {
  background: var(--cp-cream-bg, #F7F4ED);
  padding: clamp(20px, 4vw, 48px) clamp(20px, 5vw, 64px) clamp(80px, 12vw, 140px);
}
.cp-contact-body__inner { max-width: 1080px; margin: 0 auto; }
.cp-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.cp-contact-form {
  display: grid;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--cp-border-input, rgba(15, 18, 23, 0.12));
  border-radius: var(--cp-radius-lg, 16px);
  padding: clamp(24px, 4vw, 40px);
}
.cp-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cp-contact-form label {
  display: block;
  font-size: 12px;
  font-family: var(--cp-font-mono, ui-monospace);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cp-text-meta, rgba(15, 18, 23, 0.6));
  margin-bottom: 8px;
}
.cp-contact-form input,
.cp-contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--cp-border-input, rgba(15, 18, 23, 0.12));
  border-radius: var(--cp-radius-lg, 12px);
  padding: 14px 16px;
  font-family: var(--cp-font-body, inherit);
  font-size: var(--cp-text-body, 15px);
  line-height: 1.4;
  color: var(--cp-text-headline, #28354A);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cp-contact-form input { height: 50px; }
.cp-contact-form input::placeholder,
.cp-contact-form textarea::placeholder {
  color: var(--cp-text-muted, rgba(15, 18, 23, 0.4));
}
.cp-contact-form input:focus,
.cp-contact-form textarea:focus {
  outline: none;
  border-color: var(--cp-orange, #ED863C);
  box-shadow: 0 0 0 3px rgba(237, 134, 60, 0.18);
}
.cp-contact-form textarea { resize: vertical; min-height: 120px; }
.cp-contact-form .cp-btn { justify-self: start; margin-top: 6px; }
.cp-contact-form__note {
  font-size: 13px;
  color: var(--cp-text-secondary, #4a5568);
  margin: 4px 0 0;
}
.cp-contact-form__note a { color: var(--cp-orange, #ED863C); }

.cp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
}
.cp-contact-info__block { display: flex; flex-direction: column; gap: 6px; }
.cp-contact-info__block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--cp-text-secondary, #4a5568);
}
.cp-contact-info__block a { color: var(--cp-orange, #ED863C); }
.cp-contact-info__link {
  font-family: var(--cp-font-heading, Georgia, serif);
  font-size: 20px;
  color: var(--cp-text-headline, #28354A) !important;
}

/* ── FAQ section wrapper ──────────────────────────────────────────────── */
.cp-faq-section {
  background: #fff;
  padding: clamp(20px, 4vw, 56px) clamp(16px, 4vw, 48px) clamp(80px, 12vw, 140px);
}
.cp-faq-section__inner { max-width: 1000px; margin: 0 auto; }

/* ── Legal / privacy prose ────────────────────────────────────────────── */
.cp-legal-body {
  background: #fff;
  padding: clamp(32px, 5vw, 64px) clamp(20px, 5vw, 64px) clamp(80px, 12vw, 140px);
}
.cp-legal-body__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-legal-body__disclaimer {
  background: rgba(237, 134, 60, 0.08);
  border: 1px solid rgba(237, 134, 60, 0.25);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--cp-text-headline, #28354A);
  margin: 0 0 18px;
}
.cp-legal-body__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--cp-text-secondary, #4a5568);
  margin: 0 0 14px;
}
.cp-legal-body__h {
  font-family: var(--cp-font-heading, Georgia, serif);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--cp-text-headline, #28354A);
  margin: 26px 0 8px;
}
.cp-legal-body__p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--cp-text-secondary, #4a5568);
  margin: 0 0 10px;
}

/* ── Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cp-contact-grid { grid-template-columns: 1fr; }
  .cp-contact-form__row { grid-template-columns: 1fr; }
}
