:root {
  --ink: #231f20;
  --muted: #6b625f;
  --line: #eadfd8;
  --paper: #fffaf6;
  --white: #ffffff;
  --orange: #f47b20;
  --deep-orange: #dc4d1a;
  --gold: #f8b33f;
  --wine: #7c2632;
  --shadow: 0 22px 60px rgba(67, 35, 18, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(255, 250, 246, 0.92);
  border-bottom: 1px solid rgba(234, 223, 216, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  display: block;
  width: clamp(190px, 22vw, 310px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-dropdown {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
}

.nav-parent::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav-dropdown-menu a:hover {
  color: var(--deep-orange);
  background: rgba(244, 123, 32, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-orange), var(--orange) 58%, var(--gold));
  box-shadow: 0 16px 32px rgba(220, 77, 26, 0.22);
}

.site-nav .nav-cta,
.site-nav .nav-cta:visited,
.site-nav .nav-cta:focus,
.site-nav .nav-cta.active {
  color: var(--white);
}

.site-nav .nav-cta:hover {
  color: var(--deep-orange);
}

.site-nav .nav-parent.active {
  color: var(--muted);
}

.site-nav .nav-dropdown:hover .nav-parent,
.site-nav .nav-dropdown:focus-within .nav-parent {
  color: var(--deep-orange);
}

.button.ghost {
  color: var(--deep-orange);
  background: rgba(244, 123, 32, 0.1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--deep-orange), var(--orange), var(--gold));
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: clamp(56px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 250, 246, 0.9) 36%, rgba(255, 250, 246, 0.34) 62%, rgba(255, 250, 246, 0.08) 100%),
    url("assets/hero.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel,
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.hero-panel div,
.stats-band div {
  min-height: 108px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-panel strong,
.stats-band strong {
  display: block;
  color: var(--deep-orange);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
}

.hero-panel span,
.stats-band span {
  color: var(--muted);
  font-weight: 700;
}

.logo-carousel-section {
  overflow: hidden;
  padding: 14px 0;
  background: linear-gradient(135deg, var(--deep-orange), var(--orange) 58%, var(--gold));
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.logo-carousel::before,
.logo-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: clamp(56px, 10vw, 150px);
  height: 100%;
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--deep-orange), rgba(220, 77, 26, 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--gold), rgba(248, 179, 63, 0));
}

.logo-track {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  width: max-content;
  animation: logo-scroll 34s linear infinite;
}

.logo-track img {
  display: block;
  width: clamp(150px, 16vw, 230px);
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - clamp(9px, 1.5vw, 17px)));
  }
}

.section,
.quote-band,
.page-hero,
.stats-band {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.two-column,
.split-cta {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
}

.split-cta > .button {
  align-self: center;
  justify-self: start;
  width: auto;
}

.centered-cta {
  display: flex;
  justify-content: center;
  padding-top: 48px;
  padding-bottom: 72px;
}

.section h2,
.quote-band h2,
.split-cta h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-copy,
.feature-list,
.history-list {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.service-grid,
.testimonial-grid,
.topic-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.testimonial-grid figure,
.topic-grid article,
.process-grid article,
.event-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(67, 35, 18, 0.08);
}

.service-card {
  padding: 30px;
}

.service-card h3,
.topic-grid h3,
.process-grid h3,
.event-card h2 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.service-card p,
.topic-grid p,
.process-grid p,
.event-card p {
  color: var(--muted);
}

.service-card a,
.event-card a {
  color: var(--deep-orange);
  font-weight: 800;
}

.reveal-from-left,
.reveal-from-right {
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-from-left {
  transform: translateX(-72px);
}

.reveal-from-right {
  transform: translateX(72px);
}

.reveal-from-left.is-visible,
.reveal-from-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.service-icon,
.process-grid span {
  color: var(--deep-orange);
  font-weight: 900;
}

.quote-band {
  background: linear-gradient(135deg, var(--wine), var(--deep-orange) 58%, var(--orange));
  color: var(--white);
}

.quote-band .eyebrow,
.quote-band figcaption,
.quote-band p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonial-grid figure {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin: 0;
  padding: 28px;
  color: var(--ink);
}

.testimonial-photo {
  display: block;
  width: 96px;
  height: 96px;
  margin: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(91, 36, 13, 0.18);
}

.testimonial-grid blockquote,
.quote-band.compact blockquote {
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 700;
}

.testimonial-grid blockquote::before {
  content: open-quote;
}

.testimonial-grid blockquote::after {
  content: close-quote;
}

.testimonial-grid blockquote {
  quotes: "“" "”";
}

.testimonial-grid figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.testimonial-grid figcaption::before {
  content: "";
  width: 34px;
  height: 2px;
  flex: 0 0 34px;
  background: var(--deep-orange);
}

.page-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(248, 179, 63, 0.28), transparent 30%),
    linear-gradient(135deg, #fffaf6, #ffe4ce);
}

.page-hero .button {
  margin-top: 14px;
}

.about-hero {
  display: grid;
  align-items: end;
  min-height: 680px;
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.98) 0%, rgba(255, 250, 246, 0.86) 42%, rgba(255, 250, 246, 0.26) 72%),
    url("assets/hero.webp");
  background-size: cover;
  background-position: center right;
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.95;
}

