:root {
  --bg: #f7f4ef;
  --surface: #fffdf8;
  --surface-warm: #f0e4d4;
  --text: #292521;
  --text-soft: #635d55;
  --line: rgba(41, 37, 33, 0.14);
  --charcoal: #3f3f3f;
  --orange: #cf5200;
  --orange-dark: #a23d00;
  --gold: #f3a526;
  --green: #8eb628;
  --shadow: 0 20px 50px rgba(41, 37, 33, 0.12);
  --container: min(1120px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  width: 168px;
}

.nav-link {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}

.hero-section {
  background: var(--surface);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.72fr);
  gap: 34px;
  align-items: center;
  padding-bottom: 56px;
}

.hero-image {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  background: #fff;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.hero-title-block {
  padding: 46px 0 20px;
}

.hero-copy {
  padding: 0;
}

.hero-title-block h1,
.hero-copy h2,
.section-heading h2,
.feature-block h2,
.statement-grid h2,
.governance-layout h2,
.takeaways-section h2,
.audience-section h2,
.author-copy h2,
.author-intro h2,
.cta-layout h2 {
  max-width: 900px;
  margin: 0 0 18px;
  color: var(--charcoal);
  font-size: clamp(1.75rem, 3.3vw, 3.35rem);
  line-height: 1.05;
}

.hero-title-block h1 {
  max-width: none;
  font-size: clamp(1.85rem, 4.1vw, 3.55rem);
  white-space: nowrap;
}

.hero-copy h2 {
  font-size: clamp(1.65rem, 2.55vw, 2.65rem);
}

.compact-title {
  font-size: clamp(1.5rem, 2.45vw, 2.55rem);
}

