:root {
  --bg: #050505;
  --bg-soft: #111111;
  --panel: rgba(21, 21, 21, 0.82);
  --panel-strong: rgba(28, 28, 28, 0.95);
  --text: #f4f2ee;
  --muted: #b6b0a7;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #ff7a18;
  --accent-2: #ff9f1c;
  --accent-3: #9b9b9b;
  --danger: #ff5f2e;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.48);
  --container: 1180px;
  --edge-gap: 32px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

code {
  padding: 0.16rem 0.4rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  color: #ffd2a1;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.88em;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 122, 24, 0.22), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(160, 160, 160, 0.10), transparent 30%),
    radial-gradient(circle at 78% 75%, rgba(255, 159, 28, 0.13), transparent 36%),
    linear-gradient(135deg, #050508 0%, #101010 44%, #050505 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .22;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: min(var(--container), calc(100% - 32px));
  margin: 14px auto 0;
}

.social-strip,
.nav-panel {
  border: 1px solid var(--line);
  background: rgba(10, 10, 17, 0.74);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.social-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px 8px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 122, 24, .16), rgba(130, 130, 130, .10));
  font-size: 0.74rem;
  font-weight: 800;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(135deg, rgba(255, 122, 24, .34), rgba(255, 159, 28, .22));
}

.nav-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: white;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,.35), transparent 35%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 26px rgba(255, 122, 24, .45), inset 0 0 16px rgba(255,255,255,.13);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand__text {
  display: grid;
  line-height: 1.05;
}

.brand__text strong {
  font-size: 1.15rem;
  letter-spacing: .02em;
}

.brand__text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: .73rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}

.main-menu a:hover,
.main-menu a.active {
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .055);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

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

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

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

.page-shell {
  width: min(var(--container), calc(100% - 32px));
  min-height: 60vh;
  margin: 0 auto;
  padding: 56px 0 76px;
}

.loader-card,
.route-error {
  display: grid;
  place-items: center;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  text-align: center;
}

.loader-orb {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .14);
  border-top-color: var(--accent-2);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero,
.page-hero,
.video-split,
.cta-panel,
.quote-block,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(22, 22, 35, .92), rgba(8, 8, 16, .8));
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(30px, 6vw, 72px);
}

.hero::before,
.page-hero::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 122, 24, .22), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(255, 159, 28, .12), transparent 30%);
  pointer-events: none;
}

.hero__content,
.hero__visual,
.page-hero > *,
.cta-panel > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ffb96f;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 7vw, 5.6rem);
  line-height: .92;
  letter-spacing: -.06em;
}

h1 span,
h2 span {
  background: linear-gradient(90deg, #ffffff, #dad6d0 36%, #ffb35c 70%, #ff7a18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero__lead,
.page-hero p,
.section-head p,
.video-copy p,
.glass-card p,
.feature-card p,
.cta-panel p,
.quote-block blockquote,
.contact-form p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero__lead {
  max-width: 690px;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 38px rgba(255, 122, 24, .24);
}

.btn--primary:hover {
  box-shadow: 0 18px 48px rgba(255, 159, 28, .25);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,.22);
  background: rgba(255, 255, 255, 0.1);
}

.hero__visual {
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at 40% 40%, rgba(180, 180, 180, .10), transparent 35%);
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
  box-shadow: inset 0 0 60px rgba(255, 122, 24, .14), 0 0 80px rgba(255, 159, 28, .10);
}

.hero-orbit {
  position: absolute;
  inset: 18%;
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.neon-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: 122px;
  height: 112px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 35px rgba(255, 122, 24, .22), inset 0 0 18px rgba(255,255,255,.08);
  font-size: 2rem;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.neon-card--one { top: 18%; left: 16%; }
.neon-card--two { top: 42%; right: 12%; color: #ffc27a; }
.neon-card--three { left: 28%; bottom: 12%; color: #cfcfcf; }

.section-head {
  max-width: 740px;
  margin-bottom: 24px;
}

.slider-section,
.feature-grid,
.video-split,
.timeline,
.content-grid,
.program-list,
.gallery-grid,
.contact-grid,
.contact-form,
.cta-panel,
.quote-block {
  margin-top: 28px;
}

.slider {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr .82fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s var(--ease), visibility .55s var(--ease);
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide__image {
  position: relative;
  min-height: 470px;
  overflow: hidden;
}

.slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.78);
  transform: scale(1.04);
  transition: transform 4s ease;
}

.slide.is-active .slide__image img {
  transform: scale(1.11);
}

.slide__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,12,.08), rgba(7,7,12,.82));
}

.slide__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(145deg, rgba(18,18,18,.86), rgba(7,7,7,.95));
}

.slide__label {
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  color: #ffd2a1;
  background: rgba(255,255,255,.08);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slide__content h3 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.slide__content p {
  color: var(--muted);
  line-height: 1.72;
}

.slider-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
}

