:root {
  --canvas: #faf8f5;
  --charcoal: #1a1a1a;
  --muted: #6b6560;
  --border: #e8e4df;
  --accent: #0f6b4a;
  --ink-soft: #2c2a27;
  --gold: #c5a46a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 93.75%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .font-serif {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

::selection {
  background: var(--accent);
  color: var(--canvas);
}

.editorial-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.text-accent { color: var(--accent) !important; }
.text-muted-custom { color: var(--muted) !important; }
.bg-canvas { background: var(--canvas) !important; }
.border-custom { border-color: var(--border) !important; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--canvas);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.site-header .navbar-brand {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.site-header .nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  padding: 0.25rem 0 !important;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--accent);
}

.site-header .dropdown-toggle::after {
  margin-left: 0.35rem;
  vertical-align: 0.15em;
  border-top-color: currentColor;
  opacity: 0.45;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header .dropdown-toggle.show::after,
.site-header .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
  opacity: 0.8;
}

.site-header .editorial-dropdown {
  --bs-dropdown-min-width: 13rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.35rem;
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 1px;
  --bs-dropdown-border-color: var(--border);
  --bs-dropdown-bg: var(--canvas);
  --bs-dropdown-box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
  margin-top: 0.65rem !important;
  padding-top: 0.5rem;
  padding-bottom: 0.35rem;
  border: 1px solid var(--border);
  background: var(--canvas);
  overflow: hidden;
}

