:root {
  --navy: #18313c;
  --ink: #1f2c32;
  --muted: #627176;
  --cream: #f7f1e7;
  --paper: #fffaf0;
  --accent: #e0a733;
  --accent-soft: #f7dd82;
  --line: rgba(24, 49, 60, .16);
  --shadow: 0 24px 70px rgba(24, 49, 60, .14);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #e7e0d4;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
p { color: var(--muted); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 10px 12px;
  background: var(--accent);
  color: var(--navy);
}
.skip-link:focus { top: 16px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  background: rgba(24, 49, 60, .94);
  backdrop-filter: blur(14px);
  color: #fff;
}
.brand img { width: 82px; border-radius: 8px; }
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
nav a { text-decoration: none; color: rgba(255, 255, 255, .82); }
nav a:hover, nav a.active { color: var(--accent-soft); }
.nav-button {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--navy);
}
.menu-toggle { display: none; }

.sheet {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto;
  padding: clamp(26px, 4vw, 54px);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 24px;
  background:
    linear-gradient(125deg, rgba(24, 49, 60, .96), rgba(24, 49, 60, .86)),
    radial-gradient(circle at 20% 0%, rgba(224, 167, 51, .34), transparent 34%);
  color: #fff;
}
.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.hero h1, .keynote-hero h1 {
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(42px, 7vw, 82px);
  max-width: 850px;
}
.hero p { color: rgba(255, 255, 255, .8); }
.lead {
  color: rgba(255, 255, 255, .92) !important;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary { background: var(--accent); color: var(--navy); }
.button.secondary { border: 1px solid currentColor; color: inherit; }
.portrait-card {
  margin: 0;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
}
.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.portrait-card figcaption {
  padding: 14px 16px;
  color: var(--accent-soft);
  font-size: 13px;
  font-weight: 800;
}

.block {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf7;
  break-inside: avoid;
}
.section-title {
  display: grid;
  grid-template-columns: minmax(260px, .76fr) 1fr;
  gap: 30px;
  align-items: end;
}
.section-title h2, .block h2, .closing h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 46px);
}
.intro {
  max-width: 920px;
  font-size: 17px;
}
.three-grid, .stage-grid, .quote-grid {
  display: grid;
  gap: 16px;
}
.three-grid { grid-template-columns: repeat(3, 1fr); margin-top: 22px; }
.three-grid article, .stage-grid article, .quote-grid article, .takeaway-card, .mini {
  padding: 20px;
  border-radius: 16px;
  background: var(--cream);
}
.three-grid span, .stage-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
}
.three-grid h3, .stage-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}
.stage-grid { grid-template-columns: repeat(3, 1fr); }
.small { font-size: 14px; }

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.compact p, .compact li { font-size: 15px; }
.check-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  border-bottom: 1px solid var(--line);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}
.highlight {
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  background: #fbf1ce;
  color: var(--navy);
  font-weight: 750;
}
.markers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.markers span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.page-two {
  background: #fffdf7;
}
.keynote-hero {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
}
.subtitle {
  max-width: 780px;
  color: var(--accent-soft);
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 750;
}
.keynote-hero aside {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(255, 255, 255, .07);
}
.keynote-hero aside p { color: rgba(255, 255, 255, .78); }
.keynote-overview {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
}
.takeaway-card h3 { color: var(--navy); }
.takeaway-card ul { margin-bottom: 0; padding-left: 20px; color: var(--muted); }
.tight { grid-template-columns: 1fr; }
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}
.flow li {
  position: relative;
  min-height: 140px;
  padding: 20px;
  border-radius: 16px;
  background: var(--navy);
  color: #fff;
}
.flow li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 900;
}
.flow strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  font-size: 22px;
}
.flow span { color: rgba(255, 255, 255, .76); }
.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.mini { margin-top: 18px; }
.mini h2 { font-size: 28px; }
.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
  background: var(--navy);
}
.testimonials .eyebrow, .testimonials cite { color: var(--accent-soft); }
blockquote {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.quote-note {
  color: rgba(255, 255, 255, .76);
  font-size: 18px;
}
cite {
  display: block;
  font-style: normal;
  font-weight: 850;
}
.quote-grid {
  grid-template-columns: 1fr;
}
.quote-grid article {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
.quote-grid p { color: rgba(255, 255, 255, .82); }
.quote-grid cite { font-size: 13px; }

.closing {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  margin-top: 28px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--cream);
  break-inside: avoid;
}
address {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px;
  border-radius: 16px;
  background: #fffdf7;
  color: var(--muted);
  font-style: normal;
}
address strong { color: var(--navy); }
.page-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.page-footer p { margin-bottom: 0; font-size: 13px; }

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 999px;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: #fff;
  }
  nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 16px;
    background: var(--navy);
  }
  nav.open { display: flex; }
  .hero, .keynote-hero, .keynote-overview, .testimonials, .closing, .section-title, .two-column {
    grid-template-columns: 1fr;
  }
  .three-grid, .stage-grid, .flow, .split-row {
    grid-template-columns: 1fr;
  }
  .flow li:not(:last-child)::after {
    right: 20px;
    top: auto;
    bottom: -14px;
    transform: rotate(90deg);
  }
}

