/* ===== Reset & Variables ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c41e3a;
  --red-dark: #8b1528;
  --gradient: linear-gradient(90deg, var(--red), var(--red-dark));
  --black: #000;
  --white: #fff;
  --gray-light: #eceae6;
  --gray-mid: #d6cec3;
  --tan: #c9bcaa;
  --navy: #0f1419;
  --text: #1a1a1a;
  --muted: #555;
  --signature: "Allura", cursive;
  --sans: "Montserrat", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

/* ===== Gradient Button ===== */
.btn-gradient {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.25);
}

.btn-gradient:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn-lg {
  font-size: 0.8rem;
  padding: 1rem 2.25rem;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--gradient);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.45rem 2rem;
}

/* ===== Header ===== */
.site-header {
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 1rem;
  border-bottom: 2px solid var(--red);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-signature {
  font-family: var(--signature);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--white);
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.15rem;
}

.main-nav {
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-parent-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a,
.dropdown-toggle {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.25s ease, text-shadow 0.25s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.main-nav a:hover,
.dropdown-toggle:hover {
  color: var(--red);
  text-shadow: 0 0 10px rgba(196, 30, 58, 0.5);
}

.chev {
  font-size: 0.6rem;
  opacity: 0.7;
}

.subnav {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  min-width: 220px;
  background: rgba(10, 14, 22, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.28s ease;
  max-height: 0;
  overflow: hidden;
  z-index: 20;
}

.subnav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.7rem;
  height: 0.7rem;
}

.subnav li {
  margin: 0;
}

.subnav a {
  display: block;
  padding: 0.75rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease;
}

.subnav a:hover {
  color: var(--red);
}

.nav-item:hover > .subnav,
.nav-item:focus-within > .subnav,
.nav-item.expanded > .subnav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 420px;
}

.nav-item:hover .dropdown-toggle .chev,
.nav-item:focus-within .dropdown-toggle .chev,
.dropdown-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

.dropdown-toggle {
  transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease;
}

.btn-book {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 6px;
  padding: 0.7rem 1.4rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 30, 58, 0.3);
  cursor: pointer;
  padding: 8px;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 8px;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
  z-index: 102;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(196, 30, 58, 0.5);
  box-shadow: 0 0 16px rgba(196, 30, 58, 0.2);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
}

.hero-slides {
  position: relative;
  height: clamp(420px, 70vh, 680px);
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 50, 0.55) 0%,
    rgba(10, 20, 60, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
  max-width: 52rem;
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  max-width: min(92vw, 72rem);
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

.hero-rotating-headline {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  max-width: min(90vw, 54ch);
  width: min(100%, 54ch);
  margin: 0 auto 0.8rem;
  text-align: center;
  word-break: normal;
  overflow-wrap: break-word;
}

.typewriter {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
  min-height: 3rem;
}

.typewriter-text {
  display: inline-block;
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.98);
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: break-word;
}

.typewriter-cursor {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  animation: blink 1.2s step-end infinite;
}

@media (max-width: 900px) {
  .hero-rotating-headline {
    font-size: clamp(2.4rem, 8vw, 4rem);
    letter-spacing: 0.06em;
    max-width: min(90vw, 70ch);
  }

  .typewriter-text,
  .typewriter-cursor {
    font-size: clamp(1.8rem, 7vw, 3.2rem);
  }
}

@media (max-width: 600px) {
  .hero-rotating-headline {
    font-size: clamp(2rem, 9vw, 3.2rem);
    letter-spacing: 0.04em;
    max-width: 95vw;
  }

  .typewriter-text,
  .typewriter-cursor {
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }
}

.hero-label {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
}

.hero-copy {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.8;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  opacity: 0.96;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
}

.cursor-blink {
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 0.1em;
}

@keyframes blink {
  50% { opacity: 0; }
}

.hero-logo-mark {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-logo-line {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--white);
}

.hero-copy {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 400;
  line-height: 1.8;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  opacity: 0.96;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
}

.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-dot:hover {
  background: rgba(196, 30, 58, 0.8);
}

.hero-dot.active {
  background: var(--red);
  transform: scale(1.25);
  box-shadow: 0 0 8px rgba(196, 30, 58, 0.6);
}

/* Partner bar */
.partner-bar {
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 1.8rem;
  padding: 1.4rem 2rem;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(196, 30, 58, 0.15);
  border-bottom: 1px solid rgba(196, 30, 58, 0.15);
}

.partner-logo {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out, color 0.35s ease, text-shadow 0.35s ease;
  position: relative;
  cursor: default;
}

.partner-logo.fade-up.visible {
  opacity: 0.88;
  transform: translateY(0);
}

.partner-logo.fade-up:nth-child(1).visible {
  transition-delay: 0.05s;
}
.partner-logo.fade-up:nth-child(2).visible {
  transition-delay: 0.1s;
}
.partner-logo.fade-up:nth-child(3).visible {
  transition-delay: 0.15s;
}
.partner-logo.fade-up:nth-child(4).visible {
  transition-delay: 0.2s;
}

.partner-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.35s ease;
}

.partner-logo:hover {
  opacity: 1;
  color: var(--red);
  text-shadow: 0 0 12px rgba(196, 30, 58, 0.4);
}

.partner-logo:hover::after {
  width: 100%;
}

.partner-logo--small {
  font-size: 0.64rem;
  font-weight: 600;
  max-width: 120px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.partner-logo--lower {
  font-weight: 600;
  text-transform: lowercase;
}

/* ===== Section Heading ===== */
.section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 3.5rem 2rem 2.5rem;
  background: var(--white);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

/* ===== Rockstar Section ===== */
.section-rockstar {
  background: var(--white);
}

.rockstar-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 520px;
}

.rockstar-image,
.rockstar-text {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}

.rockstar-image.fade-up.visible,
.rockstar-text.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.rockstar-image.fade-up.visible {
  transition-delay: 0.08s;
}

