:root {
  --ink: #111111;
  --muted: #6f6f6f;
  --paper: #f6f2eb;
  --gold: #c99a3f;
  --deep: #0b1d20;
  --line: #e6ded1;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 72px;
}

.editorial-navbar {
  background: rgba(247, 243, 238, 0.94);
  border-bottom: 0;
  min-height: 72px;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar.is-scrolled {
  background: rgba(247, 243, 238, 0.98);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(14px);
}

.navbar-brand {
  align-items: center;
  color: #17120e;
  display: inline-flex;
  gap: 12px;
  min-width: 260px;
}

.navbar-brand:hover {
  color: #17120e;
}

.brand-monogram {
  align-items: center;
  animation: brandBadgeGlow 6s ease-in-out infinite;
  background: linear-gradient(135deg, #df531b 0%, #f3a560 48%, #c99a3f 100%);
  background-size: 180% 180%;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(201, 105, 40, 0.24);
  color: #fff9ef;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  position: relative;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  width: 42px;
}

.navbar-brand:hover .brand-monogram {
  box-shadow: 0 12px 25px rgba(201, 105, 40, 0.36);
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
}

@keyframes brandBadgeGlow {
  0%,
  100% {
    background-position: 0% 50%;
    box-shadow: 0 8px 18px rgba(201, 105, 40, 0.24);
  }

  50% {
    background-position: 100% 50%;
    box-shadow: 0 11px 26px rgba(223, 83, 27, 0.38);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-monogram {
    animation: none;
  }
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.navbar-nav {
  gap: 28px;
}

.nav-link {
  color: rgba(23, 18, 14, 0.72);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  padding: 26px 0 !important;
  position: relative;
}

.nav-link::after {
  background: #df531b;
  border-radius: 999px;
  bottom: 18px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.nav-link.active,
.nav-link:hover {
  color: #17120e !important;
}

.nav-link.active::after,
.nav-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta {
  background: #df531b;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  margin-left: 46px;
  min-width: 126px;
  padding: 13px 24px;
  text-decoration: none;
}

.nav-cta:hover {
  background: #c94716;
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(23, 18, 14, 0.18);
}

.hero-showcase {
  background:
    radial-gradient(circle at 90% 18%, rgba(223, 83, 27, 0.13), transparent 28%),
    #f3ede3;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  padding: 82px 0 86px;
  position: relative;
}

.hero-showcase .container {
  position: relative;
}

.hero-showcase .container::before {
  animation: heroOpeningSweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
  background: linear-gradient(
    90deg,
    rgba(243, 237, 227, 0.96) 0%,
    rgba(243, 237, 227, 0.92) 48%,
    rgba(243, 237, 227, 0.12) 82%,
    rgba(243, 237, 227, 0) 100%
  );
  content: "";
  inset: -24px auto -24px -80px;
  pointer-events: none;
  position: absolute;
  width: min(58vw, 720px);
  z-index: 3;
}

.hero-showcase::before,
.hero-showcase::after {
  border-radius: 999px;
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero-showcase::before {
  animation:
    heroGlowEnter 1.2s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroGlowPulse 9s ease-in-out 1.2s infinite;
  background: radial-gradient(circle, rgba(223, 83, 27, 0.18), transparent 68%);
  height: 360px;
  left: -140px;
  top: 40px;
  width: 360px;
}

.hero-showcase::after {
  animation:
    heroGlowEnter 1.4s cubic-bezier(0.22, 1, 0.36, 1) both,
    heroGlowPulse 11s ease-in-out 1.4s infinite reverse;
  background: radial-gradient(circle, rgba(136, 174, 234, 0.16), transparent 70%);
  bottom: -120px;
  height: 320px;
  right: -120px;
  width: 320px;
}

.hero-kicker {
  align-items: center;
  animation: heroTextLift 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  color: #df531b;
  display: flex;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 2.4px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.hero-kicker::before {
  background: #df531b;
  content: "";
  height: 2px;
  width: 34px;
}

.editorial-hero-title {
  animation: heroTextLift 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
  color: #111;
  font-family: "Baskerville Old Face", Garamond, "Palatino Linotype", serif;
  font-size: clamp(2.75rem, 5.2vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.96;
  margin-bottom: 22px;
  max-width: 760px;
}

.editorial-hero-title span {
  color: #df531b;
  display: block;
}

.editorial-hero-role {
  animation: heroTextLift 1s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
  color: #2b211b;
  font-family: "Palatino Linotype", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 18px;
  max-width: 620px;
}

.editorial-hero-copy {
  animation: heroTextLift 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
  color: rgba(23, 18, 14, 0.72);
  font-size: 1.05rem;
  line-height: 1.68;
  margin-bottom: 38px;
  max-width: 700px;
}

.editorial-hero-copy-long {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  max-width: 640px;
}

.hero-cta-row {
  animation: heroButtonRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-primary,
.hero-secondary {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  gap: 10px;
  min-height: 62px;
  padding: 0 28px;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    background 0.22s ease;
}

.hero-primary {
  background: #df531b;
  box-shadow: 0 16px 32px rgba(223, 83, 27, 0.18);
  color: #fff;
}

.hero-primary:hover {
  background: #c94716;
  color: #fff;
  transform: translateY(-3px);
}

.hero-secondary {
  border: 2px solid rgba(23, 18, 14, 0.12);
  color: #17120e;
}

.hero-secondary em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
}

.hero-secondary:hover {
  border-color: rgba(223, 83, 27, 0.42);
  color: #df531b;
  transform: translateY(-3px);
}

.editorial-portrait {
  animation: heroPortraitIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
  display: flex;
  justify-content: center;
  padding: 28px 0;
}

.portrait-card {
  animation: heroPortraitFloat 8s ease-in-out infinite;
  background: #df531b;
  border: 4px solid #88aeea;
  border-radius: 44px;
  box-shadow: 0 34px 90px rgba(83, 54, 32, 0.16);
  max-width: 520px;
  padding: 34px 22px 22px;
  position: relative;
  transform: rotate(-2.5deg);
  width: 100%;
}

.portrait-card::before {
  animation: heroFrameSweep 1.6s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%) skewX(-14deg);
  z-index: 2;
}

.portrait-card img {
  background: #efefef;
  border-radius: 28px;
  display: block;
  filter: grayscale(0%);
  height: 540px;
  object-fit: cover;
  object-position: center top;
  transition: filter 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.portrait-card:hover img {
  filter: grayscale(100%);
  transform: scale(1.025);
}

.portrait-card span {
  animation: heroBadgeDrift 6.5s ease-in-out infinite;
  background: #111;
  border-radius: 999px;
  bottom: 18px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  left: 50%;
  letter-spacing: 1.2px;
  padding: 12px 22px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

@keyframes heroTextLift {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(34px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPortraitIn {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translateX(60px) scale(0.94) rotate(3deg);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1) rotate(0);
  }
}

@keyframes heroButtonRise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }

  65% {
    opacity: 1;
    transform: translateY(-4px) scale(1.02);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroPortraitFloat {
  0%,
  100% {
    transform: rotate(-2.5deg) translateY(0);
  }

  50% {
    transform: rotate(-2.5deg) translateY(-10px);
  }
}

@keyframes heroBadgeDrift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@keyframes heroOpeningSweep {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes heroFrameSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-14deg);
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(140%) skewX(-14deg);
  }
}

@keyframes heroGlowEnter {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

.profile-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 176, 124, 0.34), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(85, 123, 189, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f2ea 0%, #efe6d8 100%);
  border-top: 1px solid rgba(23, 18, 14, 0.08);
  overflow: hidden;
  padding: 96px 0 104px;
  position: relative;
}

.profile-stage {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1080px;
  position: relative;
}

.profile-media {
  position: relative;
}

.profile-orbit {
  animation: orbitFloat 14s ease-in-out infinite;
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 38px;
  inset: 24px -18px -24px 18px;
  position: absolute;
}

.profile-orbit::before,
.profile-orbit::after {
  border-radius: 999px;
  content: "";
  position: absolute;
}

.profile-orbit::before {
  background: rgba(223, 83, 27, 0.16);
  height: 88px;
  right: -18px;
  top: 34px;
  width: 88px;
}

.profile-orbit::after {
  background: rgba(23, 18, 14, 0.9);
  bottom: 34px;
  height: 14px;
  left: -12px;
  width: 74px;
}

.profile-portrait-shell {
  background: linear-gradient(145deg, #18120d 0%, #33261b 100%);
  border-radius: 38px;
  box-shadow: 0 34px 90px rgba(58, 38, 25, 0.18);
  overflow: visible;
  padding: 20px;
  position: relative;
  transform: rotate(-2deg);
  transition: box-shadow 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-portrait-shell::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 28px;
  content: "";
  inset: 20px;
  pointer-events: none;
  position: absolute;
}

.profile-portrait-shell img {
  border-radius: 28px;
  display: block;
  filter: saturate(1.22) contrast(1.05) brightness(1.03);
  height: 610px;
  object-fit: cover;
  object-position: center top;
  position: relative;
  transition: filter 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
  z-index: 1;
}

.profile-portrait-shell:hover img {
  filter: saturate(1.34) contrast(1.08) brightness(1.06);
  transform: scale(1.025);
}

.profile-portrait-shell:hover {
  box-shadow: 0 42px 96px rgba(223, 83, 27, 0.24), 0 22px 48px rgba(58, 38, 25, 0.2);
  transform: rotate(0deg) translateY(-8px);
}

.profile-floating-card {
  animation: cardFloat 6s ease-in-out infinite;
  background: rgba(255, 248, 240, 0.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 24px;
  bottom: 24px;
  box-shadow: 0 24px 48px rgba(33, 22, 15, 0.16);
  left: -32px;
  max-width: 280px;
  padding: 22px 22px 20px;
  position: absolute;
  z-index: 2;
}

.profile-story {
  display: grid;
  gap: 20px;
  position: relative;
}

.profile-floating-card span,
.profile-insight-card span {
  color: #df531b;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.profile-floating-card strong {
  color: #111;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}

.profile-floating-card p {
  color: rgba(23, 18, 14, 0.75);
  font-size: 0.98rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.profile-story-panel {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 34px;
  box-shadow: 0 22px 54px rgba(74, 52, 34, 0.08);
  padding: 32px 28px;
  position: relative;
}

.profile-story-panel::after {
  background: linear-gradient(90deg, #df531b, rgba(223, 83, 27, 0));
  border-radius: 999px;
  content: "";
  height: 4px;
  left: 28px;
  position: absolute;
  top: 0;
  width: 120px;
}

.profile-story-panel h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 5vw, 4.65rem);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 22px;
}

.profile-lead {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.45;
  margin-bottom: 14px;
  max-width: 760px;
}

.profile-body {
  color: rgba(23, 18, 14, 0.78);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 0;
  max-width: 760px;
}

.profile-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-chip-row span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 999px;
  color: #17120e;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 12px 18px;
  text-transform: uppercase;
}

.profile-card-row {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}

.profile-insight-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(79, 56, 34, 0.06);
  min-height: 260px;
  padding: 24px 22px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.profile-education-head {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.profile-education-title span {
  margin-bottom: 8px;
}

.profile-education-title h3 {
  margin-bottom: 0;
}

.profile-insight-card:hover {
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 26px 58px rgba(79, 56, 34, 0.12);
  transform: translateY(-6px);
}

.profile-insight-icon {
  align-items: center;
  background: #df531b;
  border-radius: 20px;
  color: #fff;
  display: inline-flex;
  font-size: 1.3rem;
  height: 62px;
  justify-content: center;
  margin-bottom: 22px;
  width: 62px;
}

.profile-insight-icon-dark {
  background: #17120e;
}

.profile-insight-card h3 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 12px;
}

.profile-insight-card p {
  color: rgba(23, 18, 14, 0.76);
  font-size: 0.98rem;
  line-height: 1.58;
  margin-bottom: 0;
}

.profile-education-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.52)),
    linear-gradient(120deg, rgba(223, 83, 27, 0.08), rgba(85, 123, 189, 0.06));
  overflow: hidden;
}

.profile-education-card::before {
  animation: educationGlow 8s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(223, 83, 27, 0.18), transparent);
  content: "";
  height: 1px;
  left: -30%;
  position: absolute;
  right: -30%;
  top: 0;
}

.education-stack {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.education-entry {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 22px;
  overflow: hidden;
  padding: 22px 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.education-entry::before {
  background: linear-gradient(180deg, #df531b, rgba(223, 83, 27, 0.22));
  border-radius: 999px;
  content: "";
  height: 64px;
  left: 0;
  position: absolute;
  top: 18px;
  width: 4px;
}

.education-entry:hover {
  border-color: rgba(223, 83, 27, 0.24);
  box-shadow: 0 18px 36px rgba(79, 56, 34, 0.08);
  transform: translateY(-4px);
}

.education-entry small {
  color: #df531b;
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding-left: 14px;
  text-transform: uppercase;
}

.education-entry h4 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 0;
  padding-left: 14px;
}

.education-entry p {
  color: rgba(23, 18, 14, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
  margin-bottom: 0;
  margin-top: 8px;
  padding-left: 14px;
}

.education-entry-accent {
  background: linear-gradient(145deg, rgba(23, 18, 14, 0.95), rgba(49, 37, 27, 0.94));
  border-color: rgba(255, 255, 255, 0.08);
}

.education-entry-accent::before {
  background: linear-gradient(180deg, #ffb07c, rgba(255, 176, 124, 0.3));
}

.education-entry-accent h4,
.education-entry-accent p {
  color: rgba(255, 255, 255, 0.92);
}

@keyframes educationGlow {
  0% {
    transform: translateX(-18%);
  }

  100% {
    transform: translateX(18%);
  }
}

.profile-quote-card {
  background: #17120e;
  border-radius: 28px;
  overflow: hidden;
  padding: 22px 24px;
  position: relative;
}

.profile-quote-card::before {
  background: linear-gradient(90deg, #ffb07c, #df531b);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 24px;
  position: absolute;
  top: 0;
  width: 132px;
}

.profile-quote-card p {
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 740px;
}

.reveal-up,
.reveal-slide {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal-up {
  transform: translateY(42px);
}

.reveal-slide {
  transform: translateX(-46px) rotate(-2deg);
}

.reveal-up.is-visible,
.reveal-slide.is-visible {
  opacity: 1;
  transform: translate(0, 0) rotate(0);
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-showcase .container::before,
  .hero-showcase::before,
  .hero-showcase::after,
  .experience-header.reveal-up.is-visible,
  .experience-feature.reveal-up.is-visible,
  .experience-card.reveal-up.is-visible,
  .hero-kicker,
  .editorial-hero-title,
  .editorial-hero-role,
  .editorial-hero-copy,
  .hero-cta-row,
  .experience-feature-mark,
  .experience-feature-logo,
  .experience-card::after,
  .experience-card-logo,
  .experience-card span,
  .profile-orbit,
  .profile-floating-card,
  .editorial-portrait,
  .portrait-card,
  .portrait-card::before,
  .portrait-card span,
  .ach-card::after,
  .ach-card:nth-child(odd),
  .ach-card:nth-child(even),
  .ach-card-accent::after,
  .ach-card-icon i,
  .ach-premier::after,
  .ach-premier::before,
  .ach-premier-icon {
    animation: none;
  }

  .reveal-up,
  .reveal-slide,
  .hero-kicker,
  .editorial-hero-title,
  .editorial-hero-role,
  .editorial-hero-copy,
  .hero-cta-row,
  .editorial-portrait {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.library-section,
.intro-section,
.page-section,
.thoughts-section,
.learn-section,
.about-section,
.speaking-section,
.capabilities-section,
.projects-section,
.testimonial-section,
.contact-section {
  padding: 96px 0;
}

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

.library-section {
  background: #f3ede3;
  border-top: 1px solid rgba(23, 18, 14, 0.1);
  padding: 72px 0 86px;
}

.library-heading {
  margin-bottom: 54px;
  max-width: 860px;
}

.library-heading .hero-kicker {
  margin-bottom: 24px;
}

.library-heading h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 24px;
}

.library-heading p {
  color: rgba(23, 18, 14, 0.78);
  font-size: 1.25rem;
  line-height: 1.55;
  max-width: 780px;
}

.library-heading a {
  color: #df531b;
  font-weight: 900;
  text-decoration: none;
}

.library-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}

.library-card {
  align-items: flex-start;
  border: 1px solid rgba(23, 18, 14, 0.12);
  border-radius: 20px;
  display: grid;
  gap: 20px;
  grid-template-columns: 62px 1fr;
  min-height: 158px;
  padding: 26px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.library-card:hover {
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 22px 46px rgba(79, 56, 34, 0.08);
  transform: translateY(-4px);
}

.library-card span {
  color: #df531b;
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1.4px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.library-card h3 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 10px;
}

.library-card p {
  color: rgba(23, 18, 14, 0.72);
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 0;
}

.experience-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 176, 124, 0.18), transparent 20%),
    radial-gradient(circle at 90% 18%, rgba(85, 123, 189, 0.12), transparent 22%),
    #efe6d8;
  overflow: hidden;
  padding: 96px 0 104px;
  position: relative;
}

.experience-header {
  margin-bottom: 34px;
  max-width: 860px;
  position: relative;
}

.experience-header.reveal-up {
  transform: translateY(80px) scale(0.94);
}

.experience-header.reveal-up.is-visible {
  animation: experienceHeaderReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.experience-header h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 3.9vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0;
  position: relative;
}

.experience-header h2::after {
  background: linear-gradient(90deg, #df531b, rgba(223, 83, 27, 0));
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  margin-top: 16px;
  width: 120px;
}

.experience-stage {
  perspective: 1200px;
  position: relative;
}

.experience-stage::before {
  animation: experienceGlow 10s ease-in-out infinite;
  background: radial-gradient(circle, rgba(223, 83, 27, 0.12), transparent 62%);
  content: "";
  height: 320px;
  position: absolute;
  right: -120px;
  top: -80px;
  width: 320px;
}

.experience-feature {
  background:
    linear-gradient(135deg, rgba(23, 18, 14, 0.98), rgba(46, 34, 25, 0.94)),
    #17120e;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(62, 43, 29, 0.18);
  display: grid;
  gap: 26px;
  grid-template-columns: 96px minmax(0, 1fr);
  margin-bottom: 24px;
  overflow: hidden;
  padding: 30px 30px 32px;
  position: relative;
}

.experience-feature.reveal-up {
  transform: translateY(95px) scale(0.9) rotateX(10deg);
}

.experience-feature.reveal-up.is-visible {
  animation: experienceFeatureReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.experience-feature::before {
  background: linear-gradient(90deg, rgba(255, 176, 124, 0), rgba(255, 176, 124, 0.22), rgba(255, 176, 124, 0));
  content: "";
  height: 1px;
  left: -20%;
  position: absolute;
  right: -20%;
  top: 0;
}

.experience-feature::after {
  animation: experienceSweep 9s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

.experience-feature-mark {
  animation: experienceBadgePulse 4.4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #ffb07c;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1.8px;
  padding: 10px 16px;
  position: absolute;
  right: 28px;
  text-transform: uppercase;
  top: 24px;
}

.experience-feature-logo {
  animation: experienceLogoBob 6.5s ease-in-out infinite;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 12px;
  position: relative;
  z-index: 1;
}

.experience-feature-logo img {
  display: block;
  height: 72px;
  object-fit: contain;
  width: 72px;
}

.experience-feature-copy {
  position: relative;
  z-index: 1;
}

.experience-feature-copy span {
  color: #ffb07c;
  display: block;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.experience-feature-copy h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 720px;
}

.experience-feature-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 720px;
}

.experience-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  perspective: 1200px;
}

.experience-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 237, 223, 0.84)),
    #f8f0e5;
  border: 1px solid rgba(79, 54, 29, 0.13);
  border-radius: 4px 38px 4px 38px;
  background-position: 0% 0%, center;
  background-size: 190% 190%, 100% 100%;
  box-shadow: 12px 14px 0 rgba(223, 83, 27, 0.08), 0 18px 40px rgba(78, 57, 36, 0.09);
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 264px;
  overflow: hidden;
  padding: 24px 26px 28px;
  position: relative;
  transform-origin: center bottom;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, background 0.42s ease, border-color 0.42s ease;
}

.experience-card.reveal-up {
  transform: translateY(85px) scale(0.88) rotateY(-10deg);
}

.experience-card.reveal-up.is-visible {
  animation: experienceCardReveal 0.95s cubic-bezier(0.2, 0.9, 0.2, 1.15) both, experienceCardSurface 9s ease-in-out 0.95s infinite alternate;
}

.experience-card::before {
  background: linear-gradient(180deg, #df531b, #f7a46d 72%, transparent);
  content: "";
  inset: 0 auto 0 0;
  opacity: 0.95;
  position: absolute;
  width: 7px;
  z-index: -1;
}

.experience-card::after {
  animation: experienceCornerOrbit 8s linear infinite;
  background: radial-gradient(circle, rgba(255, 176, 124, 0.56) 0 10%, transparent 12% 100%);
  border: 1px solid rgba(223, 83, 27, 0.36);
  border-radius: 50%;
  content: "";
  height: 78px;
  pointer-events: none;
  position: absolute;
  right: -34px;
  top: -34px;
  width: 78px;
  z-index: 0;
}

.experience-card:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 226, 204, 0.92)),
    #fff3e8;
  border-color: rgba(223, 83, 27, 0.38);
  background-position: 100% 100%, center;
  box-shadow: 16px 18px 0 rgba(223, 83, 27, 0.14), 0 28px 56px rgba(79, 56, 34, 0.17);
  transform: translateY(-12px) rotate(-1deg);
}

.experience-card:hover::after {
  animation-duration: 3.8s;
  border-color: rgba(223, 83, 27, 0.7);
}

.experience-card-head {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 112px minmax(0, 1fr);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.experience-card-logo {
  animation: experienceLogoBob 7s ease-in-out infinite;
  align-items: center;
  background: radial-gradient(circle at 35% 28%, #fff, #f3ded0);
  border: 1px solid rgba(223, 83, 27, 0.25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.72), 0 14px 24px rgba(101, 54, 25, 0.16);
  display: inline-flex;
  flex: 0 0 auto;
  height: 112px;
  justify-content: center;
  overflow: hidden;
  padding: 13px;
  position: relative;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease;
  width: 112px;
}

.experience-card-logo::after {
  border: 1px dashed rgba(223, 83, 27, 0.42);
  border-radius: inherit;
  content: "";
  inset: 5px;
  pointer-events: none;
  position: absolute;
}

.experience-card-logo img {
  display: block;
  height: 82px;
  object-fit: contain;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  width: 82px;
}

.experience-card:hover .experience-card-logo {
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.82), 0 18px 34px rgba(101, 54, 25, 0.24);
  transform: rotate(7deg) scale(1.08);
}

.experience-card:hover .experience-card-logo img {
  transform: scale(1.08) rotate(-7deg);
}

.experience-card span {
  animation: experienceBadgePulse 5s ease-in-out infinite;
  align-self: center;
  background: transparent;
  border: 0;
  border-left: 2px solid #df531b;
  border-radius: 0;
  color: #b74b1f;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  line-height: 1.4;
  margin: 0;
  padding: 4px 0 4px 11px;
  text-transform: uppercase;
}

.experience-card h4 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.45vw, 1.42rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0;
  margin-top: auto;
  min-height: 82px;
  padding-right: 38px;
  position: relative;
  z-index: 1;
}

.experience-card-spotlight {
  background:
    linear-gradient(145deg, rgba(23, 18, 14, 0.98), rgba(43, 31, 22, 0.95)),
    #17120e;
  border-color: rgba(255, 176, 124, 0.14);
}

.experience-card-spotlight::before {
  background: linear-gradient(90deg, #ffb07c, rgba(255, 176, 124, 0));
}

.experience-card-spotlight:hover {
  background:
    linear-gradient(145deg, rgba(28, 21, 16, 0.99), rgba(54, 39, 28, 0.97)),
    #17120e;
  border-color: rgba(255, 176, 124, 0.24);
}

.experience-card-spotlight .experience-card-logo {
  background: rgba(255, 255, 255, 0.98);
}

.experience-card-spotlight span {
  background: rgba(255, 176, 124, 0.12);
  border-color: rgba(255, 176, 124, 0.16);
  color: #ffcfac;
}

.experience-card-spotlight h4 {
  color: #fff;
}

.experience-card-spotlight::after {
  animation: experienceCardSweep 4.2s linear infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
}

@keyframes experienceCornerOrbit {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(180deg) scale(1.08);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes experienceCardSurface {
  0% {
    background-position: 0% 0%, center;
  }

  100% {
    background-position: 100% 100%, center;
  }
}

@keyframes experienceHeaderReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(80px) scale(0.94);
  }

  65% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-8px) scale(1.02);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes experienceFeatureReveal {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(95px) scale(0.9) rotateX(10deg);
  }

  58% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-10px) scale(1.02) rotateX(-2deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes experienceCardReveal {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(85px) scale(0.88) rotateY(-10deg);
  }

  60% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-8px) scale(1.03) rotateY(3deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1) rotateY(0);
  }
}

@keyframes experienceLogoBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes experienceBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(223, 83, 27, 0);
    transform: translateY(0);
  }

  50% {
    box-shadow: 0 10px 22px rgba(223, 83, 27, 0.12);
    transform: translateY(-2px);
  }
}

@keyframes experienceCardAura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.04);
  }
}

@keyframes experienceCardSweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(140%);
  }
}

@keyframes experienceGlow {
  0%,
  100% {
    opacity: 0.7;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(18px);
  }
}

@keyframes experienceSweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.mini-cover {
  align-items: center;
  border-radius: 4px;
  box-shadow: 0 10px 18px rgba(23, 18, 14, 0.18);
  color: #fff;
  display: flex;
  font-size: 1.65rem;
  height: 92px;
  justify-content: center;
  width: 62px;
}

.cover-teal {
  background: #0f6d64;
}

.cover-orange {
  background: #df531b;
}

.cover-blue {
  background: #557bbd;
}

.cover-gold {
  background: #c99a3f;
}

.cover-sky {
  background: #149dd3;
}

.cover-red {
  background: #aa3333;
}

.cover-gray {
  background: #747474;
}

.cover-dark {
  background: #151515;
}

.cover-lime {
  background: #8aad16;
}

.cover-purple {
  background: #8946a6;
}

.cover-yellow {
  background: #f0c400;
  color: #111;
}

.cover-pink {
  background: #c94f7c;
}

.learn-section {
  background: #e8dfd1;
  padding: 92px 0 104px;
}

.learn-heading {
  margin-bottom: 54px;
}

.learn-heading .hero-kicker {
  margin-bottom: 26px;
}

