:root {
  --ink: #121417;
  --graphite: #24272c;
  --muted: #667085;
  --paper: #f7f4ef;
  --white: #ffffff;
  --mist: #e9f2ef;
  --teal: #0d7568;
  --lime: #b8d84f;
  --wine: #781833;
  --amber: #d49332;
  --line: rgba(18, 20, 23, 0.12);
  --shadow: 0 24px 70px rgba(18, 20, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(247, 244, 239, 0.92);
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark strong {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 22px);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links > a,
.nav-toggle {
  min-height: 40px;
}

.nav-item {
  position: relative;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 250px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  backdrop-filter: blur(18px);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.nav-menu a:hover {
  background: rgba(13, 117, 104, 0.08);
  color: var(--teal);
}

.nav-item:hover .nav-menu,
.nav-item:focus-within .nav-menu,
.nav-item.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret,
.nav-item.is-open .nav-caret {
  transform: translateY(2px) rotate(225deg);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184, 216, 79, 0.8);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 12px;
  color: inherit;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 82px) 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(184, 216, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #111417 0%, #182321 46%, #0d7568 100%);
}

.page-hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 82px) 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(184, 216, 79, 0.18), transparent 28%),
    radial-gradient(circle at 10% 88%, rgba(217, 140, 118, 0.2), transparent 22%),
    linear-gradient(135deg, #111417 0%, #172422 52%, #0d7568 100%);
}

.page-hero > div {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(3rem, 5.6vw, 6rem);
}

.page-hero p:not(.hero-badge) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
}

.page-hero img {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: 620px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.about-hero img {
  width: min(100%, 470px);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.page-hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1ef;
}

.creative-hero-media {
  display: grid;
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  min-height: clamp(300px, 38vw, 520px);
  place-items: center;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 48%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.creative-hero-logo {
  width: min(72%, 330px);
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: #101418;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.education-hero img {
  width: min(100%, 430px);
  height: auto;
  aspect-ratio: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(100%, 520px);
  height: min(72vh, 720px);
  min-height: 520px;
  object-fit: cover;
  object-position: center 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  animation: portraitIn 900ms ease both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 20, 23, 0.58), rgba(18, 20, 23, 0.08) 58%, rgba(18, 20, 23, 0.32)),
    linear-gradient(0deg, rgba(18, 20, 23, 0.44), rgba(18, 20, 23, 0));
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  max-width: 940px;
  animation: heroCopyIn 800ms ease both;
}

.hero-badge,
.section-label,
.proof-grid small,
.brand-topline small {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: 0.94;
  font-weight: 900;
}

h1 span {
  color: transparent;
  background: linear-gradient(90deg, var(--lime), #ffffff 48%, #6be7dc);
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.15;
}

.hero-content p {
  max-width: 670px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.24rem);
}

.hero-actions,
.card-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  max-width: 760px;
}

.button,
.card-actions a,
.contact-links a,
.gallery-grid figcaption a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 900;
}

.button.primary {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
}

.hero-panel {
  position: relative;
  z-index: 3;
  grid-column: 2;
  justify-self: end;
  width: min(100%, 520px);
  margin-top: -96px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hero-panel p,
.hero-panel span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel strong {
  display: block;
  margin: 8px 0;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-badges {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 0;
}

.hero-badges img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-badges img:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32);
}

.profile-section,
.impact-section,
.audience-section,
.reach-section,
.proof-section,
.brands-section,
.gallery-section,
.page-section,
.contact-section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
}

.page-section {
  background: var(--white);
}

.timeline,
.service-grid,
.blog-grid,
.contact-pathways,
.portfolio-grid {
  display: grid;
  gap: 18px;
}

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

.timeline article,
.service-grid article,
.blog-grid article,
.contact-pathways article,
.portfolio-grid article,
.process-list article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.timeline article:hover,
.service-grid article:hover,
.blog-grid article:hover,
.contact-pathways article:hover,
.portfolio-grid article:hover,
.process-list article:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 117, 104, 0.26);
  box-shadow: 0 26px 64px rgba(18, 20, 23, 0.12);
}