.rockstar-text.fade-up.visible {
  transition-delay: 0.18s;
}

.rockstar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
  transform: scale(1.02) translateY(12px);
  transition: transform 1.1s ease-out, filter 0.85s ease;
}

.rockstar-image.fade-up.visible img {
  transform: scale(1) translateY(0);
}

.rockstar-text {
  background: var(--gray-light);
  padding: 3.5rem 3.5rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rockstar-text h3 {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.75s ease-out 0.2s, transform 0.75s ease-out 0.2s;
}

.rockstar-text.fade-up.visible h3 {
  opacity: 1;
  transform: translateY(0);
}

.rockstar-text p {
  margin-bottom: 1.4rem;
  letter-spacing: 0.005em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.75s ease-out 0.28s, transform 0.75s ease-out 0.28s;
}

.rockstar-text.fade-up.visible p {
  opacity: 1;
  transform: translateY(0);
}

.rockstar-text .text-bold {
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.2rem;
}

.work-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.4rem 0;
}

.work-list li {
  margin-bottom: 0.85rem;
  font-size: 0.96rem;
  line-height: 1.8;
}

.work-list strong {
  color: var(--black);
}

.work-list em {
  font-style: italic;
  color: var(--text);
}

.rockstar-text p:last-child {
  margin-bottom: 0;
}

/* ===== Truth Section ===== */
.section-truth {
  background: #0d132b;
  color: var(--white);
  overflow: hidden;
}

/* DESKTOP DEFAULT STYLES */
.truth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  min-height: 680px;
  gap: 3rem;
  position: relative;
  padding: 4rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.truth-grid--wide {
  max-width: 1200px;
  margin: 0 auto;
}

.truth-text {
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: normal;
}

.truth-heading {
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  white-space: normal;
  display: block;
}

.truth-heading .line {
  display: block;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}

.no-break {
  white-space: nowrap;
  display: inline;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  overflow: visible;
}

.truth-text p {
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  margin-bottom: 1.4rem;
  opacity: 0.95;
  line-height: 1.8;
  max-width: 42rem;
}

.truth-quote {
  display: block;
  margin: 2rem 0;
  padding-left: 1.25rem;
  border-left: 4px solid var(--red);
  font-size: clamp(1.15rem, 1.35vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  max-width: 38rem;
}

.truth-signature {
  margin-top: 2.5rem;
}

.truth-large {
  display: block;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  line-height: 1.05;
}

.truth-accent {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.95;
}

.truth-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  overflow: hidden;
  min-width: 0;
  box-sizing: border-box;
}

.truth-image--large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  min-height: 620px;
  max-width: 100%;
  display: block;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-many-faces .section-label.fade-up,
.section-testimonials .section-heading.fade-up {
  transition-delay: 0.05s;
}

.section-many-faces .face-card.fade-up:nth-child(1),
.section-testimonials .testimonial-card.fade-up:nth-child(1) {
  transition-delay: 0.05s;
}
.section-many-faces .face-card.fade-up:nth-child(2),
.section-testimonials .testimonial-card.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.section-many-faces .face-card.fade-up:nth-child(3),
.section-testimonials .testimonial-card.fade-up:nth-child(3) {
  transition-delay: 0.15s;
}
.section-many-faces .face-card.fade-up:nth-child(4),
.section-testimonials .testimonial-card.fade-up:nth-child(4) {
  transition-delay: 0.2s;
}
.section-many-faces .face-card.fade-up:nth-child(5),
.section-testimonials .testimonial-card.fade-up:nth-child(5) {
  transition-delay: 0.25s;
}
.section-many-faces .face-card.fade-up:nth-child(6),
.section-testimonials .testimonial-card.fade-up:nth-child(6) {
  transition-delay: 0.3s;
}
.section-testimonials .testimonial-card.fade-up:nth-child(7) {
  transition-delay: 0.35s;
}
.section-testimonials .testimonial-card.fade-up:nth-child(8) {
  transition-delay: 0.4s;
}
.section-testimonials .testimonial-card.fade-up:nth-child(9) {
  transition-delay: 0.45s;
}
.section-testimonials .testimonial-card.fade-up:nth-child(10) {
  transition-delay: 0.5s;
}

.fade-up-slow {
  transition-duration: 1.3s;
}

/* ===========================
   LAPTOP (max-width: 1199px)
   =========================== */
@media (max-width: 1199px) {
  .truth-grid {
    gap: 2.5rem;
    padding: 3.5rem 2rem;
  }
}

/* ===========================
   TABLET (max-width: 991px)
   =========================== */
@media (max-width: 991px) {
  .truth-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .truth-text {
    border-right: none;
    padding: 0 1rem;
  }

  .truth-heading {
    font-size: clamp(2rem, 6.5vw, 3rem);
    letter-spacing: 0.06em;
  }

  .truth-image {
    order: -1;
    min-height: 480px;
  }

  .truth-image--large img {
    min-height: auto;
    height: auto;
    max-height: 480px;
  }
}

/* ===========================
   MOBILE (max-width: 768px)
   =========================== */