.hero-copy p,
.feature-block p,
.statement-grid p,
.governance-layout p,
.takeaways-section p,
.author-copy p,
.cta-layout p,
.closing-section p {
  max-width: 780px;
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 20px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.section {
  padding: 72px 0;
}

.text-flow {
  display: grid;
  gap: 32px;
}

.feature-block {
  padding-left: 28px;
  border-left: 8px solid var(--green);
}

.section-strong {
  background: var(--charcoal);
  color: #fff;
}

.section-strong h2,
.section-strong p {
  color: #fff;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 760px;
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.section-strong .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.evidence-grid,
.impact-grid,
.pillar-grid,
.closing-grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.evidence-grid li,
.impact-grid li,
.pillar-grid article,
.closing-grid article,
.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-strong .evidence-grid li,
.section-strong .impact-grid li {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.evidence-grid li {
  padding: 22px;
}

.impact-strip {
  margin: 34px 0 18px;
  padding: 18px 22px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-weight: 800;
}

.impact-strip p {
  margin: 0;
}

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

.impact-grid li {
  padding: 16px 18px;
  font-weight: 800;
}

.impact-heading,
.leadership-warning {
  margin: 24px 0 0;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  line-height: 1.12;
  font-weight: 900;
  color: #fff;
}

.impact-heading {
  margin-bottom: 28px;
}

.leadership-warning {
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.leadership-warning p {
  margin: 0;
}

.statement-grid,
.governance-layout,
.workshop-layout,
.two-columns,
.author-layout,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.quote-panel,
.big-quote {
  padding: 34px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-panel p,
.big-quote {
  margin: 0;
  font-size: clamp(1.5rem, 2.45vw, 2.55rem);
  line-height: 1.05;
  font-weight: 900;
}

.quote-panel strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.governance-section,
.takeaways-section,
.closing-section {
  background: var(--surface-warm);
}

.big-quote {
  background: var(--charcoal);
}

.detail-grid {
  display: grid;
  gap: 20px;
}

.workshop-image {
  margin: 24px 0;
}

.workshop-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-grid article,
.two-columns article,
.not-for,
.author-copy {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-grid h3,
.two-columns h2,
.closing-grid h3,
.lead-form h3 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 1.35rem;
  line-height: 1.2;
}

.author-copy h3 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: clamp(1.55rem, 2.45vw, 2.35rem);
  line-height: 1.08;
}

.check-list,
.not-for ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.check-list li::marker {
  color: var(--green);
}

.not-for li::marker {
  color: var(--orange);
}

.presential-note {
  margin: 18px 0 0;
  padding: 16px 18px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-weight: 900;
}

.action-highlight {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--charcoal);
  color: #fff;
  border-radius: 8px;
}

.action-highlight p {
  margin: 0 0 6px;
  color: #fff;
}

.action-highlight strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
}

.pillars-section {
  background: #fff;
}

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

.pillar-grid article {
  padding: 24px;
}

.pillar-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-weight: 900;
}

.pillar-grid h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.pillar-grid p {
  margin: 0;
}

.pillar-followup {
  margin-top: 24px;
  font-weight: 800;
}

.author-section {
  background: var(--surface);
}

.author-intro {
  margin-bottom: 22px;
}

.author-text {
  display: block;
}

.photo-carousel {
  margin-top: 24px;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.carousel-slide-active {
  opacity: 1;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.18s ease, transform 0.18s ease;
}

.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.carousel-arrow-prev {
  left: 16px;
}

.carousel-arrow-next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(63, 63, 63, 0.28);
  cursor: pointer;
}

.carousel-dot-active {
  width: 26px;
  background: var(--orange);
}

.cta-section {
  background: var(--charcoal);
  color: #fff;
}

.cta-layout h2,
.cta-layout p {
  color: #fff;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--text);
}

.lead-form p {
  margin: -8px 0 6px;
  color: var(--text-soft);
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

input:focus,
select:focus {
  outline: 3px solid rgba(207, 82, 0, 0.18);
  border-color: rgba(207, 82, 0, 0.48);
}

.field-error {
  border-color: rgba(166, 45, 37, 0.95);
  box-shadow: 0 0 0 3px rgba(166, 45, 37, 0.16);
}

.closing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.closing-grid article {
  width: min(100%, 500px);
  padding: 26px;
  text-align: center;
}

.final-call {
  margin-top: 34px;
  text-align: center;
}

.final-call p {
  max-width: none;
  margin: 0;
  font-size: clamp(1.4rem, 2.45vw, 2.45rem);
  font-weight: 900;
  line-height: 1.1;
}

.toast-stack {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 92px 16px 16px;
  pointer-events: none;
}

.toast {
  width: min(520px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(41, 37, 33, 0.94);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  background: rgba(52, 118, 56, 0.95);
}

.toast-error {
  background: rgba(166, 45, 37, 0.96);
}

.success-page {
  min-height: 100vh;
  background: var(--surface-warm);
}

.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.success-card {
  width: min(720px, 100%);
  padding: 42px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}

.success-card img {
  width: 180px;
  margin: 0 auto 24px;
}

.success-kicker {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.success-card h1 {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.success-card p {
  margin: 0 auto 12px;
  max-width: 560px;
  font-size: 1.08rem;
}

@media (max-width: 940px) {
  .evidence-grid,
  .impact-grid,
  .statement-grid,
  .hero-layout,
  .governance-layout,
  .workshop-layout,
  .two-columns,
  .cta-layout,
  .pillar-grid,
  .closing-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    aspect-ratio: 16 / 9;
  }

  .hero-image {
    max-width: 560px;
    justify-self: center;
  }

  .hero-title-block h1 {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    width: 146px;
  }

  .section {
    padding: 52px 0;
  }

  .hero-title-block,
  .hero-copy {
    padding: 0;
  }

  .hero-title-block {
    padding: 34px 0 20px;
  }

  .hero-layout {
    padding-bottom: 42px;
  }

  .hero-title-block h1,
  .hero-copy h2,
  .section-heading h2,
  .feature-block h2,
  .statement-grid h2,
  .governance-layout h2,
  .takeaways-section h2,
  .audience-section h2,
  .author-copy h2,
  .author-intro h2,
  .cta-layout h2 {
    font-size: 1.7rem;
  }

  .button {
    width: 100%;
  }

  .carousel-track {
    aspect-ratio: 4 / 3;
  }
}