.timeline small,
.blog-grid small {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline p,
.service-grid p,
.blog-grid p,
.contact-pathways p,
.portfolio-grid p,
.process-list p {
  color: var(--muted);
}

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

.service-grid article > span,
.contact-pathways article > span {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: var(--lime);
}

.service-grid svg,
.contact-pathways svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.feature-row > img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-list strong {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

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

.mini-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: var(--shadow);
}

.recognition-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.recognition-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
}

.about-proof-row,
.certification-proof-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.about-proof-copy h2,
.certification-copy h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 4vw, 4.5rem);
}

.about-proof-copy > p:not(.section-label),
.certification-copy > p:not(.section-label) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.proof-list,
.certification-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.proof-list article,
.certification-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-list small,
.certification-list small {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-list h3,
.certification-list h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.proof-list p,
.certification-list p {
  color: var(--muted);
  font-size: 0.96rem;
}

.recognition-collage,
.certificate-image-mosaic {
  display: grid;
  gap: 14px;
}

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

.recognition-collage img,
.certificate-image-mosaic img {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #eef1ef;
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
}

.recognition-collage img {
  aspect-ratio: 4 / 3;
  padding: 8px;
}

.recognition-collage img:nth-child(2),
.recognition-collage img:nth-child(4) {
  transform: translateY(24px);
}

.certificate-image-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-height: 760px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.certificate-image-mosaic img {
  aspect-ratio: 3 / 4;
  padding: 8px;
}

.certificate-image-mosaic img:nth-child(3n) {
  aspect-ratio: 1;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.portfolio-filters a,
.contact-pathways a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--teal);
  background: rgba(13, 117, 104, 0.06);
  font-weight: 900;
}

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

.portfolio-grid img {
  width: 100%;
  height: 170px;
  margin-bottom: 22px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #eef1ef;
}

.portfolio-grid article:nth-child(odd),
.blog-grid article:nth-child(2n),
.timeline article:nth-child(3n) {
  background: linear-gradient(180deg, rgba(238, 243, 229, 0.72), rgba(255, 255, 255, 0.94));
}

.portfolio-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  background:
    radial-gradient(circle at 76% 20%, rgba(216, 168, 78, 0.24), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(217, 140, 118, 0.18), transparent 24%),
    linear-gradient(135deg, #101418 0%, #1e2a2a 48%, #0d7568 100%);
}

.portfolio-hero h1 {
  max-width: 1040px;
}

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

.portfolio-hero-board {
  position: relative;
  min-height: 560px;
}

.portfolio-hero-main {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(86%, 500px);
  height: min(82%, 520px);
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.portfolio-proof-card,
.portfolio-mini-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(247, 243, 232, 0.92);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.portfolio-proof-card {
  top: 38px;
  left: 0;
  width: min(82%, 340px);
  padding: 24px;
  color: var(--ink);
}

.portfolio-proof-card span,
.project-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-proof-card strong {
  display: block;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
}

.portfolio-mini-card {
  right: 22px;
  bottom: 0;
  display: flex;
  gap: 12px;
  padding: 14px;
}

.portfolio-mini-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border-radius: 16px;
  background: var(--white);
}

.portfolio-statement {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 82px);
  background: var(--ink);
}

.portfolio-statement article {
  display: grid;
  gap: 10px;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(135deg, #f7f3e8, #eef3e5);
}

.portfolio-statement span {
  color: var(--amber);
  font-weight: 900;
}

.portfolio-statement strong {
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.04;
}

.portfolio-statement p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.portfolio-page {
  background:
    linear-gradient(180deg, rgba(238, 243, 229, 0.86), rgba(255, 255, 255, 0.98) 32%),
    var(--white);
}

.portfolio-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.portfolio-intro h2 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--graphite);
  font-size: clamp(2.35rem, 4.4vw, 4.65rem);
}

.portfolio-intro > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.featured-project {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.featured-project:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 74px rgba(18, 20, 23, 0.16);
}

.featured-project img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center top;
  background: #eef1ef;
}