@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 14, 22, 0.25);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 6rem;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 2.2rem 0;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
    border-left: 1px solid rgba(196, 30, 58, 0.35);
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
    z-index: 101;
  }

  .main-nav a,
  .dropdown-toggle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--white);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, color 0.35s ease;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .main-nav a::after,
  .dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.35s ease;
  }

  .main-nav a:hover,
  .dropdown-toggle:hover {
    color: var(--red);
  }

  .main-nav a:hover::after,
  .dropdown-toggle:hover::after {
    width: 100%;
  }

  .main-nav.open a,
  .main-nav.open .dropdown-toggle {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.open a:nth-child(1) {
    transition-delay: 0.1s;
  }
  .main-nav.open a:nth-child(2) {
    transition-delay: 0.16s;
  }
  .main-nav.open a:nth-child(3) {
    transition-delay: 0.22s;
  }
  .main-nav.open a:nth-child(4) {
    transition-delay: 0.28s;
  }
  .main-nav.open a:nth-child(5) {
    transition-delay: 0.34s;
  }
  .main-nav.open a:nth-child(6) {
    transition-delay: 0.4s;
  }

  .nav-item.has-dropdown {
    width: 100%;
  }

  .nav-item.has-dropdown .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    text-align: left;
    padding: 0.75rem 0;
  }

  .nav-item.has-dropdown .subnav {
    display: block;
    position: static;
    width: 100%;
    min-width: auto;
    top: auto;
    left: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-item.has-dropdown .subnav a {
    padding: 0.85rem 0;
  }

  .nav-item.expanded > .subnav {
    max-height: 18rem;
    opacity: 1;
  }

  .main-nav.open .nav-list {
    width: 100%;
  }

  .truth-grid {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }

  .truth-text {
    padding: 0 0.5rem;
  }

  .truth-image {
    min-height: 380px;
  }

  .truth-image--large img {
    max-height: 380px;
  }

  /* Stack heading into three lines on mobile */
  .truth-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 1rem;
    display: block;
  }

  .truth-heading .line {
    display: block;
    width: 100%;
    text-transform: uppercase;
    margin-bottom: 0.15em;
  }

  .no-break {
    white-space: nowrap !important;
    display: inline !important;
    word-break: keep-all !important;
  }

  .truth-text p {
    font-size: 0.95rem;
  }

  .truth-large {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
}

/* ===========================
   SMALL MOBILE (max-width: 576px)
   =========================== */
@media (max-width: 576px) {
  .truth-grid {
    padding: 1.5rem 0.75rem;
  }

  .truth-text {
    padding: 0 0.5rem;
  }

  .truth-heading {
    font-size: clamp(1.4rem, 5.5vw, 2.2rem);
    letter-spacing: 0.02em;
    margin-bottom: 0.8rem;
  }

  .truth-heading .line {
    margin-bottom: 0.1em;
  }

  .truth-image {
    min-height: 320px;
  }

  .truth-image--large img {
    max-height: 320px;
  }
}

/* ===== CTA Section ===== */
.section-cta {
  background: var(--gray-mid);
  padding: 5rem 2rem 3.5rem;
}
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
}
.cta-main-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.cta-main-heading.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.08s;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2.25rem;
}
.cta-left,
.cta-right {
  opacity: 0;
}
.cta-left {
  padding-right: 1.5rem;
  transform: translateX(-24px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
.cta-right {
  padding-left: 1.5rem;
  border-left: 2px solid rgba(0, 0, 0, 0.15);
  transform: translateX(24px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
.cta-left.fade-up.visible,
.cta-right.fade-up.visible {
  opacity: 1;
  transform: translateX(0);
}
.cta-left.fade-up.visible {
  transition-delay: 0.16s;
}
.cta-right.fade-up.visible {
  transition-delay: 0.24s;
}
.cta-intro {
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: var(--text);
}
.cta-body {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text);
  max-width: 45rem;
  margin-top: 1.5rem;
}
.cta-subheading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  color: var(--text);
  opacity: 0.9;
}
.cta-category {
  margin-bottom: 1.8rem;
}
.cta-category-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.45rem;
}
.cta-category-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 400;
}
.cta-centerpiece {
  text-align: center;
  margin: 2.5rem 0 1.75rem;
  padding: 1rem 0 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.cta-centerpiece.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.32s;
}
.cta-philosophy {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.cta-subphilosophy {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  opacity: 0.65;
  text-transform: capitalize;
}
.btn-cta {
  display: block;
  width: 290px;
  margin: 1.5rem auto 0;
  padding: 1.1rem 2rem;
  background: linear-gradient(90deg, #c41e3a 0%, #8b1528 100%);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.25);
  opacity: 0;
  transform: translateY(18px);
}
.btn-cta.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}
@media (max-width: 900px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-left {
    padding-right: 0;
  }
  .cta-right {
    padding-left: 0;
    border-left: none;
  }
  .cta-main-heading {
    margin-bottom: 2rem;
  }
  .cta-centerpiece {
    margin: 2rem 0 1.25rem;
    padding: 0.5rem 0 0;
  }
  .section-cta {
    padding: 4rem 2rem 2.75rem;
  }
}

/* ===== Many Faces Section ===== */
.section-many-faces {
  background: var(--white);
  padding: 4.5rem 2rem 3rem;
}

.section-many-faces .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-many-faces .section-label {
  display: block;
  font-size: clamp(1.5rem, 3.3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.section-many-faces .section-subtitle {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.faces-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.face-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 420px;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(10, 10, 10, 0.06);
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
  cursor: pointer;
  will-change: transform, box-shadow;
}

.face-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.face-card.fade-up.visible {
  animation: polymathRise 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.face-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, background-position 0.8s ease;
  will-change: transform, filter, background-position;
}

.face-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 25, 0.28) 0%, rgba(15, 20, 25, 0.65) 100%);
  opacity: 1;
  transition: opacity 0.45s ease;
}

.face-copy {
  position: absolute;
  inset: auto 1.5rem 1.5rem;
  color: var(--white);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: calc(100% - 2rem);
  opacity: 0.98;
  transition: transform 0.45s ease;
}

.face-title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  transition: transform 0.45s ease, letter-spacing 0.45s ease, color 0.45s ease;
}

.face-description {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 18rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  color: rgba(255, 255, 255, 0.92);
}

.face-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 110px rgba(10, 10, 10, 0.22);
}

.face-card:hover::before {
  opacity: 1;
}

.face-card:hover .face-media {
  transform: scale(1.14) translateY(-4px);
  filter: brightness(0.88);
  background-position: center 18%;
}

.face-card:hover .face-overlay {
  opacity: 0.18;
}

.face-card:hover .face-copy {
  transform: translateY(-6px);
}