.slider-controls button,
.slider-dot {
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.slider-controls button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.slider-dots {
  position: absolute;
  left: 18px;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
}

.slider-dot.is-active {
  width: 30px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.feature-grid,
.content-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.glass-card,
.contact-card,
.program-list article,
.timeline__items article,
.gallery-grid figure {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.feature-card,
.glass-card,
.contact-card {
  min-height: 210px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.feature-card span {
  display: inline-block;
  margin-bottom: 28px;
  color: #ffad55;
  font-weight: 900;
  letter-spacing: .14em;
}

.video-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 24px;
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 20px 70px rgba(0,0,0,.35);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  padding: 8px clamp(8px, 2vw, 18px);
}

.timeline {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.045);
}

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

.timeline__items article,
.program-list article {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 20px;
  border-radius: 20px;
}

.timeline__items b,
.program-list b,
.contact-card b {
  font-size: 1.1rem;
}

.timeline__items span,
.program-list span,
.contact-card span {
  color: var(--muted);
  line-height: 1.58;
}

.page-hero,
.cta-panel,
.quote-block {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 68px);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 4.6rem);
}

.page-hero p {
  max-width: 880px;
}

.quote-block blockquote {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  line-height: 1.35;
}

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

.program-list article {
  min-height: 132px;
}

.cta-panel {
  display: grid;
  gap: 12px;
}

.cta-panel p {
  max-width: 760px;
}

.cta-panel .btn {
  width: fit-content;
}

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

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 24px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(.85) brightness(.82);
  transition: transform .35s var(--ease), filter .35s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.07);
  filter: saturate(1.05) brightness(1);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card a {
  color: #ffd2a1;
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 26px;
  padding: clamp(22px, 4vw, 38px);
}

.contact-form form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  outline: none;
  padding: 14px 15px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 122, 24, .65);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, .14);
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(10, 10, 17, 0.78);
  backdrop-filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .9rem;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  color: var(--text);
  background: rgba(20,20,20,.84);
  box-shadow: 0 12px 32px rgba(0,0,0,.34);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  backdrop-filter: blur(12px);
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

@media (max-width: 1040px) {
  .hero,
  .slide,
  .video-split,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 360px;
  }

  .slide {
    position: relative;
    min-height: auto;
    display: none;
  }

  .slide.is-active {
    display: grid;
  }

  .slide__image {
    min-height: 310px;
  }

  .slide__image::after {
    background: linear-gradient(0deg, rgba(7,7,12,.78), rgba(7,7,12,.1));
  }

  .timeline__items,
  .feature-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(100% - 22px, var(--container));
  }

  .social-strip__text {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: fixed;
    left: 11px;
    right: 11px;
    top: 132px;
    z-index: 60;
    display: grid;
    align-content: start;
    gap: 8px;
    max-height: calc(100vh - 150px);
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(10,10,17,.96);
    box-shadow: 0 30px 90px rgba(0,0,0,.55);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    backdrop-filter: blur(18px);
    transition: opacity .24s var(--ease), transform .24s var(--ease);
  }

  .main-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-menu a {
    justify-content: center;
    width: 100%;
    min-height: 50px;
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.045);
  }

  .hero {
    min-height: auto;
    padding: 30px 22px;
  }

  .hero__visual {
    min-height: 300px;
  }

  .timeline__items,
  .program-list,
  .feature-grid,
  .content-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 260px;
  }

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

@media (max-width: 540px) {
  .brand__text small {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-panel {
    padding: 12px;
    border-radius: 21px;
  }

  .page-shell {
    padding-top: 34px;
  }

  .hero__actions,
  .slider-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .slide__image {
    min-height: 230px;
  }

  .slider-controls {
    right: 12px;
    bottom: 12px;
  }

  .slider-dots {
    left: 12px;
    bottom: 24px;
  }

  .page-hero,
  .cta-panel,
  .quote-block,
  .timeline,
  .site-footer {
    padding: 22px;
  }
}


/* === Darkness redesign: black / gray / orange edition === */
@media (min-width: 2000px) {
  :root {
    --container: 1880px;
    --edge-gap: 64px;
  }
}

@media (min-width: 2500px) {
  :root {
    --container: 2320px;
    --edge-gap: 96px;
  }

  body {
    font-size: 17px;
  }
}

@media (min-width: 3300px) {
  :root {
    --container: 3440px;
    --edge-gap: 128px;
  }

  body {
    font-size: 19px;
  }

  .hero {
    min-height: 720px;
  }

  .slider,
  .slide__image {
    min-height: 640px;
  }

  .gallery-grid img {
    height: 430px;
  }
}

.site-header,
.page-shell,
.site-footer {
  width: min(var(--container), calc(100% - var(--edge-gap)));
}

.site-bg {
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 122, 24, 0.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(130, 130, 130, 0.12), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(255, 159, 28, 0.10), transparent 34%),
    linear-gradient(135deg, #030303 0%, #111111 46%, #050505 100%);
}

.site-bg::before {
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
}

.social-strip,
.nav-panel,
.club-masthead,
.site-footer {
  background: rgba(10, 10, 10, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.club-masthead {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.club-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 122, 24, .18), transparent 38%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 52%);
  pointer-events: none;
}

.brand--large,
.club-masthead__tagline {
  position: relative;
  z-index: 1;
}

.brand--large {
  min-width: 0;
}

.brand__logo {
  display: block;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 20px rgba(255, 122, 24, .22));
}