.featured-project:nth-child(2) img,
.featured-project:nth-child(3) img {
  object-fit: contain;
  padding: 28px;
}

.featured-project > div {
  padding: 28px;
}

.featured-project p {
  color: var(--muted);
}

.featured-project ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--graphite);
  font-weight: 800;
}

.featured-project li {
  position: relative;
  padding-left: 24px;
}

.featured-project li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--amber);
  content: "";
}

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

.portfolio-detail-grid article {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(247, 243, 232, 0.78), rgba(255, 255, 255, 0.98));
}

.portfolio-detail-grid i {
  width: 44px;
  height: 44px;
  margin-bottom: 38px;
  color: var(--teal);
  stroke-width: 1.7;
}

.speaking-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.82fr);
  background:
    radial-gradient(circle at 82% 20%, rgba(217, 140, 118, 0.24), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(184, 216, 79, 0.18), transparent 26%),
    linear-gradient(135deg, #111417 0%, #1f2524 48%, #0d7568 100%);
}

.speaking-hero-media {
  display: grid;
  align-content: center;
}

.speaking-main-image {
  width: 100%;
  min-height: clamp(360px, 48vw, 620px);
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.speaker-card,
.speaker-metric {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(247, 243, 232, 0.92);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.speaker-card {
  padding: 24px;
  color: var(--ink);
}

.speaker-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.speaker-card strong {
  display: block;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
  line-height: 1.08;
}

.speaker-metric {
  padding: 20px;
  color: var(--ink);
}

.speaker-metric strong,
.speaker-metric span {
  display: block;
}

.speaker-metric strong {
  margin-bottom: 8px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 1.25rem;
}

.speaker-metric span {
  color: var(--muted);
}

.speaking-hero-media {
  grid-template-columns: 1fr;
}

.speaking-main-image {
  grid-column: 1;
}

.page-hero .speaking-main-image {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  background: transparent;
}

.speaker-positioning {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.68fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  padding: clamp(64px, 8vw, 112px) clamp(20px, 6vw, 82px);
  background: linear-gradient(135deg, #f7f3e8 0%, #eef3e5 100%);
}

.speaker-positioning h2 {
  max-width: 960px;
  margin-bottom: 0;
  color: #59657d;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
}

.speaker-positioning > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.08rem;
}

.speaking-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(216, 168, 78, 0.13), transparent 24%),
    var(--white);
}

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

.speaking-topic-grid article {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 243, 232, 0.7), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.speaking-topic-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 117, 104, 0.26);
  box-shadow: 0 28px 68px rgba(18, 20, 23, 0.13);
}

.speaking-topic-grid article > span {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 18px;
  color: var(--teal);
  background: rgba(13, 117, 104, 0.1);
}

.speaking-topic-grid svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.7;
}

.speaking-topic-grid p,
.speaker-format-grid p,
.speaker-proof-copy p,
.speaker-cta p {
  color: var(--muted);
}

.speaker-formats {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  background: var(--ink);
}

.speaker-formats h2,
.speaker-cta h2 {
  color: var(--white);
}

.speaker-format-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
}

.speaker-format-grid article {
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, #f7f3e8, #eef3e5);
}

.speaker-format-grid strong {
  display: block;
  margin-bottom: 14px;
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 1.35rem;
  line-height: 1.04;
}

.speaker-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  background: var(--white);
}

.speaker-proof-copy h2 {
  color: var(--graphite);
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
}

.speaker-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.speaker-proof-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #eef1ef;
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.08);
}

.speaker-proof-gallery img:nth-child(2),
.speaker-proof-gallery img:nth-child(3) {
  transform: translateY(28px);
}

.speaker-cta {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(184, 216, 79, 0.2), transparent 24%),
    radial-gradient(circle at 82% 80%, rgba(217, 140, 118, 0.22), transparent 24%),
    linear-gradient(135deg, #111417 0%, #1e2a2a 54%, #0d7568 100%);
}

.speaker-cta h2,
.speaker-cta p {
  max-width: 930px;
  margin-right: auto;
  margin-left: auto;
}