.face-card:hover .face-title {
  letter-spacing: 0.22em;
  transform: translateY(-1px);
  color: rgba(255, 255, 255, 0.98);
}

.face-card:hover .face-description {
  opacity: 1;
  transform: translateY(0);
}

@keyframes polymathRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1100px) {
  .faces-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .faces-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .face-card {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .faces-grid {
    grid-template-columns: 1fr;
  }

  .face-card {
    min-height: 300px;
  }
}

/* ===== Premium Closing Section (Transition Bridge) ===== */
.section-closing {
  background: #E6DED0;
  padding: 48px 2rem 48px;
  position: relative;
  overflow: hidden;
}
.section-closing::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
.closing-divider {
  width: 70px;
  height: 1px;
  background: rgba(40, 32, 28, 0.35);
  margin: 0 auto 1.2rem;
  opacity: 0.7;
}
.closing-container {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.closing-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
}

.closing-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.closing-headline {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.closing-subheadline {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #6b6561;
  margin-bottom: 0.9rem;
  text-transform: none;
}
.closing-body {
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #4a4541;
  max-width: 520px;
  margin: 0 auto 1.25rem;
}

.btn-closing {
  display: inline-block;
  background: var(--gradient);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.8rem 2.1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 18px rgba(196, 30, 58, 0.2);
  text-decoration: none;
}

.btn-closing:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.35);
}

.btn-closing:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .section-closing {
    padding: 40px 1.5rem 40px;
  }
  .closing-divider {
    margin-bottom: 1rem;
  }
  .closing-headline {
    margin-bottom: 0.4rem;
  }
  .closing-subheadline {
    margin-bottom: 0.75rem;
  }
  .closing-body {
    margin-bottom: 1rem;
  }
}
@media (max-width: 500px) {
  .section-closing {
    padding: 36px 1rem 36px;
  }
  .closing-divider {
    width: 56px;
    margin-bottom: 0.9rem;
  }
  .closing-headline {
    font-size: clamp(1.25rem, 5.5vw, 1.7rem);
    letter-spacing: 0.07em;
  }
  .closing-subheadline {
    font-size: 0.82rem;
    margin-bottom: 0.6rem;
  }
  .closing-body {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.9rem;
  }
  .btn-closing {
    padding: 0.7rem 1.8rem;
    font-size: 0.7rem;
  }
}

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

.roles-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: var(--white);
  border-bottom: 1px solid #ddd;
}

.role-tab {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 1rem 0.5rem;
  cursor: default;
  border-right: 1px solid #eee;
}

.role-tab:last-child {
  border-right: none;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.role-col {
  display: flex;
  flex-direction: column;
}

.role-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.role-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  transition: filter 0.3s;
}

.role-col:hover .role-photo img {
  filter: grayscale(60%) contrast(1.05);
}

.role-label {
  background: var(--gray-light);
  padding: 1.25rem 0.75rem;
  text-align: center;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.role-brand {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.role-brand--script {
  font-family: var(--signature);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0;
}

.role-brand--small {
  font-size: 0.55rem;
  line-height: 1.4;
}

/* ===== Testimonials ===== */
.section-testimonials {
  background: var(--gray-light);
  padding-bottom: 4rem;
}

.section-testimonials .section-heading {
  background: var(--gray-light);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 2rem 2rem;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 min(320px, 90%);
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.1);
  min-width: 320px;
  background: var(--white);
}

.testimonial-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
  transition: transform 0.35s ease, filter 0.35s ease;
}

.testimonial-card:hover .testimonial-photo img {
  transform: scale(1.05);
  filter: grayscale(60%) brightness(0.85);
}

.testimonial-photo blockquote {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.testimonial-info {
  background: var(--tan);
  padding: 1.35rem 1rem 1.25rem;
  text-align: center;
}

.testimonial-info strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.testimonial-info span {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
  display: block;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 1.75rem;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.testimonial-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: rgba(255, 255, 255, 1);
}

.testimonial-prev {
  left: 1rem;
}

.testimonial-next {
  right: 1rem;
}

@media (max-width: 860px) {
  .testimonial-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

@media (max-width: 680px) {
  .testimonial-carousel {
    padding: 0 1rem 1.5rem;
  }

  .testimonial-card {
    min-width: 85%;
  }

  .testimonial-nav {
    display: none;
  }
}

/* ===== Sales Mastery ===== */
.section-mastery {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mastery-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.35);
}

.mastery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.mastery-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 38% 1fr;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem;
  gap: 2rem;
}

.mastery-speaker img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  filter: grayscale(100%);
  border-radius: 2px;
}

.mastery-content {
  text-align: center;
  color: var(--white);
}

.mastery-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gradient);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  margin-bottom: 1.5rem;
}

.mastery-desc {
  font-size: 1rem;
  max-width: 28rem;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  text-align: center;
}

.footer-brand {
  margin-bottom: 3rem;
}

.footer-signature {
  font-family: var(--signature);
  font-size: clamp(3rem, 7vw, 5rem);
  display: block;
  line-height: 1;
}

.footer-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  opacity: 0.8;
  margin-top: 0.5rem;
  display: block;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: left;
  max-width: 960px;
  margin: 0 auto 3rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.78rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 1;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 1;
  margin-bottom: 0;
}

.footer-copy {
  font-size: 0.72rem;
  opacity: 0.45;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: #333;
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 200;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #444;
}

/* ===== About Page ===== */
.about-page {
  background: var(--white);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 680px;
  background: var(--black);
  color: var(--white);
}

.about-hero-media {
  min-height: 520px;
  overflow: hidden;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.08) brightness(0.72);
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.28), transparent 42%),
    #070707;
}

