:root {
  --bg: #050915;
  --bg-2: #08111f;
  --panel: rgba(9, 18, 34, 0.72);
  --panel-solid: #101a2c;
  --text: #f4f8ff;
  --muted: #aab8cd;
  --soft: rgba(244, 248, 255, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --blue: #72bcff;
  --blue-2: #1a76d2;
  --gold: #d8b66d;
  --danger: #ff4fd8;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(77, 153, 255, 0.18),
      transparent 36rem
    ),
    radial-gradient(
      circle at 92% 22%,
      rgba(255, 79, 216, 0.12),
      transparent 32rem
    ),
    linear-gradient(180deg, #030612 0%, var(--bg) 38%, #060b15 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  top: 16px;
  left: 16px;
  z-index: 999;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  transition:
    background 240ms ease,
    border 240ms ease,
    padding 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 9, 18, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
  padding-top: 12px;
  padding-bottom: 12px;
}

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

.brand-logo {
  width: clamp(150px, 17vw, 230px);
  height: 62px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 18px rgba(114, 188, 255, 0.18));
}

.footer-brand .brand-logo {
  width: 220px;
  height: 68px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(114, 188, 255, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 35% 25%,
      rgba(255, 255, 255, 0.24),
      transparent 22px
    ),
    linear-gradient(
      135deg,
      rgba(114, 188, 255, 0.22),
      rgba(216, 182, 109, 0.11)
    );
  box-shadow: 0 0 40px rgba(114, 188, 255, 0.16);
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 14px;
}
.brand-copy small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(244, 248, 255, 0.82);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transition: right 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(114, 188, 255, 0.34);
  border-radius: 999px;
  background: rgba(114, 188, 255, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--text);
  place-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
  display: grid;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 92px) 180px;
  background: #050915;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-width: 100%;
  min-height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.02);
  transform-origin: center center;
}

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

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 6, 14, 0.86) 0%,
      rgba(3, 6, 14, 0.42) 42%,
      rgba(3, 6, 14, 0.46) 100%
    ),
    linear-gradient(
      0deg,
      rgba(5, 9, 21, 1) 0%,
      rgba(5, 9, 21, 0.04) 44%,
      rgba(5, 9, 21, 0.5) 100%
    );
  z-index: 1;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(114, 188, 255, 0.12),
    transparent 32rem
  );
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(0deg, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 3;
  transform: translateY(20px);
}

.eyebrow {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 16px;
}

.hero h1,
.hero h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  line-height: 0.9;
  font-size: clamp(66px, 12vw, 168px);
  color: #f2f8ff;
  text-shadow:
    0 0 16px rgba(114, 188, 255, 0.28),
    0 10px 34px rgba(0, 0, 0, 0.55);
}

.hero h2 {
  font-size: clamp(46px, 8vw, 112px);
  max-width: 900px;
}

.hero-line {
  margin: 22px 0 0;
  color: rgba(244, 248, 255, 0.82);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.5;
  max-width: 680px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
}

.meta-row span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(5, 9, 21, 0.46);
  color: rgba(244, 248, 255, 0.78);
  backdrop-filter: blur(12px);
  font-size: 13px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, #dfefff, #72bcff 50%, #2a7edb);
  color: #021020;
  box-shadow: 0 16px 36px rgba(49, 139, 255, 0.28);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.hero-control-panel {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  bottom: 92px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 9, 21, 0.46);
  backdrop-filter: blur(16px);
}

.slider-arrow,
.slider-dots button {
  cursor: pointer;
  color: var(--text);
  border: 0;
}

.slider-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
}

.slider-dots {
  display: flex;
  gap: 7px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  padding: 0;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.slider-dots button.is-active {
  width: 28px;
  background: var(--blue);
}

.release-strip {
  position: absolute;
  left: 50%;
  right: clamp(20px, 6vw, 92px);
  bottom: 82px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.release-strip div {
  padding: 18px 16px;
  background: rgba(7, 14, 27, 0.72);
}

.strip-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.release-strip strong {
  display: block;
  font-size: 14px;
}

.section {
  position: relative;
  padding: clamp(78px, 9vw, 132px) 0;
}

.dark-section {
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(114, 188, 255, 0.11),
      transparent 28rem
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)
    );
  border-block: 1px solid var(--line);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 90px);
}

.align-center {
  align-items: center;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.96;
}