.speaker-cta .button {
  margin-top: 12px;
}

.work-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
}

.work-proof-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(184, 216, 79, 0.14), transparent 24%),
    radial-gradient(circle at 14% 88%, rgba(217, 140, 118, 0.16), transparent 24%),
    linear-gradient(135deg, #0f1216 0%, #161c1d 52%, #0d302d 100%);
}

.work-proof-copy h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(3rem, 5.2vw, 6rem);
  line-height: 0.95;
}

.work-proof-copy p:not(.section-label) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.work-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-proof-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.work-proof-gallery img:nth-child(2),
.work-proof-gallery img:nth-child(4) {
  transform: translateY(28px);
}

.work-proof-gallery img[src$=".svg"] {
  object-fit: contain;
  padding: 24px;
}

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

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

.contact-pathways article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.contact-pathways a {
  width: fit-content;
  margin-top: auto;
  border-radius: 12px;
}

.impact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(13, 117, 104, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
}

.section-heading.compact {
  max-width: 1120px;
}

.section-heading.compact h2 {
  max-width: 1060px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 80px rgba(18, 20, 23, 0.08);
}

.impact-grid article {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(20px, 3vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease;
}

.impact-grid article:nth-child(4n) {
  border-right: 0;
}

.impact-grid article:nth-child(n + 5) {
  border-bottom: 0;
}

.impact-grid article:hover {
  transform: translateY(-4px);
  background: rgba(238, 243, 229, 0.72);
}

.impact-grid strong {
  display: block;
  color: var(--teal);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: clamp(2rem, 3.8vw, 4.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.impact-grid span {
  color: var(--muted);
  font-weight: 800;
}

.audience-section {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(184, 216, 79, 0.2), transparent 28%),
    radial-gradient(circle at 92% 20%, rgba(217, 140, 118, 0.22), transparent 26%),
    linear-gradient(135deg, #101417 0%, #172422 50%, #123f3a 100%);
}

.audience-section .section-heading.split > p,
.audience-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.audience-grid article {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.audience-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 216, 79, 0.46);
  background:
    linear-gradient(180deg, rgba(184, 216, 79, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.06);
}

.audience-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 16px;
  color: var(--ink);
  background: var(--lime);
}

.audience-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.audience-grid small {
  margin-bottom: 15px;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-grid h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.profile-section {
  position: relative;
  overflow: hidden;
  color: #59657d;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 168, 78, 0.18), transparent 25%),
    linear-gradient(125deg, #f7f3e8 0%, #eef3e5 64%, #e5eddd 100%);
}

.profile-section::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(89, 101, 125, 0.12);
  border-radius: 50%;
  content: "";
}

.positioning-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
}

.positioning-copy {
  max-width: 720px;
}

.positioning-label {
  margin-bottom: 20px;
  color: #d98c76;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.positioning-copy h2 {
  margin-bottom: 28px;
  color: #59657d;
  font-size: clamp(2.45rem, 4.8vw, 4.9rem);
  line-height: 0.98;
}

.positioning-copy > p:not(.positioning-label) {
  max-width: 640px;
  margin-bottom: 16px;
  color: rgba(89, 101, 125, 0.84);
  font-size: 1.05rem;
}

.positioning-copy blockquote {
  margin: 30px 0 0;
  padding: 22px 24px 22px 30px;
  border-left: 4px solid #d8a84e;
  border-radius: 0 8px 8px 0;
  color: #59657d;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 36px rgba(89, 101, 125, 0.09);
  font-family: "Space Grotesk", Inter, Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}

.positioning-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.positioning-cards article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid rgba(89, 101, 125, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 48px rgba(89, 101, 125, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.positioning-cards article:nth-child(2) { background: rgba(185, 199, 165, 0.38); }
.positioning-cards article:nth-child(3) { background: rgba(216, 168, 78, 0.12); }
.positioning-cards article:nth-child(4) { background: rgba(217, 140, 118, 0.15); }

.positioning-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 168, 78, 0.42);
  box-shadow: 0 26px 58px rgba(89, 101, 125, 0.16);
}

.positioning-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 14px;
  color: #59657d;
  background: #f7f3e8;
}

.positioning-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.7;
}