.about-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.story-intro {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px) 24px;
  text-align: center;
}

.story-intro h2 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

.timeline-section {
  --timeline-fill: 0%;
  position: relative;
  padding: 36px clamp(20px, 5vw, 72px) clamp(72px, 10vw, 140px);
}

.timeline-line {
  position: absolute;
  top: 36px;
  bottom: 100px;
  left: 50%;
  width: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #efd9ca;
  transform: translateX(-50%);
}

.timeline-progress {
  display: block;
  width: 100%;
  height: var(--timeline-fill);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--gold), var(--orange), var(--deep-orange));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 112px);
  margin: 0 auto;
  max-width: 1180px;
  padding: 42px 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 76px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.22);
  transform: translateX(-50%);
}

.timeline-item.left .timeline-card {
  grid-column: 1;
}

.timeline-item.right .timeline-card:last-child,
.timeline-item.right .timeline-card:first-child {
  grid-column: 2;
}

.timeline-item.right.with-image .image-card {
  grid-column: 1;
}

.timeline-card {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(67, 35, 18, 0.08);
}

.timeline-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

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

.timeline-year {
  color: var(--deep-orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.image-card {
  padding: 0;
  overflow: hidden;
  min-height: 280px;
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center right;
}

.highlight-card {
  background: linear-gradient(135deg, #fffaf6, #ffe4ce);
}

.final-card {
  background: linear-gradient(135deg, var(--wine), var(--deep-orange) 58%, var(--orange));
  color: var(--white);
}

.final-card p,
.final-card .timeline-year {
  color: rgba(255, 255, 255, 0.82);
}

.final-card .button {
  margin-top: 22px;
  background: var(--white);
  color: var(--deep-orange);
}

.timeline-stats {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: baseline;
  margin-top: 24px;
}

.timeline-stats strong {
  color: var(--deep-orange);
  font-size: 2rem;
  line-height: 1;
}

.timeline-stats span {
  color: var(--muted);
  font-weight: 800;
}

.topic-grid article,
.process-grid article {
  padding: 28px;
}

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

.quote-band.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}

.quote-band.compact blockquote {
  max-width: 900px;
  font-size: clamp(1.7rem, 4vw, 3.6rem);
  line-height: 1.12;
}

.agenda-list {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.event-card time {
  color: var(--deep-orange);
  font-weight: 900;
}

.event-card.muted {
  background: #fff3e8;
}

.stats-band {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(30px, 5vw, 56px) clamp(30px, 5vw, 56px) clamp(14px, 2.5vw, 28px);
  padding: 0;
}

.stats-band + .map-section {
  padding-top: clamp(24px, 4vw, 48px);
}

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.world-map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.world-map {
  width: 100%;
  height: clamp(360px, 55vw, 620px);
}

.jvm-tooltip {
  border-radius: 8px;
  background: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-weight: 800;
}

.country-cloud span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 800;
}

.contact-box {
  align-self: start;
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.form-row,
.service-options {
  display: grid;
  gap: 8px;
}

.form-row-full {
  grid-column: 1 / -1;
}

.contact-form label,
.service-options legend {
  color: var(--ink);
  font-weight: 800;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdfb;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.service-options {
  margin: 0;
  padding: 0;
  border: 0;
}

.service-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdfb;
  color: var(--muted);
}

.service-options input {
  width: 18px;
  height: 18px;
  accent-color: var(--deep-orange);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

#form-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

#form-status.success {
  color: #16833a;
}

#form-status.error {
  color: #b42318;
}

.contact-aside {
  padding: 28px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  color: var(--muted);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: 42px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer-nav a {
  padding: 4px 0;
  color: var(--orange);
  background: none;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
}

.footer-nav a:hover {
  color: var(--deep-orange);
}

.footer-logo img {
  display: block;
  width: min(310px, 76vw);
  height: auto;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(220, 77, 26, 0.16);
  border-radius: 50%;
  color: var(--deep-orange);
  background: rgba(244, 123, 32, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-orange), var(--orange), var(--gold));
  transform: translateY(-2px);
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.footer-meta a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.footer-meta a:hover {
  text-decoration: underline;
}

.privacy-content {
  display: grid;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.privacy-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.privacy-content article:last-child {
  border-bottom: 0;
}

.privacy-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.15;
}

.privacy-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
}

.privacy-content a {
  color: var(--deep-orange);
  font-weight: 800;
}

.keynote-lab {
  background: var(--paper);
}

.keynote-lab-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: 760px;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 179, 63, 0.38), transparent 32%),
    linear-gradient(135deg, rgba(255, 250, 246, 0.98), rgba(255, 243, 232, 0.96));
}

