/* ===== Andy Askins — booker EPK one-pager ===== */
/* Phase 2 static rebuild. Default styling by Ada; brand refinement by Sol. */

:root {
  --bg: #0d0d10;
  --bg-2: #15151b;
  --ink: #f5f5f7;
  --muted: #a1a1ad;
  --accent: #ffd23f;      /* stage-light gold — swap for Sol's brand colour */
  --accent-ink: #0d0d10;
  --line: #2a2a33;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .nav__logo, .hero__title, .book__title {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.02;
}

a { color: inherit; text-decoration: none; }

.section__title { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 0.4rem; }
.section__lead { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover { background: #ffdd6b; }
.btn--ghost { border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1.15rem; }

/* ===== Nav ===== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,16,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
}
.nav__logo { font-size: 1.35rem; letter-spacing: 1px; display: flex; align-items: center; }
.nav__logo-img {
  height: 44px; width: auto; display: block;
  filter: invert(1);          /* black wordmark -> white */
  mix-blend-mode: screen;     /* white-box background disappears into the dark nav */
}
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--accent); color: var(--accent-ink) !important;
  padding: 0.5rem 1.2rem; border-radius: 999px; font-weight: 600;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 70% 20%, #3a2d5e 0%, transparent 55%),
    radial-gradient(100% 80% at 20% 90%, #5e2d3a 0%, transparent 50%),
    var(--bg);
}
.hero__photo {
  position: absolute; right: 0; top: 0; height: 100%; width: auto;
  max-width: 62%; object-fit: cover; object-position: top right;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,16,0.15) 0%, rgba(13,13,16,0.8) 100%);
}
.hero__content { position: relative; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.hero__eyebrow { color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 1rem; }
.hero__title { font-size: clamp(3rem, 9vw, 7rem); }
.hero__sub { max-width: 40ch; color: var(--muted); font-size: 1.2rem; margin: 1.5rem 0 2.2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Credits strip ===== */
.strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 2.2rem 1.5rem; text-align: center;
}
.strip__label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.strip__logos {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2.5rem; max-width: var(--maxw); margin: 0 auto;
}
.strip__logos li { font-weight: 700; font-size: 1.05rem; color: var(--ink); opacity: 0.85; }

/* ===== Sections shared ===== */
.reel, .about, .testimonials, .book { max-width: var(--maxw); margin: 0 auto; padding: 5rem 1.5rem; }

/* ===== Reel ===== */
.reel { text-align: center; }
.reel__frame { margin-top: 1rem; }
.reel__placeholder {
  aspect-ratio: 16 / 9; width: 100%;
  border: 2px dashed var(--line); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; color: var(--muted); background: var(--bg-2);
}
.reel__placeholder span { font-size: 3rem; color: var(--accent); }

/* ===== About ===== */
.about__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3rem; align-items: center; }
.about__photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top;
  border-radius: 14px; border: 1px solid var(--line); display: block;
}
.about__text p { margin-bottom: 1.1rem; color: #d6d6de; }
.about__text strong { color: var(--ink); }

/* ===== Testimonials ===== */
.testimonials { text-align: center; }
.testimonials__grid {
  margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; text-align: left;
}
.quote {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 14px;
  padding: 1.75rem; position: relative;
}
.quote p { font-size: 1.05rem; margin-bottom: 1rem; }
.quote cite { color: var(--accent); font-style: normal; font-weight: 600; font-size: 0.9rem; }
.quote--feature { grid-column: 1 / -1; background: linear-gradient(135deg, #1c1a2e, #2a1c22); }
.quote--feature p { font-size: 1.25rem; line-height: 1.5; }

/* ===== Book ===== */
.book { text-align: center; }
.book__title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.book__lead { max-width: 46ch; margin: 1rem auto 2rem; color: var(--muted); font-size: 1.15rem; }
.book__note { margin-top: 1.25rem; color: var(--muted); font-size: 0.9rem; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line); padding: 2.5rem 1.5rem; text-align: center;
  color: var(--muted); font-size: 0.9rem;
}
.footer__social { margin-top: 0.5rem; }
.footer__social a:hover { color: var(--accent); }

/* ===== Responsive ===== */
@media (max-width: 780px) {
  .nav__links { gap: 1rem; }
  .nav__links a:not(.nav__cta) { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .btn--lg { font-size: clamp(0.8rem, 4.2vw, 1.15rem); padding: 1rem 1.4rem; max-width: 100%; overflow-wrap: anywhere; }
  .hero__photo { max-width: 100%; opacity: 0.45; }
}