.positioning-cards h3 {
  margin-bottom: 9px;
  color: #59657d;
  font-size: 1.25rem;
}

.positioning-cards p {
  margin-bottom: 0;
  color: rgba(89, 101, 125, 0.78);
  font-size: 0.94rem;
}

.reach-section {
  background: var(--white);
}

.profile-grid,
.section-heading.split,
.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.profile-copy p,
.section-heading.split > p,
.reach-grid span,
.proof-grid p,
.brand-card p,
.contact-copy p,
.gallery-grid figcaption span {
  color: var(--muted);
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reach-grid article {
  min-height: 250px;
  display: grid;
  align-content: space-between;
  gap: 40px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 117, 104, 0.08), rgba(184, 216, 79, 0.08)),
    var(--paper);
}

.reach-grid article,
.proof-grid article,
.credential-grid article,
.brand-card,
.contact-panel {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reach-grid article:hover,
.proof-grid article:hover,
.credential-grid article:hover,
.brand-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 117, 104, 0.24);
  box-shadow: 0 26px 64px rgba(18, 20, 23, 0.12);
}

.reach-grid strong {
  max-width: 310px;
  font-size: 1.4rem;
  line-height: 1.12;
}

.profile-copy {
  padding-top: 10px;
  font-size: 1.08rem;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.proof-section,
.gallery-section {
  background: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid article,
.credential-grid article,
.brand-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
}

.proof-grid article {
  display: flex;
  flex-direction: column;
}

.proof-grid small,
.credential-grid small,
.brand-topline small {
  color: var(--teal);
}

.credential-block {
  margin-top: clamp(46px, 7vw, 86px);
}

.credential-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.credential-visuals {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 117, 104, 0.08), rgba(184, 216, 79, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.credential-grid {
  display: flex;
  width: max-content;
  gap: 16px;
  padding: 18px;
  animation: certMarquee 46s linear infinite;
  will-change: transform;
}

.credential-grid:hover {
  animation-play-state: paused;
}

.credential-grid article {
  display: grid;
  flex: 0 0 clamp(260px, 28vw, 380px);
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.credential-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  background: #eef1ef;
  border-bottom: 1px solid var(--line);
}

.credential-grid div {
  padding: 20px;
}

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

.credential-list {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.96), rgba(13, 117, 104, 0.9)),
    var(--graphite);
  box-shadow: var(--shadow);
}

.credential-list h3 {
  margin-bottom: 2px;
  color: var(--white);
  font-size: 1.55rem;
}

.credential-list ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.credential-list li {
  display: grid;
  gap: 5px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.credential-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.credential-list strong {
  color: var(--lime);
}

.credential-list span {
  color: rgba(255, 255, 255, 0.74);
}


.brands-section {
  padding-top: clamp(46px, 7vw, 82px);
  background: var(--mist);
}

.brand-section-heading {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: clamp(24px, 4vw, 42px);
  margin-left: auto;
  text-align: center;
}

.brand-section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brand-card {
  display: flex;
  position: relative;
  min-height: 520px;
  flex-direction: column;
  padding-top: 68px;
}

.featured-brand {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(120, 24, 51, 0.96), rgba(13, 117, 104, 0.92)),
    var(--wine);
}

.featured-brand p,
.featured-brand .brand-topline small,
.featured-brand .brand-focus {
  color: rgba(255, 255, 255, 0.76);
}

.brand-number {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--teal);
  background: rgba(13, 117, 104, 0.06);
  font-weight: 900;
}

.featured-brand .brand-number {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.brand-topline {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-bottom: 38px;
  text-align: center;
}

.brand-logo-stage {
  display: grid;
  width: 100%;
  max-width: 360px;
  min-height: 156px;
  place-items: center;
  padding: 24px 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.08);
}

.brand-logo-stage-dark {
  background: #101418;
}

