/* Glow Bureau — shared stylesheet */

:root {
  --paper: #F7F2E7;
  --ink: #1A1714;
  --rule: #DDD4C2;
  --muted: #57503F;
  --margin-grey: #8A8270;
  --amber: #C17A40;
  --highlight: #F0C173;
  --band-text: #A8A49C;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Hanken Grotesk', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --wordmark: 'Poppins', sans-serif;
  --measure: 52ch;
}

/* ─── Reset ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

/* ─── Layout ─── */
.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ─── Header ─── */
header { border-bottom: 1px solid var(--rule); }
.masthead { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; }
.wordmark { font-family: var(--wordmark); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; text-decoration: none; }
.wordmark .dot { color: var(--amber); }
nav { display: flex; align-items: center; gap: 28px; }
nav a.navlink { font-size: 15px; text-decoration: none; color: var(--muted); }
nav a.navlink:hover { color: var(--ink); }

/* ─── Buttons ─── */
.btn { display: inline-block; font-family: var(--body); font-weight: 700; font-size: 15px; background: var(--ink); color: var(--paper); padding: 14px 28px; border-radius: 6px; text-decoration: none; transition: transform .12s ease; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn .arrow { color: var(--highlight); }
.btn-small { padding: 10px 20px; font-size: 14px; }

/* ─── Hero ─── */
.hero { padding: 96px 0 88px; }
h1 { font-family: var(--display); font-weight: 800; font-size: clamp(38px, 6vw, 62px); line-height: 1.12; letter-spacing: -0.015em; max-width: 19ch; }
.hl { background: var(--highlight); padding: 0 .14em .04em; border-radius: 2px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.margin-note { font-family: var(--mono); font-style: italic; font-size: 14px; color: var(--amber); margin-top: 20px; }
.hero .sub { font-size: 18px; color: var(--muted); max-width: var(--measure); margin: 26px 0 36px; }

/* ─── Sections ─── */
section { border-top: 1px solid var(--rule); }
.section-pad { padding: 80px 0; }
h2 { font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3.6vw, 36px); line-height: 1.15; letter-spacing: -0.01em; }
h2 .dot { color: var(--amber); }

/* ─── Reframe two-col ─── */
.reframe { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
.reframe .body { color: var(--muted); max-width: var(--measure); }
.reframe .body p { margin-bottom: 18px; }

/* ─── Steps ─── */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 48px; }
.step { padding: 0 32px; border-left: 1px solid var(--rule); }
.step:first-child { padding-left: 0; border-left: none; }
.step .num { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--margin-grey); margin-bottom: 12px; }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 19px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--muted); }

/* ─── Creds strip ─── */
.creds { background: var(--ink); }
.creds .inner { padding: 22px 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 28px; }
.creds .line { font-family: var(--mono); font-size: 13px; letter-spacing: .06em; color: var(--band-text); }
.creds .line strong { color: var(--highlight); font-weight: 500; }

/* ─── Closer CTA ─── */
.closer { text-align: center; padding: 104px 0; }
.closer h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 14px; }
.closer .sub { color: var(--muted); margin-bottom: 34px; }

/* ─── Footer ─── */
footer { border-top: 1px solid var(--rule); }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px 28px; padding: 28px 0; }
.foot .links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot a { font-size: 14px; color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }
.foot .meta { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; color: var(--margin-grey); }

/* ─── ATV grid (/podcast-intelligence) ─── */
.atv-grid { display: grid; grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
.atv-item { padding: 32px 0; border-top: 1px solid var(--rule); display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: 32px; align-items: start; }
.atv-item:last-child { border-bottom: 1px solid var(--rule); }
.atv-meta { }
.atv-label { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--margin-grey); margin-bottom: 8px; }
.atv-item h3 { font-family: var(--display); font-weight: 800; font-size: 20px; margin-bottom: 8px; line-height: 1.2; }
.atv-item p { color: var(--muted); font-size: 16px; }

