:root {
  --ink: #151515;
  --muted: #5e6470;
  --soft: #f6f7f9;
  --line: rgba(21, 21, 21, 0.12);
  --yellow: #ffd100;
  --yellow-strong: #f2b600;
  --blue: #1167c8;
  --orange: #ff7a1a;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(10, 18, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

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

[hidden] {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(18, 18, 18, 0.72);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-color: rgba(21, 21, 21, 0.1);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(10, 18, 32, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: #161616;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-copy small {
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.72;
  text-transform: lowercase;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .nav {
  background: rgba(21, 21, 21, 0.05);
}

.nav a {
  padding: 10px 14px;
  border-radius: 6px;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 650;
  opacity: 0.86;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

.site-header.is-scrolled .nav a:hover {
  background: rgba(21, 21, 21, 0.07);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--yellow);
  color: var(--ink);
}

.button {
  padding: 0 20px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(242, 182, 0, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 156px 0 170px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  color: var(--yellow-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  line-height: 0.93;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.hero-facts {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  z-index: 2;
  display: grid;
  width: min(600px, calc(100% - 32px));
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(20, 20, 20, 0.62);
  backdrop-filter: blur(16px);
}

.hero-facts div {
  min-height: 112px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.intro p,
.section-head p,
.split-copy p,
.program-grid p,
.contact-panel p,
.direction-card p,
.cta-band p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.45fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

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

.direction-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(10, 18, 32, 0.08);
}

.direction-card img {
  height: 390px;
  object-fit: cover;
}

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

.direction-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.direction-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 850;
  box-shadow: inset 0 -2px 0 var(--yellow);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  min-height: 680px;
  background: #151515;
  color: var(--white);
}

.split-image img {
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  padding: 72px clamp(24px, 5vw, 78px);
}

.split-copy p,
.split-copy .feature-list {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.programs {
  padding-bottom: 70px;
}

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

.program-grid article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.program-grid span {
  display: inline-flex;
  margin-bottom: 48px;
  color: var(--orange);
  font-weight: 900;
}

.updates-section,
.news-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.updates-grid,
.news-grid {
  display: grid;
  gap: 14px;
}

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

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

.update-card,
.news-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(10, 18, 32, 0.07);
}

.update-card {
  background: #151515;
  color: var(--white);
}

.update-card p,
.news-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.update-card p {
  color: rgba(255, 255, 255, 0.74);
}

.news-date {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-section {
  overflow: hidden;
  padding-bottom: 92px;
  background: var(--soft);
}

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding-bottom: 30px;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
}

.gallery-track {
  display: grid;
  grid-auto-columns: minmax(290px, 74vw);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  padding: 0 max(16px, calc((100vw - 1180px) / 2)) 10px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.gallery-track::-webkit-scrollbar {
  height: 8px;
}

.gallery-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.24);
}

.gallery-item {
  position: relative;
  height: min(650px, 68vh);
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  scroll-snap-align: center;
  box-shadow: var(--shadow);
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(21, 21, 21, 0.76);
  color: var(--white);
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(260px, 0.5fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 0;
  padding: 52px;
  border-radius: var(--radius);
  background: #151515;
  color: var(--white);
}

.cta-band h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.contacts {
  padding-top: 70px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 36px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff, #f2f5f8);
}

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

.contact-link {
  display: grid;
  min-height: 124px;
  align-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-link span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-link strong {
  font-size: 1.05rem;
  line-height: 1.18;
}

.footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.footer a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .nav.is-open {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: 100%;
    gap: 0;
    padding: 8px;
    border-radius: var(--radius);
    background: rgba(21, 21, 21, 0.94);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(10, 18, 32, 0.2);
  }

  .nav.is-open a {
    padding: 14px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    padding: 140px 0 250px;
  }

  .hero-facts {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .intro-grid,
  .section-head,
  .split-section,
  .contact-panel,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .direction-grid,
  .program-grid,
  .updates-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-image img {
    min-height: 460px;
  }

  .cta-band {
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 14px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.82)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.14));
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 118px 0 22px;
    align-self: auto;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-actions,
  .footer,
  .gallery-head {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-facts {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin: 0 auto;
  }

  .hero-facts div {
    min-height: auto;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-facts div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .direction-grid,
  .program-grid,
  .updates-grid,
  .news-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .direction-card img {
    height: 300px;
  }

  .split-section {
    min-height: auto;
  }

  .split-image img {
    min-height: 330px;
  }

  .split-copy {
    padding: 46px 18px 54px;
  }

  .program-grid article {
    min-height: 220px;
  }

  .program-grid span {
    margin-bottom: 28px;
  }

  .gallery-track {
    grid-auto-columns: minmax(280px, 88vw);
  }

  .gallery-item {
    min-height: 360px;
    height: 56vh;
  }

  .cta-band,
  .contact-panel {
    width: calc(100% - 28px);
    padding: 24px;
  }
}