.brand-logo {
  width: 100%;
  max-width: 250px;
  max-height: 104px;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.brand-logo-square {
  max-width: 118px;
  max-height: 118px;
}

.featured-brand .brand-logo-stage {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
}

.brand-card .card-actions {
  margin-top: auto;
}

.brand-card h4 {
  margin: -4px 0 16px;
  color: var(--teal);
  font-size: 0.96rem;
  font-weight: 900;
}

.featured-brand h4 {
  color: var(--lime);
}

.brand-focus {
  display: grid;
  gap: 8px;
  margin: 18px 0 28px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.brand-focus li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  font-weight: 800;
}

.brand-focus li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.card-actions a,
.contact-links a {
  border-color: var(--line);
  color: var(--teal);
  background: rgba(13, 117, 104, 0.06);
}

.featured-brand .card-actions a {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.gallery-section {
  overflow: hidden;
}

.gallery-grid {
  display: flex;
  width: max-content;
  align-items: stretch;
  gap: 18px;
  animation: galleryMarquee 42s linear infinite;
  will-change: transform;
}

.gallery-grid:hover {
  animation-play-state: paused;
}

.gallery-grid figure,
.gallery-grid article {
  position: relative;
  flex: 0 0 clamp(280px, 32vw, 460px);
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--graphite);
  box-shadow: var(--shadow);
}

.gallery-grid article {
  display: grid;
  grid-template-rows: 250px auto;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(18, 20, 23, 0.07);
}

.gallery-grid img,
.photo-rotator img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: contain;
  object-position: center top;
  background: #eef1ef;
}

.photo-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  overflow: hidden;
}

.photo-rotator img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.photo-rotator img.is-active {
  opacity: 1;
}

.gallery-feature {
  flex-basis: clamp(320px, 38vw, 540px);
}

.gallery-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 7px;
  padding: 22px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(18, 20, 23, 0.86), rgba(18, 20, 23, 0));
}

.gallery-grid figcaption span {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid figcaption a {
  min-height: auto;
  justify-content: flex-start;
  width: fit-content;
  padding: 0;
  border: 0;
  color: var(--lime);
}

.media-tile {
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.96), rgba(120, 24, 51, 0.88)),
    var(--graphite);
}

.media-tile > span {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
}

.gallery-grid article .photo-rotator {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.gallery-grid article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  min-height: 0;
  background: #eef1ef;
}

.gallery-grid article > div:not(.photo-rotator) {
  display: grid;
  gap: 6px;
  padding: 16px;
}

.gallery-grid article strong {
  line-height: 1.2;
}

.gallery-grid article span {
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes portraitIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes galleryMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes certMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  background: var(--paper);
}

.testimonial-section,
.explore-more-section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 6vw, 82px);
  background: var(--white);
}

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

.testimonial-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238, 243, 229, 0.72), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
}

.testimonial-grid small {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.explore-more-section {
  text-align: center;
  background: var(--paper);
}

.explore-more-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.explore-more-links a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(18, 20, 23, 0.06);
}

