.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px 0 76px;
  background: var(--ink);
}

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

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.78) 46%, rgba(5, 5, 5, 0.36)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.08) 42%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  opacity: 1;
  transition: opacity 260ms ease;
}

.hero-bg img.is-fading {
  opacity: 0.42;
}

.hero-watermark {
  position: absolute;
  right: clamp(18px, 7vw, 96px);
  bottom: clamp(22px, 8vw, 92px);
  width: clamp(140px, 22vw, 330px);
  opacity: 0.08;
  filter: grayscale(1) drop-shadow(0 0 18px rgba(214, 165, 48, 0.24));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 360px);
  gap: 44px;
  align-items: end;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 18px rgba(214, 165, 48, 0.35));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
}

.hero-slogan {
  max-width: 560px;
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 1.15rem;
  font-weight: 800;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.03;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--paper);
  font-size: 1.18rem;
}

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

.hero-actions .btn {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-action-in 520ms ease forwards;
}

.hero-actions .btn:nth-child(2) {
  animation-delay: 80ms;
}

.hero-actions .btn:nth-child(3) {
  animation-delay: 160ms;
}

.hero-actions .btn:nth-child(4) {
  animation-delay: 240ms;
}

.hero-actions .btn:nth-child(5) {
  animation-delay: 320ms;
}

@keyframes hero-action-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-actions .btn {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-panel {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(214, 165, 48, 0.32);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.hero-panel div,
.hero-panel a {
  display: block;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.hero-panel a:hover {
  background: rgba(214, 165, 48, 0.11);
}

.hero-panel span {
  display: block;
  color: var(--gold-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-top: 3px;
  color: var(--paper);
}

.quick-strip {
  width: min(100% - 32px, var(--max));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(214, 165, 48, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-strip a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line-dark);
  text-decoration: none;
  font-weight: 900;
}

.quick-strip a:last-child {
  border-right: 0;
}

.quick-strip a:hover {
  background: #efe4c9;
}

@media (min-width: 761px) {
  .quick-strip {
    width: min(100% - 260px, var(--max));
    margin-left: max(16px, calc((100vw - var(--max)) / 2));
    margin-right: auto;
  }
}

.path-grid,
.activity-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

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

.path-card,
.activity-grid article,
.institutional-grid a,
.pillar-grid article {
  border: 1px solid rgba(214, 165, 48, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.path-card {
  min-height: 360px;
  padding: 22px;
}

.path-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  transition: transform 180ms ease;
}

.path-card h3,
.activity-grid h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 1.2rem;
  line-height: 1.22;
}

.path-card p,
.activity-grid p {
  margin: 0;
}

.activities {
  background: #0b0b0b;
}

.activity-grid article {
  padding: 18px;
}

.method {
  background: var(--paper);
  color: var(--ink);
}

.method .section-kicker,
.institutional .section-kicker,
.location .section-kicker {
  color: var(--red);
}

.method p,
.institutional p,
.location p {
  color: var(--muted-dark);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

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

.pillar-grid article {
  padding: 18px;
  background: var(--white);
  border-color: var(--line-dark);
}

.pillar-grid h3 {
  margin: 0 0 8px;
}

.pillar-grid p {
  margin: 0;
}

.highlights {
  background: var(--ink-soft);
}

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

.highlight-card {
  overflow: hidden;
  border: 1px solid rgba(214, 165, 48, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.highlight-media img,
.highlight-media video,
.highlight-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 0;
}

.highlight-body {
  padding: 18px;
}

.highlight-body h3 {
  margin: 0 0 8px;
}

.schedule-section {
  background: #0b0b0b;
}

.trial {
  background: var(--pine);
}

.trial-inner,
.digital-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.trial h2,
.digital h2 {
  margin-bottom: 12px;
}

.trial-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.digital {
  background: var(--ink-soft);
}

.digital-actions {
  display: grid;
  gap: 12px;
}

.digital-actions-two {
  grid-template-columns: 1fr 1fr;
}

.service-link {
  display: grid;
  gap: 6px;
  min-height: 132px;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(214, 165, 48, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.service-link span {
  color: var(--gold-bright);
  font-weight: 900;
  font-size: 1.08rem;
}

.service-link strong {
  color: var(--paper);
}

.service-link:hover {
  border-color: var(--gold-bright);
}

.institutional,
.location {
  background: var(--paper);
  color: var(--ink);
}

.sponsors {
  background: #0b0b0b;
  text-align: center;
}

.sponsors h2 {
  margin-left: auto;
  margin-right: auto;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.contact-list span {
  color: var(--muted-dark);
}

.contact-list strong {
  color: var(--ink);
}

.contact-list small {
  grid-column: 2;
  margin-top: -8px;
  color: var(--muted-dark);
  font-size: 0.73rem;
  line-height: 1.2;
}

.address {
  padding: 18px;
  border-radius: 8px;
  background: #eee6d5;
}

.address p {
  margin: 4px 0 14px;
}

.address .btn-secondary {
  background: var(--ink);
}

.dojo-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
  background: var(--ink);
}

.dojo-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.dojo-controls {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
}

.dojo-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(214, 165, 48, 0.48);
  border-radius: 6px;
  background: rgba(7, 7, 7, 0.78);
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 1040px) {
  .hero-inner,
  .method-layout,
  .trial-inner,
  .digital-inner,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

  .path-grid,
  .activity-grid,
  .institutional-grid,
  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1180px) and (min-width: 1041px) {
  .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 86vh;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .hero-logo {
    width: 116px;
    height: 116px;
  }

  .hero-actions,
  .trial-actions,
  .digital-actions-two {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .trial-actions .btn {
    width: 100%;
  }

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

  .quick-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
    width: 100%;
  }

  .quick-strip a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .path-grid,
  .activity-grid,
  .institutional-grid,
  .pillar-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 0;
  }
}
