/* Growthkast. YouTube production retainer. */

:root {
  --bg: #f3f0e8;
  --bg-2: #ebe7dc;
  --bg-3: #e2ddd2;
  --ink: #2c2a26;
  --muted: #6f6a63;
  --faint: #8b857c;
  --line: rgba(44, 42, 38, 0.10);
  --line-strong: rgba(44, 42, 38, 0.18);
  --gold: #7d6b56;
  --gold-2: #6c5c4a;
  --gold-ink: #f7f4ee;
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1120px;
  --pad: clamp(1.25rem, 4vw, 2rem);
  --radius: 14px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  color-scheme: light;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.011em;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 0.5rem 0.8rem;
  z-index: 100;
  border-radius: 6px;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(var(--wrap), 100% - var(--pad) * 2);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  font-variation-settings: "SOFT" 40, "WONK" 0;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.nav-cta {
  color: var(--gold-ink);
  background: var(--gold);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.site-nav a.nav-cta:hover { background: var(--gold-2); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta {
  color: var(--gold-ink);
  background: var(--gold);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.header-cta:hover { background: var(--gold-2); }

@media (min-width: 880px) {
  .header-actions { display: none; }
}

.nav-toggle {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle span[aria-hidden] {
  display: block;
  width: 1.05rem;
  height: 1.4px;
  background: var(--ink);
  position: relative;
}
.nav-toggle span[aria-hidden]::before,
.nav-toggle span[aria-hidden]::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.05rem;
  height: 1.4px;
  background: var(--ink);
}
.nav-toggle span[aria-hidden]::before { top: -5px; }
.nav-toggle span[aria-hidden]::after { top: 5px; }

.nav-toggle[aria-expanded="true"] span[aria-hidden] { background: transparent; }
.nav-toggle[aria-expanded="true"] span[aria-hidden]::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span[aria-hidden]::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (max-width: 879px) {
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.25rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 1.4rem;
    gap: 0.9rem;
  }
  .site-nav.is-open .nav-cta { margin-top: 0.4rem; }
}

@media (min-width: 880px) {
  .header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.header-cta {
  color: var(--gold-ink);
  background: var(--gold);
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}
.header-cta:hover { background: var(--gold-2); }

@media (min-width: 880px) {
  .header-actions { display: none; }
}

.nav-toggle { display: none; }
  .site-nav { display: flex; }
}

/* Type */

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 0.9rem;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0;
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 { font-size: clamp(2.35rem, 7.2vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.55rem); }
h3 { font-size: 1.2rem; font-family: var(--sans); letter-spacing: -0.02em; font-weight: 600; }

.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 38rem;
  margin: 1.15rem 0 0;
}

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.tiny { font-size: 0.85rem; color: var(--faint); }

/* Buttons */

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.2rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--gold-ink);
}
.btn-primary:hover { background: var(--gold-2); }

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

.mail {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
}
.mail:hover { color: var(--ink); }

/* Sections */

main { display: block; }

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.2rem;
}

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

.hero {
  padding: clamp(3.2rem, 10vw, 7.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}

.price {
  font-family: var(--serif);
  font-size: clamp(2.35rem, 7.2vw, 4.6rem);
  font-weight: 550;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0;
}

.price small {
  display: block;
  font-size: 0.38em;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 0.55rem;
}

.note {
  margin-top: 1.1rem;
  color: var(--faint);
  font-size: 0.92rem;
}

/* Split lists */

.split {
  display: grid;
  gap: 1rem;
}

.split-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.2rem;
}

.split-card h2 { font-size: 1.35rem; margin-bottom: 1rem; }

.split-card.not h2 { color: var(--muted); }

.split-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-card li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.split-card li:first-child { border-top: 0; padding-top: 0; }

.split-card.yes li { color: var(--ink); }

/* Month stack */

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

.month-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
}

.month-list .qty {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1.1;
}

.month-list strong { display: block; font-weight: 600; }
.month-list p { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.95rem; }

.aside-row {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.aside-row p {
  margin: 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--bg-2);
}

.aside-row strong { color: var(--ink); font-weight: 600; }

/* Exclusions */