.keynote-lab-copy h1,
.keynote-why h2,
.keynote-menu h2,
.keynote-proof-copy h2,
.keynote-testimonials h2,
.keynote-booking h2 {
  margin: 0;
  font-family: "Archivo Black", Inter, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

.keynote-lab-copy h1 {
  max-width: 940px;
  font-size: clamp(3.1rem, 9vw, 8.8rem);
}

.keynote-lab-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.keynote-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.keynote-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--deep-orange);
  font-weight: 900;
  text-decoration: none;
}

.keynote-video-link span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--deep-orange), var(--orange), var(--gold));
  clip-path: polygon(26% 14%, 26% 86%, 86% 50%);
}

.keynote-video-card {
  position: relative;
  display: block;
  min-height: clamp(360px, 48vw, 620px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.keynote-video-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.play-disc {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-orange), var(--orange), var(--gold));
  box-shadow: 0 20px 44px rgba(220, 77, 26, 0.32);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.keynote-logo-band {
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(135deg, var(--deep-orange), var(--orange) 58%, var(--gold));
}

.keynote-logo-track {
  display: flex;
  gap: clamp(18px, 3vw, 36px);
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}

.keynote-logo-track img {
  width: clamp(150px, 18vw, 245px);
  height: clamp(70px, 8vw, 112px);
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.keynote-proof,
.keynote-why,
.keynote-menu,
.keynote-testimonials,
.keynote-booking {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.keynote-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.keynote-feature-quote {
  margin: 0;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.keynote-feature-quote img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
}

.keynote-feature-quote blockquote {
  margin: 24px 0 18px;
  font-family: "Archivo Black", Inter, Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.keynote-feature-quote figcaption,
.keynote-mini-quotes figcaption {
  color: var(--deep-orange);
  font-weight: 900;
}

.keynote-proof-copy h2,
.keynote-why h2,
.keynote-menu h2,
.keynote-testimonials h2,
.keynote-booking h2 {
  max-width: 920px;
  font-size: clamp(2.2rem, 6vw, 6rem);
}

.keynote-proof-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

.keynote-why {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.keynote-why .eyebrow,
.keynote-booking .eyebrow {
  color: var(--gold);
}

.keynote-why-grid {
  display: grid;
  gap: 14px;
}

.keynote-why-grid article {
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.keynote-why-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Archivo Black", Inter, Arial, sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.88;
}

.keynote-why-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.keynote-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.keynote-card-grid article,
.keynote-mini-quotes figure {
  margin: 0;
  padding: clamp(22px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.keynote-card-grid span {
  color: var(--deep-orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.keynote-card-grid h3 {
  max-width: 620px;
  margin: 18px 0 14px;
  font-family: "Archivo Black", Inter, Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.keynote-card-grid p {
  color: var(--muted);
}

.keynote-card-grid a {
  color: var(--deep-orange);
  font-weight: 900;
  text-decoration: none;
}

.keynote-testimonials {
  background: #fff3e8;
}

.keynote-mini-quotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.keynote-mini-quotes img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.keynote-mini-quotes blockquote {
  margin: 18px 0;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
}

.keynote-booking {
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-orange), var(--orange) 55%, var(--gold));
}

.keynote-booking h2 {
  margin-inline: auto;
  margin-bottom: 28px;
}

.keynote-detail-hero {
  padding: clamp(70px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 86% 14%, rgba(248, 179, 63, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 246, 0.98), rgba(255, 243, 232, 0.96));
}

.keynote-detail-hero h1 {
  max-width: 1080px;
  margin: 0;
  font-family: "Archivo Black", Inter, Arial, sans-serif;
  font-size: clamp(3rem, 8.5vw, 8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.keynote-detail-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.keynote-takeaways .topic-grid article {
  min-height: 220px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    inset: 80px 20px auto 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-parent {
    min-height: auto;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    padding: 6px 0 0 12px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a.active:not(.nav-cta),
  .site-nav .nav-parent.active {
    color: var(--muted);
  }

  .site-nav a:hover,
  .site-nav .nav-parent:hover,
  .site-nav .nav-dropdown:focus-within .nav-parent {
    color: var(--deep-orange);
  }

  .hero,
  .about-hero,
  .keynote-lab-hero,
  .keynote-proof,
  .keynote-why,
  .two-column,
  .split-cta,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.84) 54%, rgba(255, 250, 246, 0.42) 100%),
      url("assets/hero.webp");
    background-size: cover;
    background-position: 72% top;
  }

  .about-hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(255, 250, 246, 0.78) 58%, rgba(255, 250, 246, 0.46) 100%),
      url("assets/hero.webp");
    background-size: cover;
    background-position: 72% top;
  }

  .service-grid,
  .testimonial-grid,
  .topic-grid,
  .process-grid,
  .keynote-card-grid,
  .keynote-mini-quotes,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .event-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 178px;
  }

  .hero h1,
  .page-hero h1,
  .keynote-lab-copy h1 {
    font-size: 2.55rem;
  }

  .hero-panel,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .testimonial-grid,
  .topic-grid,
  .process-grid,
  .keynote-card-grid,
  .keynote-mini-quotes {
    grid-template-columns: 1fr;
  }

  .keynote-lab-hero {
    min-height: auto;
  }

  .keynote-video-card {
    min-height: 340px;
  }

  .play-disc {
    width: 82px;
    height: 82px;
  }

  .hero-panel div,
  .stats-band div {
    min-height: 88px;
    padding: 12px;
  }

  .site-footer {
    flex-direction: column;
  }

  .timeline-section {
    padding-left: 28px;
    padding-right: 20px;
  }

  .timeline-line {
    left: 28px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 34px;
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card:first-child,
  .timeline-item.right .timeline-card:last-child,
  .timeline-item.right.with-image .image-card {
    grid-column: 1;
  }

  .testimonial-grid figure {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }

  .testimonial-photo {
    width: 76px;
    height: 76px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-from-left,
  .reveal-from-right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .logo-track {
    animation: none;
  }
}