.learn-heading h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

.learn-heading p {
  color: rgba(23, 18, 14, 0.78);
  font-size: 1.25rem;
  margin-bottom: 0;
}

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

.learn-card {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(23, 18, 14, 0.12);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 34px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.learn-card:hover {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 26px 52px rgba(79, 56, 34, 0.1);
  transform: translateY(-5px);
}

.learn-icon {
  align-items: center;
  background: #17120e;
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  font-size: 1.2rem;
  height: 56px;
  justify-content: center;
  margin-bottom: 28px;
  width: 56px;
}

.learn-kicker {
  color: #df531b !important;
  font-size: 0.82rem !important;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 18px !important;
  text-transform: uppercase;
}

.learn-card h3 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 18px;
}

.learn-card p {
  color: rgba(23, 18, 14, 0.76);
  font-size: 1.1rem;
  line-height: 1.55;
}

.learn-card a,
.learn-card button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #111;
  display: inline-flex;
  font-weight: 900;
  gap: 8px;
  margin-top: auto;
  padding: 0;
  text-decoration: none;
}

.learn-card a:hover,
.learn-card button:hover {
  color: #df531b;
}

.learn-card-dark {
  background: #17120e;
  color: #fff;
}

.learn-card-dark:hover {
  background: #211b16;
}

.learn-card-dark h3,
.learn-card-dark a,
.learn-card-dark button {
  color: #fff;
}

.learn-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.learn-card-dark .learn-icon {
  background: #df531b;
}

.stats-band {
  background: #17120e;
  padding: 74px 0 61px;
  position: relative;
  z-index: 1;
}

.stats-band::after {
  background: linear-gradient(90deg, transparent, rgba(255, 176, 124, 0.38), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
}

.stats-launch-divider {
  align-items: center;
  background: #17120e;
  display: flex;
  gap: 16px;
  height: 70px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.stats-launch-divider::before {
  animation: statsDividerSweep 4.6s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 124, 0.42), transparent);
  content: "";
  height: 100%;
  left: -35%;
  position: absolute;
  top: 0;
  transform: skewX(-24deg);
  width: 26%;
}