.contact-panel {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer a,
.site-footer p {
  margin: 0;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 8vw, 96px);
  background: linear-gradient(135deg, #f7f3e8 0%, #eef3e5 100%);
}

.redirect-page h1 {
  max-width: 760px;
  color: var(--graphite);
  font-size: clamp(2.4rem, 5vw, 5rem);
}

.redirect-page p:not(.section-label) {
  max-width: 620px;
  color: var(--muted);
}

.compact-home-section {
  padding-bottom: clamp(42px, 6vw, 78px);
}

.home-brand-note {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.home-brand-note-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(20px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(89, 101, 125, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 48px rgba(18, 20, 23, 0.06);
}

.home-brand-note .section-label {
  margin-bottom: 10px;
}

.home-brand-note h2 {
  max-width: 460px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.home-brand-note p:not(.section-label) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.55;
}

.home-brand-note strong {
  color: var(--graphite);
}

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

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

.opportunity-line {
  max-width: 1120px;
  margin: 22px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(13, 117, 104, 0.18);
  border-radius: 14px;
  color: var(--graphite);
  background: linear-gradient(135deg, rgba(184, 216, 79, 0.18), rgba(255, 255, 255, 0.82));
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  font-weight: 800;
  line-height: 1.5;
}

.real-impact-section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 6vw, 82px);
  background:
    radial-gradient(circle at 8% 14%, rgba(184, 216, 79, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f3e8 100%);
}

.real-impact-section .section-heading {
  max-width: 880px;
}

.real-impact-section .section-heading p:not(.section-label) {
  max-width: 760px;
  color: var(--muted);
}

.real-impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.real-impact-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(89, 101, 125, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 54px rgba(18, 20, 23, 0.08);
}

.real-impact-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: linear-gradient(135deg, rgba(247, 243, 232, 0.96), rgba(238, 243, 229, 0.92));
}

.real-impact-grid article > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.real-impact-grid small {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.real-impact-grid h3,
.real-impact-grid p {
  margin: 0;
}

.real-impact-grid p {
  color: var(--muted);
  font-size: 0.98rem;
}

.real-impact-grid a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.92rem;
  font-weight: 900;
}

.certifications-section {
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 168, 78, 0.14), transparent 24%),
    var(--paper);
}

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

.certificate-card-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(18, 20, 23, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.certificate-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 117, 104, 0.24);
  box-shadow: 0 26px 64px rgba(18, 20, 23, 0.12);
}

.certificate-card-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center top;
  padding: 10px;
  background: #eef1ef;
  border-bottom: 1px solid var(--line);
}

.certificate-card-grid div {
  padding: 22px;
}

.certificate-card-grid small {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.moments-section {
  overflow: hidden;
  padding: clamp(68px, 9vw, 124px) clamp(20px, 6vw, 82px);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(184, 216, 79, 0.16), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(217, 140, 118, 0.16), transparent 24%),
    linear-gradient(135deg, #101418 0%, #172120 48%, #0d7568 100%);
}

.moments-section .section-heading p:not(.section-label),
.moments-section .section-heading.split > p {
  color: rgba(255, 255, 255, 0.72);
}

.moments-carousel {
  position: relative;
}

.moments-viewport {
  overflow: hidden;
  border-radius: 18px;
}

.moments-track {
  display: flex;
  gap: 18px;
  transition: transform 520ms ease;
  will-change: transform;
}

.moments-track figure {
  flex: 0 0 clamp(270px, 30vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.22);
}

.moments-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background:
    linear-gradient(135deg, rgba(247, 243, 232, 0.96), rgba(238, 243, 229, 0.92));
}

.moments-track figcaption {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.moments-track figcaption strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.15;
}

.moments-track figcaption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.moments-arrow {
  position: absolute;
  z-index: 2;
  top: 44%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  cursor: pointer;
}

.moments-arrow svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.moments-prev {
  left: -12px;
}

.moments-next {
  right: -12px;
}

.moments-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
}

.moments-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.moments-dots button.is-active {
  width: 28px;
  background: var(--lime);
}