h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.lead {
  color: rgba(244, 248, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0;
}

.info-grid div,
.service-card,
.pillar {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.065),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.info-grid div {
  padding: 18px;
}
.info-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}
.info-grid strong {
  color: var(--text);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.text-link::after {
  content: "→";
  font-size: 18px;
}

.poster-stack {
  position: relative;
  min-height: 640px;
}

.poster-stack img {
  position: absolute;
  width: min(54%, 310px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  object-fit: cover;
}

.poster-stack img:nth-child(1) {
  left: 0;
  top: 28px;
  transform: rotate(-6deg);
}
.poster-stack img:nth-child(2) {
  right: 12%;
  top: 0;
  z-index: 2;
  transform: rotate(4deg);
}
.poster-stack img:nth-child(3) {
  left: 28%;
  bottom: 0;
  z-index: 3;
  transform: rotate(-1.8deg);
}

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

.release-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-solid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.release-card img {
  aspect-ratio: 4 / 5;
  width: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.release-card:hover img {
  transform: scale(1.035);
}

.card-content {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  background: rgba(114, 188, 255, 0.14);
  color: #bfe2ff;
  border: 1px solid rgba(114, 188, 255, 0.28);
  padding: 7px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  font-weight: 800;
}

.tag.muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--soft);
  border-color: rgba(255, 255, 255, 0.14);
}

.card-content p {
  margin-bottom: 20px;
}
.card-content a {
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.story-section {
  background:
    linear-gradient(180deg, transparent, rgba(114, 188, 255, 0.035)),
    radial-gradient(
      circle at 50% 0%,
      rgba(114, 188, 255, 0.09),
      transparent 34rem
    );
}

.pillars,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pillar,
.service-card {
  padding: 28px;
}

.pillar span {
  display: inline-flex;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}

.about-section {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(114, 188, 255, 0.2);
  border-radius: 30px;
  z-index: -1;
}

.about-visual img {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.stats-row div {
  min-width: 128px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.stats-row strong {
  display: block;
  font-size: 24px;
}
.stats-row span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(2, minmax(180px, 0.7fr));
  grid-auto-rows: 460px;
  gap: 16px;
}

.gallery-item {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  border-radius: 22px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.23);
}

.gallery-item.wide {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: brightness(1.1);
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card h3 {
  margin-bottom: 14px;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(30px, 5vw, 64px);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(114, 188, 255, 0.14),
      transparent 24rem
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    );
  box-shadow: var(--shadow);
}

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

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

.contact-form span {
  color: rgba(244, 248, 255, 0.8);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(114, 188, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(114, 188, 255, 0.12);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #030710;
  padding: 54px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.6fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 420px;
}
.site-footer h3 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}
.site-footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}
.site-footer a:hover {
  color: var(--blue);
}

.footer-bottom {
  margin-top: 44px;
  padding: 20px;
  text-align: center;
  color: rgba(244, 248, 255, 0.52);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.lightbox {
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  padding: 0;
  background: #030710;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}
.lightbox img {
  width: 100%;
  max-height: calc(100svh - 32px);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(3, 6, 14, 0.68);
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .release-strip {
    left: clamp(20px, 6vw, 92px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    bottom: 22px;
  }

  .hero-control-panel {
    bottom: 188px;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 10px;
    background: rgba(4, 9, 18, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
    border-radius: 14px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .site-nav a::after {
    display: none;
  }

  .hero-slide {
    padding: 108px 22px 260px;
    background-position: center;
  }

  .hero-content {
    transform: none;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(58px, 17vw, 100px);
  }

  .hero-control-panel {
    left: 22px;
    bottom: 190px;
  }

  .release-strip {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .two-column,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .poster-stack {
    min-height: 520px;
  }
  .release-grid,
  .pillars {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .brand-logo {
    width: 154px;
    height: 48px;
  }
  .brand-copy strong {
    font-size: 12px;
  }
  .brand-copy small {
    font-size: 9px;
  }
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header {
    padding-inline: 14px;
  }
  .hero-slide {
    padding-top: 100px;
    padding-bottom: 310px;
  }
  .hero-line {
    font-size: 16px;
  }
  .hero-actions {
    gap: 10px;
  }
  .button {
    width: 100%;
  }
  .meta-row span {
    font-size: 12px;
  }
  .release-strip {
    grid-template-columns: 1fr;
  }
  .release-strip div {
    padding: 13px 14px;
  }
  .strip-label {
    margin-bottom: 4px;
  }
  .hero-control-panel {
    bottom: 270px;
  }

  .info-grid,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
  .poster-stack {
    min-height: 470px;
  }
  .poster-stack img {
    width: 58%;
  }
  .poster-stack img:nth-child(2) {
    right: 0;
  }
  .poster-stack img:nth-child(3) {
    left: 20%;
  }
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Admin-powered Updates & Events section */
.updates-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(114, 188, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(8, 17, 31, 0.85), rgba(5, 9, 21, 0.98));
}

.updates-block {
  margin-top: 34px;
}

.updates-block h3 {
  margin: 0 0 18px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: 0.03em;
}

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

.update-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.update-card img {
  width: 100%;
  min-height: 190px;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 10px);
}

.update-card > div {
  padding: 8px 4px;
}

.update-card time,
.event-date,
.event-location {
  display: block;
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-card h4 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.1;
}

.update-card p {
  color: var(--soft);
  line-height: 1.65;
}

.youtube-section {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 79, 216, 0.08), transparent 30rem),
    radial-gradient(circle at 18% 10%, rgba(114, 188, 255, 0.11), transparent 30rem),
    rgba(255, 255, 255, 0.018);
  border-block: 1px solid var(--line);
}

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

.youtube-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-solid);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.youtube-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  background:
    radial-gradient(circle at 50% 45%, rgba(114, 188, 255, 0.18), transparent 18rem),
    rgba(0, 0, 0, 0.42);
}

.youtube-embed iframe,
.youtube-embed img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
}

.video-date {
  display: block;
  color: var(--muted);
  margin: -4px 0 12px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.youtube-card h3 {
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .updates-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }
  .update-card {
    grid-template-columns: 1fr;
  }
  .update-card img {
    min-height: 240px;
  }
}