@media (max-width: 560px) {
  .sheet {
    width: min(100% - 18px, 1180px);
    margin: 10px auto;
    padding: 16px;
    border-radius: 18px;
  }
  .hero, .keynote-hero { padding: 22px; }
  .hero h1, .keynote-hero h1 { font-size: 40px; }
  .block, .closing { padding: 20px; }
  .page-footer { display: block; }
}

@media print {
  @page {
    size: A4;
    margin: 10mm;
  }
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    animation: none !important;
    transition: none !important;
  }
  html, body {
    width: 210mm;
    background: #fff;
    font-size: 9.2pt;
    line-height: 1.32;
  }
  [data-print-hidden], .skip-link, .site-header, .actions {
    display: none !important;
  }
  .sheet {
    width: auto;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    page-break-after: always;
    break-after: page;
  }
  .sheet:last-child {
    page-break-after: auto;
    break-after: auto;
  }
  .hero, .keynote-hero {
    padding: 6mm;
    border-radius: 0;
  }
  .hero {
    grid-template-columns: 1.55fr .45fr;
    gap: 7mm;
  }
  .keynote-hero {
    grid-template-columns: 1fr 55mm;
    gap: 6mm;
  }
  .hero h1, .keynote-hero h1 {
    font-size: 25pt;
    margin-bottom: 8pt;
  }
  .lead, .subtitle {
    font-size: 12pt;
  }
  .portrait-card img {
    min-height: 56mm;
    height: 56mm;
  }
  .portrait-card figcaption {
    padding: 5pt 7pt;
    font-size: 8pt;
  }
  .block {
    margin-top: 4mm;
    padding: 4mm;
    border-radius: 0;
    break-inside: avoid;
  }
  .section-title, .keynote-overview, .testimonials, .closing {
    grid-template-columns: 1fr 1fr;
    gap: 5mm;
  }
  .section-title h2, .block h2, .closing h2 {
    font-size: 18pt;
    margin-bottom: 6pt;
  }
  .eyebrow {
    font-size: 7pt;
    margin-bottom: 4pt;
  }
  p { margin-bottom: 6pt; }
  .intro { font-size: 9.5pt; }
  .three-grid, .stage-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3mm;
  }
  .three-grid article, .stage-grid article, .quote-grid article, .takeaway-card, .mini {
    padding: 4mm;
    border-radius: 0;
  }
  .three-grid h3, .stage-grid h3 {
    font-size: 12pt;
  }
  .two-column, .split-row {
    grid-template-columns: 1fr 1fr;
    gap: 4mm;
  }
  .check-list li { padding: 4pt 0 4pt 16pt; }
  .markers span { font-size: 7pt; padding: 4pt 5pt; }
  .flow {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5mm;
  }
  .flow li {
    min-height: auto;
    padding: 4mm;
    border-radius: 0;
  }
  .flow strong { font-size: 11pt; }
  .flow span { font-size: 8pt; }
  .flow li:not(:last-child)::after { display: none; }
  .mini { margin-top: 4mm; }
  .mini h2 { font-size: 14pt; }
  blockquote {
    font-size: 15pt;
    margin-bottom: 5pt;
  }
  .quote-note { font-size: 9pt; }
  .closing {
    margin-top: 4mm;
    padding: 4mm;
    border-radius: 0;
  }
  address { padding: 4mm; border-radius: 0; }
  .page-footer {
    margin-top: 3mm;
    padding-top: 2mm;
  }
  .page-two .keynote-hero {
    padding: 5mm;
  }
  .page-two .keynote-hero h1 {
    font-size: 22pt;
  }
  .page-two .subtitle {
    font-size: 11pt;
  }
  .page-two .keynote-hero aside {
    padding: 4mm;
  }
  .page-two .keynote-overview p:nth-of-type(3),
  .page-two .takeaway-card li:nth-child(5),
  .page-two .closing p:nth-of-type(2) {
    display: none;
  }
  .page-two .takeaway-card ul {
    margin: 0;
  }
  .page-two .flow li {
    padding: 3mm;
  }
  .page-two .flow strong {
    margin-bottom: 3pt;
  }
  .page-two blockquote {
    font-size: 13pt;
  }
  .page-two .quote-note {
    display: none;
  }
  .page-two .quote-grid article {
    padding: 3mm;
  }
  .page-two .quote-grid p {
    margin-bottom: 3pt;
  }
}