.site-header .editorial-dropdown::before {
  content: "";
  display: block;
  height: 2px;
  width: 2rem;
  margin: 0 0 0.35rem 1.1rem;
  background: var(--accent);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid var(--charcoal);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-utility {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
  text-decoration: none;
}

.nav-utility:hover {
  color: var(--accent);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 1100;
  transform-origin: left;
  pointer-events: none;
}

.site-header .editorial-dropdown-item {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(26, 26, 26, 0.72);
  padding: 0.65rem 1.1rem;
  border-radius: 0;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.site-header .editorial-dropdown-item:hover,
.site-header .editorial-dropdown-item:focus {
  color: var(--accent);
  background: rgba(15, 107, 74, 0.05);
  padding-left: 1.35rem;
}

.site-header .editorial-dropdown-item:active,
.site-header .editorial-dropdown-item.active {
  color: var(--accent);
  background: rgba(15, 107, 74, 0.08);
  font-weight: 500;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--canvas);
  border: none;
  border-radius: 0;
  padding: 0.5rem 1rem;
  transition: background 0.25s ease, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-contact::after {
  content: "→";
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-contact:hover {
  background: #0d5a3e;
  color: var(--canvas);
  gap: 0.7rem;
}

.btn-contact:hover::after {
  transform: translateX(4px);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  transition: border-color 0.25s ease, color 0.25s ease, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline-custom::after {
  content: "→";
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
  gap: 0.85rem;
}

.btn-outline-custom:hover::after {
  transform: translateX(5px);
}

.btn-outline-light-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: #faf8f5;
  border: 1px solid rgba(250, 248, 245, 0.35);
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline-light-custom::after {
  content: "→";
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline-light-custom:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 164, 106, 0.08);
  gap: 0.85rem;
}

.btn-outline-light-custom:hover::after {
  transform: translateX(5px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--canvas);
  border: none;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  transition: background 0.25s ease, color 0.25s ease, gap 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-accent::after {
  content: "→";
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-accent:hover {
  background: #0d5a3e;
  color: var(--canvas);
  gap: 0.85rem;
}

.btn-accent:hover::after {
  transform: translateX(5px);
}

.badge-achievement {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(15, 107, 74, 0.3);
  background: rgba(15, 107, 74, 0.05);
  color: var(--accent);
  padding: 0.5rem 1rem;
  cursor: default;
  transition:
    font-weight 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.badge-achievement:hover {
  font-weight: 700;
  background: rgba(15, 107, 74, 0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15, 107, 74, 0.12);
}

.bg-grid {
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  transition: transform 1.2s ease-out;
  will-change: transform;
}

.container-xl {
  max-width: 80rem;
}

.hero-section {
  min-height: auto;
  padding-top: 4.25rem;
  padding-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-inner {
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 0;
}

.hero-row {
  min-height: auto;
  align-content: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-right: 0.5rem;
}

.hero-copy .hero-title {
  margin-bottom: 0.35rem;
}

.hero-copy .hero-badges {
  margin-top: 0.25rem;
}

.hero-copy .hero-quote {
  margin-top: 0.25rem;
}

.hero-copy .hero-actions {
  margin-top: 0.5rem;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 20%, rgba(15, 107, 74, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 40% at 85% 75%, rgba(197, 164, 106, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3.25rem, 10vw, 6.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

.hero-thesis {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  max-width: 34rem;
  color: var(--muted);
  margin: 0;
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
}

.hero-quote {
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.6;
  max-width: 34rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.25rem;
  margin: 0;
  font-style: italic;
}

.hero-quote p {
  color: var(--muted);
}

.hero-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 28rem;
  width: 100%;
  margin-inline: auto;
  border: 1px solid var(--border);
  overflow: hidden;
  background: rgba(26, 26, 26, 0.04);
}

.hero-portrait::after {
  content: "";
  position: absolute;
  inset: auto -0.75rem -0.75rem auto;
  width: 40%;
  height: 40%;
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  opacity: 0.45;
  pointer-events: none;
  z-index: 2;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-photo-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5rem;
}

.hero-roles {
  min-height: 4.5rem;
}

.hero-typed-line {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
}

.typed-cursor {
  color: var(--accent);
  font-weight: 300;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-scroll {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.hero-scroll-line {
  height: 1px;
  background: var(--border);
}

.scroll-arrow {
  color: var(--muted);
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.section-heading-lg {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
}

.section-lead {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
}

.section-body {
  font-size: 1.125rem;
  line-height: 1.65;
}

.section-intro {
  max-width: 36rem;
  line-height: 1.65;
}

.section-tint {
  background: rgba(26, 26, 26, 0.02);
}

.media-frame {
  border: 1px solid var(--border);
  overflow: hidden;
}

.recognition-grid {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-copy {
  max-width: 28rem;
}

/* —— Awards marquee —— */
.awards-marquee {
  background: #0a0a0a;
  color: #d8d2c8;
  overflow: hidden;
  padding: 1.35rem 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.awards-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.awards-marquee:hover .awards-marquee-track {
  animation-play-state: paused;
}

.awards-marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1.75rem;
  padding-right: 1.75rem;
  white-space: nowrap;
}

.awards-marquee-group span:not(.marquee-star) {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  letter-spacing: 0.01em;
  color: #cfc8be;
}

.marquee-star {
  color: #c5a46a;
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.95;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .awards-marquee-track {
    animation: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .awards-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .awards-marquee-group {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    row-gap: 0.75rem;
    padding: 0 1.5rem;
  }
}

.chapter-block {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.chapter-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.chapter-label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.chapter-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
}

.about-chapter-nav {
  position: sticky;
  top: 6rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 2px solid var(--accent);
}

.about-chapter-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  counter-reset: about-ch;
}

.about-chapter-list li {
  counter-increment: about-ch;
}

.about-chapter-list a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.about-chapter-list a::before {
  content: counter(about-ch, decimal-leading-zero);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
  min-width: 1.5rem;
}

.about-chapter-list a:hover {
  color: var(--accent);
}

.chapter-block .media-frame {
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.chapter-block .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-path {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 1rem 0 2rem;
}

.story-path-line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.25s ease;
}

.story-path-line path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-path-shadow {
  stroke: rgba(15, 107, 74, 0.14);
  stroke-width: 14;
}

.story-path-main {
  stroke: var(--accent);
  stroke-width: 3.5;
  stroke-dasharray: 10 9;
  filter: drop-shadow(0 0 8px rgba(15, 107, 74, 0.28));
  animation: storyRouteFlow 2.6s linear infinite;
}

.story-path .chapter-block {
  position: relative;
  z-index: 3;
  width: min(46%, 30rem);
  padding: 2rem;
  border: 1px solid var(--border);
  background: var(--paper);
  box-shadow: 0 1.25rem 3rem rgba(30, 38, 33, 0.06);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    opacity 0.55s ease;
}

.story-path .chapter-block.story-card-pending {
  opacity: 0;
  transform: translateY(1.75rem);
}

.story-path .chapter-block.is-on-path {
  opacity: 1;
  transform: translateY(0);
}

.story-path .chapter-block.is-left {
  align-self: flex-start;
}

.story-path .chapter-block.is-right {
  align-self: flex-end;
}

.story-path .chapter-block.is-left.story-card-pending {
  transform: translate(-1.25rem, 1.75rem);
}

.story-path .chapter-block.is-right.story-card-pending {
  transform: translate(1.25rem, 1.75rem);
}

.story-path .chapter-block:hover {
  box-shadow: 0 1.75rem 3.5rem rgba(30, 38, 33, 0.1);
}

.story-stop {
  position: absolute;
  top: 2.35rem;
  z-index: 2;
  width: 1.2rem;
  height: 1.2rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 0 0 0 rgba(15, 107, 74, 0.28);
  opacity: 0;
  transform: scale(0.55);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.story-path .chapter-block.is-on-path .story-stop {
  opacity: 1;
  transform: scale(1);
  animation: storyMarkerPulse 2.4s ease-out infinite;
}

.story-path .chapter-block.is-left .story-stop {
  right: -3.1rem;
  left: auto;
}

.story-path .chapter-block.is-right .story-stop {
  left: -3.1rem;
  right: auto;
}

.story-path .chapter-block.is-left::after,
.story-path .chapter-block.is-right::after {
  content: "";
  position: absolute;
  top: 2.8rem;
  width: 2.5rem;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.35s ease 0.08s;
}

.story-path .chapter-block.is-on-path.is-left::after,
.story-path .chapter-block.is-on-path.is-right::after {
  opacity: 1;
}

.story-path .chapter-block.is-left::after {
  right: -2.5rem;
}

.story-path .chapter-block.is-right::after {
  left: -2.5rem;
}

.story-path .chapter-block:first-of-type .story-stop,
.story-path .chapter-block:last-of-type .story-stop {
  width: 1.45rem;
  height: 1.45rem;
}

@keyframes storyRouteFlow {
  to {
    stroke-dashoffset: -19;
  }
}

@keyframes storyMarkerPulse {
  70% {
    box-shadow: 0 0 0 1px var(--accent), 0 0 0 0.75rem rgba(15, 107, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 1px var(--accent), 0 0 0 0 rgba(15, 107, 74, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-path-main,
  .story-stop {
    animation: none;
  }

  .story-path .chapter-block.story-card-pending,
  .story-path .chapter-block.is-left.story-card-pending,
  .story-path .chapter-block.is-right.story-card-pending {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  .story-path {
    gap: 2.25rem;
    padding-left: 2.75rem;
  }

  .story-path .chapter-block {
    width: 100%;
    padding: 1.5rem;
    align-self: stretch !important;
  }

  .story-path .chapter-block.is-left .story-stop,
  .story-path .chapter-block.is-right .story-stop {
    left: -2.85rem;
    right: auto;
  }

  .story-path .chapter-block.is-left::after,
  .story-path .chapter-block.is-right::after {
    left: -2.5rem;
    right: auto;
  }

  .story-path .chapter-block.is-left.story-card-pending,
  .story-path .chapter-block.is-right.story-card-pending {
    transform: translateY(1.5rem);
  }
}

.journey-path {
  display: grid;
  gap: 0;
  border: 1px solid var(--border);
}

.journey-step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}

.journey-step:last-child {
  border-bottom: none;
}

.journey-step:hover {
  background: rgba(15, 107, 74, 0.04);
}

.journey-step-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.7;
}

.journey-step h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.journey-pillar {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.journey-pillar-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(15, 107, 74, 0.25);
  margin-bottom: 0.5rem;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 1.25rem 0 1.25rem 1.5rem;
  margin: 2rem 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--charcoal);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.looking-ahead {
  background: rgba(15, 107, 74, 0.05);
  border: 1px solid rgba(15, 107, 74, 0.15);
  padding: 2.5rem;
}

/* —— Photo-led layouts —— */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.photo-mosaic .tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(26, 26, 26, 0.04);
  text-decoration: none;
  color: inherit;
  min-height: 180px;
}

.photo-mosaic .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.photo-mosaic .tile:hover img {
  transform: scale(1.04);
}

.photo-mosaic .tile-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.72));
  color: #faf8f5;
}

.photo-mosaic .tile-caption span {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}

.photo-mosaic .tile-caption strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.photo-mosaic .span-5 { grid-column: span 5; min-height: 280px; }
.photo-mosaic .span-7 { grid-column: span 7; min-height: 280px; }
.photo-mosaic .span-4 { grid-column: span 4; min-height: 220px; }
.photo-mosaic .span-6 { grid-column: span 6; min-height: 240px; }
.photo-mosaic .span-8 { grid-column: span 8; min-height: 300px; }
.photo-mosaic .span-3 { grid-column: span 3; min-height: 200px; }

.story-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: var(--canvas);
}

.story-strip.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.story-strip.reverse .story-strip-media {
  order: 2;
}

.story-strip-media {
  min-height: 320px;
  overflow: hidden;
  border-right: 1px solid var(--border);
}

.story-strip.reverse .story-strip-media {
  border-right: none;
  border-left: 1px solid var(--border);
}

.story-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-strip-body {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-strip-body h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.story-strip-body p {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.visual-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition: border-color 0.25s ease;
}

.visual-card:hover {
  border-color: rgba(15, 107, 74, 0.35);
}

.visual-card .visual-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.visual-card .visual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.visual-card:hover .visual-card-img img {
  transform: scale(1.04);
}

.visual-card .visual-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.visual-card .visual-card-body h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.cert-thumb {
  max-width: 160px;
  border: 1px solid var(--border);
}

@media (max-width: 991px) {
  .photo-mosaic .span-5,
  .photo-mosaic .span-7,
  .photo-mosaic .span-4,
  .photo-mosaic .span-6,
  .photo-mosaic .span-8,
  .photo-mosaic .span-3 {
    grid-column: span 12;
    min-height: 220px;
  }

  .story-strip,
  .story-strip.reverse {
    grid-template-columns: 1fr;
  }

  .story-strip.reverse .story-strip-media {
    order: 0;
    border-left: none;
    border-bottom: 1px solid var(--border);
  }

  .story-strip-media {
    min-height: 240px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .story-strip-body {
    padding: 1.75rem 1.5rem;
  }
}

.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.section-padding {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-padding-sm {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.card-editorial {
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--canvas);
  transition: border-color 0.2s;
}

.card-editorial:hover {
  border-color: rgba(15, 107, 74, 0.3);
}

.metric-box {
  border: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  background: var(--canvas);
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.65rem;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.3);
}

.timeline-item.major::before {
  width: 0.75rem;
  height: 0.75rem;
  left: -2.85rem;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 107, 74, 0.14);
}

.timeline-item {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-item:hover {
  transform: translateX(6px);
}

.timeline-item.major {
  background: rgba(15, 107, 74, 0.04);
  border: 1px solid rgba(15, 107, 74, 0.14);
  padding: 1.75rem 1.75rem 1.75rem 1.5rem;
  margin-left: -1.5rem;
  margin-bottom: 3rem;
}

.timeline-item.major::before {
  left: -1.35rem;
}

.timeline-media {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.timeline-media:hover {
  transform: scale(1.04);
  box-shadow: 0 0.75rem 1.5rem rgba(26, 26, 26, 0.12);
}

.sys-diagram {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.sys-node {
  border: 1px solid var(--charcoal);
  padding: 0.75rem 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  min-width: 90px;
}

.sys-line {
  width: 2rem;
  height: 1px;
  background: var(--charcoal);
}

.leadership-tab {
  width: 100%;
  text-align: left;
  border: none;
  border-top: 1px solid var(--border);
  background: transparent;
  padding: 1.5rem 0;
  transition: color 0.2s;
}

.leadership-tab.active {
  color: var(--accent);
}

.leadership-panel {
  border: 1px solid var(--border);
  padding: 2rem;
  min-height: 320px;
}

.filter-btn {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
}

.filter-btn.active {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.category-btn {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  padding: 0.5rem 1rem;
}

.category-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(15, 107, 74, 0.05);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  margin-top: 3rem;
}

.site-footer a {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.45);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.form-control-custom {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  padding: 0.75rem 0;
  font-size: 0.875rem;
}

.form-control-custom:focus {
  box-shadow: none;
  border-color: var(--accent);
  background: transparent;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(26, 26, 26, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--canvas);
  background: none;
  border: none;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-contain {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

.unburden-app-frame {
  background: #f6ebe4;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unburden-app-frame img {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 42rem);
  height: auto;
  object-fit: contain;
}

.ratio-portrait img {
  object-position: top;
}

/* —— Homepage redesign —— */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.2s ease;
}

.link-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.link-arrow:hover {
  gap: 0.85rem;
  color: #0d5a3e;
}

.link-arrow:hover::after {
  transform: translateX(5px);
}

.link-arrow-light {
  color: rgba(250, 248, 245, 0.85);
}

.link-arrow-light:hover {
  color: #fff;
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(15, 107, 74, 0.03), transparent 60%);
}

.proof-stat {
  padding: 1.5rem 1.25rem;
  border-right: 1px solid var(--border);
  height: 100%;
}

.proof-grid .col-lg-3:nth-child(4n) .proof-stat,
.proof-grid .col-6:nth-child(2n) .proof-stat {
  border-right: none;
}

@media (min-width: 992px) {
  .proof-grid .col-6:nth-child(2n) .proof-stat {
    border-right: 1px solid var(--border);
  }
  .proof-grid .col-lg-3:nth-child(4n) .proof-stat {
    border-right: none;
  }
}

.proof-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.proof-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

.foundation-grid {
  border: 1px solid var(--border);
}

.foundation-card {
  display: block;
  height: 100%;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  background: var(--canvas);
  transition: background 0.35s ease, transform 0.35s ease;
}

@media (min-width: 992px) {
  .foundation-grid .col-lg-3:last-child .foundation-card {
    border-right: none;
  }
  .foundation-grid .col-lg-3 .foundation-card {
    border-bottom: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .foundation-grid .col-md-6:nth-child(2n) .foundation-card {
    border-right: none;
  }
}

.foundation-card:hover {
  background: rgba(15, 107, 74, 0.04);
}

.foundation-num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.foundation-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.65rem;
  margin-bottom: 0.75rem;
}

.foundation-copy {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}

.work-feature {
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.work-feature-media {
  position: relative;
  height: 100%;
  min-height: 320px;
  background: rgba(26, 26, 26, 0.05);
}

.work-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.work-feature:hover .work-feature-media img {
  transform: scale(1.04);
}

.work-feature-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--canvas);
  color: var(--accent);
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--border);
}

.work-feature-body {
  padding: clamp(2rem, 4vw, 3rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--canvas);
  border-left: 1px solid var(--border);
}

@media (max-width: 991px) {
  .work-feature-body {
    border-left: none;
    border-top: 1px solid var(--border);
  }
}

.work-feature-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.1;
}

.work-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-meta li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-top: 1px solid var(--border);
}

.work-meta li:last-child {
  border-bottom: 1px solid var(--border);
}

.work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  background: var(--canvas);
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.work-card:hover {
  border-color: rgba(15, 107, 74, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.06);
  color: inherit;
}

.work-card-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.work-card-copy {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.section-dark {
  background:
    linear-gradient(145deg, #0c1210 0%, #141a17 45%, #0a0f0d 100%);
  color: #faf8f5;
}

.about-visual {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.75rem;
  align-items: stretch;
}

.about-visual figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 245, 0.12);
  background: #0e1512;
  transition: border-color 0.35s ease, box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.about-visual figure:hover img,
.about-visual figure.is-lit img {
  transform: scale(1.05);
  filter: brightness(1.06);
}

.about-visual figure.is-lit {
  border-color: rgba(197, 164, 106, 0.55);
  box-shadow: 0 0 0 1px rgba(197, 164, 106, 0.25), 0 16px 36px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
  z-index: 1;
}

.about-visual-main {
  min-height: 22rem;
}

.about-visual-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
}

.about-visual-stack figure {
  min-height: 10.5rem;
}

.about-visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.85rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: #faf8f5;
  background: linear-gradient(transparent, rgba(10, 15, 13, 0.9));
}

.about-cap-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-cap-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.75);
}

.about-keyword {
  font-style: italic;
  font-weight: 600;
  color: #faf8f5;
  border-bottom: 1px solid rgba(197, 164, 106, 0.55);
  cursor: default;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.about-keyword.is-active,
.about-keyword:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.about-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.about-trait {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197, 164, 106, 0.35);
  background: transparent;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.about-trait:hover,
.about-trait.is-active {
  background: rgba(197, 164, 106, 0.12);
  border-color: rgba(197, 164, 106, 0.7);
  color: #f5e6c8;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-visual-main {
    min-height: 16rem;
  }

  .about-visual-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .about-visual-stack figure {
    min-height: 9rem;
  }
}

.text-light-muted {
  color: rgba(250, 248, 245, 0.62) !important;
}

.path-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid rgba(250, 248, 245, 0.12);
}

.path-rail-light {
  border: 1px solid var(--border);
  background: var(--canvas);
}

.path-rail-light .path-node {
  border-right: 1px solid var(--border);
  color: var(--charcoal);
}

.path-rail-light .path-node:hover {
  background: rgba(15, 107, 74, 0.05);
}

.path-rail-light .path-node-num {
  color: var(--accent);
}

.path-rail-light .path-node p {
  color: var(--muted);
}

.path-rail-light .path-node::before {
  background: var(--accent);
}

.path-node {
  padding: 1.75rem 1.25rem;
  border-right: 1px solid rgba(250, 248, 245, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}

.path-node:last-child {
  border-right: none;
}

.path-node:hover {
  background: rgba(15, 107, 74, 0.2);
  color: inherit;
}

.path-node-num {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.path-node h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.path-node p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.55);
  margin: 0;
  line-height: 1.4;
}

.beyond-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.beyond-item {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.beyond-item:hover {
  border-color: rgba(15, 107, 74, 0.35);
  color: inherit;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.08);
}

.beyond-item-media {
  position: relative;
  height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--accent);
  background:
    radial-gradient(circle at 25% 20%, rgba(15, 107, 74, 0.12), transparent 38%),
    linear-gradient(145deg, #f4f0e9, #e8e2d8);
}

.beyond-pictogram {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 3.35rem;
  line-height: 1;
  filter: saturate(0.82);
  transform-origin: center;
}

.beyond-pictogram-math {
  color: var(--accent);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  filter: none;
}

.math-floater,
.music-floater {
  position: absolute;
  z-index: 1;
  color: var(--gold);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.math-floater-a {
  top: 1.2rem;
  left: calc(50% - 3.4rem);
  font-size: 1.25rem;
  animation: compactFloat 3s ease-in-out infinite;
}

.math-floater-b {
  right: calc(50% - 3.8rem);
  bottom: 1.25rem;
  font-size: 1rem;
  animation: compactFloat 3s ease-in-out infinite 0.7s;
}

.beyond-item:hover .beyond-pictogram-math {
  animation: mathPulse 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes mathPulse {
  50% { transform: scale(1.15) rotate(-5deg); }
}

.football-ball {
  animation: footballBob 3s ease-in-out infinite;
}

.football-ground {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  width: 3.5rem;
  height: 0.35rem;
  border-radius: 50%;
  background: rgba(15, 107, 74, 0.15);
  transform: translateX(-50%);
  animation: groundPulse 3s ease-in-out infinite;
}

.beyond-item:hover .football-ball {
  animation: footballKick 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes footballBob {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-5px) rotate(8deg); }
}

@keyframes footballKick {
  0% { transform: translateX(0) rotate(0); }
  50% { transform: translate(16px, -10px) rotate(80deg); }
  100% { transform: translateX(0) rotate(0); }
}

@keyframes groundPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scaleX(0.75); opacity: 0.35; }
}

.badminton-racket {
  animation: badmintonBob 3.2s ease-in-out infinite;
}

.beyond-item:hover .badminton-racket {
  animation: badmintonSwing 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes badmintonBob {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-4px) rotate(3deg); }
}

@keyframes badmintonSwing {
  0% { transform: rotate(-8deg); }
  50% { transform: rotate(18deg) scale(1.08); }
  100% { transform: rotate(-3deg); }
}

.guitar-graphic {
  animation: guitarSway 3.5s ease-in-out infinite;
}

.beyond-item:hover .guitar-graphic {
  animation: guitarStrum 0.65s ease-in-out;
}

.music-floater-a {
  top: 1.2rem;
  left: calc(50% - 3.8rem);
  font-size: 1.3rem;
  animation: compactFloat 2.8s ease-in-out infinite;
}

.music-floater-b {
  right: calc(50% - 3.8rem);
  bottom: 1.25rem;
  font-size: 1.15rem;
  animation: compactFloat 2.8s ease-in-out infinite 0.8s;
}

@keyframes guitarSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg) translateY(-3px); }
}

@keyframes guitarStrum {
  0%, 100% { transform: rotate(-3deg); }
  35% { transform: rotate(10deg) scale(1.08); }
  65% { transform: rotate(-8deg) scale(1.05); }
}

@keyframes compactFloat {
  0%, 100% { transform: translateY(0); opacity: 0.65; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.mini-cube {
  position: relative;
  z-index: 1;
  width: 3.7rem;
  height: 3.7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 4px;
  border-radius: 5px;
  background: #202420;
  box-shadow: 0 8px 18px rgba(26, 26, 26, 0.14);
  transform: rotate(-7deg);
  animation: cubeBreathe 4s ease-in-out infinite;
}

.mini-cube i {
  display: block;
  border-radius: 2px;
}

.mini-cube i:nth-child(1),
.mini-cube i:nth-child(6) { background: #c85d4b; }
.mini-cube i:nth-child(2),
.mini-cube i:nth-child(8) { background: #d7b44a; }
.mini-cube i:nth-child(3),
.mini-cube i:nth-child(7) { background: #f0ede5; }
.mini-cube i:nth-child(4),
.mini-cube i:nth-child(9) { background: #2a6f7a; }
.mini-cube i:nth-child(5) { background: #0f6b4a; }

.beyond-item:hover .mini-cube {
  animation: cubeTurn 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cubeBreathe {
  0%, 100% { transform: rotate(-7deg) translateY(0); }
  50% { transform: rotate(-7deg) translateY(-4px); }
}

@keyframes cubeTurn {
  0% { transform: rotate(-7deg) scale(1); }
  50% { transform: rotate(12deg) scale(1.08); }
  100% { transform: rotate(-7deg) scale(1); }
}

.beyond-lego {
  position: relative;
  width: 6.5rem;
  height: 4.8rem;
  transform: scale(0.82);
}

.beyond-lego-brick {
  position: absolute;
  border-radius: 3px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.beyond-lego-brick::before,
.beyond-lego-brick::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 10px;
  height: 5px;
  border-radius: 2px 2px 1px 1px;
  background: inherit;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.beyond-lego-b1 {
  width: 4.2rem;
  height: 1.35rem;
  left: 0.4rem;
  bottom: 0.35rem;
  background: #0f6b4a;
  animation: legoFloat 3.2s ease-in-out infinite;
}

.beyond-lego-b1::before { left: 8px; }
.beyond-lego-b1::after { left: 28px; }

.beyond-lego-b2 {
  width: 2.6rem;
  height: 1.2rem;
  left: 4.4rem;
  bottom: 0.45rem;
  background: #c5a46a;
  animation: legoFloat 3.2s ease-in-out infinite 0.25s;
}

.beyond-lego-b2::before { left: 6px; }
.beyond-lego-b2::after { left: 20px; display: none; }

.beyond-lego-b3 {
  width: 3.4rem;
  height: 1.25rem;
  left: 1.4rem;
  bottom: 1.85rem;
  background: #2a6f7a;
  animation: legoFloat 3.2s ease-in-out infinite 0.45s;
}

.beyond-lego-b3::before { left: 8px; }
.beyond-lego-b3::after { left: 24px; }

.beyond-lego-b4 {
  width: 2.2rem;
  height: 1.15rem;
  left: 3.6rem;
  bottom: 3.25rem;
  background: #8b4a3a;
  animation: legoFloat 3.2s ease-in-out infinite 0.65s;
}

.beyond-lego-b4::before { left: 6px; }
.beyond-lego-b4::after { display: none; }

.beyond-item:hover .beyond-lego-brick {
  animation-duration: 1.6s;
}

@keyframes legoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.beyond-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.35rem 1.4rem;
  flex: 1;
}

.beyond-item-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.beyond-item-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}

.beyond-item-detail {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.beyond-item-arrow {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.beyond-item:hover .beyond-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 991px) {
  .beyond-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .beyond-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .beyond-lego-brick,
  .mini-cube,
  .football-ball,
  .badminton-racket,
  .guitar-graphic,
  .math-floater,
  .music-floater {
    animation: none;
  }

  .beyond-item:hover {
    transform: none;
  }
}

.beyond-chip {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.25rem;
  background: var(--canvas);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}

.beyond-chip:hover {
  background: rgba(15, 107, 74, 0.05);
  color: inherit;
}

.beyond-chip-label {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.beyond-chip-detail {
  font-size: 0.8rem;
  color: var(--muted);
}

.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(15, 107, 74, 0.08), transparent 60%);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: end;
  }
}

.footer-name {
  font-size: 1.5rem;
  margin: 0;
}

/* Survey / data blocks */
.data-panel {
  border: 1px solid var(--border);
  background: var(--canvas);
}

.data-stat {
  padding: 1.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.data-stat:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .data-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .data-stat {
    border-bottom: none;
    border-right: 1px solid var(--border);
  }
  .data-stat:last-child {
    border-right: none;
  }
}

.data-stat-value {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.data-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
  margin: 0;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  display: inline-block;
  transition: transform 0.25s ease;
}

@media (max-width: 991px) {
  .path-rail {
    grid-template-columns: 1fr;
  }
  .path-node {
    border-right: none;
    border-bottom: 1px solid rgba(250, 248, 245, 0.12);
  }
  .path-node:last-child {
    border-bottom: none;
  }
  .path-rail-light .path-node {
    border-bottom: 1px solid var(--border);
  }
  .section-dark .showcase-body {
    border-left: none;
    border-top: 1px solid rgba(250, 248, 245, 0.12);
  }
  .proof-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0.5rem;
  }
  .proof-grid .col-6:nth-last-child(-n + 2) .proof-stat {
    border-bottom: none;
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding-top: 3.75rem;
    min-height: auto;
    padding-bottom: 3.5rem;
    justify-content: flex-start;
  }

  .hero-inner {
    padding-top: 0.75rem;
  }

  .hero-row {
    min-height: auto;
  }

  .hero-copy {
    gap: 1.15rem;
    padding-right: 0;
  }

  .hero-copy .hero-title {
    margin-bottom: 0.35rem;
  }

  .hero-portrait {
    margin-inline: auto;
    max-width: min(100%, 26rem);
  }

  .hero-roles {
    text-align: left !important;
  }

  .hero-scroll {
    margin-top: 2rem;
  }
}

/* —— Interactive homepage v2 —— */
.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(15, 107, 74, 0.09), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: multiply;
}

.cursor-glow.is-on {
  opacity: 1;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 22vw, 16rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: rgba(26, 26, 26, 0.035);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-identity {
  display: inline-flex;
  align-items: stretch;
  align-self: flex-start;
  min-height: 3rem;
  border: none;
  background: transparent;
}

.hero-identity-label {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 0.75rem 0.75rem 0;
  border-right: none;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-identity-role {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: clamp(10.5rem, 21vw, 14rem);
  padding: 0.55rem 0 0.65rem 0.35rem;
  overflow: hidden;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  line-height: 1;
  color: var(--accent);
}

.hero-identity-role::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform-origin: left;
  animation: identityLine 2.4s ease-in-out infinite;
}

.hero-identity-role strong {
  font-weight: 500;
  white-space: nowrap;
}

.hero-identity .typed-cursor {
  width: 2px;
  height: 1.25rem;
  margin-left: 0.2rem;
  background: var(--accent);
  animation: blink 0.9s step-end infinite;
}

@keyframes identityLine {
  0%, 100% { transform: scaleX(0.35); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}

.hero-portrait-frame {
  position: absolute;
  inset: 0.85rem;
  border: 1px solid rgba(250, 248, 245, 0.35);
  pointer-events: none;
  z-index: 2;
  transition: inset 0.5s ease;
}

.hero-portrait:hover .hero-portrait-frame {
  inset: 1.15rem;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.section-index {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 1px solid rgba(15, 107, 74, 0.3);
  padding: 0.3rem 0.55rem;
}

.section-index-light {
  color: var(--gold);
  border-color: rgba(197, 164, 106, 0.4);
}

.proof-stat {
  position: relative;
  text-align: center;
  transition: transform 0.35s ease;
}

/* Jayveer-style grouped impact metrics */
.impact-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  gap: 1px;
}

.impact-metric {
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
  background: var(--canvas);
  text-decoration: none;
  color: inherit;
  min-height: 11rem;
  transition: background 0.35s ease, transform 0.35s ease;
}

.impact-metric:hover {
  background: rgba(15, 107, 74, 0.04);
  color: inherit;
}

.impact-number {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(3.25rem, 6.5vw, 4.75rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--accent);
  margin: 0 0 0.85rem;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums lining-nums;
}

.impact-number span {
  display: inline-block;
  font-family: inherit;
  font-weight: inherit;
}

.impact-title {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.impact-detail {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  margin-top: auto;
}

@media (max-width: 991px) {
  .impact-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .impact-metrics {
    grid-template-columns: 1fr;
  }
}

/* Foundations interactive */
.foundation-interactive {
  border: 1px solid var(--border);
  background: var(--canvas);
  overflow: hidden;
}

.foundation-nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
  height: 100%;
}

.foundation-tab {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.35rem 1.5rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background 0.3s ease, padding-left 0.3s ease;
}

.foundation-tab:last-child {
  border-bottom: none;
}

.foundation-tab:hover {
  background: rgba(15, 107, 74, 0.04);
}

.foundation-tab.active {
  background: rgba(15, 107, 74, 0.07);
  padding-left: 1.85rem;
}

.foundation-tab .foundation-num {
  margin-bottom: 0;
  padding-top: 0.15rem;
}

.foundation-tab-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.foundation-tab-text strong {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.foundation-tab-text em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--muted);
}

.foundation-stage {
  position: relative;
  min-height: 360px;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(15, 107, 74, 0.06), transparent 55%);
}

.foundation-panel {
  display: none;
  animation: panelIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.foundation-panel.active {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.foundation-stage-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.foundation-graphic {
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.pillar-media {
  position: relative;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  background: #f3f1ed;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-media img {
  width: 100%;
  height: auto;
  max-height: min(28rem, 60vh);
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.foundation-panel.active .pillar-media img {
  transform: scale(1.02);
}

.pillar-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(15, 107, 74, 0.08), rgba(250, 248, 245, 0.4)),
    var(--canvas);
}

.pillar-card-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.pillar-card-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  color: var(--charcoal);
}

.pillar-card-sub {
  font-size: 0.85rem;
  color: var(--muted);
}

.pillar-card-quote {
  background:
    linear-gradient(135deg, rgba(197, 164, 106, 0.12), rgba(250, 248, 245, 0.4)),
    var(--canvas);
}

.pillar-card-quote .pillar-card-title {
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.pillar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pillar-chips span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(15, 107, 74, 0.28);
  background: rgba(15, 107, 74, 0.05);
  padding: 0.35rem 0.7rem;
}

.pillar-chips-lg {
  gap: 1.25rem;
}

.pillar-chips-lg span {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.15rem 2rem;
  border-width: 1.5px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.pillar-chips-lg span:hover {
  border-color: var(--accent);
  background: rgba(15, 107, 74, 0.09);
  transform: translateY(-2px);
}

.fx-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.fx-orbit {
  fill: none;
  stroke: rgba(15, 107, 74, 0.25);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
  animation: orbitSpin 18s linear infinite;
  transform-origin: 160px 100px;
}

.fx-orbit-2 {
  animation-duration: 12s;
  animation-direction: reverse;
  stroke: rgba(15, 107, 74, 0.4);
}

.fx-core {
  fill: var(--accent);
  animation: corePulse 2.4s ease-in-out infinite;
}

.fx-dot {
  fill: var(--gold);
}

.fx-block {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  animation: blockFloat 4s ease-in-out infinite;
}

.fx-block-2 { animation-delay: 0.4s; stroke: rgba(15, 107, 74, 0.55); }
.fx-block-3 { animation-delay: 0.8s; stroke: var(--gold); }

.fx-line {
  fill: none;
  stroke: rgba(26, 26, 26, 0.25);
  stroke-width: 1.5;
}

.fx-wave {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: waveDraw 2.5s ease forwards infinite alternate;
}

.fx-poly {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  animation: polyPulse 3s ease-in-out infinite;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes corePulse {
  0%, 100% { r: 12; opacity: 1; }
  50% { r: 15; opacity: 0.75; }
}

@keyframes blockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes waveDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes polyPulse {
  0%, 100% { transform: scale(1); transform-origin: 160px 120px; }
  50% { transform: scale(1.04); transform-origin: 160px 120px; }
}

/* Project showcase */
.showcase-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.showcase-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  background: var(--canvas);
  color: var(--charcoal);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.showcase-btn-icon {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(15, 107, 74, 0.05);
  transform: scale(1.06);
}

#showcase-prev:hover .showcase-btn-icon {
  transform: translateX(-4px);
}

#showcase-next:hover .showcase-btn-icon {
  transform: translateX(4px);
}

.showcase-btn-dark {
  border-color: rgba(250, 248, 245, 0.2);
  background: transparent;
  color: #faf8f5;
}

.showcase-btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(197, 164, 106, 0.08);
}

.section-dark .showcase-viewport {
  border-top-color: rgba(250, 248, 245, 0.12);
  border-bottom-color: rgba(250, 248, 245, 0.12);
}

.section-dark .showcase-body {
  background: #0e1512;
  border-left-color: rgba(250, 248, 245, 0.12);
  color: #faf8f5;
}

.section-dark .showcase-body .text-muted-custom {
  color: rgba(250, 248, 245, 0.62) !important;
}

.section-dark .showcase-title {
  color: #faf8f5;
}

.section-dark .work-meta li {
  color: rgba(250, 248, 245, 0.55);
  border-top-color: rgba(250, 248, 245, 0.12);
}

.section-dark .work-meta li:last-child {
  border-bottom-color: rgba(250, 248, 245, 0.12);
}

.section-dark .showcase-media-tint {
  background:
    linear-gradient(145deg, rgba(15, 107, 74, 0.2), rgba(14, 21, 18, 0.95)),
    #0e1512;
}

.section-dark .showcase-dot {
  background: rgba(250, 248, 245, 0.2);
}

.section-dark .showcase-dot.active {
  background: var(--gold);
}

.showcase-counter {
  min-width: 4.5rem;
  text-align: center;
}

.showcase-viewport {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.showcase-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 0;
  opacity: 0.35;
  transition: opacity 0.5s ease;
}

.showcase-slide.is-active {
  opacity: 1;
}

.showcase-media {
  position: relative;
  overflow: hidden;
  background: rgba(26, 26, 26, 0.05);
  min-height: 280px;
  max-height: 360px;
  aspect-ratio: 4 / 3;
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.showcase-slide.is-active .showcase-media img {
  transform: scale(1.03);
}

.showcase-media.showcase-media-contain {
  aspect-ratio: auto;
  max-height: none;
  min-height: 22rem;
  height: clamp(22rem, 55vw, 30rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  background: #f6ebe4;
}

.showcase-media.showcase-media-contain img {
  width: auto !important;
  height: 100% !important;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center;
  transform: none !important;
}

.showcase-media-tint {
  background:
    linear-gradient(145deg, rgba(15, 107, 74, 0.08), rgba(250, 248, 245, 0.9)),
    var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(15, 107, 74, 0.06), rgba(250, 248, 245, 0.95)),
    #fff;
  padding: 2.5rem;
}

.showcase-media-logo img {
  width: min(78%, 320px);
  height: auto;
  max-height: 4.5rem;
  object-fit: contain;
  transform: none !important;
}

.showcase-abstract {
  width: min(80%, 340px);
}

.showcase-credential {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  width: min(88%, 360px);
  padding: 1.5rem;
}

.showcase-cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-dark .showcase-cred-label {
  color: var(--gold);
}

.showcase-cred-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--charcoal);
}

.section-dark .showcase-cred-title {
  color: #faf8f5;
}

.showcase-cred-sub {
  font-size: 0.9rem;
  color: var(--muted);
}

.section-dark .showcase-cred-sub {
  color: rgba(250, 248, 245, 0.55);
}

.showcase-body {
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border);
  background: var(--canvas);
}

.showcase-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.showcase-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.showcase-dot {
  width: 2rem;
  height: 3px;
  border: none;
  padding: 0;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.showcase-dot.active {
  background: var(--accent);
  width: 2.75rem;
}

.path-node {
  position: relative;
}

.path-node::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.path-node.is-active::before,
.path-node:hover::before {
  transform: scaleX(1);
}

@media (max-width: 991px) {
  .foundation-nav {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .showcase-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase-media {
    max-height: 260px;
    aspect-ratio: 16 / 10;
  }

  .showcase-media.showcase-media-contain {
    max-height: none;
    height: min(28rem, 78vw);
    aspect-ratio: auto;
  }

  .showcase-body {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .hero-watermark {
    top: 28%;
  }

  .cursor-glow {
    display: none;
  }

  .proof-ring {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-animate {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
  .cursor-glow {
    display: none;
  }
}

/* —— Anti-bullying comic flipbook (Heyzine-style open book) —— */
.flipbook-section {
  padding-bottom: 0;
}

.flipbook-theatre {
  margin-top: 1.5rem;
  background: var(--canvas);
  padding: 2.5rem 1rem 2rem;
  border-top: 1px solid var(--border);
}

.flipbook-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(28rem, 68vh, 40rem);
  padding: 1rem 0 1.5rem;
}

#comic-flipbook {
  margin: 0 auto;
  box-shadow:
    0 2.5rem 4rem rgba(26, 26, 26, 0.14),
    0 0.5rem 1.25rem rgba(26, 26, 26, 0.1);
}

#comic-flipbook .flipbook-page {
  background: #f4efe6;
}

#comic-flipbook .flipbook-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.flipbook-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.flipbook-tool-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--charcoal);
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.flipbook-tool-btn:hover:not(:disabled) {
  background: rgba(26, 26, 26, 0.05);
  border-color: rgba(26, 26, 26, 0.3);
}

.flipbook-tool-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.flipbook-tool-page {
  min-width: 5.5rem;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.flipbook-hint {
  margin: 0.85rem 0 0;
  text-align: center;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .flipbook-theatre {
    padding: 1.5rem 0.75rem 1.75rem;
  }

  .flipbook-stage {
    min-height: 24rem;
  }
}

.photo-slot,
.video-slot {
  background: rgba(26, 26, 26, 0.03);
  border: 1px dashed var(--border);
  min-height: 12rem;
}

.photo-slot-inner,
.video-slot-inner {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
}

.video-slot {
  aspect-ratio: 16 / 9;
  min-height: 16rem;
}

.video-slot-inner {
  min-height: 16rem;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .beliefs-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.belief-card {
  padding: 1.35rem 1.25rem;
  border-top: 2px solid var(--accent, #0F6B4A);
  background: rgba(15, 107, 74, 0.03);
}

.belief-title {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.belief-body {
  font-size: 0.95rem;
  line-height: 1.55;
}