.stats-launch-divider span {
  background: linear-gradient(90deg, transparent, #df531b, #ffb07c);
  height: 1px;
  position: relative;
  width: min(24vw, 275px);
}

.stats-launch-divider span:last-child { background: linear-gradient(90deg, #ffb07c, #c99a3f, transparent); }

.stats-launch-divider i {
  align-items: center;
  animation: statsDividerMedallion 3.4s ease-in-out infinite;
  background: #17120e;
  border: 1px solid #df531b;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(223, 83, 27, 0.1), 0 0 25px rgba(255, 176, 124, 0.15);
  color: #ffb07c;
  display: flex;
  font-size: 0.84rem;
  height: 35px;
  justify-content: center;
  position: relative;
  width: 35px;
  z-index: 1;
}

.launch-series-expanded { border-top: 1px solid rgba(255, 176, 124, 0.2); }

@keyframes statsDividerSweep {
  0%, 20% { opacity: 0; transform: translateX(0) skewX(-24deg); }
  35% { opacity: 1; }
  72% { opacity: 1; }
  100% { opacity: 0; transform: translateX(570%) skewX(-24deg); }
}

@keyframes statsDividerMedallion {
  0%, 100% { box-shadow: 0 0 0 7px rgba(223, 83, 27, 0.1), 0 0 15px rgba(255, 176, 124, 0.1); transform: rotate(0) scale(1); }
  50% { box-shadow: 0 0 0 12px rgba(223, 83, 27, 0.11), 0 0 30px rgba(255, 176, 124, 0.3); transform: rotate(16deg) scale(1.1); }
}

.stats-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}

.stat-item strong {
  color: #ffb07c;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.about-section {
  background: #f3ede3;
  padding: 106px 0 112px;
}

.about-photo {
  border-radius: 28px;
  box-shadow: 0 26px 70px rgba(79, 56, 34, 0.14);
  margin: 0 auto;
  max-width: 460px;
  overflow: hidden;
}

.about-photo img {
  background: #efefef;
  display: block;
  filter: grayscale(100%);
  height: 420px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.about-section h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.4vw, 4.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 26px;
  max-width: 790px;
}

.about-section p:not(.hero-kicker) {
  color: rgba(23, 18, 14, 0.82);
  font-size: 1.16rem;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 860px;
}

.about-section .about-signature {
  color: #df531b !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem !important;
  font-weight: 500;
  margin-top: 28px;
}

.speaking-section {
  background: #e8dfd1;
  padding: 112px 0;
}

.speaking-section h2 {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 4.6vw, 4.45rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 820px;
}

.speaking-section p:not(.hero-kicker) {
  color: rgba(23, 18, 14, 0.78);
  font-size: 1.18rem;
  line-height: 1.55;
  max-width: 800px;
}

.speaking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.speaking-quote {
  background: #17120e;
  border-radius: 30px;
  color: #fff;
  padding: 52px 44px;
}

.speaking-quote span {
  color: #ffb07c;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 28px;
}

.speaking-quote h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 900;
  line-height: 1.22;
  margin-bottom: 0;
}

.portrait-frame {
  background: #111;
  padding: 16px;
  position: relative;
}

.portrait-frame::after {
  border: 1px solid var(--gold);
  content: "";
  inset: 32px -18px -18px 32px;
  position: absolute;
  z-index: 0;
}

.portrait-frame img {
  display: block;
  filter: grayscale(100%);
  position: relative;
  width: 100%;
  z-index: 1;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.feature-title,
.section-heading h2,
.thoughts-section h2,
.contact-panel h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
}

.lead-copy {
  color: #3d3d3d;
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 740px;
}

.signature-line {
  border-left: 4px solid var(--gold);
  font-size: 1.35rem;
  font-weight: 900;
  margin: 26px 0;
  padding-left: 18px;
}

.profile-facts {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.profile-facts div {
  background: #fff;
  padding: 24px;
}

.profile-facts strong,
.profile-facts span {
  display: block;
}

.profile-facts strong {
  font-size: 1.55rem;
  font-weight: 900;
}

.profile-facts span {
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 6px;
  text-transform: uppercase;
}

.quote-section {
  background:
    linear-gradient(90deg, rgba(11, 29, 32, 0.9), rgba(11, 29, 32, 0.76)),
    url("https://images.unsplash.com/photo-1529107386315-e1a2ed48a620?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: #fff;
  padding: 110px 0;
}

.quote-section blockquote {
  font-size: clamp(2rem, 4vw, 4.7rem);
  font-weight: 900;
  line-height: 1.04;
  margin: 0 0 24px;
}

.quote-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.quote-card {
  background: #fff;
  color: #111;
  padding: 34px;
}

.quote-card span,
.event-card span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.quote-card h3 {
  font-size: 2rem;
  font-weight: 900;
}

.btn {
  border-radius: 0;
  font-weight: 900;
  gap: 8px;
}

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

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

.journey-grid article {
  background: #111;
  color: #fff;
  min-height: 330px;
  padding: 34px;
  position: relative;
  transition: background 0.25s ease, transform 0.25s ease;
}

.journey-grid article:hover {
  background: var(--deep);
  transform: translateY(-8px);
}

.journey-grid span {
  color: var(--gold);
  font-weight: 900;
}

.journey-grid h3 {
  font-size: 2rem;
  font-weight: 900;
  margin: 62px 0 12px;
}

.journey-grid p {
  color: rgba(255, 255, 255, 0.85);
}

.journey-grid small {
  bottom: 30px;
  color: rgba(255, 255, 255, 0.64);
  left: 34px;
  position: absolute;
  right: 34px;
}

.capabilities-section {
  background: #111;
  color: #fff;
}

.capabilities-section .lead-copy {
  color: rgba(255, 255, 255, 0.7);
}

.skill-stack {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px;
}

.skill-item {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.skill-item strong,
.skill-item span {
  display: block;
}

.skill-item strong {
  font-size: 1.12rem;
  font-weight: 900;
}

.skill-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  margin-top: 4px;
}

.skill-item b {
  color: var(--gold);
}

.skill-meter {
  background: rgba(255, 255, 255, 0.12);
  height: 8px;
  margin: 12px 0 24px;
  overflow: hidden;
}

.skill-meter:last-child {
  margin-bottom: 0;
}

.skill-meter span {
  background: linear-gradient(90deg, var(--gold), #fff1a8);
  display: block;
  height: 100%;
}

.service-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.service-strip article {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 250px;
  padding: 34px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.service-strip article:hover {
  background: #242424;
  transform: translateY(-8px);
}

.service-strip i {
  color: var(--gold);
  font-size: 2.2rem;
}

.service-strip h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin: 30px 0 12px;
}

.service-strip p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 0;
}

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

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

.project-grid article {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.project-grid img {
  display: block;
  filter: grayscale(100%);
  height: 420px;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.project-grid article:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.project-grid div {
  background: #fff;
  bottom: 0;
  left: 0;
  padding: 26px;
  position: absolute;
  right: 0;
  transform: translateY(58px);
  transition: transform 0.25s ease;
}

.project-grid article:hover div {
  transform: translateY(0);
}

.project-grid span {
  color: var(--gold);
  font-weight: 900;
}

.project-grid h3 {
  font-size: 1.45rem;
  font-weight: 900;
  margin: 8px 0;
}

.project-grid p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0;
}

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

.thoughts-section p {
  color: var(--muted);
  line-height: 1.8;
}

.thought-list {
  display: grid;
  gap: 14px;
}

.thought-list a {
  background: #fff;
  color: #111;
  display: block;
  font-size: clamp(1.3rem, 2.4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  padding: 28px 30px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.thought-list a:hover {
  color: var(--gold);
  transform: translateX(10px);
}

.testimonial-section {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.64)),
    url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1800&q=85") center/cover;
  color: #fff;
}

.testimonial-card {
  max-width: 900px;
}

.testimonial-card h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.testimonial-card p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 720px;
}

.events-section {
  background: #fff;
}

.event-card {
  background: #fff;
  border: 1px solid var(--line);
  height: 100%;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.event-card:hover {
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
}

.event-card img {
  display: block;
  filter: grayscale(100%);
  height: 260px;
  object-fit: cover;
  transition: filter 0.25s ease, transform 0.25s ease;
  width: 100%;
}

.event-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.event-card div {
  padding: 26px;
}

.event-card h3 {
  font-size: 1.45rem;
  font-weight: 900;
}

.event-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.contact-section {
  background: #111;
  color: #fff;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 46px;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-lines p {
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  gap: 12px;
  margin-bottom: 0;
}

.contact-lines i {
  color: var(--gold);
}

footer {
  font-size: 0.95rem;
}

.footer-cta {
  background: #df531b;
  color: #fff;
  padding: 104px 0 92px;
}

.footer-cta h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4.8vw, 4.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 auto 28px;
  max-width: 1040px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 42px;
}

.footer-cta a {
  align-items: center;
  background: #f3ede3;
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 900;
  gap: 10px;
  min-height: 70px;
  padding: 0 38px;
  text-decoration: none;
}

.footer-cta a:hover {
  background: #fff;
  color: #df531b;
}

.site-footer {
  background: #17120e;
  color: rgba(255, 255, 255, 0.76);
  padding: 82px 0 42px;
}

.footer-main {
  display: grid;
  gap: 70px;
  grid-template-columns: 1.1fr 1.9fr;
}

.footer-logo-row {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-monogram {
  align-items: center;
  background: #f3ede3;
  border-radius: 10px;
  color: #111;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.footer-logo-row strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.55;
  max-width: 460px;
}

.footer-links {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, 1fr);
}

.footer-links h3 {
  color: #ff6a2a;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.86);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff6a2a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 36px;
}

@media (max-width: 991.98px) {
  .experience-feature {
    gap: 22px;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 28px 24px;
  }

  .experience-feature-mark {
    right: 22px;
    top: 20px;
  }

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

  .profile-stage {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .profile-media {
    margin: 0 auto;
    max-width: 470px;
    width: 100%;
  }

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

  .profile-floating-card {
    left: 18px;
  }

  .navbar-brand {
    min-width: auto;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .hero-showcase {
    padding: 64px 0 72px;
  }

  .portrait-card {
    max-width: 460px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .service-strip,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-grid div {
    position: static;
    transform: none;
  }

  .project-grid img {
    height: 320px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .navbar-collapse {
    background: rgba(243, 237, 227, 0.98);
    border-top: 1px solid rgba(23, 18, 14, 0.08);
    margin: 14px -12px 0;
    padding: 12px 18px 24px;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    padding: 14px 0 !important;
  }

  .nav-link::after {
    bottom: 7px;
    transform-origin: left;
    width: 52px;
  }

  .nav-cta {
    margin-top: 12px;
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .experience-section {
    padding: 68px 0 74px;
  }

  .experience-header {
    margin-bottom: 26px;
  }

  .experience-header h2 {
    margin-bottom: 16px;
  }

  .experience-intro {
    font-size: 0.98rem;
  }

  .experience-feature {
    border-radius: 26px;
    gap: 16px;
    grid-template-columns: 72px 1fr;
    margin-bottom: 18px;
    padding: 22px 18px 20px;
  }

  .experience-feature-mark {
    font-size: 0.66rem;
    letter-spacing: 1.4px;
    padding: 8px 12px;
    position: static;
    width: fit-content;
  }

  .experience-feature-logo {
    border-radius: 18px;
    height: 72px;
    width: 72px;
  }

  .experience-feature-logo img {
    height: 52px;
    width: 52px;
  }

  .experience-feature-copy span {
    font-size: 0.74rem;
    margin-bottom: 10px;
  }

  .experience-feature-copy h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
  }

  .experience-feature-copy p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .experience-grid {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .experience-card {
    border-radius: 3px 30px 3px 30px;
    min-height: 222px;
    padding: 20px 22px 24px;
  }

  .experience-card-head {
    gap: 14px;
    grid-template-columns: 90px minmax(0, 1fr);
    margin-bottom: 18px;
  }

  .experience-card-logo {
    height: 90px;
    width: 90px;
  }

  .experience-card-logo img {
    height: 66px;
    width: 66px;
  }

  .experience-card span {
    font-size: 0.66rem;
    letter-spacing: 1px;
    padding: 3px 0 3px 9px;
  }

  .experience-card h4 {
    font-size: 1.15rem;
    min-height: 62px;
  }

  .profile-section {
    padding: 62px 0;
  }

  .profile-stage {
    gap: 28px;
  }

  .profile-orbit {
    inset: 18px -10px -18px 12px;
  }

  .profile-portrait-shell {
    border-radius: 28px;
    padding: 14px;
    transform: none;
  }

  .profile-portrait-shell::before {
    border-radius: 20px;
    inset: 14px;
  }

  .profile-portrait-shell img {
    border-radius: 20px;
    height: 390px;
  }

  .profile-floating-card {
    animation: none;
    bottom: auto;
    left: auto;
    margin-top: 14px;
    max-width: none;
    padding: 18px;
    position: static;
  }

  .profile-story-panel {
    border-radius: 26px;
    padding: 30px 24px;
  }

  .profile-story-panel::after {
    left: 24px;
    width: 92px;
  }

  .profile-lead {
    font-size: 1.18rem;
  }

  .profile-body {
    font-size: 1rem;
  }

  .profile-chip-row span {
    font-size: 0.72rem;
    padding: 10px 14px;
  }

  .profile-insight-card {
    border-radius: 24px;
    min-height: 0;
    padding: 24px 22px;
  }

  .education-entry {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .education-entry::before {
    height: 56px;
    top: 16px;
  }

  .education-entry h4 {
    font-size: 1.2rem;
  }

  .profile-insight-icon {
    border-radius: 16px;
    font-size: 1.12rem;
    height: 54px;
    margin-bottom: 18px;
    width: 54px;
  }

  .profile-quote-card {
    border-radius: 24px;
    padding: 24px 22px;
  }

  .profile-quote-card::before {
    left: 22px;
    width: 90px;
  }

  .profile-quote-card p {
    font-size: 1.08rem;
  }

  body {
    padding-top: 66px;
  }

  .hero-showcase {
    min-height: auto;
    padding: 46px 0 58px;
  }

  .hero-kicker {
    align-items: flex-start;
    font-size: 0.68rem;
    letter-spacing: 1.8px;
  }

  .editorial-hero-title {
    font-size: 2.85rem;
  }

  .editorial-hero-role {
    font-size: 0.92rem;
    margin-bottom: 14px;
  }

  .editorial-hero-copy {
    font-size: 0.96rem;
  }

  .hero-primary,
  .hero-secondary {
    min-height: 54px;
    width: 100%;
  }

  .portrait-card {
    border-radius: 30px;
    padding: 22px 14px 18px;
    transform: rotate(-1.2deg);
  }

  .portrait-card img {
    border-radius: 20px;
    height: 390px;
  }

  .portrait-card span {
    bottom: 10px;
    font-size: 0.62rem;
    max-width: calc(100% - 28px);
    overflow: hidden;
    padding: 10px 14px;
    text-overflow: ellipsis;
  }

  .intro-section,
  .library-section,
  .page-section,
  .thoughts-section,
  .learn-section,
  .about-section,
  .speaking-section,
  .capabilities-section,
  .projects-section,
  .testimonial-section,
  .contact-section {
    padding: 62px 0;
  }

  .library-grid {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .stats-band {
    padding: 54px 0;
  }

  .stats-grid {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .learn-card {
    min-height: 0;
    padding: 28px;
  }

  .about-photo img {
    height: 360px;
  }

  .speaking-actions .hero-primary,
  .speaking-actions .hero-secondary {
    justify-content: center;
  }

  .speaking-quote {
    border-radius: 24px;
    padding: 34px 28px;
  }

  .footer-cta {
    padding: 72px 0;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .library-card {
    min-height: 0;
    padding: 22px;
  }

  .library-heading {
    margin-bottom: 34px;
  }

  .library-heading p {
    font-size: 1.08rem;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .portrait-frame::after {
    inset: 24px -10px -10px 24px;
  }

  .quote-card,
  .contact-panel {
    padding: 26px;
  }
}

/* ==========================================================================
   ACHIEVEMENTS & RECOGNITIONS — REDESIGNED MAGAZINE CARDS
   ========================================================================== */

/* ── Section Wrapper ── */
.ach-section {
  background:
    radial-gradient(ellipse at 8% 20%, rgba(223, 83, 27, 0.07) 0%, transparent 38%),
    radial-gradient(ellipse at 92% 78%, rgba(201, 154, 63, 0.1) 0%, transparent 40%),
    linear-gradient(180deg, #f7f1e4 0%, #f2ead8 100%);
  border-bottom: 1px solid rgba(23, 18, 14, 0.08);
  border-top: 1px solid rgba(23, 18, 14, 0.08);
  color: #17120e;
  overflow: hidden;
  padding: 100px 0 112px;
  position: relative;
}

/* Decorative corner accents */
.ach-section::before {
  background:
    radial-gradient(circle at center, rgba(223, 83, 27, 0.12), transparent 70%);
  border-radius: 50%;
  content: "";
  height: 500px;
  left: -180px;
  pointer-events: none;
  position: absolute;
  top: -140px;
  width: 500px;
}

.ach-section::after {
  background:
    radial-gradient(circle at center, rgba(201, 154, 63, 0.1), transparent 70%);
  border-radius: 50%;
  bottom: -160px;
  content: "";
  height: 460px;
  pointer-events: none;
  position: absolute;
  right: -140px;
  width: 460px;
}

/* ── Section Header ── */
.ach-header {
  margin-bottom: 52px;
  max-width: 800px;
}

.ach-label {
  align-items: center;
  background: rgba(223, 83, 27, 0.09);
  border: 1.5px solid rgba(223, 83, 27, 0.22);
  border-radius: 999px;
  color: #c4400d;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
  padding: 8px 20px;
  text-transform: uppercase;
}

.ach-title {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 0;
  position: relative;
}

.ach-title::after {
  background: linear-gradient(90deg, #df531b 0%, #c99a3f 55%, transparent 100%);
  border-radius: 99px;
  bottom: -14px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  width: 120px;
}

.ach-subtitle {
  color: rgba(23, 18, 14, 0.68);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-top: 30px;
  max-width: 640px;
}

/* ── Premier Award Featured Card ── */
.ach-premier {
  background: linear-gradient(135deg, #1a1008 0%, #2e1e0e 55%, #3d2610 100%);
  border: 1px solid rgba(201, 154, 63, 0.35);
  border-radius: 32px;
  box-shadow:
    0 24px 64px rgba(30, 16, 4, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  margin-bottom: 48px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ach-premier:hover {
  box-shadow:
    0 32px 80px rgba(30, 16, 4, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform: translateY(-6px);
}

/* Animated sweep glow */
.ach-premier::after {
  animation: achSweep 9s linear infinite;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 50%, transparent 100%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
}

@keyframes achSweep {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

/* Gold top strip */
.ach-premier::before {
  background: linear-gradient(90deg, #c99a3f, #f7d788, #df531b, #c99a3f);
  background-size: 200% 100%;
  animation: goldShimmer 5s ease-in-out infinite;
  content: "";
  display: block;
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.ach-premier-glow {
  background: radial-gradient(circle at 18% 30%, rgba(201, 154, 63, 0.16), transparent 42%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.ach-premier-year {
  color: rgba(255, 255, 255, 0.04);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: -10px;
  top: -10px;
  user-select: none;
}

.ach-premier-content {
  align-items: center;
  display: flex;
  gap: 32px;
  padding: 38px 44px;
  position: relative;
  z-index: 1;
}

.ach-premier-icon {
  align-items: center;
  animation: trophyPulse 3.5s ease-in-out infinite alternate;
  background: linear-gradient(145deg, rgba(201,154,63,0.3), rgba(223,83,27,0.18));
  border: 2px solid rgba(201, 154, 63, 0.5);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(201, 154, 63, 0.22);
  color: #f7d788;
  display: flex;
  flex-shrink: 0;
  font-size: 2.8rem;
  height: 96px;
  justify-content: center;
  width: 96px;
}

@keyframes trophyPulse {
  from { transform: scale(1) rotate(-3deg); box-shadow: 0 12px 32px rgba(201,154,63,0.2); }
  to   { transform: scale(1.07) rotate(2deg); box-shadow: 0 20px 48px rgba(201,154,63,0.38); }
}

.ach-premier-text { flex: 1; }

.ach-premier-tag {
  align-items: center;
  background: rgba(201, 154, 63, 0.2);
  border: 1px solid rgba(201, 154, 63, 0.38);
  border-radius: 999px;
  color: #f7d788;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 6px;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  padding: 6px 16px;
  text-transform: uppercase;
}

.ach-premier-text h3 {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.ach-premier-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.ach-premier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ach-premier-pills span {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 600;
  gap: 8px;
  padding: 7px 18px;
}

.ach-premier-pills span i { color: #c99a3f; }

/* ── Cards Grid ── */
.ach-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  perspective: 1400px;
}

/* Latest achievements first: SMC is featured above this grid. */
.ach-grid .ach-card:nth-child(9) { order: 1; }  /* 2016 */
.ach-grid .ach-card:nth-child(8) { order: 2; }  /* 2015 */
.ach-grid .ach-card:nth-child(7) { order: 3; }  /* 2012–14 */
.ach-grid .ach-card:nth-child(10) { order: 4; } /* 2012 provincial honour */
.ach-grid .ach-card:nth-child(6) { order: 5; }  /* 2010 */
.ach-grid .ach-card:nth-child(5) { order: 6; }  /* 2008–10 */
.ach-grid .ach-card:nth-child(4) { order: 7; }  /* 2005–09 */
.ach-grid .ach-card:nth-child(3) { order: 8; }  /* 2000 */
.ach-grid .ach-card:nth-child(2) { order: 9; }  /* 1999 */
.ach-grid .ach-card:nth-child(1) { order: 10; } /* 1992 */

/* ── Individual Card ── */
.ach-card {
  background: #ffffff;
  border-radius: 28px;
  box-shadow:
    0 4px 8px rgba(23, 18, 14, 0.04),
    0 12px 32px rgba(23, 18, 14, 0.07);
  cursor: default;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Animated shimmer sweep on card */
.ach-card::after {
  animation: achCardShimmer 6s ease-in-out infinite;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-120%);
  z-index: 3;
}

.ach-card:hover::after {
  animation: achCardShimmerHover 1.2s ease forwards;
  opacity: 1;
}

@keyframes achCardShimmer {
  0%, 100% {
    opacity: 0;
    transform: translateX(-120%);
  }
  50% {
    opacity: 0.6;
    transform: translateX(120%);
  }
}

@keyframes achCardShimmerHover {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  100% {
    opacity: 0.8;
    transform: translateX(120%);
  }
}

/* Subtle floating animation for cards */
.ach-card:nth-child(odd) {
  animation: achCardFloatOdd 7s ease-in-out infinite;
}

.ach-card:nth-child(even) {
  animation: achCardFloatEven 8s ease-in-out infinite;
}

@keyframes achCardFloatOdd {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(0.3deg); }
}

@keyframes achCardFloatEven {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-0.3deg); }
}

.ach-card:hover {
  animation: none;
  box-shadow:
    0 20px 48px rgba(23, 18, 14, 0.13),
    0 36px 64px rgba(23, 18, 14, 0.08);
  transform: translateY(-12px) scale(1.015) rotateX(3deg) rotateY(-2deg);
}

/* Colored accent bar with animated glow */
.ach-card-accent {
  flex-shrink: 0;
  position: relative;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 7px;
  z-index: 2;
}

.ach-card-accent::after {
  animation: achAccentPulse 3s ease-in-out infinite;
  content: "";
  inset: 0;
  position: absolute;
  width: 100%;
}

@keyframes achAccentPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.ach-card:hover .ach-card-accent { width: 10px; }

/* Color variants */
.ach-card--blue  .ach-card-accent { background: linear-gradient(180deg, #1e7fd4, #4faae8); }
.ach-card--orange .ach-card-accent { background: linear-gradient(180deg, #df531b, #f87c40); }
.ach-card--gold  .ach-card-accent { background: linear-gradient(180deg, #c99a3f, #f0c35a); }
.ach-card--teal  .ach-card-accent { background: linear-gradient(180deg, #0d9488, #34d399); }
.ach-card--green .ach-card-accent { background: linear-gradient(180deg, #1e8449, #3dba71); }
.ach-card--purple .ach-card-accent { background: linear-gradient(180deg, #7c3aed, #a78bfa); }

/* Icon color per variant */
.ach-card--blue  .ach-card-icon { background: rgba(30,127,212,0.1); color: #1e7fd4; }
.ach-card--orange .ach-card-icon { background: rgba(223,83,27,0.1); color: #df531b; }
.ach-card--gold  .ach-card-icon { background: rgba(201,154,63,0.14); color: #a07420; }
.ach-card--teal  .ach-card-icon { background: rgba(13,148,136,0.1); color: #0d9488; }
.ach-card--green .ach-card-icon { background: rgba(30,132,73,0.1); color: #1e8449; }
.ach-card--purple .ach-card-icon { background: rgba(124,58,237,0.1); color: #7c3aed; }

/* Tag color per variant */
.ach-card--blue  .ach-card-tag { color: #1e7fd4; }
.ach-card--orange .ach-card-tag { color: #c4400d; }
.ach-card--gold  .ach-card-tag { color: #8a600a; }
.ach-card--teal  .ach-card-tag { color: #0d7a72; }
.ach-card--green .ach-card-tag { color: #166534; }
.ach-card--purple .ach-card-tag { color: #5b21b6; }

.ach-card-inner {
  flex: 1;
  padding: 28px 26px 30px;
  position: relative;
  z-index: 2;
}

/* Top row: icon + year */
.ach-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ach-card-icon {
  align-items: center;
  border-radius: 16px;
  display: flex;
  font-size: 1.35rem;
  height: 50px;
  justify-content: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  width: 50px;
}

/* Icon floating animation */
.ach-card-icon i {
  animation: achIconFloat 4s ease-in-out infinite;
  display: inline-block;
}

.ach-card:nth-child(2n) .ach-card-icon i {
  animation-delay: 0.5s;
}

.ach-card:nth-child(3n) .ach-card-icon i {
  animation-delay: 1s;
}

@keyframes achIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-4deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(3px) rotate(4deg); }
}

.ach-card:hover .ach-card-icon {
  box-shadow: 0 10px 24px rgba(23, 18, 14, 0.1);
  transform: scale(1.12) rotate(5deg);
}

.ach-card:hover .ach-card-icon i {
  animation: none;
  transform: scale(1.1);
}

.ach-card-year {
  background: #f5ede0;
  border: 1px solid rgba(23, 18, 14, 0.07);
  border-radius: 999px;
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 6px 16px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.ach-card:hover .ach-card-year {
  background: #17120e;
  color: #fff;
  transform: scale(1.05);
}

/* Category tag */
.ach-card-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  transition: letter-spacing 0.3s ease;
}

.ach-card:hover .ach-card-tag {
  letter-spacing: 2px;
}

/* Card Title */
.ach-card-title {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.32;
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.ach-card:hover .ach-card-title {
  transform: translateX(4px);
}

/* Card Text */
.ach-card-text {
  color: rgba(23, 18, 14, 0.7);
  font-size: 0.93rem;
  line-height: 1.62;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.ach-card:hover .ach-card-text {
  color: rgba(23, 18, 14, 0.85);
}

/* Card List */
.ach-card-list {
  color: rgba(23, 18, 14, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 18px;
}

.ach-card-list li {
  margin-bottom: 8px;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.ach-card-list li::marker {
  color: #df531b;
  transition: color 0.3s ease;
}

.ach-card:hover .ach-card-list li {
  transform: translateX(3px);
}

.ach-card:hover .ach-card-list li::marker {
  color: #17120e;
}

.ach-card-list li:last-child { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .ach-premier-content { gap: 22px; padding: 28px 30px; }
  .ach-premier-icon   { height: 72px; width: 72px; font-size: 2rem; }
  .ach-premier-year   { font-size: 6rem; right: -6px; top: -6px; }
}

@media (max-width: 640px) {
  .ach-premier-content { flex-direction: column; align-items: flex-start; gap: 18px; padding: 26px 22px; }
  .ach-premier-year    { display: none; }
  .ach-grid            { grid-template-columns: 1fr; }
  .ach-title::after    { width: 80px; }
}

@media print {
  .navbar,
  .hero-controls,
  .btn {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .hero-showcase,
  .hero-panel,
  .quote-section,
  .contact-section {
    background: #fff !important;
    color: #111 !important;
    min-height: auto;
  }
}

.certifications-timeline-section {
    width: 100%;
    background:
        radial-gradient(ellipse at 85% 10%, rgba(224, 83, 32, 0.05), transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(201, 154, 63, 0.06), transparent 50%),
        #fcf9f4;
    padding: 60px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}

/* Subtle decorative top border */
.certifications-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #e05320, #c99a3f);
    opacity: 0.6;
}

.timeline-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- Header & Initial Animation Base States --- */
.timeline-header-block {
    margin-bottom: 36px;
    text-align: center;
    opacity: 0;
    transform: translateY(-30px);
    transition: transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-header-block.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e05320;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 18px;
    background: rgba(224, 83, 32, 0.07);
    border: 1px solid rgba(224, 83, 32, 0.18);
    border-radius: 999px;
}

.timeline-tagline::before {
    display: none;
}

.timeline-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    margin: 0 0 10px 0;
    color: #1e1e1e;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.timeline-header-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6f6f;
    max-width: 640px;
    margin: 0 auto;
    font-weight: 400;
}

.interactive-timeline-container {
    position: relative;
    padding-left: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Timeline Main Line Animation Base State --- */
.main-vertical-spine {
    position: absolute;
    left: 15px;
    top: 12px;
    height: 0%; /* Grows to 100% via JS */
    width: 2.5px;
    border-radius: 999px;
    background: linear-gradient(180deg, #e05320, #c99a3f);
    box-shadow: 0 0 12px rgba(224, 83, 32, 0.18);
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-vertical-spine.reveal-active {
    height: calc(100% - 20px);
}

/* --- Timeline Row Base States --- */
.single-timeline-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    padding-left: 78px;
    opacity: 0;
    transform: translateX(45px);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.single-timeline-row.reveal-active {
    opacity: 1;
    transform: translateX(0);
}

.single-timeline-row:last-child {
    margin-bottom: 0;
}

/* --- Indicator Nodes --- */
.timeline-indicator-dot {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%) scale(0.4);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #e05320;
    z-index: 5;
    opacity: 0;
    box-shadow: 0 0 0 4px rgba(224, 83, 32, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Node appears smoothly along with the row content */
.single-timeline-row.reveal-active .timeline-indicator-dot {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.single-timeline-row:hover .timeline-indicator-dot {
    background-color: #e05320;
    border-color: #e05320;
    transform: translateY(-50%) scale(1.35);
    box-shadow: 0 0 0 9px rgba(224, 83, 32, 0.18);
}

/* --- Year Badge Styling --- */
.timeline-year-badge {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 800;
    color: #1e1e1e;
    background: #ffffff;
    border: 1px solid #e6ded1;
    border-radius: 999px;
    padding: 5px 14px;
    min-width: 66px;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(17, 17, 17, 0.04);
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.single-timeline-row:hover .timeline-year-badge {
    border-color: #e05320;
    color: #e05320;
    box-shadow: 0 4px 14px rgba(224, 83, 32, 0.12);
    transform: translateY(-2px);
}

/* --- Premium Content Card --- */
.timeline-card {
    background: #ffffff;
    border: 1px solid #eee7dc;
    border-radius: 12px;
    padding: 12px 20px;
    flex: 1;
    margin-left: 18px;
    box-shadow: 0 2px 10px rgba(17, 17, 17, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}

/* Left accent line on hover */
.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #e05320, #c99a3f);
    border-radius: 3px 0 0 3px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

.single-timeline-row:hover .timeline-card {
    border-color: rgba(224, 83, 32, 0.28);
    box-shadow: 0 10px 30px rgba(17, 17, 17, 0.07);
    transform: translateY(-2px);
}

.single-timeline-row:hover .timeline-card::before {
    transform: scaleY(1);
}

.timeline-card-content {
    flex: 1;
    min-width: 0;
}

.timeline-card-category {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #e05320;
    background: rgba(224, 83, 32, 0.06);
    border-radius: 999px;
    padding: 3px 10px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.single-timeline-row:hover .timeline-card-category {
    background: rgba(224, 83, 32, 0.12);
}

.timeline-card-content h3 {
    font-size: 16px;
    margin: 0;
    color: #1e1e1e;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.2px;
    transition: color 0.3s ease;
}

.single-timeline-row:hover .timeline-card-content h3 {
    color: #e05320;
}

.timeline-card-content p {
    font-size: 13px;
    line-height: 1.5;
    margin: 3px 0 0 0;
    color: #6f6f6f;
    font-weight: 400;
    max-width: 580px;
}

/* Responsive Fluid Viewport scaling */
@media (max-width: 768px) {
    .certifications-timeline-section {
        padding: 48px 0;
    }

    .timeline-main-title {
        font-size: 30px;
    }

    .timeline-header-desc {
        font-size: 13px;
    }

    .interactive-timeline-container {
        padding-left: 0;
    }

    .single-timeline-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
        padding-left: 44px;
    }

    .main-vertical-spine {
        left: 8px;
    }

    .timeline-indicator-dot {
        left: 2px;
        top: 12px;
        transform: none;
    }

    .single-timeline-row.reveal-active .timeline-indicator-dot {
        transform: scale(1);
    }

    .single-timeline-row:hover .timeline-indicator-dot {
        transform: scale(1.35);
    }

    .timeline-year-badge {
        margin-bottom: 6px;
        margin-top: 0;
        font-size: 12px;
        padding: 4px 12px;
        min-width: 60px;
    }

    .timeline-card {
        margin-left: 0;
        padding: 12px 16px;
    }

    .timeline-card-content h3 {
        font-size: 15px;
    }

    .timeline-card-content p {
        font-size: 12.5px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .timeline-card {
        padding: 10px 14px;
    }

    .timeline-card-content h3 {
        font-size: 14px;
    }

    .timeline-card-content p {
        font-size: 12px;
    }
}

/* Compact training catalogue */
.training-section {
  background:
    radial-gradient(circle at 8% 22%, rgba(223, 83, 27, 0.1), transparent 24rem),
    radial-gradient(circle at 94% 78%, rgba(201, 154, 63, 0.12), transparent 25rem),
    #f8f4ec;
  overflow: hidden;
  padding: 96px 0 102px;
  position: relative;
}

.training-section::before {
  border: 1px solid rgba(223, 83, 27, 0.17);
  border-radius: 50%;
  content: "";
  height: 27rem;
  position: absolute;
  right: -15rem;
  top: -13rem;
  width: 27rem;
}

.training-heading {
  margin: 0 auto 34px;
  max-width: 660px;
  text-align: center;
}

.training-heading .hero-kicker { margin-bottom: 16px; }

.training-heading h2 {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 14px;
}

.training-heading > p:last-child {
  color: rgba(23, 18, 14, 0.67);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.training-spotlight {
  align-items: center;
  background: #1b1612;
  border-radius: 26px;
  box-shadow: 0 24px 50px rgba(56, 35, 19, 0.18);
  display: grid;
  gap: 28px;
  grid-template-columns: 116px minmax(210px, 1fr) minmax(380px, 1.15fr);
  isolation: isolate;
  margin-bottom: 18px;
  min-height: 190px;
  overflow: hidden;
  padding: 28px 34px;
  position: relative;
}

.training-spotlight::after {
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, 0.16) 50%, transparent 62%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
}

.training-spotlight:hover::after { transform: translateX(130%); }

.training-spotlight-orb {
  animation: trainingOrb 7s ease-in-out infinite;
  background: #df531b;
  border-radius: 50%;
  filter: blur(2px);
  height: 230px;
  opacity: 0.52;
  position: absolute;
  right: 31%;
  top: -125px;
  width: 230px;
  z-index: -2;
}

.training-spotlight-year {
  color: #ffb07c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.training-spotlight-copy > span {
  color: #ffb07c;
  display: block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.training-spotlight-copy > span i { margin-right: 6px; }

.training-spotlight-copy h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
}

.training-spotlight-items {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-spotlight-items > div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  min-height: 105px;
  padding: 16px 15px 13px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.training-spotlight-items > div:hover {
  background: rgba(255, 255, 255, 0.17);
  transform: translateY(-5px);
}

.training-spotlight-items i {
  color: #ffb07c;
  display: block;
  font-size: 1.05rem;
  margin-bottom: 9px;
}

.training-spotlight-items strong,
.training-spotlight-items small { display: block; }
.training-spotlight-items strong { color: #fff; font-size: 0.84rem; line-height: 1.25; }
.training-spotlight-items small { color: rgba(255, 255, 255, 0.61); font-size: 0.68rem; margin-top: 5px; }

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

.training-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 18, 14, 0.09);
  border-radius: 18px;
  min-height: 164px;
  overflow: hidden;
  padding: 19px 18px 17px;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.training-card::before {
  background: linear-gradient(135deg, #df531b, #c99a3f);
  content: "";
  height: 3px;
  left: 18px;
  position: absolute;
  top: 0;
  transform: scaleX(0.26);
  transform-origin: left;
  transition: transform 0.35s ease;
  width: 48px;
}

.training-card:hover {
  border-color: rgba(223, 83, 27, 0.32);
  box-shadow: 0 16px 30px rgba(68, 40, 20, 0.1);
  transform: translateY(-7px);
}

.training-card:hover::before { transform: scaleX(1); }

.training-card > i {
  color: #df531b;
  float: right;
  font-size: 1.25rem;
  margin-top: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.training-card:hover > i { color: #17120e; transform: rotate(-10deg) scale(1.12); }

.training-year {
  color: #9d671e;
  display: inline-block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.training-card h3 {
  clear: both;
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.18;
  margin: 22px 0 8px;
}

.training-card p {
  color: rgba(23, 18, 14, 0.63);
  font-size: 0.76rem;
  line-height: 1.46;
  margin: 0;
}

@keyframes trainingOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 30px) scale(1.12); }
}

@media (max-width: 991px) {
  .training-spotlight { grid-template-columns: 100px 1fr; }
  .training-spotlight-items { grid-column: 1 / -1; }
  .training-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .training-section { padding: 72px 0; }
  .training-heading { margin-bottom: 28px; text-align: left; }
  .training-spotlight { border-radius: 21px; display: block; padding: 27px 22px 22px; }
  .training-spotlight-year { margin-bottom: 17px; }
  .training-spotlight-copy h3 { margin-bottom: 22px; }
  .training-spotlight-items { grid-template-columns: 1fr; }
  .training-spotlight-items > div { min-height: auto; }
  .training-grid { gap: 12px; }
  .training-card { border-radius: 14px; min-height: 166px; padding: 16px 14px; }
  .training-card h3 { font-size: 1rem; }
}

/* Standalone News and Consultancy Portfolio pages */
.inner-page {
  background: #f3ede3;
  min-height: 100vh;
}

.inner-page .nav-link.active {
  color: #db581e;
}

.inner-page .nav-link.active::after {
  transform: scaleX(1);
}

.inner-page-hero {
  background: #18110d;
  color: #f7f0e5;
  overflow: hidden;
  padding: 142px 0 82px;
  position: relative;
}

.inner-page-hero::before,
.inner-page-hero::after {
  border: 1px solid rgba(255, 172, 106, 0.24);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.inner-page-hero::before {
  height: 560px;
  right: -180px;
  top: -300px;
  width: 560px;
}

.inner-page-hero::after {
  height: 330px;
  right: 8%;
  top: -180px;
  width: 330px;
}

.inner-page-hero .container {
  position: relative;
  z-index: 1;
}

.inner-page-hero .hero-kicker {
  color: #ffa86d;
  margin-bottom: 18px;
}

.inner-page-heading {
  align-items: end;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
}

.inner-page-heading h1 {
  color: #fff9ef;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0;
}

.inner-page-heading h1 em {
  color: #ffa86d;
  display: block;
  font-weight: 400;
}

.inner-page-heading > p {
  border-left: 2px solid #db581e;
  color: rgba(255, 249, 239, 0.76);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 4px;
  padding-left: 20px;
}

.news-stream-section,
.consultancy-section {
  padding: 78px 0 96px;
}

.news-featured {
  align-items: center;
  background: linear-gradient(120deg, #f06b28, #e5551f 55%, #bf3a17);
  color: #fffaf1;
  display: grid;
  gap: 34px;
  grid-template-columns: 155px minmax(0, 1fr) 54px;
  overflow: hidden;
  padding: 38px 42px;
  position: relative;
}

.news-featured::after {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
  content: "";
  height: 260px;
  position: absolute;
  right: -105px;
  top: -120px;
  width: 260px;
}

.news-featured-date {
  border-right: 1px solid rgba(255,255,255,.35);
  display: flex;
  flex-direction: column;
  font-family: "Plus Jakarta Sans", sans-serif;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.news-featured-date span { font-family: "Playfair Display", Georgia, serif; font-size: 3.2rem; font-weight: 800; line-height: 1; }
.news-featured-date small, .news-eyebrow { font-size: .69rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.news-featured .news-eyebrow { color: rgba(255,255,255,.72); margin-bottom: 9px; }
.news-featured h2 { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.65rem); font-weight: 700; line-height: 1.04; margin: 0 0 12px; max-width: 800px; }
.news-featured p { margin: 0; max-width: 800px; }
.news-featured > a, .news-item > a { align-items: center; border: 1px solid currentColor; border-radius: 50%; color: inherit; display: flex; font-size: 1.25rem; height: 50px; justify-content: center; position: relative; transition: transform .25s ease, background .25s ease; width: 50px; z-index: 1; }
.news-featured:hover > a { background: #fffaf1; color: #d94d1d; transform: rotate(45deg); }

.news-list { border-top: 1px solid rgba(24,17,13,.22); margin-top: 48px; }
.news-item { align-items: start; border-bottom: 1px solid rgba(24,17,13,.22); display: grid; gap: 32px; grid-template-columns: 155px minmax(0,1fr) 52px; padding: 30px 16px; transition: background .3s ease, padding .3s ease; }
.news-item:hover { background: rgba(255,255,255,.45); padding-left: 27px; }
.news-date { color: #d54d1c; font-family: "Playfair Display", Georgia, serif; font-size: 1.7rem; font-weight: 800; line-height: 1; margin: 0; }
.news-date span { color: #756d64; display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: .64rem; font-weight: 800; letter-spacing: .1em; margin-top: 9px; text-transform: uppercase; }
.news-item h3 { color: #1c1510; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.35rem, 2.2vw, 2rem); font-weight: 700; margin: 0 0 8px; }
.news-item div > p { color: #5f5750; line-height: 1.7; margin: 0; max-width: 830px; }
.news-item > a { color: #d54d1c; height: 42px; margin-top: 4px; width: 42px; }
.news-item:hover > a { background: #d54d1c; color: #fff; transform: rotate(45deg); }

.consultancy-intro { align-items: start; border-bottom: 1px solid rgba(24,17,13,.2); display: grid; gap: 30px; grid-template-columns: 74px minmax(0,1fr) minmax(235px,.52fr); padding-bottom: 45px; }
.consultancy-intro > span { color: #d5541e; font-family: "Playfair Display", Georgia, serif; font-size: 2.3rem; font-weight: 800; line-height: 1; }
.consultancy-intro .news-eyebrow { color: #d5541e; margin-bottom: 12px; }
.consultancy-intro h2 { color: #1b130e; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 700; line-height: 1.06; margin: 0; max-width: 760px; }
.consultancy-intro > p { color: #615850; line-height: 1.8; margin: 25px 0 0; }
.consultancy-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); margin-top: 38px; }
.consultancy-card { background: #fffaf1; border: 1px solid rgba(35,22,15,.14); min-height: 270px; overflow: hidden; padding: 24px; position: relative; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; }
.consultancy-card::after { background: #f2b565; border-radius: 50%; content: ""; height: 110px; opacity: .42; position: absolute; right: -60px; top: -60px; transition: transform .5s ease; width: 110px; }
.consultancy-card:hover { box-shadow: 8px 10px 0 #dd6026; transform: translate(-5px,-7px); }
.consultancy-card:hover::after { transform: scale(1.8); }
.consultancy-card > span { color: #dc5921; display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: .7rem; font-weight: 800; letter-spacing: .12em; margin-bottom: 42px; position: relative; z-index: 1; }
.consultancy-card i { color: #1b130e; display: block; font-size: 1.75rem; margin-bottom: 19px; position: relative; z-index: 1; }
.consultancy-card h3 { color: #1b130e; font-family: "Playfair Display", Georgia, serif; font-size: 1.45rem; font-weight: 700; line-height: 1.12; margin: 0 0 10px; position: relative; z-index: 1; }
.consultancy-card p { color: #665b53; font-size: .88rem; line-height: 1.65; margin: 0; position: relative; z-index: 1; }
.consultancy-callout { align-items: center; background: #201713; color: #fff8ed; display: flex; gap: 30px; justify-content: space-between; margin-top: 46px; padding: 27px 31px; }
.consultancy-callout p { font-family: "Playfair Display", Georgia, serif; font-size: 1.28rem; line-height: 1.32; margin: 0; max-width: 690px; }
.consultancy-callout .nav-cta { margin: 0; white-space: nowrap; }

.inner-page-footer { background: #17100d; color: #f5ede1; padding: 40px 0; }
.inner-page-footer .container { align-items: center; display: flex; gap: 28px; justify-content: space-between; }
.inner-page-footer .navbar-brand { color: #fff8ed; }
.inner-page-footer p { color: rgba(255,248,237,.62); font-size: .83rem; margin: 0; }
.inner-page-footer > .container > a:last-child { color: #ffa86d; font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

@media (max-width: 991px) {
  .inner-page-heading { gap: 28px; grid-template-columns: 1fr .7fr; }
  .consultancy-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .inner-page-hero { padding: 117px 0 58px; }
  .inner-page-heading { display: block; }
  .inner-page-heading h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .inner-page-heading > p { margin-top: 28px; }
  .news-stream-section, .consultancy-section { padding: 48px 0 60px; }
  .news-featured { gap: 21px; grid-template-columns: 1fr 45px; padding: 28px 24px; }
  .news-featured-date { border-bottom: 1px solid rgba(255,255,255,.35); border-right: 0; grid-column: 1 / -1; padding-bottom: 14px; }
  .news-featured-date span { font-size: 2.4rem; }
  .news-featured h2 { font-size: 1.7rem; }
  .news-list { margin-top: 28px; }
  .news-item { gap: 16px; grid-template-columns: 1fr 42px; padding: 24px 0; }
  .news-date { grid-column: 1 / -1; }
  .news-item:hover { padding-left: 10px; }
  .consultancy-intro { gap: 18px; grid-template-columns: 42px 1fr; padding-bottom: 30px; }
  .consultancy-intro > p { grid-column: 1 / -1; margin: 0; }
  .consultancy-grid { gap: 12px; margin-top: 28px; }
  .consultancy-card { min-height: 245px; padding: 20px; }
  .consultancy-callout { align-items: flex-start; flex-direction: column; margin-top: 28px; padding: 24px; }
  .inner-page-footer .container { align-items: flex-start; flex-direction: column; gap: 16px; }
}

@media (max-width: 450px) {
  .consultancy-grid { grid-template-columns: 1fr; }
  .consultancy-card { min-height: 215px; }
}

@media (prefers-reduced-motion: reduce) {
  .training-spotlight-orb { animation: none; }
}

/* Editorial training index — intentionally open, without card containers. */
.training-index-section {
  background:
    linear-gradient(90deg, rgba(223, 83, 27, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(223, 83, 27, 0.05) 1px, transparent 1px),
    #fbf8f2;
  background-size: 34px 34px;
  overflow: hidden;
  padding: 100px 0 106px;
  position: relative;
}

.training-index-section::before {
  background: #df531b;
  content: "";
  height: 96px;
  left: 0;
  opacity: 0.75;
  position: absolute;
  top: 0;
  width: 3px;
}

.training-index-heading {
  margin: 0 auto 48px;
  max-width: 660px;
  text-align: center;
}

.training-index-heading .hero-kicker { margin-bottom: 15px; }

.training-index-heading h2 {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 3.85rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0 0 15px;
}

.training-index-heading > p:last-child {
  color: rgba(23, 18, 14, 0.65);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.training-index {
  align-items: stretch;
  border-top: 1px solid rgba(23, 18, 14, 0.22);
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(0, 2.28fr);
}

.training-index-year {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 28px 28px 0;
}

.training-index-year span {
  color: #df531b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 8vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.72;
}

.training-index-year p {
  color: #17120e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  margin: 24px 0 17px;
  text-transform: uppercase;
}

.training-index-year i {
  animation: trainingIndexArrow 2.4s ease-in-out infinite;
  color: #9d671e;
  font-size: 1.35rem;
}

.training-index-latest {
  border-left: 1px solid rgba(23, 18, 14, 0.22);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.training-index-latest > div {
  min-height: 185px;
  padding: 34px 34px 30px;
  position: relative;
}

.training-index-latest > div + div { border-left: 1px solid rgba(23, 18, 14, 0.14); }

.training-index-latest > div::after,
.training-index-entry > div::after {
  background: linear-gradient(90deg, #df531b, #c99a3f);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.training-index-latest > div:hover::after,
.training-index-entry:hover > div::after { transform: scaleX(1); }

.training-index-latest i {
  color: #df531b;
  display: block;
  font-size: 1.25rem;
  margin-bottom: 22px;
  transition: transform 0.35s ease;
}

.training-index-latest > div:hover i { transform: translateY(-5px) rotate(-7deg); }

.training-index-latest small {
  color: #9d671e;
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.training-index-latest h3,
.training-index-entry h3 {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
}

.training-index-latest h3 { font-size: clamp(1.18rem, 1.85vw, 1.55rem); }

.training-index-list {
  border-top: 1px solid rgba(23, 18, 14, 0.22);
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.training-index-entry {
  border-bottom: 1px solid rgba(23, 18, 14, 0.17);
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  min-height: 148px;
}

.training-index-entry:not(:nth-child(3n + 1)) { border-left: 1px solid rgba(23, 18, 14, 0.17); }

.training-index-entry > span {
  color: #9d671e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 27px 0 0 21px;
}

.training-index-entry > div {
  padding: 25px 20px 20px 0;
  position: relative;
}

.training-index-entry i {
  color: #df531b;
  display: block;
  font-size: 1rem;
  margin-bottom: 11px;
  transition: transform 0.3s ease;
}

.training-index-entry:hover i { transform: translateX(5px); }
.training-index-entry h3 { font-size: 1.08rem; }

.training-index-entry p {
  color: rgba(23, 18, 14, 0.63);
  font-size: 0.77rem;
  line-height: 1.5;
  margin: 7px 0 0;
}

.training-index-entry-double { grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1fr); }
.training-index-entry-double > div + div { border-left: 1px solid rgba(23, 18, 14, 0.14); padding-left: 20px; }

@keyframes trainingIndexArrow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(5px, 5px); }
}

@media (max-width: 991px) {
  .training-index-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .training-index-entry:not(:nth-child(3n + 1)) { border-left: 0; }
  .training-index-entry:nth-child(even) { border-left: 1px solid rgba(23, 18, 14, 0.17); }
  .training-index-entry-double { grid-template-columns: 74px minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 575px) {
  .training-index-section { padding: 72px 0 78px; }
  .training-index-heading { margin-bottom: 34px; text-align: left; }
  .training-index { display: block; }
  .training-index-year { min-height: 145px; padding: 25px 0; }
  .training-index-year span { font-size: 5.7rem; }
  .training-index-year p { margin: 18px 0 12px; }
  .training-index-latest { display: block; border-left: 0; border-top: 1px solid rgba(23, 18, 14, 0.22); }
  .training-index-latest > div { min-height: auto; padding: 24px 0; }
  .training-index-latest > div + div { border-left: 0; border-top: 1px solid rgba(23, 18, 14, 0.14); }
  .training-index-list { display: block; }
  .training-index-entry { grid-template-columns: 63px minmax(0, 1fr); min-height: 0; }
  .training-index-entry:nth-child(even) { border-left: 0; }
  .training-index-entry > span { padding-left: 0; }
  .training-index-entry > div { padding: 22px 0 18px; }
  .training-index-entry-double { grid-template-columns: 63px minmax(0, 1fr); }
  .training-index-entry-double > div + div { border-left: 0; border-top: 1px solid rgba(23, 18, 14, 0.14); padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .training-index-year i { animation: none; }
}

/* Horizontal learning rail — a compact alternative to vertical timelines and boxes. */
.training-rail-section {
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 176, 124, 0.12), transparent 20rem),
    radial-gradient(circle at 92% 90%, rgba(201, 154, 63, 0.12), transparent 24rem),
    #171d20;
  color: #fff;
  overflow: hidden;
  padding: 94px 0 58px;
  position: relative;
}

.training-rail-section::before {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  height: 30rem;
  position: absolute;
  right: -15rem;
  top: -17rem;
  width: 30rem;
}

.training-rail-section::after {
  animation: trainingRailAtmosphere 9s ease-in-out infinite;
  background: radial-gradient(circle, rgba(223, 83, 27, 0.17), transparent 67%);
  content: "";
  height: 31rem;
  left: 28%;
  pointer-events: none;
  position: absolute;
  top: 38%;
  width: 31rem;
  z-index: 0;
}

.training-rail-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.training-rail-heading .hero-kicker { color: #ffb07c; margin-bottom: 16px; }

.training-rail-heading h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 4.4vw, 4.15rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0;
}

.training-rail-heading h2 em { color: #ffb07c; font-style: italic; font-weight: 400; }

.training-rail-heading > p {
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 3px;
  max-width: 315px;
}

.training-rail-scroll {
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  padding: 18px 3px 14px;
  scroll-padding-inline: 3px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  position: relative;
  z-index: 1;
}

.training-rail-scroll::-webkit-scrollbar { display: none; }

.training-rail-track {
  display: grid;
  grid-template-columns: repeat(8, 155px) 225px;
  min-height: 383px;
  width: 1465px;
  position: relative;
  will-change: transform;
}

.training-rail-line {
  background: rgba(255, 255, 255, 0.23);
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 156px;
}

.training-rail-line::after {
  background: linear-gradient(90deg, #df531b, #ffb07c 45%, #c99a3f);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: -1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.training-rail-line::before {
  background: #fff4df;
  border-radius: 50%;
  box-shadow: 0 0 16px 5px rgba(255, 176, 124, 0.6);
  content: "";
  height: 7px;
  left: -10px;
  opacity: 0;
  position: absolute;
  top: -3px;
  width: 7px;
  z-index: 2;
}

.training-rail-track.is-visible .training-rail-line::after { transform: scaleX(1); }

.training-rail-track.is-visible .training-rail-line::before {
  animation: trainingRailLight 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.training-rail-point {
  min-width: 0;
  opacity: 0;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transition: z-index 0.2s ease;
}

.training-rail-track.is-visible .training-rail-point {
  animation: trainingRailPointIn 0.58s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.training-rail-track.is-visible .training-rail-point:nth-of-type(2) { animation-delay: 0.17s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(3) { animation-delay: 0.26s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(4) { animation-delay: 0.35s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(5) { animation-delay: 0.44s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(6) { animation-delay: 0.53s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(7) { animation-delay: 0.62s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(8) { animation-delay: 0.71s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(9) { animation-delay: 0.80s; }

.training-rail-point > i {
  background: #171d20;
  border: 2px solid #ffb07c;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 176, 124, 0.08);
  height: 13px;
  left: 0;
  position: absolute;
  top: 150px;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  width: 13px;
  z-index: 2;
}

.training-rail-point > i::before,
.training-rail-point > i::after {
  border: 1px solid rgba(255, 176, 124, 0.8);
  border-radius: 50%;
  content: "";
  inset: -7px;
  opacity: 0;
  position: absolute;
}

.training-rail-point > i::after { inset: -13px; }

.training-rail-track.is-visible .training-rail-point > i {
  animation: trainingRailNodeBloom 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.training-rail-track.is-visible .training-rail-point > i::before {
  animation: trainingRailRipple 2.8s ease-out 1.1s infinite;
}

.training-rail-track.is-visible .training-rail-point:nth-of-type(odd) > i::before { animation-delay: 1.55s; }

.training-rail-copy {
  border-left: 1px solid rgba(255, 255, 255, 0.21);
  left: 5px;
  padding: 0 14px 0 18px;
  position: absolute;
  top: 0;
  transition:
    border-color 0.3s ease,
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.training-rail-track.is-visible .training-rail-copy {
  animation: trainingRailCopyIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.training-rail-track.is-visible .training-rail-point:nth-of-type(2) .training-rail-copy { animation-delay: 0.40s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(3) .training-rail-copy { animation-delay: 0.49s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(4) .training-rail-copy { animation-delay: 0.58s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(5) .training-rail-copy { animation-delay: 0.67s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(6) .training-rail-copy { animation-delay: 0.76s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(7) .training-rail-copy { animation-delay: 0.85s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(8) .training-rail-copy { animation-delay: 0.94s; }
.training-rail-track.is-visible .training-rail-point:nth-of-type(9) .training-rail-copy { animation-delay: 1.03s; }

.training-rail-point-lower .training-rail-copy {
  bottom: 0;
  top: auto;
}

/* Keep the 2018 milestone above the rail, following the second 2024 milestone below it. */
.training-rail-point-current + .training-rail-point-lower .training-rail-copy {
  bottom: auto;
  top: 0;
}

.training-rail-point-final .training-rail-copy {
  bottom: 0;
  padding-right: 3px;
  transform: translateX(-16px);
}

.training-rail-point-final { scroll-snap-align: end; }

.training-rail-point-final h3 + h3 { margin-top: 6px; }

.training-rail-point:hover > i {
  background: #df531b;
  box-shadow: 0 0 0 13px rgba(223, 83, 27, 0.22), 0 0 30px rgba(255, 176, 124, 0.4);
  transform: translateY(-5px) scale(1.42);
}

.training-rail-point:hover .training-rail-copy {
  background: rgba(255, 255, 255, 0.05);
  border-color: #ffb07c;
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(-16px) scale(1.04);
}

.training-rail-point:hover {
  z-index: 3;
}

.training-rail-point-current + .training-rail-point-lower:hover .training-rail-copy {
  transform: translateY(-16px) scale(1.04);
}

/* Enforce a strict above/below rhythm across the complete rail. */
.training-rail-point:nth-of-type(odd) .training-rail-copy {
  bottom: auto;
  top: 0;
}

.training-rail-point:nth-of-type(even) .training-rail-copy {
  bottom: 0;
  top: auto;
}

.training-rail-point:nth-of-type(odd):hover .training-rail-copy {
  transform: translateY(-16px) scale(1.04);
}

.training-rail-point:nth-of-type(even):hover .training-rail-copy {
  transform: translateY(-16px) scale(1.04);
}

.training-rail-point-final:hover .training-rail-copy {
  transform: translate(-16px, -16px) scale(1.04);
}

.training-rail-point-lower:hover .training-rail-copy { transform: translateY(-16px) scale(1.04); }

.training-rail-copy span {
  color: #ffb07c;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 11px;
}

.training-rail-copy small {
  color: #c99a3f;
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.25;
  margin: 8px 0 4px;
  text-transform: uppercase;
}

.training-rail-copy h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.16;
  margin: 0;
}

.training-rail-copy p {
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.69rem;
  line-height: 1.45;
  margin: 6px 0 0;
}

.training-rail-point-latest .training-rail-copy {
  border-color: rgba(255, 176, 124, 0.65);
  padding-right: 21px;
}

.training-rail-point-latest > i {
  border-color: #df531b;
  height: 16px;
  top: 149px;
  width: 16px;
}

.training-rail-point-latest > i,
.training-rail-point-current > i { animation: trainingRailCurrentPulse 2.8s ease-in-out 1.4s infinite; }

.training-rail-point-current .training-rail-copy { border-color: rgba(255, 176, 124, 0.48); }

.training-rail-point-current > i {
  border-color: #df531b;
  box-shadow: 0 0 0 7px rgba(223, 83, 27, 0.1);
}

.training-rail-hint {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  margin: 5px 0 0;
  text-align: right;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.training-rail-hint i { color: #ffb07c; margin-right: 7px; }

@keyframes trainingRailPointIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes trainingRailCopyIn {
  0% { filter: blur(7px); opacity: 0; }
  100% { filter: blur(0); opacity: 1; }
}

@keyframes trainingRailNodeBloom {
  0% { opacity: 0; transform: scale(0); }
  65% { opacity: 1; transform: scale(1.28); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes trainingRailRipple {
  0% { opacity: 0.72; transform: scale(0.45); }
  72%, 100% { opacity: 0; transform: scale(1.55); }
}

@keyframes trainingRailCurrentPulse {
  0%, 100% { box-shadow: 0 0 0 7px rgba(223, 83, 27, 0.1), 0 0 0 rgba(255, 176, 124, 0); }
  50% { box-shadow: 0 0 0 11px rgba(223, 83, 27, 0.16), 0 0 24px rgba(255, 176, 124, 0.43); }
}

@keyframes trainingRailAtmosphere {
  0%, 100% { opacity: 0.32; transform: translate3d(-7%, 0, 0) scale(0.9); }
  50% { opacity: 0.78; transform: translate3d(12%, -6%, 0) scale(1.1); }
}

@keyframes trainingRailLight {
  0% { opacity: 0; transform: translateX(0); }
  8% { opacity: 1; }
  92% { opacity: 1; }
  100% { opacity: 0; transform: translateX(1465px); }
}

@media (min-width: 992px) {
  .training-rail-heading > p {
    max-width: 280px;
  }

  .training-rail-scroll {
    overflow-x: hidden;
    max-width: 100%;
    padding-top: 18px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .training-rail-track {
    grid-template-columns: repeat(8, minmax(84px, 1fr)) minmax(108px, 1.14fr);
    min-height: 356px;
    max-width: 100%;
    width: 100%;
  }

  .training-rail-copy {
    padding: 0 7px 0 11px;
    width: calc(100% - 5px);
  }

  .training-rail-point-final .training-rail-copy {
    padding-right: 0;
    transform: translateX(-8px);
    width: calc(100% + 3px);
  }

  .training-rail-copy span {
    font-size: 1.04rem;
    margin-bottom: 7px;
  }

  .training-rail-copy small {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    margin-top: 6px;
  }

  .training-rail-copy h3 {
    font-size: 0.8rem;
    line-height: 1.1;
  }

  .training-rail-copy p {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .training-rail-hint {
    display: none;
  }
}

@media (max-width: 767px) {
  .training-rail-section { padding: 72px 0 42px; }
  .training-rail-heading { align-items: flex-start; display: block; margin-bottom: 38px; }
  .training-rail-heading > p { margin-top: 21px; max-width: 340px; }
  .training-rail-track { min-height: 383px; width: 1465px; }
  .training-rail-scroll { margin-right: calc(var(--bs-gutter-x) * -0.5); padding-right: calc(var(--bs-gutter-x) * 0.5); }
  .training-rail-hint { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .training-rail-line::after { transition: none; }
  .training-rail-track.is-visible .training-rail-line::before,
  .training-rail-track.is-visible .training-rail-point,
  .training-rail-track.is-visible .training-rail-point > i,
  .training-rail-track.is-visible .training-rail-point > i::before,
  .training-rail-track.is-visible .training-rail-copy,
  .training-rail-section::after { animation: none; filter: none; opacity: 1; }
}

/* Publications library */
.publications-section {
  background:
    radial-gradient(circle at 95% 15%, rgba(223, 83, 27, 0.1), transparent 23rem),
    #f6f0e6;
  overflow: hidden;
  padding: 108px 0;
  position: relative;
}

.publications-section::before {
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 50%;
  content: "";
  height: 38rem;
  left: -23rem;
  position: absolute;
  top: 8rem;
  width: 38rem;
}

.publications-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.publications-heading .hero-kicker { margin-bottom: 15px; }

.publications-heading h2 {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  margin: 0;
}

.publications-heading h2 em { color: #df531b; font-style: italic; font-weight: 400; }

.publications-heading > p {
  color: rgba(23, 18, 14, 0.67);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 3px;
  max-width: 334px;
}

.publications-meta {
  align-items: center;
  border-bottom: 1px solid rgba(23, 18, 14, 0.22);
  border-top: 1px solid rgba(23, 18, 14, 0.22);
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-left: auto;
  padding: 11px 0;
  position: relative;
  width: min(100%, 410px);
}

.publications-meta > span {
  color: #df531b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.65rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.publications-meta p {
  color: #17120e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  margin: 0;
  text-transform: uppercase;
}

.publications-meta small { color: rgba(23, 18, 14, 0.54); font-size: 0.62rem; }
.publications-meta > i { color: #9d671e; font-size: 1.2rem; margin-left: 4px; }

.publication-shelf {
  align-items: end;
  background: linear-gradient(155deg, #292018, #17120e 84%);
  display: grid;
  gap: clamp(14px, 2.1vw, 29px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  padding: 40px clamp(20px, 4vw, 56px) 0;
  position: relative;
}

.publication-shelf::before {
  background: linear-gradient(90deg, #8f4e24, #d5914e 47%, #7b3f1c);
  bottom: 0;
  box-shadow: 0 -4px 17px rgba(0, 0, 0, 0.25), 0 9px 0 #512a17;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.publication-shelf::after {
  background: repeating-linear-gradient(90deg, transparent 0 92px, rgba(255, 255, 255, 0.08) 93px 94px);
  content: "";
  inset: 0;
  opacity: 0.33;
  pointer-events: none;
  position: absolute;
}

.publication-book {
  margin: 0;
  padding-bottom: 39px;
  position: relative;
  z-index: 2;
}

.publication-cover {
  aspect-ratio: 0.68;
  background: #38251a;
  box-shadow: 12px 14px 18px rgba(0, 0, 0, 0.38), -4px 0 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transform-origin: bottom center;
  transition: box-shadow 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.publication-cover::after {
  background: linear-gradient(115deg, transparent 36%, rgba(255, 255, 255, 0.26) 49%, transparent 61%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: opacity 0.2s ease, transform 0.75s ease;
}

.publication-cover img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 0.45s ease, transform 0.7s ease;
  width: 100%;
}

.publication-book:nth-child(2) { transform: translateY(18px); }
.publication-book:nth-child(3) { transform: translateY(-7px); }
.publication-book:nth-child(4) { transform: translateY(8px); }
.publication-book:nth-child(5) { transform: translateY(-14px); }

.publication-book:hover .publication-cover {
  box-shadow: 16px 22px 29px rgba(0, 0, 0, 0.48), -5px 0 0 rgba(255, 255, 255, 0.13);
  transform: perspective(800px) rotateY(-8deg) translateY(-22px);
}

.publication-book:hover .publication-cover::after { opacity: 1; transform: translateX(130%); }
.publication-book:hover .publication-cover img { filter: saturate(1.07) contrast(1.03); transform: scale(1.035); }

.publication-book figcaption { padding-top: 16px; }

.publication-book figcaption span {
  color: #ffb07c;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.93rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.publication-book figcaption h3 {
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.83rem, 1.1vw, 1.03rem);
  font-weight: 700;
  line-height: 1.24;
  margin: 0;
}

.publication-book.is-visible .publication-cover { animation: publicationBookSettle 0.9s cubic-bezier(0.22, 1, 0.36, 1); }

.publications-2025 {
  align-items: center;
  border-bottom: 1px solid rgba(23, 18, 14, 0.2);
  display: grid;
  gap: 32px;
  grid-template-columns: 145px minmax(0, 1fr) 44px;
  padding: 37px 0;
}

.publications-2025-mark span {
  color: #df531b;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.45rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.publications-2025-mark small {
  color: #9d671e;
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 7px;
  text-transform: uppercase;
}

.publications-2025 > p {
  color: rgba(23, 18, 14, 0.74);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.36rem);
  line-height: 1.4;
  margin: 0;
}

.publications-2025 > i { color: #df531b; font-size: 1.45rem; text-align: right; }

.publication-archive {
  border-bottom: 1px solid rgba(23, 18, 14, 0.2);
  margin-top: 19px;
  position: relative;
}

.publication-archive summary {
  align-items: center;
  color: #17120e;
  cursor: pointer;
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
  padding: 20px 0;
}

.publication-archive summary::-webkit-details-marker { display: none; }
.publication-archive summary small { color: #9d671e; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.publication-archive summary i { display: inline-block; margin-left: 8px; transition: transform 0.3s ease; }
.publication-archive[open] summary i { transform: rotate(45deg); }

.publication-archive-grid {
  animation: publicationArchiveOpen 0.45s ease both;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 1fr 1.2fr 0.9fr;
  padding: 8px 0 34px;
}

.publication-archive-grid section + section { border-left: 1px solid rgba(23, 18, 14, 0.15); padding-left: 24px; }
.publication-archive-grid h3 { color: #df531b; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.13em; margin: 0 0 13px; text-transform: uppercase; }
.publication-archive-grid p { color: rgba(23, 18, 14, 0.7); font-size: 0.77rem; line-height: 1.5; margin: 0 0 12px; }
.publication-archive-grid b { color: #17120e; font-family: Georgia, "Times New Roman", serif; margin-right: 4px; }

@keyframes publicationBookSettle {
  0% { filter: blur(8px); opacity: 0; transform: translateY(44px) rotate(-3deg); }
  65% { filter: blur(0); opacity: 1; transform: translateY(-8px) rotate(0.7deg); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes publicationArchiveOpen {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991px) {
  .publication-shelf { grid-template-columns: repeat(3, minmax(0, 1fr)); padding-bottom: 35px; }
  .publication-shelf::before { bottom: 35px; }
  .publication-book:nth-child(n) { transform: none; }
  .publication-book:nth-child(4), .publication-book:nth-child(5) { margin-top: 10px; }
  .publication-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .publication-archive-grid section:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 575px) {
  .publications-section { padding: 78px 0; }
  .publications-heading { align-items: flex-start; display: block; margin-bottom: 24px; }
  .publications-heading > p { margin-top: 22px; }
  .publications-meta { margin-left: 0; width: 100%; }
  .publication-shelf { display: flex; gap: 18px; margin-right: calc(var(--bs-gutter-x) * -0.5); overflow-x: auto; padding: 31px calc(var(--bs-gutter-x) * 0.5) 27px; scrollbar-width: none; }
  .publication-shelf::-webkit-scrollbar { display: none; }
  .publication-shelf::before { bottom: 27px; }
  .publication-book { flex: 0 0 153px; padding-bottom: 32px; }
  .publication-book figcaption h3 { font-size: 0.86rem; }
  .publications-2025 { gap: 18px; grid-template-columns: 88px minmax(0, 1fr); }
  .publications-2025 > i { display: none; }
  .publications-2025-mark span { font-size: 2.1rem; }
  .publication-archive-grid { display: block; }
  .publication-archive-grid section + section { border-left: 0; border-top: 1px solid rgba(23, 18, 14, 0.15); margin-top: 17px; padding: 17px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .publication-book.is-visible .publication-cover,
  .publication-archive-grid { animation: none; }
}

/* Complete publication library */
.publication-library-section {
  background:
    radial-gradient(circle at 5% 14%, rgba(223, 83, 27, 0.1), transparent 25rem),
    radial-gradient(circle at 94% 88%, rgba(201, 154, 63, 0.13), transparent 23rem),
    #f5ede1;
  overflow: hidden;
  padding: 108px 0 100px;
  position: relative;
}

.publication-library-section::before {
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 50%;
  content: "";
  height: 36rem;
  position: absolute;
  right: -23rem;
  top: -17rem;
  width: 36rem;
}

.library-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 34px;
  position: relative;
}

.library-heading .hero-kicker { margin-bottom: 15px; }

.library-heading h2 {
  color: #17120e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
  margin: 0;
}

.library-heading h2 em { color: #df531b; font-style: italic; font-weight: 400; }

.library-heading > p {
  color: rgba(23, 18, 14, 0.67);
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 3px;
  max-width: 340px;
}

.library-intro {
  align-items: center;
  border-bottom: 1px solid rgba(23, 18, 14, 0.22);
  border-top: 1px solid rgba(23, 18, 14, 0.22);
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 12px 0;
  position: relative;
}

.library-intro > span {
  color: #df531b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.85rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

.library-intro p {
  color: #17120e;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.library-intro > i { color: #9d671e; font-size: 1.2rem; margin-left: auto; }
.library-intro > strong { color: rgba(23, 18, 14, 0.56); font-size: 0.67rem; letter-spacing: 0.13em; }

.library-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
  position: relative;
}

.library-filter button {
  background: transparent;
  border: 1px solid rgba(23, 18, 14, 0.19);
  border-radius: 999px;
  color: rgba(23, 18, 14, 0.64);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  padding: 9px 13px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.library-filter button span { color: #9d671e; margin-left: 4px; }

.library-filter button:hover,
.library-filter button:focus-visible {
  border-color: #df531b;
  color: #df531b;
  outline: 0;
  transform: translateY(-2px);
}

.library-filter button.is-active {
  background: #17120e;
  border-color: #17120e;
  color: #fff;
}

.library-filter button.is-active span { color: #ffb07c; }

.library-gallery {
  align-items: end;
  background:
    radial-gradient(circle at 21% 7%, rgba(223, 83, 27, 0.26), transparent 18rem),
    linear-gradient(150deg, #292019, #15110e 73%);
  box-shadow: 0 27px 55px rgba(65, 38, 20, 0.18);
  display: grid;
  gap: clamp(16px, 2.1vw, 30px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 433px;
  padding: 43px clamp(21px, 4vw, 58px) 43px;
  position: relative;
}

.library-gallery::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 82px);
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  position: absolute;
}

.library-gallery::after {
  background: linear-gradient(90deg, #7e3d1d, #d5914e 49%, #603017);
  bottom: 0;
  box-shadow: 0 -4px 17px rgba(0, 0, 0, 0.25), 0 9px 0 #482315;
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  right: 0;
}

.library-volume {
  margin: 0;
  min-width: 0;
  padding-bottom: 17px;
  position: relative;
  z-index: 1;
}

.library-volume:nth-child(2n) { transform: translateY(16px); }
.library-volume:nth-child(3n) { transform: translateY(-10px); }

.library-cover {
  aspect-ratio: 0.68;
  background: #37241a;
  box-shadow: 10px 13px 20px rgba(0, 0, 0, 0.41), -4px 0 rgba(255, 255, 255, 0.09);
  overflow: hidden;
  position: relative;
  transform-origin: bottom center;
  transition: box-shadow 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.library-cover::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), transparent 12%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.library-cover::after {
  background: linear-gradient(105deg, transparent 39%, rgba(255, 255, 255, 0.27) 50%, transparent 61%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-130%);
  transition: opacity 0.2s ease, transform 0.75s ease;
  z-index: 2;
}

.library-cover img { display: block; height: 100%; object-fit: cover; transition: filter 0.4s ease, transform 0.65s ease; width: 100%; }

.library-volume:hover .library-cover {
  box-shadow: 15px 24px 32px rgba(0, 0, 0, 0.53), -5px 0 rgba(255, 255, 255, 0.13);
  transform: perspective(850px) rotateY(-8deg) translateY(-22px);
}

.library-volume:hover .library-cover::after { opacity: 1; transform: translateX(130%); }
.library-volume:hover .library-cover img { filter: contrast(1.03) saturate(1.08); transform: scale(1.04); }

.library-volume > div:last-child { padding-top: 14px; }
.library-volume > div:last-child span { color: #ffb07c; display: block; font-family: Georgia, "Times New Roman", serif; font-size: 0.92rem; font-weight: 800; margin-bottom: 5px; }
.library-volume h3 { color: rgba(255, 255, 255, 0.9); font-family: Georgia, "Times New Roman", serif; font-size: clamp(0.83rem, 1.1vw, 1rem); font-weight: 700; line-height: 1.24; margin: 0; }

.library-gallery.is-visible .library-volume:not([hidden]),
.library-gallery.is-filtering .library-volume:not([hidden]) { animation: libraryVolumeIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) both; }
.library-gallery.is-visible .library-volume:nth-child(2) { animation-delay: 0.08s; }
.library-gallery.is-visible .library-volume:nth-child(3) { animation-delay: 0.16s; }
.library-gallery.is-visible .library-volume:nth-child(4) { animation-delay: 0.24s; }
.library-gallery.is-visible .library-volume:nth-child(5) { animation-delay: 0.32s; }

.library-note {
  align-items: center;
  border-bottom: 1px solid rgba(23, 18, 14, 0.22);
  display: flex;
  gap: 17px;
  margin-left: auto;
  padding: 28px 0 0;
  width: min(100%, 705px);
}

.library-note i { color: #df531b; font-size: 1.25rem; }
.library-note p { color: rgba(23, 18, 14, 0.69); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; line-height: 1.45; margin: 0; padding-bottom: 25px; }

@keyframes libraryVolumeIn {
  0% { filter: blur(9px); opacity: 0; transform: translateY(40px) rotate(-3deg); }
  65% { filter: blur(0); opacity: 1; transform: translateY(-7px) rotate(0.8deg); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) rotate(0); }
}

@media (max-width: 991px) {
  .library-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 0; }
  .library-volume:nth-child(n) { transform: none; }
}

@media (max-width: 575px) {
  .publication-library-section { padding: 78px 0 74px; }
  .library-heading { align-items: flex-start; display: block; margin-bottom: 27px; }
  .library-heading > p { margin-top: 22px; }
  .library-intro { margin-bottom: 22px; }
  .library-intro > strong { display: none; }
  .library-filter { flex-wrap: nowrap; margin-right: calc(var(--bs-gutter-x) * -0.5); overflow-x: auto; padding-right: calc(var(--bs-gutter-x) * 0.5); scrollbar-width: none; }
  .library-filter::-webkit-scrollbar { display: none; }
  .library-filter button { flex: 0 0 auto; }
  .library-gallery { gap: 17px 13px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 calc(var(--bs-gutter-x) * -0.5); padding: 32px calc(var(--bs-gutter-x) * 0.5) 40px; }
  .library-volume > div:last-child { padding-top: 11px; }
  .library-volume h3 { font-size: 0.82rem; }
  .library-note { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .library-gallery.is-visible .library-volume:not([hidden]),
  .library-gallery.is-filtering .library-volume:not([hidden]) { animation: none; }
}

/* Publication archive gallery — framed originals, never cropped. */
.publication-library-section {
  background:
    linear-gradient(90deg, rgba(23, 18, 14, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 18, 14, 0.045) 1px, transparent 1px),
    #ebe2d4;
  background-size: 28px 28px;
  padding: 102px 0 110px;
}

.publication-library-section::before {
  background: #df531b;
  border: 0;
  border-radius: 0;
  height: 130px;
  left: 0;
  opacity: 0.82;
  right: auto;
  top: 0;
  width: 3px;
}

.library-heading {
  align-items: flex-start;
  border-bottom: 1px solid rgba(23, 18, 14, 0.22);
  margin-bottom: 0;
  padding-bottom: 35px;
}

.library-heading h2 { font-size: clamp(2.8rem, 5vw, 5.15rem); line-height: 0.88; }

.library-heading > p {
  border-left: 2px solid #df531b;
  max-width: 365px;
  padding: 3px 0 3px 18px;
}

.library-intro {
  border: 0;
  border-bottom: 1px solid rgba(23, 18, 14, 0.17);
  justify-content: flex-start;
  margin-bottom: 26px;
  padding: 17px 0;
}

.library-intro > span { font-size: 3.45rem; }
.library-intro > i { margin-left: 4px; }
.library-intro > strong { margin-left: auto; }

.library-filter {
  border-bottom: 1px solid rgba(23, 18, 14, 0.17);
  gap: 0;
  margin-bottom: 34px;
}

.library-filter button {
  border: 0;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  color: rgba(23, 18, 14, 0.58);
  padding: 12px 16px 13px;
}

.library-filter button:first-child { padding-left: 0; }

.library-filter button:hover,
.library-filter button:focus-visible {
  background: transparent;
  border-color: #df531b;
  color: #df531b;
  transform: none;
}

.library-filter button.is-active {
  background: transparent;
  border-color: #df531b;
  color: #17120e;
}

.library-filter button.is-active span { color: #df531b; }

.library-gallery {
  align-items: start;
  background: rgba(255, 252, 246, 0.58);
  border: 1px solid rgba(23, 18, 14, 0.16);
  box-shadow: 0 20px 38px rgba(57, 36, 20, 0.09);
  gap: 26px clamp(13px, 1.8vw, 25px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 0;
  padding: clamp(18px, 2.7vw, 35px);
}

.library-gallery::before {
  background: linear-gradient(90deg, rgba(223, 83, 27, 0.08), transparent 27%, transparent 73%, rgba(201, 154, 63, 0.1));
  opacity: 1;
}

.library-gallery::after { display: none; }

.library-volume {
  align-self: stretch;
  background: transparent;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.library-volume:nth-child(n) { transform: none; }

.library-cover {
  align-items: center;
  aspect-ratio: 0.72;
  background: linear-gradient(145deg, #e96a2d, #b7471d 48%, #c99a3f);
  border: 7px solid transparent;
  border-image: linear-gradient(145deg, #f7b47d, #df531b 46%, #c99a3f) 1;
  box-shadow: 0 10px 0 #b56a32, 0 15px 24px rgba(97, 47, 20, 0.25);
  display: flex;
  justify-content: center;
  padding: 11px;
}

.library-cover::before {
  background: #fff8ec;
  box-shadow: inset 0 0 0 2px rgba(223, 83, 27, 0.18);
  inset: 7px;
  z-index: 0;
}

.library-cover::after { z-index: 3; }

.library-cover img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  width: 100%;
  z-index: 2;
}

.library-cover-thesis {
  align-items: flex-start;
  color: #fff;
  flex-direction: column;
  isolation: isolate;
  justify-content: flex-end;
  overflow: hidden;
  padding: 20px;
}

.library-cover-thesis::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 42%);
  box-shadow: none;
  inset: 0;
}

.library-cover-thesis::after {
  background: radial-gradient(circle at 80% 17%, rgba(255, 255, 255, 0.34), transparent 24%), linear-gradient(145deg, transparent 40%, rgba(0, 0, 0, 0.23));
  opacity: 1;
  transform: none;
}

.library-cover-thesis > span,
.library-cover-thesis > strong,
.library-cover-thesis > small { position: relative; z-index: 4; }

.library-cover-thesis > span {
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  margin-bottom: auto;
  padding: 7px 9px;
  text-transform: uppercase;
}

.library-cover-thesis > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.library-cover-thesis > small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-top: 13px;
  text-transform: uppercase;
}

.library-cover-mphil { background: linear-gradient(145deg, #213e6b, #286d83 50%, #c99a3f); }
.library-cover-phd { background: linear-gradient(145deg, #8b321e, #d15c2a 48%, #d2a240); }

.library-volume:hover .library-cover-thesis { transform: translateY(-10px) rotate(-1.5deg); }

.library-volume:hover .library-cover {
  box-shadow: 0 13px 0 #d18142, 0 26px 33px rgba(97, 47, 20, 0.3);
  transform: translateY(-10px) rotate(-1.5deg);
}

.library-volume:hover .library-cover img { filter: none; transform: scale(1.015); }

.library-volume > div:last-child {
  border-left: 1px solid rgba(23, 18, 14, 0.24);
  flex: 1;
  margin-top: 21px;
  padding: 0 0 0 12px;
}

.library-volume > div:last-child span {
  color: #df531b;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.library-volume h3 {
  color: #17120e;
  font-size: clamp(0.88rem, 1.15vw, 1.05rem);
  line-height: 1.28;
}

.library-note {
  border-bottom: 0;
  border-left: 1px solid rgba(23, 18, 14, 0.2);
  margin: 36px 0 0 auto;
  max-width: 690px;
  padding: 0 0 0 23px;
  width: 100%;
}

.library-note p { padding: 0; }

@keyframes libraryVolumeIn {
  0% { filter: blur(8px); opacity: 0; transform: translateY(35px) scale(0.94); }
  65% { filter: blur(0); opacity: 1; transform: translateY(-5px) scale(1.015); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991px) {
  .library-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
  .publication-library-section { padding: 76px 0 82px; }
  .library-heading { display: block; padding-bottom: 27px; }
  .library-heading > p { margin-top: 23px; }
  .library-intro > strong { display: block; font-size: 0.57rem; }
  .library-filter { margin-right: calc(var(--bs-gutter-x) * -0.5); padding-right: calc(var(--bs-gutter-x) * 0.5); }
  .library-filter button { padding: 11px 13px 12px; }
  .library-gallery { gap: 28px 13px; margin: 0; padding: 21px 14px 29px; }
  .library-cover { border-width: 5px; padding: 7px; }
  .library-cover::before { inset: 4px; }
  .library-volume > div:last-child { margin-top: 15px; padding-left: 9px; }
  .library-volume h3 { font-size: 0.8rem; }
  .library-note { margin-top: 28px; }
}

/* NSPP book launch series */
.launch-series-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(223, 83, 27, 0.16), transparent 25rem),
    #17120e;
  color: #fff;
  overflow: hidden;
  padding: 108px 0 116px;
  position: relative;
}

.launch-series-section::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 43rem;
  left: -28rem;
  position: absolute;
  top: 13rem;
  width: 43rem;
}

.launch-series-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 52px;
  max-width: 790px;
  padding-bottom: 36px;
  position: relative;
}

.launch-series-heading .hero-kicker { color: #ffb07c; margin-bottom: 16px; }

.launch-series-heading h2 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 5.4vw, 5.25rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.87;
  margin: 0 0 23px;
}

.launch-series-heading h2 em { color: #ffb07c; font-style: italic; font-weight: 400; }

.launch-series-heading > p:last-child {
  color: rgba(255, 255, 255, 0.67);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
  max-width: 590px;
}

.launch-series-list { display: grid; gap: 0; position: relative; }

.launch-feature {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  display: grid;
  gap: clamp(22px, 4vw, 62px);
  grid-template-columns: 46px minmax(250px, 0.85fr) minmax(0, 1.15fr);
  min-height: 410px;
  padding: 45px 0;
  position: relative;
}

.launch-feature:first-child { border-top: 1px solid rgba(255, 255, 255, 0.17); }
.launch-feature:nth-child(even) .launch-feature-visual { order: 3; }
.launch-feature:nth-child(even) .launch-feature-copy { order: 2; }

.launch-feature-no {
  align-self: start;
  color: #df531b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  padding-top: 4px;
}

.launch-feature-visual {
  height: 314px;
  position: relative;
}

.launch-feature-visual figure { margin: 0; overflow: hidden; position: absolute; }

.launch-feature-cover {
  background: #35251c;
  box-shadow: 14px 18px 27px rgba(0, 0, 0, 0.42);
  height: 262px;
  left: 6%;
  top: 21px;
  transform: rotate(-5deg);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  width: 178px;
  z-index: 3;
}

.launch-feature-cover::after {
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.28) 50%, transparent 60%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: translateX(-130%);
  transition: opacity 0.2s ease, transform 0.7s ease;
}

.launch-feature-cover img { display: block; height: 100%; object-fit: cover; width: 100%; }

.launch-feature-photo { background: #513427; box-shadow: 10px 14px 25px rgba(0, 0, 0, 0.35); }
.launch-feature-photo img { display: block; height: 100%; object-fit: cover; transition: transform 0.7s ease; width: 100%; }

.launch-feature-photo-main { height: 206px; right: 0; top: 0; width: 57%; }
.launch-feature-photo-detail { bottom: 0; height: 130px; right: 13%; width: 48%; z-index: 2; }

.launch-image-trigger {
  cursor: zoom-in;
}

.launch-image-trigger:focus-visible {
  outline: 3px solid #ffb07c;
  outline-offset: 3px;
}

.launch-feature-copy > span {
  color: #c99a3f;
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.launch-feature-copy h3 {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin: 0 0 20px;
}

.launch-feature-copy h3 em { color: #ffb07c; font-style: italic; font-weight: 400; }

.launch-feature-copy > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  line-height: 1.66;
  margin: 0 0 20px;
  max-width: 510px;
}

.launch-feature-copy > small {
  border-left: 2px solid #df531b;
  color: #fff;
  display: block;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding-left: 9px;
  text-transform: uppercase;
}

.launch-feature-gallery {
  display: grid;
  gap: 9px;
  grid-column: 2 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  order: 4;
  padding-top: 4px;
}

.launch-feature-gallery img {
  aspect-ratio: 1.18;
  background: #3d2b20;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.22);
  display: block;
  object-fit: cover;
  transition: border-color 0.3s ease, filter 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.launch-feature-gallery img:hover {
  border-color: #ffb07c;
  filter: brightness(1.08);
  position: relative;
  transform: translateY(-7px) scale(1.04);
  z-index: 2;
}

.launch-feature.is-visible .launch-feature-gallery img { animation: launchThumbnailIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(2) { animation-delay: 0.05s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(3) { animation-delay: 0.1s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(4) { animation-delay: 0.15s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(5) { animation-delay: 0.2s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(6) { animation-delay: 0.25s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(7) { animation-delay: 0.3s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(8) { animation-delay: 0.35s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(9) { animation-delay: 0.4s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(10) { animation-delay: 0.45s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(11) { animation-delay: 0.5s; }
.launch-feature.is-visible .launch-feature-gallery img:nth-child(12) { animation-delay: 0.55s; }

.launch-series-expanded .launch-feature { min-height: 0; }

@keyframes launchThumbnailIn {
  0% { filter: blur(6px); opacity: 0; transform: translateY(16px) scale(0.94); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

.launch-feature:hover .launch-feature-cover { transform: rotate(-1deg) translateY(-12px); }
.launch-feature:hover .launch-feature-cover::after { opacity: 1; transform: translateX(130%); }
.launch-feature:hover .launch-feature-photo img { transform: scale(1.06); }

.launch-feature.is-visible .launch-feature-visual { animation: launchVisualIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) both; }
.launch-feature.is-visible .launch-feature-copy { animation: launchCopyIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both; }

@keyframes launchVisualIn {
  0% { filter: blur(10px); opacity: 0; transform: translateX(-45px) rotate(-3deg); }
  100% { filter: blur(0); opacity: 1; transform: translateX(0) rotate(0); }
}

@keyframes launchCopyIn {
  0% { filter: blur(7px); opacity: 0; transform: translateY(27px); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
  .launch-series-section { padding: 78px 0 85px; }
  .launch-series-heading { margin-bottom: 35px; padding-bottom: 28px; }
  .launch-feature { align-items: start; gap: 22px; grid-template-columns: 28px minmax(0, 1fr); min-height: 0; padding: 34px 0; }
  .launch-feature-visual { grid-column: 2; height: 275px; order: 2 !important; }
  .launch-feature-copy { grid-column: 2; order: 3 !important; }
  .launch-feature-gallery { grid-column: 2; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .launch-feature-no { grid-row: 1 / span 2; font-size: 1.05rem; }
  .launch-feature-cover { height: 222px; width: 150px; }
  .launch-feature-photo-main { height: 179px; width: 58%; }
  .launch-feature-photo-detail { height: 108px; width: 47%; }
}

@media (prefers-reduced-motion: reduce) {
  .launch-feature.is-visible .launch-feature-visual,
  .launch-feature.is-visible .launch-feature-copy,
  .launch-feature.is-visible .launch-feature-gallery img { animation: none; filter: none; opacity: 1; }

  .stats-launch-divider::before,
  .stats-launch-divider i { animation: none; }
}

/* Full-screen book-launch image viewer */
.launch-image-modal .modal-content {
  background: #17120e;
  border: 1px solid rgba(255, 176, 124, 0.32);
  border-radius: 0;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
}

.launch-image-modal .modal-header {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 14px 18px;
}

.launch-image-modal .modal-title {
  color: #ffb07c;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}

.launch-image-modal .modal-body {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: min(72vh, 760px);
  padding: 22px 70px 24px;
  position: relative;
}

.launch-image-modal figure { margin: 0; max-height: 70vh; text-align: center; }

.launch-image-modal figure img {
  display: block;
  margin: 0 auto;
  max-height: calc(70vh - 38px);
  max-width: 100%;
  object-fit: contain;
}

.launch-image-modal figcaption {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 12px auto 0;
  max-width: 700px;
}

.launch-modal-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 176, 124, 0.42);
  border-radius: 50%;
  color: #ffb07c;
  display: flex;
  font-size: 1.1rem;
  height: 43px;
  justify-content: center;
  position: absolute;
  top: calc(50% - 22px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 43px;
}

.launch-modal-nav:hover,
.launch-modal-nav:focus-visible {
  background: #df531b;
  color: #fff;
  outline: 0;
  transform: scale(1.08);
}

.launch-modal-prev { left: 16px; }
.launch-modal-next { right: 16px; }

@media (max-width: 575px) {
  .launch-image-modal .modal-dialog { margin: 10px; }
  .launch-image-modal .modal-body { min-height: 60vh; padding: 18px 54px 20px; }
  .launch-image-modal figure img { max-height: calc(60vh - 38px); }
  .launch-modal-nav { height: 37px; width: 37px; }
  .launch-modal-prev { left: 8px; }
  .launch-modal-next { right: 8px; }
}

/* Publications & articles: an editorial archive placed after the NSPP launches. */
.publication-chronicle-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(224, 83, 27, 0.12), transparent 21rem),
    radial-gradient(circle at 6% 88%, rgba(201, 154, 63, 0.16), transparent 23rem),
    #f7f0e4;
  color: #1b1511;
  overflow: hidden;
  padding: 112px 0 118px;
  position: relative;
}

.publication-chronicle-section::before {
  border: 1px solid rgba(39, 27, 20, 0.12);
  border-radius: 50%;
  content: "";
  height: 33rem;
  left: -23rem;
  position: absolute;
  top: -12rem;
  width: 33rem;
}

.publication-chronicle-heading {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.54fr);
  margin-bottom: 31px;
  position: relative;
}

.publication-chronicle-heading h2 {
  color: #211712;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.1vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.83;
  margin: 0;
}

.publication-chronicle-heading h2 em { color: #dc531d; font-weight: 400; }

.publication-chronicle-heading .hero-kicker { color: #a3421c; margin-bottom: 20px; }

.publication-chronicle-heading > p {
  border-left: 2px solid #d85620;
  color: #59463b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 5px;
  padding: 4px 0 4px 19px;
}

.publication-chronicle-meta {
  align-items: center;
  border-bottom: 1px solid rgba(42, 27, 19, 0.25);
  border-top: 1px solid rgba(42, 27, 19, 0.25);
  color: #6e4c38;
  display: flex;
  font-size: 0.67rem;
  font-weight: 800;
  gap: 13px;
  letter-spacing: 0.13em;
  padding: 13px 0;
  position: relative;
  text-transform: uppercase;
}

.publication-chronicle-meta::after {
  animation: chronicleLineTravel 4.6s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, #df531b, #cf9b42, transparent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 110px;
}

.publication-chronicle-meta i {
  align-items: center;
  background: #211712;
  border-radius: 50%;
  color: #f7c074;
  display: inline-flex;
  font-size: 0.72rem;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.publication-chronicle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 7px;
}

.publication-chronicle-entry {
  align-items: start;
  border-bottom: 1px solid rgba(42, 27, 19, 0.21);
  display: grid;
  gap: 20px;
  grid-template-columns: 85px minmax(0, 1fr);
  min-height: 142px;
  overflow: hidden;
  padding: 28px 34px 28px 0;
  position: relative;
}

.publication-chronicle-entry:nth-child(even) { border-left: 1px solid rgba(42, 27, 19, 0.21); padding-left: 34px; padding-right: 0; }

.publication-chronicle-entry::before {
  background: #d85620;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  top: 0;
  transition: height 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  width: 4px;
  z-index: 2;
}

.publication-chronicle-entry:nth-child(even)::before { left: -1px; }
.publication-chronicle-entry:hover::before { height: 100%; }

.publication-chronicle-entry::after {
  background: linear-gradient(105deg, rgba(216, 86, 32, 0.1), rgba(207, 155, 66, 0.15), transparent 73%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-103%);
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.publication-chronicle-entry > * { position: relative; z-index: 1; }
.publication-chronicle-entry:hover::after { transform: translateX(0); }

.chronicle-year {
  color: #bf471c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 2px 0 0;
}

.chronicle-index {
  color: #9a754d;
  display: block;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.publication-chronicle-entry h3 {
  color: #251914;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.03rem, 1.35vw, 1.3rem);
  font-weight: 400;
  line-height: 1.32;
  margin: 0;
  transition: color 0.25s ease, transform 0.3s ease;
}

.publication-chronicle-entry:hover h3 { color: #bb4319; transform: translateX(5px); }

.publication-chronicle-entry.reveal-up { opacity: 0; transform: translateY(40px) scale(0.975); }
.publication-chronicle-entry.reveal-up.is-visible { animation: chronicleEntryIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s) both; opacity: 1; transform: none; }
.publication-chronicle-entry.reveal-up.is-visible .chronicle-year { animation: chronicleYearFloat 3.8s ease-in-out var(--reveal-delay, 0s) infinite; }

@keyframes chronicleLineTravel {
  0%, 100% { opacity: 0.35; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(calc(100vw - 110px)); }
}

@keyframes chronicleEntryIn {
  0% { filter: blur(8px); opacity: 0; transform: translateY(40px) scale(0.975); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes chronicleYearFloat {
  0%, 100% { text-shadow: 0 0 0 rgba(216, 86, 32, 0); transform: translateY(0); }
  50% { text-shadow: 0 8px 18px rgba(216, 86, 32, 0.22); transform: translateY(-4px); }
}

@media (min-width: 768px) {
  .publication-chronicle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .publication-chronicle-entry,
  .publication-chronicle-entry:nth-child(even) {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 166px;
    padding: 26px 24px;
  }

  .publication-chronicle-grid .publication-chronicle-entry:nth-child(3n + 1) { border-left: 0; padding-left: 0; }
  .publication-chronicle-grid .publication-chronicle-entry:nth-child(3n + 2) { border-left: 1px solid rgba(42, 27, 19, 0.21); }
  .publication-chronicle-grid .publication-chronicle-entry:nth-child(3n) { border-left: 1px solid rgba(42, 27, 19, 0.21); }
  .publication-chronicle-grid .publication-chronicle-entry:nth-child(3n) { padding-right: 0; }
  .publication-chronicle-entry:nth-child(even)::before { left: 0; }
  .chronicle-year { font-size: 1.83rem; }
  .publication-chronicle-entry h3 { font-size: clamp(0.98rem, 1.08vw, 1.18rem); }
}

@media (max-width: 767px) {
  .publication-chronicle-section { padding: 80px 0 86px; }
  .publication-chronicle-heading { align-items: start; gap: 22px; grid-template-columns: 1fr; margin-bottom: 27px; }
  .publication-chronicle-heading h2 { font-size: clamp(3rem, 15vw, 5.4rem); }
  .publication-chronicle-heading > p { font-size: 0.92rem; }
  .publication-chronicle-grid { grid-template-columns: 1fr; }
  .publication-chronicle-entry,
  .publication-chronicle-entry:nth-child(even) { border-left: 0; grid-template-columns: 72px minmax(0, 1fr); min-height: 0; padding: 24px 0; }
  .publication-chronicle-entry::before,
  .publication-chronicle-entry:nth-child(even)::before { left: 0; }
  .chronicle-year { font-size: 1.85rem; }
  .publication-chronicle-entry h3 { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  .publication-chronicle-meta::after { animation: none; }
  .publication-chronicle-entry.reveal-up,
  .publication-chronicle-entry.reveal-up.is-visible { animation: none; filter: none; opacity: 1; transform: none; }
  .publication-chronicle-entry.reveal-up.is-visible .chronicle-year { animation: none; }
}

/* Gallery & Events — a pair of cinematic, scrollable visual archives. */
.event-atlas-section {
  background:
    radial-gradient(circle at 92% 7%, rgba(221, 83, 29, 0.2), transparent 23rem),
    radial-gradient(circle at 8% 54%, rgba(201, 154, 63, 0.12), transparent 28rem),
    #17120e;
  color: #fff7ee;
  overflow: hidden;
  padding: 116px 0 124px;
}

.event-atlas-heading {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.52fr);
  margin-bottom: 45px;
}

.event-atlas-heading .hero-kicker { color: #f3a560; margin-bottom: 18px; }

.event-atlas-heading h2 {
  color: #fff6ea;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.1vw, 6.6rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
  margin: 0;
}

.event-atlas-heading h2 em { color: #f19b58; font-weight: 400; }

.event-atlas-heading > p {
  border-left: 2px solid #df6b32;
  color: rgba(255, 244, 234, 0.67);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 4px;
  padding: 5px 0 5px 19px;
}

.event-atlas-hero {
  --atlas-light-x: 50%;
  --atlas-light-y: 50%;
  --atlas-tilt-x: 0deg;
  --atlas-tilt-y: 0deg;
  background: #251a14;
  border: 1px solid rgba(250, 180, 112, 0.36);
  height: clamp(310px, 47vw, 590px);
  isolation: isolate;
  margin: 0;
  overflow: hidden;
  position: relative;
  transform: perspective(1200px) rotateX(var(--atlas-tilt-x)) rotateY(var(--atlas-tilt-y));
  transform-style: preserve-3d;
  transition: box-shadow 0.45s ease, transform 0.32s ease;
}

.event-atlas-hero::after {
  background: transparent;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.event-atlas-hero img {
  height: 100%;
  object-fit: cover;
  position: relative;
  transition: filter 0.8s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.event-atlas-hero:hover { box-shadow: 0 28px 64px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(243, 165, 96, 0.35); }
.event-atlas-hero:hover img { filter: saturate(1.1) contrast(1.04); transform: scale(1.045); }

.event-atlas-hero figcaption {
  align-items: end;
  background: #fff3e5;
  bottom: 18px;
  box-shadow: 0 12px 28px rgba(25, 16, 10, 0.26);
  color: #1b130e;
  display: flex;
  gap: 15px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 13px 16px;
  position: absolute;
  right: auto;
  z-index: 2;
}

.event-atlas-hero figcaption span {
  color: #f4a55f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.event-atlas-hero figcaption strong { color: #1b130e; font-size: clamp(0.78rem, 1.2vw, 1rem); letter-spacing: 0.07em; text-transform: uppercase; }
.event-atlas-hero figcaption i { color: #f4a55f; font-size: 1.2rem; margin-left: auto; }

.event-atlas-intro,
.rtmes-gallery-intro {
  align-items: center;
  border-bottom: 1px solid rgba(255, 238, 218, 0.18);
  display: flex;
  gap: 18px;
  margin-top: 22px;
  min-height: 67px;
  padding: 12px 0;
}

.event-atlas-intro > span,
.rtmes-gallery-intro > span {
  color: #f3a560;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.event-atlas-intro p { color: rgba(255, 244, 234, 0.62); font-size: 0.79rem; line-height: 1.5; margin: 0; }

.event-atlas-controls { display: flex; gap: 7px; margin-left: auto; }

.event-atlas-arrow {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(243, 165, 96, 0.46);
  border-radius: 50%;
  color: #f3a560;
  display: inline-flex;
  height: 37px;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  width: 37px;
}

.event-atlas-arrow:hover,
.event-atlas-arrow:focus-visible { background: #df531b; border-color: #df531b; color: #fff; outline: 0; transform: translateY(-3px); }

.event-atlas-rail {
  -ms-overflow-style: none;
  display: grid;
  gap: 14px;
  grid-auto-columns: clamp(215px, 23vw, 325px);
  grid-auto-flow: column;
  margin: 22px calc(50% - 50vw) 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 5px max(20px, calc((100vw - min(1140px, 100vw - 40px)) / 2)) 22px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.event-atlas-rail::-webkit-scrollbar { display: none; }

.event-atlas-tile {
  --atlas-light-x: 50%;
  --atlas-light-y: 50%;
  --atlas-tilt-x: 0deg;
  --atlas-tilt-y: 0deg;
  background: #2b1f18;
  border: 1px solid rgba(255, 220, 180, 0.2);
  height: 278px;
  margin: 0;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transform-style: preserve-3d;
  transition: border-color 0.3s ease, box-shadow 0.35s ease, transform 0.32s ease;
}

.event-atlas-tile-tall { height: 350px; }
.event-atlas-tile-wide { height: 236px; margin-top: auto; }

.event-atlas-tile img {
  cursor: zoom-in;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: filter 0.55s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.event-atlas-tile::after {
  background: radial-gradient(circle at var(--atlas-light-x) var(--atlas-light-y), rgba(255, 227, 191, 0.42), transparent 34%), linear-gradient(145deg, rgba(223, 83, 27, 0.48), transparent 48%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.3s ease;
}

.event-atlas-tile figcaption {
  background: #f3a560;
  bottom: 0;
  color: #1e1510;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  padding: 7px 9px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.event-atlas-tile:hover img,
.event-atlas-tile:focus-within img { filter: saturate(1.15) contrast(1.05); transform: scale(1.09) rotate(-1deg); }
.event-atlas-tile:hover::after { opacity: 1; }
.event-atlas-tile:hover {
  border-color: rgba(243, 165, 96, 0.75);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.37);
  transform: perspective(850px) translateY(-9px) rotateX(var(--atlas-tilt-x)) rotateY(var(--atlas-tilt-y));
  z-index: 2;
}

.rtmes-gallery-chapter {
  border-top: 1px solid rgba(243, 165, 96, 0.31);
  margin-top: 96px;
  padding-top: 79px;
  position: relative;
}

.rtmes-gallery-chapter::before {
  animation: rtmesSignal 4s ease-in-out infinite;
  background: #f3a560;
  box-shadow: 0 0 0 8px rgba(243, 165, 96, 0.12), 0 0 28px rgba(223, 83, 27, 0.62);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 8px;
}

.rtmes-gallery-heading { max-width: 870px; }
.rtmes-gallery-heading .hero-kicker { color: #f3a560; margin-bottom: 18px; }

.rtmes-gallery-heading h3 {
  color: #fff4e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
}

.rtmes-gallery-heading h3 em { color: #e78042; font-style: normal; }
.rtmes-gallery-heading > p { color: rgba(255, 244, 234, 0.65); line-height: 1.8; margin: 25px 0 0; max-width: 780px; }
.rtmes-gallery-intro { border-top: 1px solid rgba(255, 238, 218, 0.18); margin-top: 31px; }
.rtmes-gallery-rail { margin-top: 20px; }

.event-atlas-section .launch-image-trigger:focus-visible { outline: 3px solid #f3a560; outline-offset: 4px; }

@keyframes rtmesSignal {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(calc(min(1140px, 100vw - 40px) - 8px)); }
}

@media (max-width: 767px) {
  .event-atlas-section { padding: 82px 0 88px; }
  .event-atlas-heading { align-items: start; gap: 22px; grid-template-columns: 1fr; margin-bottom: 33px; }
  .event-atlas-heading h2 { font-size: clamp(3rem, 15vw, 5.4rem); }
  .event-atlas-heading > p { font-size: 0.92rem; }
  .event-atlas-hero { height: 330px; }
  .event-atlas-hero figcaption { align-items: center; }
  .event-atlas-hero figcaption strong { line-height: 1.4; }
  .event-atlas-intro { align-items: flex-start; flex-wrap: wrap; gap: 10px 15px; padding: 15px 0; }
  .event-atlas-intro p { flex-basis: calc(100% - 105px); }
  .event-atlas-controls { margin-left: auto; }
  .event-atlas-rail { grid-auto-columns: minmax(228px, 77vw); padding-bottom: 18px; }
  .event-atlas-tile { height: 258px; }
  .event-atlas-tile-tall { height: 322px; }
  .event-atlas-tile-wide { height: 226px; }
  .rtmes-gallery-chapter { margin-top: 70px; padding-top: 63px; }
  .rtmes-gallery-heading > p { font-size: 0.92rem; }
}

@media (prefers-reduced-motion: reduce) {
  .event-atlas-hero img,
  .event-atlas-tile img,
  .event-atlas-tile::after,
  .event-atlas-arrow { transition: none; }
  .rtmes-gallery-chapter::before { animation: none; }
}

/* Cinematic motion layer for the complete Gallery & Events experience. */
.event-atlas-section::before {
  animation: atlasAmbientGlow 11s ease-in-out infinite alternate;
  background: radial-gradient(circle, rgba(242, 156, 86, 0.16), transparent 67%);
  content: "";
  height: 46rem;
  pointer-events: none;
  position: absolute;
  right: -24rem;
  top: 16rem;
  width: 46rem;
}

.event-atlas-section { position: relative; }
.event-atlas-section .container { position: relative; z-index: 1; }

.event-atlas-heading.is-visible h2 { animation: atlasHeadingIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.event-atlas-heading.is-visible > p { animation: atlasHeadingCopyIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both; }

.event-atlas-hero::before {
  animation: atlasHeroGleam 7.5s cubic-bezier(0.22, 1, 0.36, 1) 1s infinite;
  background: linear-gradient(105deg, transparent 31%, rgba(255, 238, 213, 0.46) 48%, transparent 65%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(-135%);
  z-index: 3;
}

.event-atlas-hero figcaption { animation: atlasCaptionSettle 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.32s both; }
.event-atlas-hero figcaption i { animation: atlasArrowPulse 1.8s ease-in-out infinite; }

.event-atlas-intro::after,
.rtmes-gallery-intro::after {
  animation: atlasSignalSweep 4.4s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, #f3a560, transparent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 118px;
}

.event-atlas-intro,
.rtmes-gallery-intro { position: relative; }

.event-atlas-rail.is-visible .event-atlas-tile {
  animation: atlasTileRise 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.event-atlas-rail.is-visible .event-atlas-tile:nth-child(1) { animation-delay: 0.05s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(2) { animation-delay: 0.11s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3) { animation-delay: 0.17s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(4) { animation-delay: 0.23s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(5) { animation-delay: 0.29s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(6) { animation-delay: 0.35s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(7) { animation-delay: 0.41s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(8) { animation-delay: 0.47s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(n + 9) { animation-delay: 0.53s; }

.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n + 2) { animation-name: atlasTileDrop; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n) { animation-name: atlasTileZoom; }

.rtmes-gallery-chapter { overflow: hidden; }
.rtmes-gallery-chapter::after {
  animation: atlasGridDrift 12s linear infinite;
  background-image: linear-gradient(rgba(243, 165, 96, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 165, 96, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  inset: 0 0 0 42%;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.rtmes-gallery-chapter > * { position: relative; z-index: 1; }

@keyframes atlasAmbientGlow {
  0% { opacity: 0.38; transform: translate3d(0, 0, 0) scale(0.9); }
  100% { opacity: 0.9; transform: translate3d(-9rem, 6rem, 0) scale(1.15); }
}

@keyframes atlasHeadingIn {
  0% { filter: blur(9px); opacity: 0; transform: translateY(45px) skewY(3deg); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) skewY(0); }
}

@keyframes atlasHeadingCopyIn {
  0% { opacity: 0; transform: translateX(25px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes atlasHeroGleam {
  0%, 66% { opacity: 0; transform: translateX(-135%); }
  74% { opacity: 0.8; }
  91%, 100% { opacity: 0; transform: translateX(135%); }
}

@keyframes atlasCaptionSettle {
  0% { opacity: 0; transform: translateY(22px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes atlasArrowPulse {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(4px, -4px); }
}

@keyframes atlasSignalSweep {
  0%, 100% { opacity: 0.3; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(calc(min(1140px, 100vw - 40px) - 118px)); }
}

@keyframes atlasTileRise {
  0% { filter: blur(8px); opacity: 0; transform: translate3d(0, 34px, 0) rotate(-1.5deg); }
  100% { filter: blur(0); opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes atlasTileDrop {
  0% { filter: blur(8px); opacity: 0; transform: translate3d(0, -31px, 0) rotate(1.5deg); }
  100% { filter: blur(0); opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}

@keyframes atlasTileZoom {
  0% { filter: blur(8px); opacity: 0; transform: scale(0.87); }
  100% { filter: blur(0); opacity: 1; transform: scale(1); }
}

@keyframes atlasGridDrift {
  0% { background-position: 0 0; }
  100% { background-position: 72px 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .event-atlas-section::before,
  .event-atlas-heading.is-visible h2,
  .event-atlas-heading.is-visible > p,
  .event-atlas-hero::before,
  .event-atlas-hero figcaption,
  .event-atlas-hero figcaption i,
  .event-atlas-intro::after,
  .rtmes-gallery-intro::after,
  .event-atlas-rail.is-visible .event-atlas-tile,
  .rtmes-gallery-chapter::after { animation: none; }
  .event-atlas-hero,
  .event-atlas-tile { transform: none; }
}

/* Gallery redesign: a developed contact-sheet exhibition, not a filmstrip. */
.event-atlas-section {
  background:
    linear-gradient(rgba(79, 52, 36, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 52, 36, 0.065) 1px, transparent 1px),
    #eadfce;
  background-size: 28px 28px, 28px 28px, auto;
  color: #221812;
  padding: 122px 0 132px;
}

.event-atlas-section::before { animation: none; background: transparent; }
.event-atlas-heading { border-bottom: 1px solid rgba(45, 29, 20, 0.22); margin-bottom: 31px; padding-bottom: 33px; }
.event-atlas-heading .hero-kicker { color: #a8441c; }
.event-atlas-heading h2 { color: #241914; }
.event-atlas-heading h2 em { color: #bd481c; }
.event-atlas-heading > p { border-color: #bf4a1c; color: #564136; }
.event-atlas-heading.is-visible h2,
.event-atlas-heading.is-visible > p { animation: none; }

.event-atlas-hero {
  background: #17100d;
  border: 12px solid #fff6e9;
  box-shadow: 0 20px 0 #c45b2a, 0 37px 48px rgba(45, 25, 14, 0.24);
  cursor: zoom-in;
  height: clamp(330px, 44vw, 560px);
  isolation: isolate;
  transform: none;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.event-atlas-hero::before {
  animation: atlasHeroAperture 1.25s cubic-bezier(0.65, 0, 0.35, 1) 0.22s both;
  background: #1e1510;
  clip-path: polygon(0 0, 49% 0, 50% 49%, 51% 0, 100% 0, 100% 100%, 51% 100%, 50% 51%, 49% 100%, 0 100%);
  content: "";
  inset: -1px;
  pointer-events: none;
  position: absolute;
  transform: none;
  z-index: 4;
}

.event-atlas-hero::after { background: linear-gradient(0deg, rgba(20, 13, 9, 0.42), transparent 38%); z-index: 1; }
.event-atlas-hero:hover { box-shadow: 0 25px 0 #e0713d, 0 42px 58px rgba(45, 25, 14, 0.31); transform: translateY(-7px); }
.event-atlas-hero:hover img { filter: none; transform: scale(1.025); }
.event-atlas-hero figcaption { background: #fff6e9; bottom: 17px; box-shadow: 0 8px 0 #be4a1c; left: 17px; z-index: 3; }
.event-atlas-hero figcaption span { color: #bd481c; }
.event-atlas-hero figcaption i { animation: none; color: #bd481c; }

.event-atlas-intro,
.rtmes-gallery-intro {
  border-bottom: 1px solid rgba(45, 29, 20, 0.22);
  color: #5c4436;
  justify-content: space-between;
  margin-top: 52px;
  min-height: 0;
  padding: 15px 0;
}

.event-atlas-intro > span,
.rtmes-gallery-intro > span { color: #a8441c; }
.event-atlas-intro p,
.rtmes-gallery-intro p { color: #5c4436; font-size: 0.78rem; line-height: 1.6; margin: 0; max-width: 460px; text-align: right; }
.event-atlas-intro::after,
.rtmes-gallery-intro::after { animation: none; background: #bd481c; height: 3px; width: 82px; }
.event-atlas-controls { display: none; }

.event-atlas-rail,
.rtmes-gallery-rail {
  display: grid;
  gap: 14px;
  grid-auto-columns: auto;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 25px 0 0;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.event-atlas-tile,
.event-atlas-tile-tall,
.event-atlas-tile-wide {
  background: #281b14;
  border: 5px solid #fff6e9;
  box-shadow: 0 5px 0 rgba(155, 69, 28, 0.58);
  grid-column: span 3;
  grid-row: span 1;
  height: 216px;
  margin: 0;
  transform: none;
  transition: box-shadow 0.32s ease, transform 0.32s ease;
}

.event-atlas-rail .event-atlas-tile:nth-child(7n + 1),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 1) { grid-column: span 6; height: 310px; }
.event-atlas-rail .event-atlas-tile:nth-child(7n + 4),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 4) { grid-column: span 6; height: 310px; }
.event-atlas-rail .event-atlas-tile:nth-child(7n + 6),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 6) { grid-column: span 6; height: 250px; }

.event-atlas-tile img { filter: grayscale(1) contrast(1.08); transform: none; transition: filter 0.65s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1); }
.event-atlas-tile::after { background: linear-gradient(120deg, rgba(255, 246, 233, 0.16), transparent 48%); opacity: 1; transition: opacity 0.4s ease; }
.event-atlas-tile figcaption { background: #bd481c; color: #fff9ee; padding: 7px 10px; z-index: 2; }
.event-atlas-tile:hover { border-color: #fffdf8; box-shadow: 0 11px 0 #bd481c, 0 25px 34px rgba(63, 34, 17, 0.29); transform: translateY(-10px) rotate(-0.45deg); z-index: 3; }
.event-atlas-tile:hover img,
.event-atlas-tile:focus-within img { filter: grayscale(0) contrast(1); transform: scale(1.055); }
.event-atlas-tile:hover::after { opacity: 0; }

.event-atlas-rail.is-visible .event-atlas-tile,
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n + 2),
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n) {
  animation: atlasContactSheetDevelop 0.92s cubic-bezier(0.65, 0, 0.35, 1) var(--atlas-develop-delay, 0s) both;
}

.event-atlas-rail.is-visible .event-atlas-tile img { animation: atlasImageDevelop 1.08s ease-out var(--atlas-develop-delay, 0s) backwards; filter: grayscale(0) contrast(1) brightness(1); }

.event-atlas-rail.is-visible .event-atlas-tile:nth-child(1) { --atlas-develop-delay: 0.04s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(2) { --atlas-develop-delay: 0.10s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3) { --atlas-develop-delay: 0.16s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(4) { --atlas-develop-delay: 0.22s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(5) { --atlas-develop-delay: 0.28s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(6) { --atlas-develop-delay: 0.34s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(7) { --atlas-develop-delay: 0.40s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(8) { --atlas-develop-delay: 0.46s; }
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(n + 9) { --atlas-develop-delay: 0.52s; }

.rtmes-gallery-chapter { background: #211712; border: 0; box-shadow: 0 0 0 17px #211712, 0 0 0 18px rgba(189, 72, 28, 0.72); color: #fff6ea; margin: 112px 17px 0; overflow: visible; padding: 68px 46px 48px; }
.rtmes-gallery-chapter::before,
.rtmes-gallery-chapter::after { display: none; }
.rtmes-gallery-heading { max-width: 940px; }
.rtmes-gallery-heading .hero-kicker { color: #e99252; }
.rtmes-gallery-heading h3 { color: #fff6ea; }
.rtmes-gallery-heading h3 em { color: #e99252; }
.rtmes-gallery-heading > p { color: rgba(255, 246, 234, 0.7); }
.rtmes-gallery-intro { border-color: rgba(255, 246, 234, 0.23); color: #fff6ea; margin-top: 31px; }
.rtmes-gallery-intro > span { color: #e99252; }
.rtmes-gallery-intro p { color: rgba(255, 246, 234, 0.67); }
.rtmes-gallery-intro::after { background: #e99252; }
.rtmes-gallery-rail { margin-top: 25px; }
.rtmes-gallery-rail .event-atlas-tile { border-color: rgba(255, 246, 234, 0.94); box-shadow: 0 5px 0 rgba(233, 146, 82, 0.66); }
.rtmes-gallery-rail .event-atlas-tile figcaption { background: #e99252; color: #211712; }
.rtmes-gallery-rail .event-atlas-tile:hover { box-shadow: 0 11px 0 #e99252, 0 25px 34px rgba(0, 0, 0, 0.42); }

@keyframes atlasHeroAperture {
  0% { clip-path: circle(150% at 50% 50%); }
  100% { clip-path: circle(0% at 50% 50%); }
}

@keyframes atlasContactSheetDevelop {
  0% { clip-path: inset(46% 46% 46% 46%); opacity: 0; }
  55% { clip-path: inset(0 0 0 0); opacity: 1; }
  100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes atlasImageDevelop {
  0% { filter: grayscale(1) contrast(1.18) brightness(1.55); transform: scale(1.14); }
  58% { filter: grayscale(1) contrast(1.1) brightness(1.08); transform: scale(1.025); }
  100% { filter: grayscale(0) contrast(1) brightness(1); transform: scale(1); }
}

@media (max-width: 767px) {
  .event-atlas-section { padding: 82px 0 92px; }
  .event-atlas-heading { padding-bottom: 26px; }
  .event-atlas-hero { border-width: 7px; box-shadow: 0 12px 0 #c45b2a, 0 24px 32px rgba(45, 25, 14, 0.22); }
  .event-atlas-hero figcaption { bottom: 10px; left: 10px; max-width: calc(100% - 20px); padding: 10px 11px; }
  .event-atlas-hero figcaption strong { font-size: 0.66rem; line-height: 1.3; }
  .event-atlas-intro,
  .rtmes-gallery-intro { align-items: flex-start; flex-direction: column; gap: 5px; margin-top: 38px; }
  .event-atlas-intro p,
  .rtmes-gallery-intro p { text-align: left; }
  .event-atlas-rail,
  .rtmes-gallery-rail { gap: 8px; grid-template-columns: repeat(6, minmax(0, 1fr)); margin-top: 18px; }
  .event-atlas-tile,
  .event-atlas-tile-tall,
  .event-atlas-tile-wide { border-width: 3px; grid-column: span 3; height: 150px; }
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 1),
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 4),
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 6),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 1),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 4),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 6) { grid-column: span 6; height: 222px; }
  .rtmes-gallery-chapter { box-shadow: 0 0 0 9px #211712, 0 0 0 10px rgba(189, 72, 28, 0.72); margin: 78px 9px 0; padding: 47px 19px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .event-atlas-hero::before,
  .event-atlas-rail.is-visible .event-atlas-tile,
  .event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n + 2),
  .event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n),
  .event-atlas-rail.is-visible .event-atlas-tile img { animation: none; clip-path: none; filter: none; opacity: 1; }
  .event-atlas-hero,
  .event-atlas-tile { transition: none; }
}

/* Compact Gallery Focus Deck — keeps the complete archive in a short section. */
.event-atlas-section { padding-bottom: 108px; }
.event-atlas-hero { height: clamp(270px, 35vw, 445px); }
.event-atlas-intro,
.rtmes-gallery-intro { align-items: center; margin-top: 38px; }
.event-atlas-controls { display: flex; }
.event-atlas-arrow { background: #241914; border-color: #241914; color: #fff6e9; }
.event-atlas-arrow:hover,
.event-atlas-arrow:focus-visible { background: #bd481c; border-color: #bd481c; transform: rotate(12deg); }

.event-atlas-rail,
.rtmes-gallery-rail {
  -ms-overflow-style: none;
  align-items: center;
  display: flex;
  gap: 18px;
  grid-template-columns: none;
  margin: 15px -24px 0;
  min-height: 402px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  padding: 32px 24px 42px;
  scrollbar-color: #bd481c rgba(78, 51, 33, 0.17);
  scrollbar-width: thin;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.event-atlas-rail::-webkit-scrollbar { display: block; height: 4px; }
.event-atlas-rail::-webkit-scrollbar-track { background: rgba(78, 51, 33, 0.17); }
.event-atlas-rail::-webkit-scrollbar-thumb { background: #bd481c; }

.event-atlas-tile,
.event-atlas-tile-tall,
.event-atlas-tile-wide,
.event-atlas-rail .event-atlas-tile:nth-child(7n + 1),
.event-atlas-rail .event-atlas-tile:nth-child(7n + 4),
.event-atlas-rail .event-atlas-tile:nth-child(7n + 6),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 1),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 4),
.rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 6) {
  border: 8px solid #fff6e9;
  box-shadow: 0 8px 0 rgba(189, 72, 28, 0.65);
  flex: 0 0 clamp(280px, 53vw, 630px);
  grid-column: auto;
  height: 320px;
  opacity: 0.76;
  scroll-snap-align: center;
  transform: scale(0.85) rotate(-2deg);
  transition: border-color 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease, opacity 0.45s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-atlas-tile:nth-child(even) { transform: scale(0.85) rotate(2deg); }
.event-atlas-tile img,
.event-atlas-rail.is-visible .event-atlas-tile img { animation: none; filter: saturate(1) contrast(1); transform: scale(1); }
.event-atlas-tile::after { background: linear-gradient(135deg, rgba(17, 11, 8, 0.18), transparent 64%); opacity: 0.28; }
.event-atlas-tile:hover { box-shadow: 0 8px 0 rgba(189, 72, 28, 0.65); transform: scale(0.9) rotate(0); }
.event-atlas-tile:hover img { filter: saturate(1.08) contrast(1.03); transform: scale(1.03); }

.event-atlas-rail.is-visible .event-atlas-tile,
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n + 2),
.event-atlas-rail.is-visible .event-atlas-tile:nth-child(3n) { animation: none; clip-path: none; }

.event-atlas-tile.atlas-active {
  border-color: #fffdf8;
  box-shadow: 0 13px 0 #bd481c, 0 31px 43px rgba(52, 29, 16, 0.34);
  opacity: 1;
  transform: scale(1) rotate(0);
  z-index: 3;
}

.event-atlas-tile.atlas-active img { filter: saturate(1.08) contrast(1.02); }
.event-atlas-tile.atlas-active::after { opacity: 0; }
.event-atlas-tile.atlas-active figcaption { animation: atlasDeckStamp 0.72s cubic-bezier(0.16, 1, 0.3, 1) both; }
.event-atlas-tile.atlas-active { animation: atlasDeckFocus 0.72s cubic-bezier(0.16, 1, 0.3, 1) both; }

.rtmes-gallery-chapter { margin-top: 78px; padding-bottom: 31px; }
.rtmes-gallery-rail { margin-top: 7px; min-height: 394px; }
.rtmes-gallery-rail .event-atlas-tile.atlas-active { box-shadow: 0 13px 0 #e99252, 0 31px 43px rgba(0, 0, 0, 0.43); }

@keyframes atlasDeckFocus {
  0% { filter: brightness(0.7); opacity: 0.35; transform: scale(0.78) rotate(-4deg); }
  58% { filter: brightness(1.14); opacity: 1; transform: scale(1.045) rotate(0.6deg); }
  100% { filter: brightness(1); opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes atlasDeckStamp {
  0% { opacity: 0; transform: translate(20px, 20px) rotate(8deg); }
  100% { opacity: 1; transform: translate(0, 0) rotate(0); }
}

@media (max-width: 767px) {
  .event-atlas-hero { height: 250px; }
  .event-atlas-intro,
  .rtmes-gallery-intro { align-items: flex-start; flex-direction: column; }
  .event-atlas-controls { align-self: flex-end; margin-top: -39px; }
  .event-atlas-rail,
  .rtmes-gallery-rail { gap: 12px; margin: 8px -12px 0; min-height: 290px; padding: 20px 12px 32px; }
  .event-atlas-tile,
  .event-atlas-tile-tall,
  .event-atlas-tile-wide,
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 1),
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 4),
  .event-atlas-rail .event-atlas-tile:nth-child(7n + 6),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 1),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 4),
  .rtmes-gallery-rail .event-atlas-tile:nth-child(7n + 6) { border-width: 5px; flex-basis: 78vw; height: 220px; }
  .rtmes-gallery-chapter { margin-top: 63px; }
}

@media (prefers-reduced-motion: reduce) {
  .event-atlas-tile.atlas-active,
  .event-atlas-tile.atlas-active figcaption { animation: none; }
}

/* Professional summary transition before the Gallery. */
.stats-gallery-band .stat-item.reveal-up.is-visible strong { animation: statsGalleryNumberIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s) both; }
.stats-gallery-band .stat-item.reveal-up.is-visible span { animation: statsGalleryLabelIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--reveal-delay, 0s) + 0.12s) both; }

@keyframes statsGalleryNumberIn {
  0% { filter: blur(8px); opacity: 0; transform: translateY(25px) scale(0.76); }
  72% { filter: blur(0); opacity: 1; transform: translateY(-4px) scale(1.06); }
  100% { filter: blur(0); opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes statsGalleryLabelIn {
  0% { opacity: 0; transform: translateY(11px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .stats-gallery-band .stat-item.reveal-up.is-visible strong,
  .stats-gallery-band .stat-item.reveal-up.is-visible span { animation: none; }
}

/* Source contact and footer content — scoped to the final page area only. */
.source-contact-cta p { margin-bottom: 13px; }
.source-contact-cta h2 { margin-bottom: 30px; }
.source-contact-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.source-contact-actions a { margin: 0; min-height: 62px; padding: 0 27px; }

.source-footer { padding: 41px 0 34px; }
.source-footer-nav { display: flex; flex-wrap: wrap; gap: 20px 35px; justify-content: center; }
.source-footer-nav a { color: rgba(255, 255, 255, 0.9); font-size: 1.03rem; text-decoration: none; transition: color 0.25s ease; }
.source-footer-nav a:hover,
.source-footer-nav a:focus-visible { color: #ffb07c; outline: 0; }
.source-footer .footer-bottom { display: block; margin-top: 29px; padding-top: 24px; text-align: center; }

@media (max-width: 575px) {
  .source-contact-actions { align-items: stretch; flex-direction: column; margin: 0 auto; max-width: 360px; }
  .source-contact-actions a { justify-content: center; }
}

/* Final Contact + Footer: a distinct correspondence-desk composition. */
.contact-dispatch { background: #f3ede3; color: #211712; padding: 28px 0; }
.contact-dispatch-shell { background: #df531b; display: grid; grid-template-columns: 112px minmax(250px, 0.95fr) minmax(360px, 1.25fr); min-height: 316px; overflow: hidden; position: relative; }
.contact-dispatch-shell::before { animation: dispatchLineSweep 5s ease-in-out infinite; background: #ffca8d; content: ""; height: 1px; left: 0; position: absolute; top: 50%; transform: scaleX(0); transform-origin: left; width: 100%; }
.contact-dispatch-mark { align-items: center; background: #211712; color: #ffb07c; display: flex; flex-direction: column; font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; gap: 19px; justify-content: center; letter-spacing: -0.05em; position: relative; }
.contact-dispatch-mark::after { background: rgba(255, 176, 124, 0.32); content: ""; height: 64px; position: absolute; width: 1px; }
.contact-dispatch-mark span { background: #211712; padding: 5px 0; position: relative; z-index: 1; }
.contact-dispatch-mark i { animation: dispatchPlane 3.2s ease-in-out infinite; color: #ffb07c; font-size: 1.25rem; }
.contact-dispatch-copy { align-self: center; padding: 43px clamp(27px, 4vw, 65px); position: relative; }
.contact-dispatch-copy > p { color: rgba(255, 247, 235, 0.77); font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; margin: 0 0 19px; text-transform: uppercase; }
.contact-dispatch-copy h2 { color: #fff9ef; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.55rem, 4.3vw, 4.8rem); font-weight: 400; letter-spacing: -0.07em; line-height: 0.85; margin: 0; }
.contact-dispatch-copy h2 em { color: #211712; font-style: normal; }
.contact-dispatch-copy > span { color: #211712; display: block; font-size: 0.77rem; font-weight: 800; letter-spacing: 0.1em; margin-top: 24px; text-transform: uppercase; }
.contact-dispatch-actions { align-self: stretch; border-left: 1px solid rgba(255, 245, 232, 0.36); display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); }
.contact-dispatch-actions a { align-items: center; color: #fff9ef; display: grid; gap: 18px; grid-template-columns: 35px minmax(0, 1fr) 32px; padding: 24px 31px; position: relative; text-decoration: none; transition: background 0.3s ease, color 0.3s ease, padding 0.3s ease; }
.contact-dispatch-actions a + a { border-top: 1px solid rgba(255, 245, 232, 0.36); }
.contact-dispatch-actions > a > i { color: #211712; font-size: 1.52rem; }
.contact-dispatch-actions span { display: grid; gap: 5px; min-width: 0; overflow-wrap: anywhere; }
.contact-dispatch-actions small { color: rgba(255, 249, 239, 0.7); font-size: 0.61rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-dispatch-actions b { align-items: center; border: 1px solid rgba(255, 249, 239, 0.7); border-radius: 50%; display: flex; height: 31px; justify-content: center; transition: background 0.3s ease, transform 0.3s ease; width: 31px; }
.contact-dispatch-actions a:hover, .contact-dispatch-actions a:focus-visible { background: #fff8ed; color: #211712; outline: 0; padding-left: 40px; }
.contact-dispatch-actions a:hover small, .contact-dispatch-actions a:focus-visible small { color: #a8431a; }
.contact-dispatch-actions a:hover b, .contact-dispatch-actions a:focus-visible b { background: #211712; border-color: #211712; color: #ffb07c; transform: rotate(45deg); }
.dispatch-footer { background: #211712; color: #fff9ef; padding: 42px 0 25px; }
.dispatch-footer-top { align-items: center; display: flex; gap: 36px; justify-content: space-between; }
.dispatch-footer-brand { align-items: center; color: #fff9ef; display: inline-flex; font-family: Georgia, "Times New Roman", serif; font-size: 1.31rem; gap: 12px; text-decoration: none; }
.dispatch-footer-brand span { align-items: center; background: #df531b; color: #211712; display: inline-flex; font-size: 0.88rem; font-weight: 700; height: 37px; justify-content: center; width: 37px; }
.dispatch-footer-nav { display: flex; flex-wrap: wrap; gap: 19px 31px; justify-content: flex-end; }
.dispatch-footer-nav a { color: rgba(255, 249, 239, 0.78); font-size: 0.87rem; font-weight: 700; position: relative; text-decoration: none; }
.dispatch-footer-nav a::after { background: #df531b; bottom: -7px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; width: 100%; }
.dispatch-footer-nav a:hover, .dispatch-footer-nav a:focus-visible { color: #fff9ef; outline: 0; }
.dispatch-footer-nav a:hover::after, .dispatch-footer-nav a:focus-visible::after { transform: scaleX(1); }
.dispatch-footer-bottom { border-color: rgba(255, 249, 239, 0.18); color: rgba(255, 249, 239, 0.58); font-size: 0.75rem; margin-top: 37px; padding-top: 18px; }
@keyframes dispatchLineSweep { 0%, 18% { opacity: 0; transform: scaleX(0); } 45% { opacity: 0.72; transform: scaleX(1); } 72%, 100% { opacity: 0; transform: scaleX(1); } }
@keyframes dispatchPlane { 0%, 100% { transform: translate(0, 0) rotate(0); } 50% { transform: translate(5px, -6px) rotate(-9deg); } }
@media (max-width: 991px) { .contact-dispatch-shell { grid-template-columns: 80px minmax(220px, 0.9fr) minmax(300px, 1.15fr); } .contact-dispatch-copy { padding-left: 35px; padding-right: 35px; } .contact-dispatch-actions a { padding-left: 22px; padding-right: 22px; } }
@media (max-width: 767px) { .contact-dispatch { padding: 15px 0; } .contact-dispatch-shell { grid-template-columns: 62px 1fr; } .contact-dispatch-mark { grid-row: span 2; } .contact-dispatch-copy { padding: 38px 26px 30px; } .contact-dispatch-copy h2 { font-size: clamp(2.6rem, 13vw, 4.6rem); } .contact-dispatch-actions { border-left: 0; border-top: 1px solid rgba(255, 245, 232, 0.36); grid-column: 2; } .contact-dispatch-actions a { min-height: 91px; } .dispatch-footer-top { align-items: flex-start; flex-direction: column; } .dispatch-footer-nav { justify-content: flex-start; } .dispatch-footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; } }
@media (prefers-reduced-motion: reduce) { .contact-dispatch-shell::before, .contact-dispatch-mark i { animation: none; } .contact-dispatch-actions a, .contact-dispatch-actions b, .dispatch-footer-nav a::after { transition: none; } }

/* Contact + Footer redesign: the Open Channel terminal. */
.contact-terminal { background: #f1e7d9; color: #1d2e36; padding: 0; }
.contact-terminal-grid { display: grid; grid-template-columns: minmax(290px, 0.9fr) minmax(0, 1.1fr); min-height: 410px; }
.contact-terminal-head { background: #173c50; color: #fff7ed; overflow: hidden; padding: clamp(46px, 6vw, 76px); position: relative; }
.contact-terminal-head::before { border: 1px solid rgba(255, 186, 113, 0.38); border-radius: 50%; content: ""; height: 29rem; left: -15rem; position: absolute; top: -10rem; width: 29rem; }
.contact-terminal-head > * { position: relative; z-index: 1; }
.contact-terminal-head > p { align-items: center; color: #ffbd76; display: flex; font-size: 0.65rem; font-weight: 800; gap: 11px; letter-spacing: 0.16em; margin: 0 0 31px; text-transform: uppercase; }
.contact-terminal-head > p i { color: #fff7ed; font-size: 0.9rem; }
.contact-terminal-head > p span:last-child { color: rgba(255, 247, 237, 0.55); margin-left: auto; }
.contact-terminal-head h2 { color: #fff7ed; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.35rem, 6vw, 6.3rem); font-weight: 400; letter-spacing: -0.08em; line-height: 0.75; margin: 0; }
.contact-terminal-head h2 em { color: #ffbd76; font-style: normal; }
.contact-terminal-signal { bottom: 53px; display: flex; gap: 7px; left: clamp(46px, 6vw, 76px); position: absolute; }
.contact-terminal-signal i { animation: terminalSignal 1.35s ease-in-out infinite; background: #ffbd76; display: block; height: 4px; width: 22px; }
.contact-terminal-signal i:nth-child(2) { animation-delay: 0.13s; width: 46px; }.contact-terminal-signal i:nth-child(3) { animation-delay: 0.26s; width: 14px; }.contact-terminal-signal i:nth-child(4) { animation-delay: 0.39s; width: 33px; }.contact-terminal-signal i:nth-child(5) { animation-delay: 0.52s; width: 19px; }
.contact-terminal-body { align-content: center; background: #fffaf2; display: grid; padding: clamp(43px, 6vw, 76px); position: relative; }
.contact-terminal-body::before { background: #df531b; content: ""; height: 100%; left: 0; position: absolute; top: 0; width: 8px; }
.contact-terminal-body > p { color: #5d5148; font-size: 1.02rem; line-height: 1.7; margin: 0 0 39px; max-width: 420px; }
.contact-terminal-links { border-top: 1px solid rgba(32, 45, 52, 0.21); }
.contact-terminal-links a { align-items: center; border-bottom: 1px solid rgba(32, 45, 52, 0.21); color: #1d2e36; display: grid; gap: 14px; grid-template-columns: 135px minmax(0, 1fr) 35px; min-height: 78px; position: relative; text-decoration: none; transition: color 0.3s ease, padding 0.3s ease; }
.contact-terminal-links a::before { background: #df531b; content: ""; height: 100%; left: 0; position: absolute; transform: scaleY(0); transform-origin: bottom; transition: transform 0.3s ease; width: 4px; }
.contact-terminal-links a:hover, .contact-terminal-links a:focus-visible { color: #c34719; outline: 0; padding-left: 14px; }
.contact-terminal-links a:hover::before, .contact-terminal-links a:focus-visible::before { transform: scaleY(1); }
.contact-terminal-links small { color: #a24520; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-terminal-links strong { font-size: clamp(0.92rem, 1.35vw, 1.12rem); overflow-wrap: anywhere; }
.contact-terminal-links i { align-items: center; border: 1px solid rgba(29, 46, 54, 0.4); border-radius: 50%; display: inline-flex; height: 31px; justify-content: center; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; width: 31px; }
.contact-terminal-links a:hover i, .contact-terminal-links a:focus-visible i { background: #df531b; border-color: #df531b; color: #fff; transform: rotate(45deg); }

.terminal-footer { background: #102a39; color: #eff5f3; padding: 53px 0 25px; }
.terminal-footer-grid { align-items: center; display: grid; gap: 40px; grid-template-columns: 1fr 1.5fr 1.65fr; }
.terminal-footer-brand { align-items: center; color: #fff8ef; display: inline-flex; font-family: Georgia, "Times New Roman", serif; font-size: 1.02rem; gap: 13px; line-height: 0.98; text-decoration: none; }
.terminal-footer-brand span { align-items: center; background: #df531b; color: #102a39; display: inline-flex; font-family: Arial, Helvetica, sans-serif; font-size: 0.76rem; font-weight: 900; height: 43px; justify-content: center; width: 43px; }
.terminal-footer-grid > p { color: rgba(239, 245, 243, 0.56); font-size: 0.73rem; line-height: 1.7; margin: 0; }
.terminal-footer-nav { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: flex-end; }
.terminal-footer-nav a { color: rgba(239, 245, 243, 0.88); font-size: 0.82rem; font-weight: 700; position: relative; text-decoration: none; }
.terminal-footer-nav a::before { color: #df531b; content: "↗"; font-size: 0.65rem; margin-right: 6px; opacity: 0; transition: opacity 0.22s ease; }
.terminal-footer-nav a:hover, .terminal-footer-nav a:focus-visible { color: #ffbd76; outline: 0; }.terminal-footer-nav a:hover::before, .terminal-footer-nav a:focus-visible::before { opacity: 1; }
.terminal-footer-bottom { align-items: center; border-color: rgba(239, 245, 243, 0.16); color: rgba(239, 245, 243, 0.5); font-size: 0.7rem; margin-top: 45px; padding-top: 18px; }
.terminal-footer-bottom a { color: #ffbd76; font-size: 0.72rem; font-weight: 700; text-decoration: none; }.terminal-footer-bottom a i { margin-left: 4px; transition: transform 0.25s ease; }.terminal-footer-bottom a:hover i { transform: translateY(-4px); }
@keyframes terminalSignal { 0%, 100% { opacity: 0.26; transform: scaleX(0.65); } 50% { opacity: 1; transform: scaleX(1); } }
@media (max-width: 991px) { .contact-terminal-grid { grid-template-columns: 1fr; }.contact-terminal-head { min-height: 310px; }.contact-terminal-body { min-height: 325px; }.terminal-footer-grid { grid-template-columns: 1fr 1fr; }.terminal-footer-nav { grid-column: 1 / -1; justify-content: flex-start; } }
@media (max-width: 575px) { .contact-terminal-head { min-height: 295px; padding: 38px 27px; }.contact-terminal-signal { bottom: 36px; left: 27px; }.contact-terminal-body { padding: 37px 27px; }.contact-terminal-links a { gap: 9px; grid-template-columns: 1fr 30px; padding: 15px 0; }.contact-terminal-links small { grid-column: 1 / -1; }.contact-terminal-links i { grid-column: 2; grid-row: 1 / span 2; }.terminal-footer-grid { gap: 29px; grid-template-columns: 1fr; }.terminal-footer-nav { gap: 12px 20px; }.terminal-footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; } }
@media (prefers-reduced-motion: reduce) { .contact-terminal-signal i { animation: none; }.contact-terminal-links a, .contact-terminal-links a::before, .contact-terminal-links i, .terminal-footer-nav a::before { transition: none; } }

/* Contact + Footer redesign: signature-ledger edition, using the core site palette. */
.contact-ledger { background: #f3ede3; color: #211712; padding: 68px 0; }
.contact-ledger-frame { background: #fff9ef; border: 1px solid rgba(33, 23, 18, 0.22); display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr); min-height: 370px; position: relative; }
.contact-ledger-frame::before { background: repeating-linear-gradient(90deg, #df531b 0 10px, transparent 10px 19px); content: ""; height: 5px; left: 0; position: absolute; top: 0; width: 100%; }
.contact-ledger-frame::after { border: 1px solid rgba(223, 83, 27, 0.45); content: ""; inset: 12px; pointer-events: none; position: absolute; }
.contact-ledger-title { background: #211712; color: #fff9ef; overflow: hidden; padding: clamp(45px, 5vw, 67px); position: relative; }
.contact-ledger-title::before { animation: ledgerOrbit 12s linear infinite; border: 1px solid rgba(255, 176, 124, 0.31); border-radius: 50%; content: ""; height: 33rem; left: -20rem; position: absolute; top: -12rem; width: 33rem; }
.contact-ledger-title > * { position: relative; z-index: 1; }
.contact-ledger-title p { color: #ffb07c; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; margin: 0 0 28px; text-transform: uppercase; }
.contact-ledger-title h2 { color: #fff9ef; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 5.8vw, 6rem); font-weight: 400; letter-spacing: -0.08em; line-height: 0.76; margin: 0; }
.contact-ledger-title h2 em { color: #df531b; font-style: normal; }
.contact-ledger-title > span { bottom: 50px; color: rgba(255, 249, 239, 0.66); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.13em; position: absolute; text-transform: uppercase; }
.contact-ledger-links { align-content: center; display: grid; padding: clamp(45px, 6vw, 76px); position: relative; z-index: 1; }
.contact-ledger-links > p { color: #665349; font-size: 0.93rem; line-height: 1.65; margin: 0 0 27px; max-width: 440px; }
.contact-ledger-links a { align-items: end; border-top: 1px solid rgba(33, 23, 18, 0.22); color: #211712; display: grid; gap: 4px 18px; grid-template-columns: minmax(0, 1fr) 32px; padding: 17px 0; position: relative; text-decoration: none; }
.contact-ledger-links a:last-child { border-bottom: 1px solid rgba(33, 23, 18, 0.22); }
.contact-ledger-links a::after { background: #df531b; bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
.contact-ledger-links a span { color: #a33f1a; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; }.contact-ledger-links a strong { font-size: clamp(1rem, 1.55vw, 1.25rem); overflow-wrap: anywhere; }.contact-ledger-links a i { align-items: center; background: #f1e4d1; border-radius: 50%; display: inline-flex; grid-column: 2; grid-row: 1 / span 2; height: 30px; justify-content: center; transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease; width: 30px; }
.contact-ledger-links a:hover, .contact-ledger-links a:focus-visible { color: #c34719; outline: 0; }.contact-ledger-links a:hover::after, .contact-ledger-links a:focus-visible::after { transform: scaleX(1); }.contact-ledger-links a:hover i, .contact-ledger-links a:focus-visible i { background: #df531b; color: #fff9ef; transform: rotate(45deg); }
.contact-ledger-seal { align-items: center; animation: ledgerSealIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; background: #df531b; border: 6px solid #fff9ef; border-radius: 50%; bottom: -39px; box-shadow: 0 0 0 1px rgba(33, 23, 18, 0.22); color: #211712; display: flex; flex-direction: column; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; height: 98px; justify-content: center; position: absolute; right: 9%; width: 98px; z-index: 3; }.contact-ledger-seal i { font-size: 0.63rem; margin-top: 4px; }

.ledger-footer { background: #f3ede3; color: #211712; padding: 82px 0 27px; }.ledger-footer-top { align-items: center; border-bottom: 1px solid rgba(33, 23, 18, 0.25); display: flex; gap: 36px; justify-content: space-between; padding-bottom: 42px; }.ledger-footer-brand { align-items: center; color: #211712; display: inline-flex; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; gap: 13px; text-decoration: none; }.ledger-footer-brand span { align-items: center; background: #211712; color: #ffb07c; display: inline-flex; font-family: Arial, Helvetica, sans-serif; font-size: 0.75rem; font-weight: 900; height: 42px; justify-content: center; width: 42px; }.ledger-footer-nav { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: flex-end; }.ledger-footer-nav a { color: #56463d; font-size: 0.86rem; font-weight: 800; position: relative; text-decoration: none; }.ledger-footer-nav a::before { color: #df531b; content: "•"; margin-right: 5px; opacity: 0; transition: opacity 0.22s ease; }.ledger-footer-nav a:hover, .ledger-footer-nav a:focus-visible { color: #211712; outline: 0; }.ledger-footer-nav a:hover::before, .ledger-footer-nav a:focus-visible::before { opacity: 1; }.ledger-footer-bottom { align-items: center; border: 0; color: #6c5b50; font-size: 0.72rem; margin-top: 22px; padding-top: 0; }.ledger-footer-bottom a { align-items: center; background: #211712; border-radius: 50%; color: #ffb07c; display: inline-flex; height: 31px; justify-content: center; text-decoration: none; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; width: 31px; }.ledger-footer-bottom a:hover { background: #df531b; color: #fff9ef; transform: translateY(-4px); }
@keyframes ledgerOrbit { 0% { transform: rotate(0); } 100% { transform: rotate(360deg); } }@keyframes ledgerSealIn { 0% { opacity: 0; transform: rotate(-35deg) scale(0); } 75% { opacity: 1; transform: rotate(8deg) scale(1.08); } 100% { opacity: 1; transform: rotate(0) scale(1); } }
@media (max-width: 767px) { .contact-ledger { padding: 37px 0 68px; }.contact-ledger-frame { grid-template-columns: 1fr; }.contact-ledger-title { min-height: 294px; padding: 42px 30px; }.contact-ledger-title > span { bottom: 35px; }.contact-ledger-links { padding: 43px 30px; }.contact-ledger-seal { bottom: -48px; height: 90px; right: 30px; width: 90px; }.ledger-footer { padding-top: 83px; }.ledger-footer-top { align-items: flex-start; flex-direction: column; padding-bottom: 31px; }.ledger-footer-nav { justify-content: flex-start; }.ledger-footer-bottom { align-items: flex-start; flex-wrap: wrap; gap: 11px; }.ledger-footer-bottom a { margin-left: auto; } }
@media (prefers-reduced-motion: reduce) { .contact-ledger-title::before, .contact-ledger-seal { animation: none; }.contact-ledger-links a::after, .contact-ledger-links a i, .ledger-footer-nav a::before, .ledger-footer-bottom a { transition: none; } }

/* Contact + Footer redesign: the animated correspondence beacon. */
.contact-beacon { background: #f3ede3; color: #211712; padding: 69px 0; }
.contact-beacon-stage { align-items: center; background: #211712; display: grid; min-height: 440px; overflow: hidden; padding: 72px clamp(28px, 8vw, 130px); position: relative; text-align: center; }
.contact-beacon-stage::before { background: radial-gradient(circle at 50% 50%, rgba(223, 83, 27, 0.3), transparent 30%), radial-gradient(circle at 50% 50%, rgba(255, 176, 124, 0.1), transparent 56%); content: ""; inset: 0; pointer-events: none; position: absolute; }
.contact-beacon-orbits { inset: 0; pointer-events: none; position: absolute; }.contact-beacon-orbits i { border: 1px solid rgba(255, 176, 124, 0.21); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }.contact-beacon-orbits i:nth-child(1) { animation: beaconOrbitOne 13s linear infinite; height: 280px; width: 530px; }.contact-beacon-orbits i:nth-child(2) { animation: beaconOrbitTwo 18s linear infinite; border-color: rgba(223, 83, 27, 0.4); height: 500px; width: 255px; }.contact-beacon-orbits i:nth-child(3) { animation: beaconOrbitOne 24s linear infinite reverse; height: 660px; width: 840px; }.contact-beacon-orbits b { animation: beaconPulse 2.6s ease-in-out infinite; background: #ffb07c; border-radius: 50%; box-shadow: 0 0 0 9px rgba(255, 176, 124, 0.13), 0 0 31px rgba(223, 83, 27, 0.65); height: 9px; left: calc(50% + 251px); position: absolute; top: calc(50% - 6px); width: 9px; }
.contact-beacon-copy, .contact-beacon-actions { position: relative; z-index: 1; }.contact-beacon-copy > p { color: #ffb07c; font-size: 0.66rem; font-weight: 800; letter-spacing: 0.17em; margin: 0 0 22px; text-transform: uppercase; }.contact-beacon-copy h2 { color: #fff9ef; font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 6.4vw, 6.5rem); font-weight: 400; letter-spacing: -0.085em; line-height: 0.77; margin: 0; }.contact-beacon-copy h2 em { color: #df531b; font-style: normal; }.contact-beacon-copy > span { color: rgba(255, 249, 239, 0.62); display: block; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; margin-top: 24px; text-transform: uppercase; }
.contact-beacon-actions { display: flex; gap: 14px; justify-content: center; margin-top: 39px; }.contact-beacon-actions a { align-items: center; background: rgba(255, 249, 239, 0.06); border: 1px solid rgba(255, 176, 124, 0.45); color: #fff9ef; display: grid; gap: 12px; grid-template-columns: 31px minmax(0, 1fr) 22px; min-height: 73px; padding: 12px 17px; text-align: left; text-decoration: none; transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); width: min(100%, 335px); }.contact-beacon-actions a > i { color: #ffb07c; font-size: 1.5rem; }.contact-beacon-actions a span { display: grid; gap: 4px; min-width: 0; }.contact-beacon-actions small { color: rgba(255, 249, 239, 0.6); font-size: 0.57rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }.contact-beacon-actions strong { font-size: 0.84rem; overflow-wrap: anywhere; }.contact-beacon-actions b { color: #df531b; font-family: Georgia, "Times New Roman", serif; font-size: 0.86rem; }.contact-beacon-actions a:hover, .contact-beacon-actions a:focus-visible { background: #df531b; border-color: #df531b; outline: 0; transform: translateY(-8px); }.contact-beacon-actions a:hover > i, .contact-beacon-actions a:focus-visible > i, .contact-beacon-actions a:hover b, .contact-beacon-actions a:focus-visible b { color: #211712; }
.beacon-footer { background: #fff9ef; color: #211712; padding: 48px 0 24px; }.beacon-footer-top { align-items: center; border-bottom: 1px solid rgba(33, 23, 18, 0.2); display: flex; gap: 40px; justify-content: space-between; padding-bottom: 34px; }.beacon-footer-brand { align-items: center; color: #211712; display: grid; gap: 0 12px; grid-template-columns: 42px 1fr; text-decoration: none; }.beacon-footer-brand span { align-items: center; background: #df531b; color: #211712; display: inline-flex; font-family: Arial, Helvetica, sans-serif; font-size: 0.76rem; font-weight: 900; grid-row: span 2; height: 42px; justify-content: center; width: 42px; }.beacon-footer-brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.16rem; }.beacon-footer-brand small { color: #895136; font-size: 0.57rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }.beacon-footer-nav { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: flex-end; }.beacon-footer-nav a { color: #59483d; font-size: 0.85rem; font-weight: 800; text-decoration: none; transition: color 0.25s ease; }.beacon-footer-nav a:hover, .beacon-footer-nav a:focus-visible { color: #df531b; outline: 0; }.beacon-footer-bottom { align-items: center; border: 0; color: #77655a; font-size: 0.71rem; margin-top: 19px; padding: 0; }.beacon-footer-bottom a { color: #a4421c; font-size: 0.73rem; font-weight: 800; text-decoration: none; }.beacon-footer-bottom a i { display: inline-block; margin-left: 5px; transition: transform 0.25s ease; }.beacon-footer-bottom a:hover i { transform: translate(3px, -3px); }
@keyframes beaconOrbitOne { from { transform: translate(-50%, -50%) rotate(0); } to { transform: translate(-50%, -50%) rotate(360deg); } }@keyframes beaconOrbitTwo { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0); } }@keyframes beaconPulse { 0%, 100% { box-shadow: 0 0 0 9px rgba(255, 176, 124, 0.13), 0 0 31px rgba(223, 83, 27, 0.65); transform: scale(0.85); } 50% { box-shadow: 0 0 0 18px rgba(255, 176, 124, 0.03), 0 0 48px rgba(223, 83, 27, 0.84); transform: scale(1.15); } }
@media (max-width: 767px) { .contact-beacon { padding: 35px 0; }.contact-beacon-stage { min-height: 530px; padding: 60px 22px; }.contact-beacon-orbits i:nth-child(1) { height: 220px; width: 380px; }.contact-beacon-orbits i:nth-child(2) { height: 390px; width: 180px; }.contact-beacon-orbits i:nth-child(3) { height: 510px; width: 570px; }.contact-beacon-orbits b { left: calc(50% + 180px); }.contact-beacon-actions { align-items: stretch; flex-direction: column; margin: 39px auto 0; max-width: 360px; }.contact-beacon-actions a { width: 100%; }.beacon-footer-top { align-items: flex-start; flex-direction: column; }.beacon-footer-nav { justify-content: flex-start; }.beacon-footer-bottom { align-items: flex-start; flex-direction: column; gap: 9px; } }
@media (prefers-reduced-motion: reduce) { .contact-beacon-orbits i, .contact-beacon-orbits b { animation: none; }.contact-beacon-actions a, .beacon-footer-nav a, .beacon-footer-bottom a i { transition: none; } }

/* High-contrast contact-link hover state. */
.contact-beacon-actions a:hover,
.contact-beacon-actions a:focus-visible {
  background: #ffb07c;
  border-color: #ffb07c;
  color: #211712;
}

.contact-beacon-actions a:hover > i,
.contact-beacon-actions a:focus-visible > i,
.contact-beacon-actions a:hover strong,
.contact-beacon-actions a:focus-visible strong,
.contact-beacon-actions a:hover b,
.contact-beacon-actions a:focus-visible b {
  color: #211712;
}

.contact-beacon-actions a:hover small,
.contact-beacon-actions a:focus-visible small {
  color: rgba(33, 23, 18, 0.72);
}

/* Animated fixed back-to-top control. */
.back-to-top {
  align-items: center;
  background: linear-gradient(135deg, #df531b, #f3a560);
  border: 2px solid rgba(255, 249, 239, 0.92);
  border-radius: 50%;
  bottom: 25px;
  box-shadow: 0 13px 28px rgba(91, 43, 21, 0.26);
  color: #211712;
  display: inline-flex;
  font-size: 1.25rem;
  height: 56px;
  justify-content: center;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  right: 25px;
  transform: translateY(24px) scale(0.76);
  transition: background 0.3s ease, box-shadow 0.3s ease, opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  width: 56px;
  z-index: 1030;
}

.back-to-top::before {
  animation: backToTopOrbit 7s linear infinite;
  border: 1px dashed rgba(255, 249, 239, 0.78);
  border-radius: inherit;
  content: "";
  inset: 5px;
  pointer-events: none;
  position: absolute;
}

.back-to-top i {
  animation: backToTopArrow 1.8s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.back-to-top.is-visible {
  animation: backToTopAppear 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: linear-gradient(135deg, #ffb07c, #df531b);
  box-shadow: 0 18px 36px rgba(91, 43, 21, 0.36);
  color: #211712;
  outline: 0;
  transform: translateY(-7px) scale(1.08);
}

@keyframes backToTopAppear {
  0% { opacity: 0; transform: translateY(24px) scale(0.72) rotate(-18deg); }
  70% { opacity: 1; transform: translateY(-4px) scale(1.06) rotate(5deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}

@keyframes backToTopOrbit {
  to { transform: rotate(360deg); }
}

@keyframes backToTopArrow {
  0%, 100% { transform: translateY(2px); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 575px) {
  .back-to-top {
    bottom: 17px;
    height: 49px;
    right: 17px;
    width: 49px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .back-to-top.is-visible,
  .back-to-top::before,
  .back-to-top i {
    animation: none;
  }
}

/* The Punjab Health Foundation mark is taller than the other organization logos. */
.experience-card-logo--phf img {
  height: 62px;
  width: 62px;
}

.experience-card-logo--mcmc img {
  height: 72px;
  width: 72px;
}

@media (max-width: 767px) {
  .experience-card-logo--phf img {
    height: 52px;
    width: 52px;
  }

  .experience-card-logo--mcmc img {
    height: 59px;
    width: 59px;
  }

  /* Compact dedicated layout for the taller MCMC mark on phones. */
  .experience-card--mcmc {
    min-height: 0;
    padding: 18px 18px 22px;
  }

  .experience-card--mcmc .experience-card-head {
    gap: 12px;
    grid-template-columns: 72px minmax(0, 1fr);
    margin-bottom: 15px;
  }

  .experience-card--mcmc .experience-card-logo {
    height: 72px;
    padding: 7px;
    width: 72px;
  }

  .experience-card--mcmc .experience-card-logo img {
    height: 54px;
    width: 54px;
  }

  .experience-card--mcmc .experience-card span {
    font-size: 0.62rem;
    letter-spacing: 0.85px;
    line-height: 1.3;
    padding-left: 8px;
  }

  .experience-card--mcmc h4 {
    font-size: 1.12rem;
    line-height: 1.2;
    min-height: 0;
    padding-right: 24px;
  }
}

/* Organizations Served: stable current-highlight layout on tablet and mobile. */
@media (max-width: 991.98px) {
  .experience-feature {
    align-items: start;
    gap: 16px 20px;
    grid-template-areas:
      "logo mark"
      "logo copy";
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 24px;
  }

  .experience-feature-mark {
    grid-area: mark;
    justify-self: end;
    margin: 0;
    position: static;
    right: auto;
    top: auto;
  }

  .experience-feature-logo {
    grid-area: logo;
    height: 92px;
    width: 92px;
  }

  .experience-feature-logo img {
    height: 68px;
    width: 68px;
  }

  .experience-feature-copy {
    grid-area: copy;
    min-width: 0;
  }

  .experience-feature-copy h3 {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 767px) {
  .experience-feature {
    gap: 14px;
    grid-template-areas:
      "logo mark"
      "copy copy";
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 20px;
  }

  .experience-feature-mark {
    align-self: center;
    font-size: 0.6rem;
    justify-self: end;
    letter-spacing: 1.15px;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .experience-feature-logo {
    border-radius: 20px;
    height: 78px;
    width: 78px;
  }

  .experience-feature-logo img {
    height: 56px;
    width: 56px;
  }

  .experience-feature-copy span {
    font-size: 0.68rem;
    letter-spacing: 1.3px;
    margin-bottom: 9px;
  }

  .experience-feature-copy h3 {
    font-size: clamp(1.45rem, 7.2vw, 1.95rem);
    line-height: 1.08;
    margin-bottom: 11px;
  }

  .experience-feature-copy p {
    font-size: 0.92rem;
    line-height: 1.58;
  }
}

@media (max-width: 390px) {
  .experience-feature {
    grid-template-columns: 70px minmax(0, 1fr);
    padding: 18px;
  }

  .experience-feature-logo {
    height: 70px;
    width: 70px;
  }

  .experience-feature-logo img {
    height: 50px;
    width: 50px;
  }

  .experience-feature-mark {
    font-size: 0.56rem;
    letter-spacing: 0.85px;
    padding: 7px 8px;
  }
}

/* Publications library: responsive archive layout for tablets and phones. */
@media (max-width: 991.98px) {
  .publication-library-section {
    padding: 86px 0 92px;
  }

  .library-heading {
    display: block;
    padding-bottom: 30px;
  }

  .library-heading > p {
    margin-top: 21px;
    max-width: 560px;
  }

  .library-filter {
    flex-wrap: nowrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    scrollbar-width: none;
  }

  .library-filter::-webkit-scrollbar {
    display: none;
  }

  .library-filter button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .library-gallery {
    gap: 27px 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 28px;
  }

  .library-volume > div:last-child {
    margin-top: 17px;
  }

  .library-volume h3 {
    font-size: clamp(0.86rem, 1.7vw, 1rem);
  }
}

@media (max-width: 575px) {
  .publication-library-section {
    padding: 68px 0 76px;
  }

  .library-heading {
    padding-bottom: 24px;
  }

  .library-heading h2 {
    font-size: clamp(2.35rem, 12.5vw, 3.45rem);
    line-height: 0.9;
  }

  .library-heading > p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 18px;
    padding-left: 13px;
  }

  .library-intro {
    display: grid;
    gap: 2px 11px;
    grid-template-columns: 58px minmax(0, 1fr);
    margin-bottom: 20px;
    padding: 14px 0;
  }

  .library-intro > span {
    align-self: center;
    font-size: 3rem;
    grid-row: span 2;
  }

  .library-intro p {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .library-intro > i {
    display: none;
  }

  .library-intro > strong {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    margin-left: 0;
  }

  .library-filter {
    gap: 0;
    margin-bottom: 24px;
    scroll-snap-type: x proximity;
  }

  .library-filter button {
    font-size: 0.66rem;
    padding: 11px 13px 12px;
  }

  .library-gallery {
    gap: 25px 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 20px 13px 31px;
  }

  .library-cover {
    aspect-ratio: 0.69;
    border-width: 5px;
    padding: 6px;
  }

  .library-cover::before {
    inset: 4px;
  }

  .library-volume > div:last-child {
    margin-top: 13px;
    padding-left: 8px;
  }

  .library-volume > div:last-child span {
    font-size: 0.61rem;
    margin-bottom: 6px;
  }

  .library-volume h3 {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .library-note {
    align-items: flex-start;
    gap: 11px;
    margin-top: 25px;
    padding-left: 14px;
  }

  .library-note p {
    font-size: 0.94rem;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  .library-gallery {
    gap: 21px 9px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .library-volume h3 {
    font-size: 0.74rem;
  }
}

/* Professional summary band: readable metric grid on tablets and phones. */
@media (max-width: 991.98px) {
  .stats-band {
    padding: 58px 0 50px;
  }

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

  .stat-item {
    min-width: 0;
    padding: 22px 14px;
    position: relative;
  }

  .stat-item:nth-child(3n) {
    border-right: 0;
  }

  .stat-item:nth-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 176, 124, 0.2);
  }

  .stat-item:not(:nth-child(3n)) {
    border-right: 1px solid rgba(255, 176, 124, 0.2);
  }

  .stat-item strong {
    font-size: clamp(2.65rem, 6vw, 3.7rem);
    margin-bottom: 9px;
  }

  .stat-item span {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .stats-launch-divider {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .stats-band {
    padding: 42px 0 36px;
  }

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

  .stat-item {
    padding: 20px 12px 19px;
  }

  .stat-item:nth-child(-n + 3),
  .stat-item:nth-child(3n) {
    border-bottom: 0;
    border-right: 0;
  }

  .stat-item:not(:nth-child(3n)) {
    border-right: 0;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 176, 124, 0.2);
  }

  .stat-item:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(255, 176, 124, 0.2);
  }

  .stat-item strong {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
    margin-bottom: 8px;
  }

  .stat-item span {
    font-size: 0.79rem;
    line-height: 1.35;
  }

  .stats-launch-divider {
    gap: 10px;
    height: 52px;
  }

  .stats-launch-divider span {
    width: min(26vw, 150px);
  }

  .stats-launch-divider i {
    font-size: 0.74rem;
    height: 31px;
    width: 31px;
  }
}

@media (max-width: 390px) {
  .stat-item {
    padding-left: 8px;
    padding-right: 8px;
  }

  .stat-item span {
    font-size: 0.73rem;
  }
}

/* Navigation: full desktop menu, polished collapsed menu for tablet and mobile. */
@media (min-width: 1200px) {
  .navbar-brand {
    gap: 10px;
    min-width: 228px;
  }

  .brand-name {
    font-size: 1.24rem;
  }

  .navbar-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.78rem;
    padding: 26px 0 !important;
    white-space: nowrap;
  }

  .nav-cta {
    font-size: 0.84rem;
    margin-left: 18px;
    min-width: 110px;
    padding: 11px 18px;
  }
}

@media (min-width: 1400px) {
  .navbar-nav {
    gap: 19px;
  }

  .nav-link {
    font-size: 0.84rem;
  }

  .nav-cta {
    margin-left: 24px;
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: rgba(243, 237, 227, 0.98);
    border-top: 1px solid rgba(23, 18, 14, 0.1);
    margin: 12px -12px 0;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 8px 20px 20px;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    font-size: 0.92rem;
    padding: 12px 0 !important;
  }

  .nav-link::after {
    bottom: 4px;
    transform-origin: left;
    width: 52px;
  }

  .nav-cta {
    margin: 13px 0 0;
    min-width: 132px;
    padding: 12px 20px;
  }
}

@media (max-width: 575px) {
  .editorial-navbar .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .navbar-brand {
    gap: 8px;
    max-width: calc(100% - 56px);
    min-width: 0;
  }

  .brand-monogram {
    border-radius: 10px;
    font-size: 1.08rem;
    height: 38px;
    width: 38px;
  }

  .brand-name {
    font-size: clamp(1.03rem, 5.1vw, 1.22rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navbar-collapse {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-link {
    font-size: 0.89rem;
    padding: 11px 0 !important;
  }

  .nav-cta {
    justify-content: center;
    width: 100%;
  }
}

/* NMC launch: three complete images inside a stable, non-cropping frame. */
.launch-feature-nmc {
  grid-template-areas:
    "number copy visual"
    "number gallery gallery";
  grid-template-columns: 46px minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.launch-feature-nmc .launch-feature-no { grid-area: number; }
.launch-feature-nmc .launch-feature-copy { grid-area: copy; order: initial; }
.launch-feature-nmc .launch-feature-gallery { grid-area: gallery; order: initial; }

.launch-feature-nmc .launch-feature-visual {
  grid-area: visual;
  height: 330px;
  min-width: 0;
  order: initial;
  overflow: hidden;
  position: relative;
}

.launch-feature-nmc .launch-feature-visual figure {
  background: transparent;
  height: auto;
  margin: 0;
  position: absolute;
}

.launch-feature-nmc .launch-feature-cover {
  aspect-ratio: 1280 / 1006;
  left: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-4deg);
  width: 43%;
}

.launch-feature-nmc .launch-feature-cover img {
  height: 100%;
  object-fit: cover;
}

.launch-feature-nmc .launch-feature-photo-main {
  aspect-ratio: 1280 / 853;
  right: 3%;
  top: 10px;
  width: 49%;
}

.launch-feature-nmc .launch-feature-photo-detail {
  aspect-ratio: 1280 / 652;
  bottom: 10px;
  right: 3%;
  width: 49%;
}

.launch-feature-nmc .launch-feature-photo img {
  height: 100%;
  object-fit: cover;
}

.launch-feature-nmc:hover .launch-feature-cover {
  transform: translateY(-50%) rotate(-1deg) scale(1.02);
}

@media (max-width: 991.98px) and (min-width: 768px) {
  .launch-feature-nmc {
    grid-template-columns: 38px minmax(0, 1fr) minmax(260px, 0.9fr);
  }

  .launch-feature-nmc .launch-feature-visual {
    height: 290px;
  }
}

@media (max-width: 767px) {
  .launch-feature-nmc {
    grid-template-areas:
      "number visual"
      "number copy"
      "number gallery";
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .launch-feature-nmc .launch-feature-visual {
    height: 280px;
    order: initial !important;
  }

  .launch-feature-nmc .launch-feature-copy,
  .launch-feature-nmc .launch-feature-gallery {
    order: initial !important;
  }
}

/* Homepage hero refresh: reference-inspired editorial opening using profile4. */
.editorial-navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 0;
}

.editorial-navbar .container {
  position: relative;
}

.editorial-navbar .container::before {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.05), rgba(17, 17, 17, 0.1) 22%, rgba(17, 17, 17, 0.08) 78%, rgba(17, 17, 17, 0.03));
  content: "";
  inset: -18px auto -12px 10px;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: none;
}

.navbar-brand,
.nav-link,
.nav-cta {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

.brand-monogram {
  animation: none;
  background: #f15a22;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  color: #fff;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
}

.brand-name {
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
}

.nav-link {
  color: rgba(17, 17, 17, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-link::after {
  background: #f15a22;
  bottom: 20px;
}

.nav-cta {
  background: transparent;
  border: 1px solid rgba(241, 90, 34, 0.55);
  border-radius: 8px;
  color: #111;
  font-size: 0.92rem;
  font-weight: 500;
  min-width: 164px;
  padding: 8px 20px;
  position: relative;
}

.nav-cta::after {
  color: #f15a22;
  content: "\F13C";
  font-family: bootstrap-icons;
  font-size: 0.9rem;
  margin-left: 10px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #fff4ee;
  border-color: #f15a22;
  color: #111;
}

.hero-showcase {
  background:
    radial-gradient(circle at 72% 37%, rgba(189, 235, 242, 0.3), transparent 18%),
    radial-gradient(circle at 64% 71%, rgba(198, 176, 255, 0.18), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);
  min-height: calc(100vh - 72px);
  padding: 72px 0 34px;
}

.hero-showcase::before,
.hero-showcase::after,
.hero-showcase .container::before {
  content: none;
}

.hero-showcase-shell {
  min-height: calc(100vh - 106px);
  padding-left: 84px;
  position: relative;
}

.hero-stage {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
  min-height: calc(100vh - 140px);
}

.hero-side-rail {
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  inset: -112px auto -2px 10px;
  position: absolute;
  width: 62px;
}

.hero-side-rail::before,
.hero-side-rail::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero-side-rail::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(17, 17, 17, 0.05) 16%, rgba(17, 17, 17, 0.05) 84%, rgba(255, 255, 255, 0));
  inset: 0 auto 0 -1px;
  width: 1px;
}

.hero-side-rail::after {
  background: radial-gradient(circle, rgba(171, 242, 236, 0.68) 0%, rgba(171, 242, 236, 0.24) 42%, rgba(171, 242, 236, 0) 78%);
  height: 72px;
  left: -28px;
  top: 51%;
  transform: translateY(-50%);
  width: 72px;
}

.hero-side-label,
.hero-side-year {
  color: #111;
  display: inline-block;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  left: -38px;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left top;
  white-space: nowrap;
  z-index: 1;
}

.hero-side-label {
  top: 68%;
}

.hero-side-year {
  bottom: 28px;
  color: #f15a22;
}

.hero-copy-column {
  max-width: 620px;
  padding-top: 46px;
  position: relative;
  z-index: 2;
}

.showcase-title {
  animation: heroTextLift 1s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  color: #050505;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(5.1rem, 11.4vw, 9.6rem);
  font-weight: 500;
  letter-spacing: -0.085em;
  line-height: 0.82;
  margin: 0 0 16px;
}

.showcase-intro {
  animation: heroTextLift 1s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
  color: #111;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 4.1vw, 3.38rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 0 0 26px;
}
.showcase-name {
  font-size: 30px !important; 
  font-weight: 600 !important;
}
.showcase-intro span {
  color: #f15a22;
}

.showcase-summary {
  animation: heroTextLift 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
  color: rgba(17, 17, 17, 0.6);
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.66;
  margin: 0;
  max-width: 515px;
}

.showcase-metrics {
  animation: heroTextLift 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 58px 0 56px;
  max-width: 540px;
  position: relative;
}

.showcase-metrics::before {
  content: none;
}

.showcase-metrics::after {
  background: #f15a22;
  border-radius: 999px;
  bottom: 104px;
  content: "";
  height: 9px;
  left: -52px;
  position: absolute;
  width: 9px;
}

.showcase-metric {
  min-height: 112px;
  padding: 0 24px 0 0;
  position: relative;
}

.showcase-metric:nth-child(1) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 22px;
}

.showcase-metric:nth-child(1)::after {
  background: #d9d9d9;
  bottom: 14px;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
}

.showcase-metric:nth-child(2) {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 22px;
  padding-left: 40px;
}

.showcase-metric:nth-child(3) {
  grid-column: 1;
  padding-top: 22px;
}

.showcase-metric strong {
  color: #f15a22;
  display: block;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: clamp(2.55rem, 4.15vw, 3.55rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 10px;
}

.showcase-metric span {
  color: #111;
  display: block;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.71rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 170px;
}

.showcase-links {
  animation: heroButtonRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 84px;
}

.showcase-link {
  align-items: center;
  border-radius: 999px;
  color: #111;
  display: inline-flex;
  font-family: "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  gap: 14px;
  min-height: 52px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease,
    transform 0.28s ease;
}

.showcase-link i {
  color: #7e59c5;
  font-size: 1.7rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.showcase-link:hover,
.showcase-link:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 28px rgba(24, 18, 13, 0.08);
  color: #111;
  outline: 0;
  transform: translateY(-4px);
}

.showcase-link:hover i,
.showcase-link:focus-visible i {
  color: #5f3fc3;
  transform: translateY(4px) scale(1.08);
}

.hero-visual-column {
  align-self: stretch;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.showcase-visual {
  align-items: flex-end;
  animation: heroPortraitIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
  display: flex;
  justify-content: flex-end;
  min-height: 100%;
  padding-top: 26px;
  position: relative;
  width: 100%;
}

.showcase-visual::before,
.showcase-visual::after {
  display: none;
}

.showcase-visual::before {
  height: 69%;
  left: 9%;
  top: 6%;
  width: 82%;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.showcase-visual::after {
  bottom: 5%;
  height: 34%;
  left: -7%;
  width: 39%;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%, 0 35%);
}

.showcase-line-accent {
  display: none;
}

.showcase-line-accent-left {
  border-width: 0 0 1px 1px;
  height: 110px;
  left: -1px;
  top: 42%;
  width: 46px;
}

.showcase-line-accent-bottom {
  border-width: 0 0 1px 1px;
  bottom: 5%;
  height: 110px;
  left: 4%;
  width: 50px;
}

.showcase-line-dot {
  background: #7e59c5;
  border-radius: 999px;
  height: 9px;
  pointer-events: none;
  position: absolute;
  right: -4px;
  top: 5.3%;
  width: 9px;
  z-index: 2;
}

.showcase-glow {
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  position: absolute;
}

.showcase-glow-one {
  animation: heroGlowPulse 10s ease-in-out infinite;
  background: rgba(189, 235, 242, 0.5);
  height: 78px;
  left: 1%;
  top: 55%;
  width: 78px;
}

.showcase-glow-two {
  animation: heroGlowPulse 12s ease-in-out 0.8s infinite reverse;
  background: rgba(198, 176, 255, 0.28);
  bottom: 18%;
  height: 108px;
  left: 20%;
  width: 108px;
}

.showcase-glow-three {
  animation: heroGlowPulse 9s ease-in-out 0.2s infinite;
  background: radial-gradient(circle, rgba(175, 238, 235, 0.8), rgba(175, 238, 235, 0.16) 58%, transparent 72%);
  height: 62px;
  left: -34px;
  top: 55.5%;
  width: 62px;
}

.showcase-portrait-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 247, 242, 0.92));
  border: 0;
  box-shadow: 0 34px 70px rgba(36, 30, 26, 0.07);
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 94% 100%, 0 100%, 0 8%);
  height: min(95vh, 980px);
  max-height: 980px;
  overflow: hidden;
  position: relative;
  width: min(100%, 770px);
}

.showcase-portrait-frame::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 14%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.showcase-portrait-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  position: relative;
  width: 100%;
  z-index: 1;
}

@media (min-width: 1200px) {
  .navbar-brand {
    min-width: 248px;
  }

  .navbar-nav {
    gap: 14px;
  }

  .nav-link {
    font-size: 0.76rem;
    padding: 26px 0 !important;
  }

  .nav-cta {
    margin-left: 26px;
  }
}

@media (max-width: 1399.98px) {
  .hero-stage {
    gap: 36px;
    grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  }

  .showcase-portrait-frame {
    height: min(72vh, 728px);
    width: min(100%, 688px);
  }
}

@media (max-width: 1199.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .hero-showcase-shell {
    padding-left: 64px;
  }

  .hero-stage {
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);
  }

  .showcase-summary {
    max-width: 500px;
  }

  .showcase-metrics {
    max-width: 500px;
  }

  .showcase-visual::before {
    left: 6%;
    width: 86%;
  }

  .showcase-line-dot {
    right: -3px;
  }
}

@media (max-width: 991.98px) {
  .hero-showcase {
    padding: 52px 0 34px;
  }

  .hero-showcase-shell {
    min-height: auto;
    padding-left: 0;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
  }

  .hero-side-rail {
    align-items: center;
    border-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    display: flex;
    justify-content: space-between;
    inset: auto 0 0;
    padding-top: 18px;
    position: relative;
    width: 100%;
  }

  .hero-side-label,
  .hero-side-year {
    font-size: 0.68rem;
    left: auto;
    position: static;
    transform: none;
  }

  .hero-copy-column {
    max-width: 100%;
    padding-top: 8px;
  }

  .showcase-summary {
    max-width: 640px;
  }

  .hero-visual-column {
    justify-content: center;
    order: -1;
  }

  .showcase-visual {
    justify-content: center;
    min-height: 0;
    padding-top: 0;
  }

  .showcase-visual::after {
    bottom: 3%;
    left: 2%;
    width: 30%;
  }

  .showcase-portrait-frame {
    height: min(72vw, 700px);
    width: min(100%, 700px);
  }

  .showcase-line-accent-left,
  .showcase-line-accent-bottom,
  .showcase-line-dot {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-name {
    font-size: 0.96rem;
  }

  .nav-cta {
    justify-content: center;
    min-width: 0;
    width: 100%;
  }

  .hero-showcase {
    padding: 34px 0 26px;
  }

  .showcase-title {
    font-size: clamp(3.8rem, 19vw, 6.2rem);
    margin-bottom: 16px;
  }

  .showcase-intro {
    font-size: clamp(1.7rem, 9vw, 2.65rem);
    margin-bottom: 20px;
  }
  .showcase-name {
    font-size: 20px !important; 
  }

  .showcase-summary {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .showcase-metrics {
    grid-template-columns: minmax(0, 1fr);
    margin: 36px 0 34px;
  }

  .showcase-metrics::before {
    clip-path: polygon(0 6%, 7% 0, 100% 0, 100% 100%, 0 100%);
    inset: -18px -10px -18px -12px;
  }

  .showcase-metrics::after {
    left: -14px;
  }

  .showcase-metric,
  .showcase-metric:nth-child(1),
  .showcase-metric:nth-child(2),
  .showcase-metric:nth-child(3) {
    align-items: center;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    border-right: 0;
    display: flex;
    flex-direction: column;
    grid-column: auto;
    min-height: 0;
    padding: 0 0 18px;
    text-align: center;
  }

  .showcase-metric + .showcase-metric {
    padding-top: 18px;
  }

  .showcase-metric:nth-child(1)::after {
    display: none;
  }

  .showcase-metric:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .showcase-metric span {
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }

  .showcase-links {
    gap: 12px;
    justify-content: stretch;
  }

  .showcase-link {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 999px;
    font-size: 0.92rem;
    gap: 10px;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    width: 100%;
  }

  .showcase-link i {
    font-size: 1.25rem;
  }

  .showcase-visual::before,
  .showcase-visual::after {
    display: none;
  }

  .showcase-glow-one {
    height: 64px;
    left: 0;
    top: 48%;
    width: 64px;
  }

  .showcase-glow-two {
    bottom: 8%;
    height: 84px;
    left: 14%;
    width: 84px;
  }

  .showcase-glow-three {
    height: 52px;
    left: -8px;
    top: 56%;
    width: 52px;
  }

  .showcase-portrait-frame {
    height: auto;
    min-height: 0;
    width: 100%;
  }

  .showcase-portrait-frame img {
    aspect-ratio: 0.92;
    object-fit: cover;
    object-position: center center;
  }

  .hero-side-rail {
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .editorial-navbar .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand-monogram {
    border-radius: 12px;
    font-size: 1.08rem;
  }

  .showcase-summary {
    font-size: 0.94rem;
  }

  .showcase-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-title,
  .showcase-intro,
  .showcase-summary,
  .showcase-metrics,
  .showcase-links,
  .showcase-visual,
  .showcase-glow-one,
  .showcase-glow-two,
  .showcase-link i {
    animation: none;
  }
}