.brand--large .brand__text strong {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.brand--large .brand__text small {
  color: #c9c3bb;
}

.club-masthead__tagline {
  max-width: 560px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.nav-panel {
  justify-content: center;
  padding: 12px 16px;
  border-radius: 20px;
}

.main-menu a,
.btn {
  border-radius: 0;
  clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
}

.btn {
  min-height: 50px;
  padding: 0 26px;
  border-color: rgba(255, 122, 24, .28);
}

.btn--primary {
  color: #121212;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  box-shadow: 0 14px 36px rgba(255, 122, 24, .20);
}

.btn--primary:hover {
  box-shadow: 0 20px 48px rgba(255, 122, 24, .28);
}

.btn--ghost {
  background: rgba(255, 255, 255, .07);
}

.main-menu {
  justify-content: center;
}

.main-menu a {
  min-height: 44px;
  padding: 0 18px;
  color: #c9c3bb;
  background: rgba(255,255,255,.035);
}

.main-menu a:hover,
.main-menu a.active {
  color: #111;
  border-color: rgba(255, 122, 24, .38);
  background: linear-gradient(135deg, #ff7a18, #ffb347);
}

.social-links a {
  border-radius: 10px;
  color: #f4f2ee;
  background: rgba(255, 255, 255, .055);
}

.social-links a:hover {
  border-color: rgba(255, 122, 24, .5);
  background: rgba(255, 122, 24, .18);
}

.brand__mark {
  display: none;
}

.hero,
.page-hero,
.video-split,
.cta-panel,
.quote-block,
.contact-form,
.slider,
.timeline,
.feature-card,
.glass-card,
.contact-card,
.program-list article,
.gallery-grid figure {
  border-color: rgba(255, 255, 255, .115);
}

.hero,
.page-hero,
.video-split,
.cta-panel,
.quote-block,
.contact-form {
  background: linear-gradient(145deg, rgba(24, 24, 24, .94), rgba(5, 5, 5, .86));
}

.hero::before,
.page-hero::before,
.cta-panel::before {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 122, 24, .18), transparent 30%),
    radial-gradient(circle at 18% 88%, rgba(255, 159, 28, .09), transparent 30%);
}

.eyebrow,
.slide__label,
.feature-card span,
.contact-card a {
  color: #ffad55;
}

h1 span,
h2 span {
  background: linear-gradient(90deg, #ffffff, #d6d1ca 36%, #ffb35c 70%, #ff7a18);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__visual {
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    radial-gradient(circle at 40% 40%, rgba(255, 122, 24, .12), transparent 35%);
}

.hero__visual::before {
  box-shadow: inset 0 0 60px rgba(255, 122, 24, .13), 0 0 80px rgba(255, 159, 28, .08);
}

.neon-card {
  background: rgba(255,255,255,.07);
  box-shadow: 0 0 34px rgba(255, 122, 24, .18), inset 0 0 18px rgba(255,255,255,.07);
}

.neon-card--two {
  color: #ffc27a;
}

.neon-card--three {
  color: #d0d0d0;
}

.slide__content {
  background: linear-gradient(145deg, rgba(18,18,18,.86), rgba(7,7,7,.95));
}

.slide__label {
  background: rgba(255, 122, 24, .10);
}

.slider-dot.is-active {
  background: linear-gradient(90deg, #ff7a18, #ffb347);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 122, 24, .65);
  box-shadow: 0 0 0 4px rgba(255, 122, 24, .14);
}

.to-top {
  background: rgba(22,22,22,.86);
}

@media (min-width: 2000px) {
  .hero,
  .page-hero,
  .cta-panel,
  .quote-block {
    padding-left: clamp(70px, 5vw, 130px);
    padding-right: clamp(70px, 5vw, 130px);
  }

  .feature-grid,
  .content-grid,
  .contact-grid,
  .program-list,
  .gallery-grid,
  .timeline__items {
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .page-shell,
  .site-footer {
    width: min(100% - 22px, var(--container));
  }

  .club-masthead {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .club-masthead__tagline {
    max-width: none;
    text-align: left;
    font-size: .78rem;
  }

  .brand__logo {
    width: 58px;
    height: 58px;
  }

  .nav-panel {
    justify-content: flex-end;
  }

  .main-menu {
    top: 220px;
    background: rgba(8,8,8,.97);
  }

  .main-menu a,
  .btn {
    clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  }
}

@media (max-width: 540px) {
  .brand--large .brand__text strong {
    font-size: 1.28rem;
  }

  .brand__logo {
    width: 50px;
    height: 50px;
  }

  .main-menu {
    top: 202px;
  }
}
