/* JS Gilbert — speaker site
   Palette + type pulled from the promo card: gold, electric blue, flame
   orange, on near-black, with poster-condensed display type. */

:root {
  --bg: #0a0b10;
  --bg-raised: #14161f;
  --bg-card: #15171f;
  --line: rgba(255, 255, 255, 0.09);
  --ink: #f5f4f0;
  --muted: #a7abb8;
  --gold: #f5c344;
  --blue: #4fb3ff;
  --orange: #ff6a3d;
  --max: 1120px;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--gold);
  color: #171102;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0.75rem;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0 0 1em;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-family: "Anton", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.quote-font {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-family: "Anton", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: #171102;
  box-shadow: 0 8px 24px -8px rgba(245, 195, 68, 0.55);
}

.btn--gold:hover {
  box-shadow: 0 12px 28px -8px rgba(245, 195, 68, 0.7);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 10, 15, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--ink);
  font-family: "Anton", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand span {
  color: var(--gold);
}

.brand small {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 1.3rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 2rem;
    gap: 1.75rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links a {
    font-size: 1.3rem;
    display: block;
    padding: 0.6rem 0;
  }

  body.nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta .btn--ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(60% 55% at 82% 15%, rgba(79, 179, 255, 0.16), transparent 60%),
    radial-gradient(55% 50% at 12% 85%, rgba(255, 106, 61, 0.14), transparent 60%),
    var(--bg);
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 1.1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-tags li {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tags li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero-media {
  position: relative;
  justify-self: center;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -6% -10%;
  background: radial-gradient(circle at 50% 40%, rgba(245, 195, 68, 0.22), transparent 68%);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(360px, 78vw);
  height: auto;
  aspect-ratio: 468 / 550;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid rgba(245, 195, 68, 0.55);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  transform: rotate(-2.5deg);
}

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: -1.1rem;
  right: -1rem;
  background: var(--blue);
  color: #071019;
  font-family: "Anton", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  transform: rotate(3deg);
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
}

/* ---------- tagline strip ---------- */

.strip {
  background: linear-gradient(100deg, var(--gold), #ffd97a 45%, var(--blue));
  color: #10131a;
  padding: 1.1rem 0;
  overflow: hidden;
}

.strip .wrap {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.strip span {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

/* ---------- sections ---------- */

section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 42rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.85rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- grids / cards ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 960px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-media {
    order: -1;
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card .icon {
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 1.1rem;
}

.icon--gold { background: rgba(245, 195, 68, 0.14); }
.icon--blue { background: rgba(79, 179, 255, 0.14); }
.icon--orange { background: rgba(255, 106, 61, 0.14); }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0;
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

.topic-card h3 {
  color: var(--gold);
}

.topic-card:nth-child(even) h3 {
  color: var(--blue);
}

/* stat / role cards (comedian, voice actor, etc.) */

.role-grid {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1000px) {
  .role-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.role-card {
  text-align: left;
  padding: 1.4rem 1.2rem;
}

.role-card .icon {
  margin-bottom: 0.9rem;
}

.role-card h3 {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.role-card p {
  font-size: 0.88rem;
}

/* checklist */

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "✓";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(79, 179, 255, 0.16);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

/* perfect-for pill grid */

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

/* pull quote */

.pull-quote {
  position: relative;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.pull-quote p {
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
}

.pull-quote .mark {
  font-family: "Anton", sans-serif;
  color: var(--gold);
  font-size: 3rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

/* FAQ */

.faq-list {
  display: grid;
  gap: 1.25rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 1.5rem 1.75rem;
}

.faq-item h3 {
  font-family: "Inter", sans-serif;
  text-transform: none;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--muted);
  margin: 0;
  font-size: 0.96rem;
}

/* CTA band */

.cta-band {
  background:
    radial-gradient(70% 120% at 15% 0%, rgba(255, 106, 61, 0.22), transparent 60%),
    radial-gradient(70% 120% at 90% 100%, rgba(79, 179, 255, 0.22), transparent 60%),
    var(--bg-raised);
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: 1rem;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-line {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.contact-line a {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-line a:hover {
  color: var(--gold);
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(2.75rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(60% 90% at 85% 0%, rgba(255, 106, 61, 0.14), transparent 60%);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 40rem;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 38rem;
  margin-top: 1rem;
}

/* ---------- about page ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 468 / 550;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid rgba(245, 195, 68, 0.5);
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}

.about-media {
  position: sticky;
  top: 6.5rem;
}

.bio p {
  color: var(--muted);
  font-size: 1.03rem;
}

.bio h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--gold);
}

.bio h2:first-child {
  margin-top: 0;
}

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-card .big-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-family: "Anton", sans-serif;
  font-size: 1.25rem;
  color: var(--ink);
}

.contact-card .big-link:last-child {
  border-bottom: none;
}

.contact-card .big-link small {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.3rem;
}

.contact-card .big-link:hover {
  color: var(--gold);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  display: flex;
  gap: 1rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  flex: none;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(245, 195, 68, 0.14);
  color: var(--gold);
  font-family: "Anton", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong {
  display: block;
  margin-bottom: 0.2rem;
}

.steps span {
  color: var(--muted);
  font-size: 0.95rem;
}

form.book-form {
  display: grid;
  gap: 1rem;
}

form.book-form label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

form.book-form input,
form.book-form select,
form.book-form textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font-family: inherit;
  /* 16px minimum stops iOS Safari from auto-zooming the page on focus */
  font-size: 16px;
}

form.book-form input:focus,
form.book-form select:focus,
form.book-form textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

form.book-form textarea {
  resize: vertical;
  min-height: 110px;
}

form.book-form .btn {
  justify-self: start;
  margin-top: 0.4rem;
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer a {
  text-decoration: none;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

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