.out-list {
  columns: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.out-list li {
  break-inside: avoid;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.out-list li:first-child { border-top: 0; padding-top: 0; }

/* Steps */

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

.steps li {
  counter-increment: step;
  padding: 1.25rem 1.2rem 1.25rem 4.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.15rem;
  top: 1.2rem;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.35rem;
}

.steps strong { display: block; margin-bottom: 0.25rem; }
.steps p { margin: 0; color: var(--muted); }

/* Work logos */

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.8rem;
}

.work-item {
  text-align: center;
  text-decoration: none;
}

.work-item .disk {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #d8d2c6;
  border: 1px solid var(--line);
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item figcaption {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.work-item.name-only .disk {
  display: grid;
  place-items: center;
  background: var(--bg-3);
}

.work-item.name-only .disk span {
  font-family: var(--serif);
  font-size: 1.05rem;
  padding: 0.6rem;
  color: var(--ink);
}

/* FAQ */

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

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  padding: 0 1.1rem;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--gold);
  font-weight: 500;
  font-family: var(--serif);
  flex: none;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0 0 1.05rem;
  color: var(--muted);
}

/* CTA band */

.cta-band {
  text-align: left;
}

.cta-band .lede { margin-inline: 0; }

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 3rem;
  color: var(--muted);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

.site-footer .wordmark {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-links a:hover { color: var(--ink); }

/* Page extras */

.prose { max-width: 40rem; }
.prose p { color: var(--muted); }
.prose p.lead { color: var(--ink); font-size: 1.15rem; }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  padding: 1.05rem 0 1.05rem 1.4rem;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--muted);
}

.checklist li:first-child { border-top: 0; }
.checklist li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 1.4rem;
}
.checklist strong { color: var(--ink); display: block; margin-bottom: 0.15rem; }

.fit-ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: q;
}

.fit-ol li {
  counter-increment: q;
  padding: 1.1rem 0 1.1rem 3rem;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--ink);
}

.fit-ol li:first-child { border-top: 0; }
.fit-ol li::before {
  content: counter(q);
  position: absolute;
  left: 0;
  top: 1.05rem;
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.15rem;
}

.portrait-wrap {
  max-width: 22rem;
  margin: 0 0 2rem;
}

.portrait-wrap img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
  margin-top: 1.5rem;
}

.error-page {
  min-height: 62vh;
  display: grid;
  align-content: center;
  padding: 4rem 0;
}

/* 720 / 1080 / 1280 */

@media (min-width: 720px) {
  .split { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .month-list { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: repeat(3, 1fr); gap: 1.4rem 1rem; }
  .out-list { columns: 2; column-gap: 2.5rem; }
  .out-list li { border-top: 1px solid var(--line); padding: 0.85rem 0; }
  .aside-row { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about-grid { display: grid; grid-template-columns: 22rem 1fr; gap: 3rem; align-items: start; }
  .portrait-wrap { margin: 0; }
}


@media (max-width: 1079px) {
  /* Phone: first screen is headline, price, one line, button. SKU lives on How. */
  .hero .split-card { display: none; }
  .hero { padding-bottom: 2.4rem; }
}

@media (min-width: 1080px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
  .month-list { grid-template-columns: 1fr 1fr; }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: end;
  }
}

@media (min-width: 1280px) {
  .work-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

.work-item .disk img { object-position: center; }
.work-item:hover .disk { border-color: var(--line-strong); }

.btn { transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease; }
.site-nav a { transition: color 0.15s ease; }

@media (max-width: 879px) {
  body.nav-open { overflow: hidden; }
}

/* Episode frame (16:9 talking-head, not a fake YouTube embed) */

.episode {
  display: grid;
  gap: 1.4rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}
.episode-frame {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
}
.episode-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.episode-copy h3 { margin: 0 0 0.45rem; }
.episode-copy p { margin: 0; color: var(--muted); }
.episode-copy .tiny { margin-top: 0.7rem; }

@media (min-width: 720px) {
  .episode {
    grid-template-columns: 1.35fr 1fr;
    align-items: center;
    padding: 1.15rem;
    gap: 1.6rem;
  }
}

.fit-strip p { margin: 0; color: var(--muted); max-width: 40rem; }

a.work-item { color: inherit; }
a.work-item:hover figcaption { color: var(--ink); }
.episode-frame a { display: block; height: 100%; }
.episode-frame a:hover img { opacity: 0.92; }