@media (max-width: 1020px) {
  .hero-panel {
    width: min(100%, 420px);
    margin-top: 0;
  }

  .hero-section {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .page-hero,
  .portfolio-hero,
  .portfolio-intro,
  .speaking-hero,
  .speaker-positioning,
  .about-proof-row,
  .certification-proof-row,
  .speaker-proof,
  .work-proof {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-board {
    min-height: 640px;
  }

  .portfolio-hero-main {
    left: 0;
    right: auto;
    width: min(100%, 500px);
  }

  .hero-image,
  .hero-panel {
    grid-column: 1;
    justify-self: start;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-image {
    grid-row: 2;
    width: min(100%, 460px);
    height: 560px;
    min-height: 0;
  }

  .hero-panel {
    grid-row: 3;
  }

  .hero-badges {
    justify-content: flex-start;
  }

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

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav-links {
    display: flex;
  }

  .nav-links a,
  .nav-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 10px;
  }

  .nav-item {
    width: 100%;
  }

  .nav-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 6px;
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: rgba(13, 117, 104, 0.06);
    transform: none;
  }

  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu {
    transform: none;
  }

  .nav-item.is-open .nav-menu {
    display: grid;
    transform: none;
  }

  .nav-menu a {
    white-space: normal;
  }

  .nav-cta {
    border-radius: 12px;
  }

  .menu-button {
    display: inline-block;
    flex: 0 0 auto;
  }

  .hero-section {
    min-height: 90vh;
  }

  .hero-image {
    object-position: center 12%;
  }

  .profile-grid,
  .positioning-grid,
  .section-heading.split,
  .contact-panel,
  .home-brand-note-inner,
  .credential-showcase,
  .impact-grid,
  .audience-grid,
  .reach-grid,
  .proof-grid,
  .brand-grid,
  .gallery-grid,
  .real-impact-grid,
  .portfolio-statement,
  .featured-portfolio-grid,
  .testimonial-grid,
  .speaking-topic-grid,
  .speaker-format-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid article,
  .impact-grid article:nth-child(4n),
  .impact-grid article:nth-child(n + 5) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .impact-grid article:last-child {
    border-bottom: 0;
  }

  .credential-grid article {
    flex-basis: min(78vw, 360px);
  }

  .positioning-copy {
    max-width: none;
  }

  .timeline,
  .service-grid,
  .feature-row,
  .process-list,
  .mini-gallery,
  .recognition-strip,
  .portfolio-grid,
  .portfolio-detail-grid,
  .blog-grid,
  .contact-pathways {
    grid-template-columns: 1fr;
  }

  .page-hero img {
    width: min(100%, 460px);
  }

  .education-hero img {
    width: min(100%, 390px);
  }

  .portfolio-hero-main {
    width: min(100%, 460px);
  }

  .speaking-hero-media {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-mark strong {
    display: none;
  }

  .hero-section {
    min-height: 92vh;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(18, 20, 23, 0.88), rgba(18, 20, 23, 0.58)),
      linear-gradient(0deg, rgba(18, 20, 23, 0.74), rgba(18, 20, 23, 0.08));
  }

  h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .button,
  .audience-grid a,
  .contact-pathways a,
  .portfolio-filters a,
  .contact-links a {
    width: 100%;
  }

  .portfolio-hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .portfolio-hero-board {
    min-height: 520px;
  }

  .speaking-hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .portfolio-proof-card {
    width: min(100%, 300px);
  }

  .portfolio-mini-card {
    right: 0;
  }

  .portfolio-mini-card img {
    width: 72px;
    height: 72px;
  }

  .featured-project img {
    height: 220px;
  }

  .speaking-topic-grid article {
    min-height: 0;
  }

  .speaker-proof-gallery {
    grid-template-columns: 1fr;
  }

  .recognition-collage,
  .certificate-image-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recognition-collage img:nth-child(2),
  .recognition-collage img:nth-child(4) {
    transform: none;
  }

  .certificate-image-mosaic {
    max-height: 620px;
  }

  .speaker-proof-gallery img:nth-child(2),
  .speaker-proof-gallery img:nth-child(3) {
    transform: none;
  }

  .work-proof-gallery {
    grid-template-columns: 1fr;
  }

  .work-proof-gallery img:nth-child(2),
  .work-proof-gallery img:nth-child(4) {
    transform: none;
  }

  .positioning-cards {
    grid-template-columns: 1fr;
  }

  .positioning-cards article {
    min-height: 210px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-grid {
    animation-duration: 34s;
  }

  .gallery-grid figure,
  .gallery-grid article {
    flex-basis: 82vw;
  }

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

  .certificate-card-grid div {
    padding: 18px;
  }

  .moments-track figure {
    flex-basis: min(82vw, 340px);
  }

  .moments-arrow {
    top: 38%;
    width: 40px;
    height: 40px;
  }

  .moments-prev {
    left: 8px;
  }

  .moments-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .gallery-grid {
    width: auto;
    overflow-x: auto;
  }

  .credential-grid {
    width: auto;
    overflow-x: auto;
  }

  .moments-track {
    transition: none;
  }
}
