/* ===== Design Tokens =====
   Signature: a stamped "time card" ledger — the small-business owner's
   own vernacular for hours won back — replaces the generic stat-strip hero.
   Ink + warm ledger paper + a rust ink-stamp accent, in place of the
   near-black+neon default. */
:root {
  --navy-950: #21281c;   /* ink — dark section bg */
  --navy-900: #2a3324;
  --navy-800: #333f2c;
  --navy-700: #3d4a35;
  --ink: #23281b;
  --paper: #fbf8f0;
  --paper-soft: #f1ecdd;
  --paper-muted: #e8e1cc;
  --line: #ddd5be;
  --text-body: #55604c;
  --text-soft: #60685a;
  --accent: #c1440e;
  --accent-dark: #9c380b;
  --accent-bright: #e8763f; /* accent text on dark backgrounds — #c1440e fails contrast there */
  --accent-soft: #f3e1d2;
  --gold: #9c7a3c;

  --font-head: 'Zilla Slab', serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -25px rgba(33, 40, 28, 0.4);
  --shadow-card: 0 10px 30px -15px rgba(33, 40, 28, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); margin: 0 0 .5em; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 12px 24px -10px rgba(193, 68, 14, 0.5);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-outline {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-small { padding: 10px 20px; font-size: 14px; }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all .3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(33, 40, 28, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 10px 30px -20px rgba(0,0,0,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: #fff;
}
.logo-dot { color: var(--accent-bright); }
.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .2s ease;
}
.main-nav a:hover { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: #fff; border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: var(--navy-950);
  background-image: radial-gradient(circle at 85% 15%, rgba(156,122,60,0.16), transparent 55%);
  color: var(--paper);
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 58px);
  font-weight: 600;
  color: var(--paper);
}
.hero h1 em { color: var(--accent-bright); font-style: normal; }
.hero-sub {
  font-size: 18px;
  color: rgba(251,248,240,0.78);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-visual img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.hero-visual-stamp {
  position: absolute;
  bottom: 20px;
  left: 20px;
  transform: rotate(-3deg);
  background: var(--paper);
}

/* Reusable ink-stamp motif */
.stamp {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(193, 68, 14, 0.06);
}

/* ===== Trust bar ===== */
.trust-bar {
  background: var(--paper-soft);
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-label { font-size: 13px; color: var(--text-soft); font-weight: 600; white-space: nowrap; }
.trust-logos { display: flex; gap: 34px; flex-wrap: wrap; }
.trust-logo {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text-soft);
  font-size: 15px;
}

/* ===== Section head ===== */
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-sub { color: var(--text-body); font-size: 16.5px; }
.section-head.light .eyebrow,
.hero .eyebrow { color: var(--accent-bright); }
.section-head.light h2 { color: #fff; }

/* ===== Value props ===== */
.value-props { padding: 110px 0; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 14px;
  color: var(--accent-dark);
  margin-bottom: 18px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 18px; }
.value-card p { color: var(--text-body); font-size: 14.5px; margin-bottom: 0; }

/* ===== Curriculum ===== */
.services { padding: 110px 0; background: var(--paper-soft); }
.curriculum-banner {
  max-width: 980px;
  margin: 0 auto 56px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.curriculum-banner img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.agenda-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 50px;
  max-width: 980px;
  margin: 0 auto;
}
.agenda-item {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--line);
}
.agenda-item .step-number { margin-bottom: 0; flex-shrink: 0; padding-top: 3px; }
.agenda-item .step-number::before { content: "ENTRY "; color: var(--text-soft); }
.agenda-item h3 { font-size: 17px; margin-bottom: 6px; }
.agenda-item p { color: var(--text-body); font-size: 14.5px; margin-bottom: 0; }

/* ===== How it works ===== */
.how-it-works { padding: 110px 0; background: var(--navy-950); color: #fff; }
.format-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}
.format-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.format-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 30px;
}
.step {
  border-left: 2px solid rgba(255,255,255,0.15);
  padding-left: 22px;
}
.step-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-bright);
  display: block;
  margin-bottom: 14px;
}
.step-number::before { content: "ENTRY "; color: rgba(251,248,240,0.6); }
.step h3 { font-size: 18px; color: #fff; }
.step p { color: rgba(255,255,255,0.68); font-size: 14.5px; }

/* ===== About ===== */
/* Reusable two-column media + copy layout (facilitator bio, what's included) */
.split { padding: 110px 0; }
.split.alt-bg { background: var(--paper-soft); }
.split-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.split-inner.reverse { grid-template-columns: 1.15fr 0.85fr; }
.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split-content h2 { font-size: clamp(26px, 3.4vw, 36px); }
.split-content p { color: var(--text-body); }
.check-list { margin: 22px 0 30px; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  padding-left: 26px;
  position: relative;
  color: var(--text-body);
  font-size: 15px;
}
.check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

/* ===== Testimonials ===== */
.testimonials { padding: 110px 0; background: var(--paper-soft); }
.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.quote {
  font-size: 16px;
  color: var(--ink);
  font-style: italic;
  flex-grow: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; margin-top: 10px; }
.testimonial-author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 14.5px; }
.testimonial-author span { font-size: 13px; color: var(--text-soft); }
.testimonial-dots { display: none; justify-content: center; gap: 8px; margin-top: 30px; }
.testimonial-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--line); cursor: pointer;
}
.testimonial-dots button.active { background: var(--accent); }