/* ─── Prose blocks ─── */
.prose { max-width: var(--measure); }
.prose p { color: var(--muted); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose h3 { font-family: var(--display); font-weight: 800; font-size: 20px; color: var(--ink); margin: 36px 0 10px; }
.prose ul { padding-left: 20px; margin-bottom: 18px; }
.prose ul li { color: var(--muted); margin-bottom: 8px; font-size: 16px; }
.prose strong { color: var(--ink); font-weight: 700; }

/* ─── Signal Test page ─── */
.signalism-quote { border-left: 3px solid var(--amber); padding: 20px 28px; margin: 40px 0; background: rgba(193,122,64,.06); border-radius: 0 4px 4px 0; }
.signalism-quote p { font-family: var(--mono); font-size: 15px; color: var(--ink); line-height: 1.7; }
.signalism-quote strong { color: var(--amber); }

.deliverable { padding: 40px 0; border-top: 1px solid var(--rule); }
.deliverable:last-child { border-bottom: 1px solid var(--rule); }
.deliverable-label { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--margin-grey); margin-bottom: 12px; }
.deliverable h3 { font-family: var(--display); font-weight: 800; font-size: 24px; margin-bottom: 16px; }

.price-block { border: 1px solid var(--rule); border-radius: 8px; padding: 48px; margin: 48px 0; }
.price-num { font-family: var(--display); font-weight: 800; font-size: clamp(42px, 6vw, 60px); letter-spacing: -0.02em; line-height: 1; }
.price-alt { font-family: var(--mono); font-size: 15px; color: var(--muted); margin-top: 6px; letter-spacing: .04em; }
.price-detail { margin-top: 24px; color: var(--muted); font-size: 16px; }
.price-block .btn { margin-top: 32px; }

/* ─── Flyby form ─── */
.form-wrap { max-width: 600px; }
.field { margin-bottom: 28px; }
.field label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.field .hint { font-size: 14px; color: var(--muted); margin-bottom: 8px; font-style: italic; }
.wordmark img {
  display: block;
  width: 100px;
  height: auto;
}

.field input:not([type="radio"]),
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  transition: border-color .15s;
  -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus { outline: none; border-color: var(--amber); }
.field textarea { min-height: 110px; resize: vertical; }
.field .required { color: var(--amber); }
.form-note { font-size: 14px; color: var(--muted); margin-top: 16px; }

#form-success { display: none; }
#form-success .success-head { font-family: var(--display); font-weight: 800; font-size: 28px; margin-bottom: 12px; }
#form-success .success-note { font-family: var(--mono); font-style: italic; font-size: 14px; color: var(--amber); margin-top: 16px; }

/* ─── About page ─── */
.about-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); gap: 64px; align-items: start; }
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; background: var(--rule); display: block; }
.about-photo-placeholder { width: 100%; aspect-ratio: 3/4; background: var(--rule); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.about-photo-placeholder span { font-family: var(--mono); font-size: 12px; color: var(--margin-grey); letter-spacing: .1em; }

/* ─── Contact / OGI ─── */
.page-intro { max-width: var(--measure); }
.page-intro p { color: var(--muted); margin-bottom: 18px; font-size: 18px; }
.email-link { font-family: var(--mono); font-size: 16px; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); padding-bottom: 2px; }
.email-link:hover { border-color: var(--amber); color: var(--amber); }

.beehiiv-wrap { max-width: 480px; margin-top: 40px; }

/* ─── Responsive ─── */
@media (max-width: 760px) {
  .hero { padding: 64px 0 60px; }
  .section-pad { padding: 56px 0; }
  .reframe { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step { padding: 0; border-left: none; }
  nav a.navlink { display: none; }
  .closer { padding: 72px 0; }
  .atv-item { grid-template-columns: 1fr; gap: 8px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo-placeholder { aspect-ratio: 4/3; }
  .price-block { padding: 28px 24px; }
  .signalism-quote { padding: 16px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