.about-kicker {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero h1,
.about-split h2,
.about-profile h2,
.about-speaker h2,
.about-fun-heading h2,
.about-closing h2 {
  font-size: clamp(2.2rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.about-hero p:not(.about-kicker),
.about-split p,
.about-speaker p,
.about-fun-heading p,
.about-closing p {
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.85;
  max-width: 42rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.about-statement {
  background: var(--red);
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 2rem;
}

.about-statement-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
}

.about-rule {
  display: block;
  width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
}

.about-statement p {
  font-size: clamp(1.5rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.about-split-panel {
  align-self: center;
  background: var(--gray-light);
  border-left: 5px solid var(--red);
  padding: clamp(2rem, 4vw, 3.5rem);
}

.about-split-panel h3,
.about-role-grid h3,
.about-speaker-cards h3 {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 1rem 0;
  font-weight: 700;
  line-height: 1.55;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  background: #101010;
  color: var(--white);
}

.about-profile-image {
  min-height: 640px;
}

.about-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.72);
}

.about-profile-content {
  padding: clamp(3.5rem, 7vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.about-role-grid article {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.25rem;
}

.about-role-grid span {
  display: block;
  color: var(--red);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.about-role-grid p,
.about-speaker-cards p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.75;
}

.about-speaker {
  background: var(--gray-light);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.about-speaker-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.about-speaker-copy {
  max-width: 820px;
  margin-bottom: 3rem;
}

.about-speaker-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-speaker-cards article {
  background: var(--black);
  color: var(--white);
  min-height: 230px;
  padding: 2rem;
  border-bottom: 5px solid var(--red);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-fun-facts {
  background: var(--black);
  color: var(--white);
}

.about-fun-heading {
  text-align: center;
  padding: clamp(4rem, 7vw, 6rem) 2rem 3rem;
  background:
    linear-gradient(135deg, #8b1528 0%, #c41e3a 52%, #090909 100%);
}

.about-fun-heading .about-kicker,
.about-closing .about-kicker {
  color: rgba(255, 255, 255, 0.9);
}

.about-fun-heading p {
  margin-left: auto;
  margin-right: auto;
}

.about-fun-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 0 2rem 2rem;
}

.about-fun-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #111;
}

.about-fun-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: grayscale(20%) brightness(0.72);
  transform: scale(1.02);
  transition: transform 0.65s ease, filter 0.45s ease;
}

.about-fun-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, rgba(196, 30, 58, 0.32), transparent 58%);
  z-index: 1;
}

.about-fun-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1rem, 2vw, 1.8rem);
  width: min(100%, 22rem);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-fun-copy h3 {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.95rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
}

.about-fun-copy h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--white);
  margin-top: 0.9rem;
}

.about-fun-copy p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.75;
  font-weight: 600;
  margin: 0;
}

.about-fun-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(0.82);
}

.about-closing {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72)),
    url("image/jojo6.png") center / cover;
  color: var(--white);
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  text-align: center;
}

.about-closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-closing p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .about-hero,
  .about-split,
  .about-profile {
    grid-template-columns: 1fr;
  }

  .about-profile-image {
    min-height: 420px;
  }

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

  .about-role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .about-fun-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .about-fun-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .about-hero-copy,
  .about-profile-content {
    padding: 2.5rem 1.25rem;
  }

  .about-split,
  .about-speaker,
  .about-closing {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .about-fun-heading {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .about-fun-card {
    min-height: 360px;
  }

  .about-fun-grid {
    grid-template-columns: 1fr;
  }

  .about-statement-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-rule {
    width: 52px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .role-tab:nth-child(n+4) {
    display: none;
  }

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

  .btn-book {
    position: static;
    transform: none;
  }

  .site-header {
    position: relative;
  }
}

@media (max-width: 768px) {
  .rockstar-grid,
  .truth-grid {
    grid-template-columns: 1fr;
  }

  .truth-image {
    order: -1;
  }

  .truth-text {
    padding: 2.5rem 1.5rem;
    border-right: none;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .rockstar-text {
    padding: 2rem 1.5rem;
  }

  .mastery-inner {
    grid-template-columns: 1fr;
  }

  .mastery-speaker {
    max-width: 280px;
    margin: 0 auto;
  }

  .main-nav {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .btn-book {
    display: none;
  }

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

  .role-tab {
    display: none;
  }

  .role-tab:nth-child(-n+2) {
    display: block;
  }

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

  .partner-bar {
    justify-content: center;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ===== Navigation Refinement + Inner Pages ===== */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 99;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    padding: 1rem 1.25rem;
    align-items: flex-start;
  }

  .logo {
    align-items: flex-start;
    max-width: calc(100% - 4.5rem);
  }

  .logo-signature {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  .logo-tagline {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
    line-height: 1.45;
  }

  .main-nav {
    width: min(88vw, 380px);
    right: min(-92vw, -390px);
    background: rgba(5, 5, 5, 0.96);
    padding: 6.2rem 1.35rem 2rem;
    border-left: 1px solid rgba(196, 30, 58, 0.45);
  }

  .main-nav.open {
    right: 0;
    z-index: 101;
  }

  .main-nav .nav-list {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    gap: 0.15rem;
  }

  .main-nav .nav-item,
  .nav-parent-row {
    width: 100%;
  }

  .nav-parent-row {
    justify-content: space-between;
  }

  .main-nav a,
  .dropdown-toggle,
  .main-nav.open a,
  .main-nav.open .dropdown-toggle {
    opacity: 1;
    transform: none;
  }

  .main-nav a,
  .nav-item.has-dropdown .dropdown-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0;
  }

  .nav-item.has-dropdown .dropdown-toggle {
    width: 44px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
  }

  .nav-item.has-dropdown .subnav {
    margin: 0.15rem 0 0.4rem;
    padding: 0 0 0 1rem;
    border-left: 1px solid rgba(196, 30, 58, 0.55);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item.has-dropdown .subnav::before {
    display: none;
  }

  .nav-item.has-dropdown .subnav a {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.78);
  }
}

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

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  min-height: 650px;
  background: #080808;
  color: var(--white);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6.5rem);
}

.page-hero h1,
.speaker-hero h1,
.writing-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

.page-hero p:not(.about-kicker),
.speaker-hero p,
.writing-hero p,
.story-lead,
.page-closing p,
.writing-feature p {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.85;
  max-width: 46rem;
  opacity: 0.9;
}

.page-hero-media {
  min-height: 520px;
  overflow: hidden;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.74) contrast(1.08);
}

.story-intro {
  background: var(--red);
  color: var(--white);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
}

.story-lead {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}

.story-timeline,
.principles,
.essay-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.story-chapter,
.principle {
  display: grid;
  grid-template-columns: 120px 0.8fr 1.2fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  padding: clamp(2rem, 4vw, 3.2rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.story-chapter span,
.principle span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.story-chapter h2,
.principle h2,
.book-section h2,
.talk-detail h2,
.writing-feature h2,
.page-closing h2,
.personal-statement h2 {
  font-size: clamp(1.75rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.04;
  text-transform: uppercase;
}

.story-chapter p,
.principle p,
.book-section p,
.talk-detail p,
.talk-detail li,
.essay-card p {
  line-height: 1.8;
  color: #303030;
}

.story-photo-band,
.book-section,
.talk-detail,
.speaker-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-photo-band img,
.book-section img,
.talk-detail img,
.speaker-intro img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.08);
}

.page-closing,
.personal-statement,
.writing-feature {
  background: #0a0a0a;
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) 2rem;
}

.page-closing p,
.personal-statement p,
.writing-feature p {
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.82);
}