/* ===== Price display (used in "What You Get") ===== */
.price { font-family: var(--font-head); font-size: 34px; font-weight: 800; margin-bottom: 24px; }
.price span { font-size: 14px; font-weight: 500; color: var(--text-soft); margin-left: 6px; }

/* ===== FAQ ===== */
.faq { padding: 110px 0; background: var(--paper-soft); }
.faq-inner { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}
.faq-icon {
  font-size: 20px;
  color: var(--accent-dark);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
}
.faq-answer p { color: var(--text-body); font-size: 14.5px; padding-bottom: 20px; margin: 0; }
.faq-item.open .faq-answer { max-height: 240px; }

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: 130px 0;
  color: #fff;
  overflow: hidden;
}
.cta-media { position: absolute; inset: 0; }
.cta-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(33,40,28,0.92), rgba(193,68,14,0.5)); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(28px, 4vw, 42px); color: #fff; }
.cta-content p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 32px; }

/* ===== Contact ===== */
.contact { padding: 110px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}
.contact-details { margin: 28px 0 24px; display: flex; flex-direction: column; gap: 16px; }
.contact-details li { display: flex; flex-direction: column; gap: 2px; }
.contact-details strong { font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-soft); }
.contact-details span { font-size: 15.5px; font-weight: 500; }
.social-links { display: flex; gap: 18px; }
.social-links a { font-size: 14px; font-weight: 600; color: var(--accent-dark); }

.contact-form {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  resize: vertical;
}
.contact-form select { appearance: auto; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-note { font-size: 12.5px; color: var(--text-soft); text-align: center; margin: 0; }

/* ===== Not ready yet ===== */
.notify { padding: 48px 0; background: var(--paper-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.notify-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.notify-copy h3 { font-size: 19px; margin-bottom: 4px; }
.notify-copy p { color: var(--text-body); font-size: 14.5px; margin: 0; }
.notify-form { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-form input {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  min-width: 240px;
  background: #fff;
  color: var(--ink);
}
.notify-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ===== Footer ===== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 14px; font-size: 14.5px; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; padding: 5px 0; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--accent-bright); }
.footer-bottom { padding: 26px 0; text-align: center; font-size: 13px; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .agenda-list { grid-template-columns: 1fr; }
  .format-inner { grid-template-columns: 1fr; }
  .format-image { max-width: 420px; margin: 0 auto; }
  .split-inner, .split-inner.reverse, .contact-inner { grid-template-columns: 1fr; }
  .split-image { max-width: 380px; margin: 0 auto; }
  .testimonial-track { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .trust-inner { justify-content: center; text-align: center; }
  .notify-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .notify-form { flex-direction: column; }
  .notify-form input { min-width: 0; }
}

/* ===== Accessibility ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Mobile nav open state ===== */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: 260px;
  background: var(--navy-950);
  padding: 100px 32px;
  gap: 24px;
  box-shadow: -20px 0 40px rgba(0,0,0,.3);
}