.philosophy-hero {
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.22), transparent 45%),
    #080808;
}

.personal-statement {
  background: var(--red);
}

.personal-statement h2 {
  max-width: 980px;
  margin: 0 auto;
}

.speaker-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.speaker-hero-bg,
.speaker-hero-overlay {
  position: absolute;
  inset: 0;
}

.speaker-hero-bg {
  background-size: cover;
  background-position: center;
  filter: grayscale(45%) brightness(0.72);
}

.speaker-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 55%);
}

.speaker-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(3rem, 7vw, 7rem);
}

.speaker-intro {
  background: var(--white);
}

.keynotes-section {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.page-section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.keynote-grid,
.essay-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
}

.keynote-card {
  text-align: center;
}

.keynote-media {
  min-height: 310px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.keynote-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: -1;
}

.keynote-media span {
  font-size: clamp(1.45rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.keynote-card h3 {
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.1;
}

.keynote-card p {
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  color: rgba(255, 255, 255, 0.82);
}

.talk-detail {
  background: #f7f7f7;
}

.talk-detail > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.talk-detail h2 {
  margin-bottom: 2rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.talk-detail h3 {
  margin: 1.4rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.talk-detail ul {
  list-style-position: inside;
  margin-bottom: 1.3rem;
}

.talk-detail .btn-gradient {
  align-self: flex-start;
  margin-top: 1.5rem;
}

.writing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
  background: #070707;
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  gap: clamp(2rem, 6vw, 5rem);
}

.writing-hero-copy {
  max-width: 760px;
  justify-self: end;
}

.writing-book img {
  max-height: 620px;
  margin: 0 auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.45));
}

.book-section {
  background: #d8ceb9;
}

.book-section img {
  aspect-ratio: 1 / 1.15;
  object-fit: contain;
  background: #111;
  padding: 1rem;
}

.essay-card {
  background: #101010;
  color: var(--white);
  border-bottom: 5px solid var(--red);
  min-height: 250px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.essay-card span {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.essay-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.essay-card p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 980px) {
  .page-hero,
  .writing-hero,
  .story-photo-band,
  .book-section,
  .talk-detail,
  .speaker-intro {
    grid-template-columns: 1fr;
  }

  .page-hero-media {
    order: -1;
    min-height: 420px;
  }

  .story-chapter,
  .principle {
    grid-template-columns: 70px 1fr;
  }

  .story-chapter p,
  .principle p {
    grid-column: 2;
  }

  .keynote-grid,
  .essay-grid {
    grid-template-columns: 1fr;
  }

  .writing-hero-copy {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .page-hero-copy,
  .speaker-hero-copy,
  .writing-hero,
  .story-timeline,
  .principles,
  .essay-grid,
  .story-photo-band,
  .book-section,
  .talk-detail,
  .speaker-intro {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .story-chapter,
  .principle {
    grid-template-columns: 1fr;
  }

  .story-chapter p,
  .principle p {
    grid-column: auto;
  }

  .speaker-hero {
    min-height: 620px;
  }

  .keynote-media {
    min-height: 230px;
  }
}

/* ===== Ecosystem Home Chapter Cards ===== */
.section-ecosystem-chapters {
  background: #e6ded0;
  padding: clamp(4rem, 8vw, 7rem) 0 0;
  color: var(--black);
}

.ecosystem-chapter-intro {
  max-width: 960px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
  padding: 0 2rem;
  text-align: center;
}

.ecosystem-chapter-intro h2 {
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ecosystem-chapter-intro p:not(.about-kicker) {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.8;
}

.ecosystem-feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 52vw, 620px);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.ecosystem-feature-bg,
.ecosystem-feature-overlay {
  position: absolute;
  inset: 0;
}

.ecosystem-feature-bg {
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.68);
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  z-index: -2;
}

.ecosystem-feature-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.72));
  z-index: -1;
}

.ecosystem-feature-copy {
  width: min(920px, calc(100% - 2rem));
  text-align: center;
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.ecosystem-feature-copy h3 {
  font-size: clamp(2.25rem, 7vw, 6rem);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ecosystem-feature-copy p {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
}

.ecosystem-feature:hover .ecosystem-feature-bg,
.ecosystem-feature:focus-visible .ecosystem-feature-bg {
  transform: scale(1.08);
  filter: grayscale(55%) brightness(0.78);
}

@media (max-width: 640px) {
  .section-ecosystem-chapters {
    padding-top: 3rem;
  }

  .ecosystem-feature {
    min-height: 360px;
  }

  .ecosystem-feature-copy h3 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }
}

/* ===== Senior Pass: Premium Dropdowns, Ecosystem, Booking, Contact ===== */
.nav-item.has-dropdown .nav-parent-row {
  padding: 0.25rem 0;
}

.nav-item.has-dropdown .dropdown-toggle {
  width: 24px;
  height: 24px;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-item.has-dropdown .dropdown-toggle:hover,
.nav-item.has-dropdown.expanded .dropdown-toggle {
  background: rgba(196, 30, 58, 0.18);
}

.subnav {
  min-width: 280px;
  padding: 0.7rem;
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.subnav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.88);
}

.subnav a:hover,
.subnav a:focus-visible {
  color: var(--white);
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.24), rgba(139, 21, 40, 0.08));
  text-shadow: none;
}

.ecosystem-main-hero,
.booking-hero {
  min-height: clamp(520px, 72vh, 760px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.ecosystem-main-bg,
.ecosystem-main-overlay,
.booking-hero-bg,
.booking-hero-overlay {
  position: absolute;
  inset: 0;
}

.ecosystem-main-bg,
.booking-hero-bg {
  background-size: cover;
  background-position: center;
  filter: grayscale(55%) brightness(0.74) contrast(1.06);
  transform: scale(1.02);
}

.ecosystem-main-overlay,
.booking-hero-overlay {
  background: linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.24)), linear-gradient(0deg, rgba(0,0,0,0.82), transparent 60%);
}

.ecosystem-main-copy,
.booking-hero-copy {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  padding: clamp(3rem, 7vw, 7rem);
}

.ecosystem-main-copy h1,
.booking-hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.ecosystem-main-copy p:not(.about-kicker),
.booking-hero-copy p:not(.about-kicker) {
  max-width: 720px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

.ecosystem-letter {
  background: #e6ded0;
  padding: clamp(3rem, 7vw, 5.5rem) 2rem;
  text-align: center;
}

.ecosystem-letter p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.25rem, 2.6vw, 2.25rem);
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.ecosystem-door-list {
  background: var(--black);
}

.ecosystem-door {
  position: relative;
  min-height: clamp(380px, 56vw, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.ecosystem-door-bg,
.ecosystem-door-overlay {
  position: absolute;
  inset: 0;
}

.ecosystem-door-bg {
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.6);
  transform: scale(1.02);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.ecosystem-door-overlay {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.78));
}

.ecosystem-door-copy {
  width: min(980px, calc(100% - 2rem));
  text-align: center;
  padding: 2rem 1rem;
}

.ecosystem-door-copy span {
  display: block;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.ecosystem-door-copy h2 {
  font-size: clamp(2.4rem, 8vw, 7rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ecosystem-door-copy p {
  max-width: 760px;
  margin: 0 auto 1.6rem;
  color: rgba(255,255,255,0.9);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.ecosystem-door-copy strong {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: var(--gradient);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.ecosystem-door:hover .ecosystem-door-bg,
.ecosystem-door:focus-visible .ecosystem-door-bg {
  transform: scale(1.08);
  filter: grayscale(50%) brightness(0.74);
}

.ecosystem-cta {
  text-align: center;
  background: #e6ded0;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.ecosystem-cta h2 {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.form-section,
.contact-grid-section {
  background: #e6ded0;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.form-intro h2,
.contact-info h2,
.premium-form h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.form-intro p:not(.about-kicker),
.contact-info a,
.contact-info p {
  line-height: 1.8;
}

.premium-form {
  background: #0c1224;
  color: var(--white);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
}

.premium-form label,
.premium-form legend {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.premium-form input,
.premium-form textarea,
.premium-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  padding: 0.95rem 1rem;
  font: inherit;
  margin-top: 0.45rem;
  margin-bottom: 1.25rem;
}

.premium-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.premium-form fieldset {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 8px;
  padding: 1rem 1rem 0.3rem;
  margin: 0 0 1.25rem;
}

.premium-form fieldset label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 36px;
  margin: 0.35rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.premium-form input[type="radio"] {
  width: 20px;
  min-height: 20px;
  margin: 0;
}

.form-note {
  margin-top: 1rem;
  color: rgba(255,255,255,0.68);
  font-size: 0.85rem;
}

.contact-grid-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.contact-info {
  color: var(--black);
  padding-top: 1rem;
}

.contact-info h3 {
  margin: 1.8rem 0 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info a {
  display: block;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 0 0.8rem;
}

@media (max-width: 900px) {
  .form-section,
  .contact-grid-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .subnav {
    min-width: 0;
    padding: 0.35rem 0 0.35rem 0.8rem;
    background: rgba(255,255,255,0.03) !important;
    border: 0;
    border-left: 1px solid rgba(196, 30, 58, 0.55);
    box-shadow: none;
  }

  .subnav a {
    border-radius: 4px;
    min-height: 42px;
    padding: 0.7rem 0.8rem;
  }
}

@media (max-width: 620px) {
  .ecosystem-main-copy,
  .booking-hero-copy {
    padding: 3rem 1.25rem;
  }

  .form-section,
  .contact-grid-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .form-two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .premium-form {
    padding: 1.25rem;
  }
}

/* Accessibility: visible focus states for keyboard users */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid rgba(196, 30, 58, 0.9);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Performance helpers */
.lazy-image {
  display: block;
  width: 100%;
  height: auto;
  background: #f6f4f1;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== Ecosystem Detail Pages: Gallery, Research Lab, What's Next ===== */
.ecosystem-detail-page main {
  background: #e6ded0;
}

.ecosystem-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.ecosystem-hero-bg,
.ecosystem-hero-overlay {
  position: absolute;
  inset: 0;
}

.ecosystem-hero-bg {
  background-size: cover;
  background-position: center;
  filter: grayscale(70%) brightness(0.62) contrast(1.08);
  transform: scale(1.02);
}

.ecosystem-hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.22)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 60%);
}

.ecosystem-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: clamp(3rem, 7vw, 7rem);
}

.ecosystem-hero-copy h1,
.letter-hero h1 {
  font-size: clamp(2.65rem, 6.8vw, 6.4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.ecosystem-hero-copy p:not(.about-kicker),
.letter-hero p:not(.about-kicker) {
  max-width: 760px;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.82;
  color: rgba(255, 255, 255, 0.9);
}

.gallery-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.25rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.collection-card {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  color: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.collection-card:first-child {
  grid-column: span 2;
  min-height: 560px;
}

.collection-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  filter: grayscale(85%) brightness(0.58);
  transform: scale(1.02);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

.collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.84)),
    linear-gradient(135deg, rgba(196, 30, 58, 0.22), transparent 55%);
}

.collection-card > div:last-child {
  width: 100%;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.collection-card span,
.lab-card span,
.lab-status span,
.letter-block span {
  display: inline-block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.collection-card h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.collection-card p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
}

.collection-card.is-coming {
  border: 1px solid rgba(196, 30, 58, 0.35);
}

.collection-card.is-coming::before {
  content: "COMING SOON";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.collection-card:hover .collection-media {
  transform: scale(1.08);
  filter: grayscale(35%) brightness(0.7);
}

.lab-status {
  background: var(--red);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 2rem;
  text-align: center;
}

.lab-status span {
  color: rgba(255, 255, 255, 0.78);
}

.lab-status p {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem-dark {
  background: #050505;
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.lab-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}

.lab-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(196, 30, 58, 0.22), transparent 45%),
    #101010;
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.lab-card h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.lab-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-size: 0.92rem;
}

.lab-card:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 30, 58, 0.48);
  background:
    linear-gradient(145deg, rgba(196, 30, 58, 0.32), transparent 52%),
    #141414;
}

.research-table {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: #e6ded0;
}

.research-table h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.research-table ul {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.research-table li {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.research-table strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-table span {
  color: #4a4541;
  line-height: 1.65;
}

.letter-hero {
  background:
    linear-gradient(135deg, rgba(196, 30, 58, 0.22), transparent 42%),
    #080808;
  color: var(--white);
  padding: clamp(5rem, 10vw, 9rem) 2rem;
  text-align: center;
}

.letter-hero .about-kicker,
.letter-hero p:not(.about-kicker) {
  margin-left: auto;
  margin-right: auto;
}

.letter-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.letter-block {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  padding: clamp(2rem, 5vw, 3.6rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.letter-block:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}

.letter-block h2 {
  font-size: clamp(1.6rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  font-weight: 900;
  text-transform: uppercase;
}

.letter-block p {
  color: #302c28;
  line-height: 1.85;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
}

.next-page .page-closing {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.88)),
    url('image/jojo9.png') center / cover;
}

.next-page .page-closing .btn-gradient {
  margin-top: 1.5rem;
}

@media (max-width: 1100px) {
  .lab-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .gallery-collections,
  .research-table,
  .letter-block {
    grid-template-columns: 1fr;
  }

  .collection-card:first-child {
    grid-column: auto;
    min-height: 460px;
  }

  .research-table li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 640px) {
  .ecosystem-hero {
    min-height: 560px;
  }

  .ecosystem-hero-copy,
  .letter-hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .gallery-collections,
  .ecosystem-dark,
  .research-table,
  .letter-body {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .collection-card,
  .collection-card:first-child {
    min-height: 380px;
  }

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

  .lab-card {
    min-height: 280px;
  }

  .letter-block {
    gap: 0.75rem;
  }
}

/* ===== Abnormal Scholars Page Finish ===== */
.scholars-page .ecosystem-hero-copy .btn-gradient {
  margin-top: 1.3rem;
}

.ecosystem-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
  background: #e6ded0;
}

.ecosystem-split h2,
.ecosystem-section-head h2,
.expect-copy h2 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.ecosystem-split > p {
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.9;
  color: #2f2b28;
  border-left: 4px solid var(--red);
  padding-left: clamp(1.25rem, 3vw, 2rem);
}

.ecosystem-section-head {
  max-width: 960px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.ecosystem-dark .ecosystem-section-head h2 {
  color: var(--white);
}

.values-section {
  background: #e6ded0;
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
}

.value-list article {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 8px;
  background: var(--white);
  border-top: 5px solid var(--red);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-list article:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.value-list strong {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.value-list span {
  color: #4a4541;
  line-height: 1.7;
  font-weight: 600;
}

.expect-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
  background: #070707;
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.expect-copy {
  max-width: 760px;
  align-self: center;
  justify-self: end;
}

.expect-copy p:not(.about-kicker) {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.highlight-panel {
  background:
    linear-gradient(145deg, rgba(196, 30, 58, 0.24), transparent 48%),
    #121212;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.highlight-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.highlight-panel ul {
  list-style: none;
}

.highlight-panel li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  font-weight: 600;
}

.highlight-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(196, 30, 58, 0.14);
}

.scholars-page .form-section {
  background:
    linear-gradient(180deg, rgba(230, 222, 208, 0.96), rgba(230, 222, 208, 0.96)),
    url('image/jojo9.png') center / cover;
}

@media (max-width: 1000px) {
  .expect-section {
    grid-template-columns: 1fr;
  }

  .expect-copy {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .ecosystem-split {
    grid-template-columns: 1fr;
  }

  .ecosystem-split > p {
    border-left: none;
    border-top: 4px solid var(--red);
    padding-left: 0;
    padding-top: 1.4rem;
  }
}

@media (max-width: 620px) {
  .ecosystem-split,
  .values-section,
  .expect-section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

  .value-list article {
    min-height: 210px;
  }

  .highlight-panel li {
    padding-left: 1.6rem;
  }
}
