:root {
  --ink: #0d1722;
  --ink-soft: #425466;
  --ink-strong: #1f3142;
  --paper: #f7f2e9;
  --paper-strong: #ece2cf;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --line: rgba(13, 23, 34, 0.1);
  --line-strong: rgba(13, 23, 34, 0.16);
  --navy: #07111d;
  --navy-soft: #132437;
  --gold: #d2ad68;
  --gold-soft: #f4e4be;
  --sky: #85c6e7;
  --sky-soft: #dceef8;
  --accent: #3d7798;
  --accent-strong: #24546f;
  --alert: #8b2d1f;
  --alert-soft: #fff2dc;
  --success: #6f8f68;
  --shadow: 0 24px 56px rgba(6, 14, 22, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1480px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(210, 173, 104, 0.18), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(133, 198, 231, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf8f1 0%, #f3ebdd 48%, #fbf8f1 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.22;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(7, 17, 29, 0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 34px rgba(6, 14, 22, 0.18);
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 29, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(6, 14, 22, 0.24);
}

.nav-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(5, 10, 18, 0.18);
  flex-shrink: 0;
}

.brand-mark img {
  width: 40px;
}

.brand-copy {
  color: #ffffff;
}

.brand-copy strong,
.drawer-title {
  display: block;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand-copy span,
.drawer-city {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.nav-links {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
}

.nav-links a,
.footer-links a {
  position: relative;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

.nav-links a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button,
.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

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

.header-button,
.button.primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 34px rgba(210, 173, 104, 0.28);
}

.button.secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.button.ghost {
  color: var(--navy);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.82);
}

.button-compact {
  padding: 12px 18px;
  width: auto;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 19, 0.56);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 35;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100vh;
  padding: 28px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at top, rgba(133, 198, 231, 0.16), transparent 34%),
    linear-gradient(180deg, #091321 0%, #101d2d 100%);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 36;
  box-shadow: -20px 0 40px rgba(4, 10, 18, 0.24);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.drawer-close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-links {
  display: grid;
  gap: 12px;
}

.mobile-links a {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.88);
}

.mobile-links a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.mobile-cta {
  margin-top: auto;
}

.page-main {
  padding-top: 92px;
}

.hero-home,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 15% 15%, rgba(133, 198, 231, 0.18), transparent 24%),
    radial-gradient(circle at 82% 10%, rgba(210, 173, 104, 0.22), transparent 18%),
    linear-gradient(135deg, #07111d 0%, #102133 48%, #14283d 100%);
}

.hero-home {
  min-height: calc(100vh - 92px);
  padding: 60px 0 96px;
  display: flex;
  align-items: center;
}

.page-hero {
  padding: 78px 0 62px;
}

.hero-home::before,
.hero-home::after,
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-home::before,
.page-hero::before {
  left: -140px;
  bottom: -220px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(210, 173, 104, 0.22), transparent 70%);
}

.hero-home::after,
.page-hero::after {
  right: -100px;
  top: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(133, 198, 231, 0.18), transparent 68%);
}

.hero-grid,
.split-grid,
.cta-grid,
.map-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.26fr) minmax(380px, 0.74fr);
  align-items: center;
  gap: 36px;
}

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

.cta-grid,
.map-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  align-items: stretch;
}

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.overline::before,
.section-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
}

.page-title,
.section-title,
.card-title {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.page-title {
  font-size: clamp(3.4rem, 6.6vw, 6.4rem);
  max-width: 12.2ch;
}

.page-hero .page-title {
  max-width: 13ch;
}

.lead {
  margin-top: 22px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions,
.hero-tags,
.card-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-side {
  display: grid;
}

.hero-schedule-glance {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.schedule-glance-card {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.schedule-glance-day {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.schedule-glance-hours {
  display: block;
  margin-top: 6px;
  color: #ffffff;
  font-size: clamp(1.26rem, 2vw, 1.7rem);
  line-height: 1;
}

.schedule-glance-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.45;
}

.hero-tags {
  margin-top: 24px;
  gap: 10px;
}

.hero-tags span,
.tag,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.hero-tags span,
.tag {
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.pill {
  color: var(--navy);
  border: 1px solid rgba(210, 173, 104, 0.24);
  background: rgba(210, 173, 104, 0.12);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-showcase {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(133, 198, 231, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(9, 21, 34, 0.96) 0%, rgba(14, 31, 48, 0.96) 55%, rgba(19, 41, 62, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 58px rgba(5, 12, 20, 0.24);
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: auto -70px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 173, 104, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-showcase-top,
.hero-showcase-grid,
.hero-panel-head {
  display: grid;
  gap: 18px;
}

.hero-showcase-top {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  margin-bottom: 22px;
}

.hero-showcase-logo {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 34px rgba(5, 12, 20, 0.22);
}

.hero-showcase-logo img {
  width: 58px;
  height: auto;
}

.hero-showcase-label {
  display: inline-block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-showcase-copy h3 {
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-showcase-copy p {
  color: rgba(255, 255, 255, 0.8);
}

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

.hero-panel-head {
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel,
.surface-card,
.soft-card,
.dark-card,
.stat-card,
.contact-card,
.map-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.78), rgba(15, 33, 51, 0.86)),
    rgba(7, 17, 29, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.hero-panel + .hero-panel {
  margin-top: 18px;
}

.hero-panel-primary {
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(8, 17, 28, 0.96), rgba(12, 27, 42, 0.94));
}

.hero-panel-secondary {
  background:
    radial-gradient(circle at top right, rgba(133, 198, 231, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 19, 32, 0.96), rgba(16, 36, 56, 0.94));
}

.dark-card {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(133, 198, 231, 0.14), transparent 28%),
    linear-gradient(145deg, #0a1624 0%, #102133 52%, #17314a 100%);
  border: 1px solid rgba(133, 198, 231, 0.18);
  color: #ffffff;
}

.hero-panel h3,
.dark-card h3 {
  margin-bottom: 14px;
  font-size: 1.28rem;
}

.hero-panel p,
.hero-panel li,
.dark-card p,
.dark-card li {
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel .pill {
  color: #f5dfad;
  background: rgba(210, 173, 104, 0.12);
  border: 1px solid rgba(210, 173, 104, 0.26);
}

.hero-panel .detail-list li,
.hero-panel .check-list li,
.hero-panel .step-list li,
.dark-card .detail-list li,
.dark-card .check-list li,
.dark-card .step-list li,
.cta-band .detail-list li,
.cta-band .check-list li,
.cta-band .step-list li {
  color: rgba(255, 255, 255, 0.92);
}

.hero-panel .detail-list li::before,
.dark-card .detail-list li::before,
.cta-band .detail-list li::before,
.hero-panel .check-list li::before,
.dark-card .check-list li::before,
.cta-band .check-list li::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.dark-card .section-tag {
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 96px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--ink);
}

.section-copy {
  margin-top: 18px;
  color: var(--ink-strong);
  font-size: 1.02rem;
}

.surface-card,
.contact-card,
.map-card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

.soft-card {
  background:
    linear-gradient(180deg, rgba(133, 198, 231, 0.15), rgba(255, 255, 255, 0.6)),
    rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(133, 198, 231, 0.22);
  padding: 28px;
}

.card-title {
  font-size: 1.95rem;
  margin-bottom: 14px;
}

.surface-card p + p,
.soft-card p + p,
.dark-card p + p,
.contact-card p + p {
  margin-top: 12px;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.schedule-grid,
.feature-grid,
.contact-grid,
.step-grid,
.list-grid {
  display: grid;
  gap: 20px;
}

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

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

.grid-4,
.feature-grid,
.list-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 8px;
}

.stat-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stat-card p {
  color: var(--ink-strong);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(210, 173, 104, 0.2), rgba(133, 198, 231, 0.18));
  color: var(--navy);
  font-weight: 800;
}

.link-card {
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  top: -22px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-radius: 28px;
  transform: rotate(18deg);
  background: linear-gradient(135deg, rgba(210, 173, 104, 0.16), rgba(133, 198, 231, 0.12));
}

.link-card > * {
  position: relative;
  z-index: 1;
}

.link-card small,
.schedule-card small,
.contact-card small {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.link-card h3,
.schedule-card h3,
.contact-card h3,
.map-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
  color: var(--navy);
}

.link-card p,
.contact-card p,
.map-card p {
  color: var(--ink-strong);
}

.schedule-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(7, 17, 29, 0.96), rgba(17, 34, 52, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.schedule-card h3 {
  color: #ffffff;
}

.schedule-card p,
.schedule-card small {
  color: rgba(255, 255, 255, 0.76);
}

.surface-card p,
.soft-card p,
.contact-card p,
.map-card p {
  color: var(--ink-strong);
}

.check-list,
.step-list,
.detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li,
.step-list li,
.detail-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-strong);
}

.dark-card .check-list li,
.dark-card .step-list li,
.dark-card .detail-list li {
  color: rgba(255, 255, 255, 0.9);
}

.check-list li::before,
.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sky));
}

.step-list {
  counter-reset: steps;
}

.step-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--sky));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 15% 15%, rgba(133, 198, 231, 0.18), transparent 24%),
    linear-gradient(135deg, #08111d 0%, #0f1f31 50%, #152940 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
}

.cta-band .section-tag {
  color: rgba(255, 255, 255, 0.82);
}

.media-showcase {
  padding: 30px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(133, 198, 231, 0.14), transparent 22%),
    linear-gradient(135deg, #08111d 0%, #0f1f31 48%, #15283c 100%);
  border: 1px solid rgba(133, 198, 231, 0.14);
  box-shadow: var(--shadow);
  color: #ffffff;
  overflow: hidden;
}

.media-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.media-showcase-copy {
  max-width: 620px;
}

.media-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
}

.media-showcase-kicker::before {
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
}

.media-showcase-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.media-showcase-tools,
.media-showcase-controls {
  display: flex;
  align-items: center;
}

.media-showcase-tools {
  gap: 14px;
  flex-shrink: 0;
}

.media-showcase-count {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.media-showcase-count strong {
  font-size: 1.1rem;
  color: #ffffff;
}

.media-showcase-count span {
  color: rgba(255, 255, 255, 0.56);
}

.media-showcase-controls {
  gap: 12px;
}

.media-showcase-button {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.media-showcase-button:hover,
.media-showcase-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(210, 173, 104, 0.32);
}

.media-showcase-button svg {
  width: 22px;
  height: 22px;
}

.media-showcase-window {
  overflow: hidden;
  border-radius: 28px;
}

.media-showcase-track {
  display: flex;
  transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.media-showcase-slide {
  flex: 0 0 100%;
}

.media-showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 22px;
  min-height: 360px;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(133, 198, 231, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 233, 0.92));
  border: 1px solid rgba(13, 23, 34, 0.08);
  color: var(--ink);
}

.media-showcase-main,
.media-showcase-side {
  display: flex;
  flex-direction: column;
}

.media-showcase-main {
  justify-content: center;
}

.media-showcase-main h3 {
  margin: 16px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.media-showcase-main p {
  max-width: 54ch;
  color: var(--ink-strong);
  font-size: 1.02rem;
}

.media-showcase-label,
.media-showcase-tags span,
.media-showcase-note-label,
.media-showcase-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.media-showcase-label {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  box-shadow: 0 14px 26px rgba(210, 173, 104, 0.18);
}

.media-showcase-tags,
.media-showcase-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-showcase-tags {
  margin-top: 24px;
}

.media-showcase-tags span,
.media-showcase-points span {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 23, 34, 0.08);
  color: var(--ink-soft);
}

.media-showcase-side {
  justify-content: space-between;
  gap: 18px;
}

.media-showcase-note {
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(220, 238, 248, 0.56));
  border: 1px solid rgba(133, 198, 231, 0.2);
}

.media-showcase-note strong {
  display: block;
  margin: 14px 0 10px;
  font-size: 1.2rem;
  color: var(--ink);
}

.media-showcase-note p {
  color: var(--ink-soft);
}

.media-showcase-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.media-showcase-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    width 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.media-showcase-dot.is-active {
  width: 34px;
  background: linear-gradient(90deg, var(--gold), var(--sky));
}

.media-showcase[data-slide-count="1"] .media-showcase-tools,
.media-showcase[data-slide-count="1"] .media-showcase-dots {
  display: none;
}

.site-alert-wrap {
  padding: 26px 0 28px;
}

.site-alert {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) minmax(190px, 220px);
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(133, 198, 231, 0.1), transparent 20%),
    linear-gradient(135deg, #fff4e5 0%, #fffaf3 100%);
  border: 1px solid rgba(139, 45, 31, 0.14);
  box-shadow: 0 20px 40px rgba(139, 45, 31, 0.08);
  position: relative;
  overflow: hidden;
  animation: announcement-enter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-alert::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(210, 173, 104, 0.4), rgba(133, 198, 231, 0.2), rgba(210, 173, 104, 0.05));
}

.site-alert::after {
  content: "";
  position: absolute;
  inset: auto -120px -140px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 173, 104, 0.16), transparent 70%);
  pointer-events: none;
}

.site-alert-mark {
  position: relative;
  z-index: 1;
  min-height: 104px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 16px 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(133, 198, 231, 0.18), transparent 34%),
    linear-gradient(145deg, #0c1725 0%, #15304a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(7, 17, 29, 0.22);
  animation: alert-float 4.2s ease-in-out infinite;
}

.site-alert-mark-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-alert-mark-value {
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.site-alert-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.site-alert-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(179, 69, 46, 0.08);
  border: 1px solid rgba(179, 69, 46, 0.12);
  color: var(--alert);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 0 0 0 rgba(179, 69, 46, 0.12);
  animation: visitor-badge-pulse 2.4s ease-in-out infinite;
}

.site-alert-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b3452e, #d26f46);
  box-shadow: 0 0 0 5px rgba(179, 69, 46, 0.08);
  animation: visitor-dot-pulse 1.6s ease-in-out infinite;
}

.site-alert-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 8px;
}

.site-alert-copy p {
  color: var(--ink-strong);
  font-size: 1rem;
  line-height: 1.55;
}

.site-alert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.site-alert-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(13, 23, 34, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-alert-actions {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.site-alert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #fff7ea);
  border: 1px solid rgba(13, 23, 34, 0.1);
  color: var(--navy);
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(13, 23, 34, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.site-alert-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(13, 23, 34, 0.12);
}

@keyframes announcement-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visitor-badge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(179, 69, 46, 0.1);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(179, 69, 46, 0.02);
    transform: translateY(-1px);
  }
}

@keyframes visitor-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 5px rgba(179, 69, 46, 0.08);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.18);
    box-shadow: 0 0 0 9px rgba(179, 69, 46, 0.03);
  }
}

@keyframes alert-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.map-frame {
  min-height: 320px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  margin-top: 20px;
}

.map-frame iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

.scroll-top {
  --scroll-progress: 10%;
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 28px);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px) scale(0.9);
  background:
    conic-gradient(
      from 180deg,
      rgba(210, 173, 104, 0.98) 0%,
      rgba(133, 198, 231, 0.98) var(--scroll-progress),
      rgba(255, 255, 255, 0.16) var(--scroll-progress),
      rgba(255, 255, 255, 0.16) 100%
    );
  box-shadow: 0 18px 30px rgba(7, 17, 29, 0.2);
  transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease, box-shadow 0.28s ease;
}

.scroll-top::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  opacity: 1;
  background:
    radial-gradient(circle at 30% 24%, rgba(133, 198, 231, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(8, 18, 30, 0.98), rgba(17, 35, 54, 0.96));
}

.scroll-top::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: scroll-top-float 3.6s ease-in-out infinite;
}

.scroll-top:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 36px rgba(7, 17, 29, 0.24);
}

.scroll-top:focus-visible {
  outline: 2px solid rgba(133, 198, 231, 0.88);
  outline-offset: 5px;
}

.scroll-top.is-pressed {
  transform: translateY(-1px) scale(0.96);
}

.scroll-top svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: block;
  color: #ffffff;
}

.footer {
  padding: 34px 0 42px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  gap: 18px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .nav-links,
  .header-button {
    display: none;
  }

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

  .hero-grid,
  .split-grid,
  .cta-grid,
  .map-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .page-main {
    padding-top: 82px;
  }

  .nav-shell {
    min-height: 82px;
  }

  .hero-home {
    min-height: auto;
    padding: 42px 0 74px;
  }

  .page-hero {
    padding: 62px 0 48px;
  }

  .section {
    padding: 78px 0;
  }

  .page-title {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .hero-actions,
  .card-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-panel-head {
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .site-alert {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-alert-mark {
    min-height: 88px;
  }

  .site-alert-actions {
    justify-content: stretch;
  }

  .site-alert-link {
    width: 100%;
  }

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

  .grid-2,
  .grid-3,
  .grid-4,
  .stats-grid,
  .schedule-grid,
  .feature-grid,
  .contact-grid,
  .step-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }

  .surface-card,
  .soft-card,
  .dark-card,
  .contact-card,
  .map-card,
  .schedule-card,
  .stat-card,
  .hero-panel,
  .cta-band,
  .message-visual-card,
  .message-copy-card {
    padding: 24px;
  }

  .message-visual-main {
    min-height: 280px;
  }

  .message-visual-secondary {
    min-height: 180px;
  }

  .scroll-top {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }

  .media-showcase {
    padding: 24px;
  }

  .media-showcase-head {
    flex-direction: column;
    align-items: stretch;
  }

  .media-showcase-tools {
    justify-content: space-between;
  }

  .media-showcase-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .media-showcase-main h3 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .media-showcase-controls {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .media-showcase {
    padding: 20px;
  }

  .media-showcase-card {
    padding: 22px;
  }

  .media-showcase-button {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .media-showcase-tools {
    flex-direction: column;
    align-items: stretch;
  }

  .media-showcase-controls {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes scroll-top-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.01);
  }
}

.channel-spotlight,
.media-hub {
  position: relative;
  overflow: hidden;
}

.channel-spotlight::before,
.media-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(133, 198, 231, 0.18), transparent 28%);
  pointer-events: none;
}

.channel-spotlight > *,
.media-hub > * {
  position: relative;
  z-index: 1;
}

.channel-spotlight p,
.media-hub-copy p,
.media-hub-meta p {
  color: rgba(255, 255, 255, 0.78);
}

.media-hub .detail-list li,
.media-hub .check-list li,
.media-hub .step-list li {
  color: rgba(255, 255, 255, 0.9);
}

.media-hub .detail-list li::before,
.media-hub .check-list li::before,
.media-hub .step-list li::before {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.04);
}

.channel-handle {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-story-grid {
  display: grid;
  gap: 24px;
}

.video-story-card,
.media-video-card,
.story-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(13, 23, 34, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-story-card {
  display: grid;
  gap: 0;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.18), transparent 28%),
    linear-gradient(135deg, #09131f, #17304a);
  aspect-ratio: 16 / 9;
}

.media-video-card .video-frame,
.video-story-card .video-frame,
.media-hub-panel .video-frame {
  border-radius: 22px;
}

.video-frame iframe,
.video-frame video,
.video-frame img,
.lightbox-stage img,
.lightbox-stage video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-frame video,
.lightbox-stage video,
.story-media img {
  object-fit: cover;
}

.lightbox-stage img {
  object-fit: contain;
  background: #07111d;
}

.video-frame-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  color: #ffffff;
  text-align: center;
}

.video-frame-fallback img {
  width: 64px;
  opacity: 0.88;
}

.video-story-copy {
  padding: 24px;
}

.video-story-kicker,
.story-badge,
.media-note,
.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-story-kicker {
  background: linear-gradient(135deg, rgba(210, 173, 104, 0.18), rgba(133, 198, 231, 0.18));
  color: var(--accent-strong);
}

.video-story-copy h3,
.story-copy h3 {
  margin-top: 14px;
  font-size: clamp(1.26rem, 3vw, 1.7rem);
  line-height: 1.1;
}

.video-story-meta {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.video-story-copy p,
.story-copy p {
  margin-top: 12px;
  color: var(--ink-soft);
}

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

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

.message-visual-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
}

.message-visual-main,
.message-visual-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
}

.message-visual-main {
  min-height: 420px;
  background: linear-gradient(135deg, #0a1421, #17324a);
}

.message-visual-secondary {
  min-height: 220px;
  background: linear-gradient(135deg, #102133, #183955);
}

.message-visual-main img,
.message-visual-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.message-visual-main::after,
.message-visual-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 29, 0.06), rgba(7, 17, 29, 0.52));
}

.message-visual-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.message-copy-card p {
  color: rgba(255, 255, 255, 0.88);
}

.message-point-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.message-point {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.message-point strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
}

.message-point p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.story-card {
  display: flex;
  flex-direction: column;
}

.story-media {
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 17, 29, 0.54) 100%);
  opacity: 0.88;
  transition: opacity 0.25s ease;
}

.story-media:hover::after,
.story-media:focus-visible::after {
  opacity: 1;
}

.story-media img {
  width: 100%;
  height: 290px;
  transition: transform 0.45s ease;
}

.story-media:hover img,
.story-media:focus-visible img {
  transform: scale(1.04);
}

.story-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.story-play {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.84);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.story-copy {
  padding: 22px 24px 24px;
}

.media-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.12), transparent 22%),
    radial-gradient(circle at bottom left, rgba(133, 198, 231, 0.18), transparent 26%),
    linear-gradient(135deg, #07111d 0%, #102131 48%, #17344e 100%);
  box-shadow: 0 26px 58px rgba(7, 17, 29, 0.18);
}

.media-hub-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.video-frame-large {
  aspect-ratio: 16 / 10;
}

.media-hub-meta {
  display: grid;
  gap: 12px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-chip {
  padding: 0 18px;
  border: 1px solid rgba(13, 23, 34, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink-soft);
  cursor: pointer;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  transform: translateY(-2px);
}

.filter-chip.is-active {
  border-color: rgba(210, 173, 104, 0.26);
  background: linear-gradient(135deg, var(--gold-soft), rgba(255, 255, 255, 0.94));
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(210, 173, 104, 0.14);
}

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

.media-video-card {
  display: grid;
  gap: 20px;
  padding: 18px;
}

.media-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.media-note {
  background: rgba(133, 198, 231, 0.14);
  color: var(--accent-strong);
  letter-spacing: 0.08em;
}

.filter-item-hidden {
  display: none !important;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(4, 11, 18, 0.78);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-shell {
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(210, 173, 104, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.94));
  box-shadow: 0 30px 80px rgba(4, 11, 18, 0.42);
}

.lightbox-close {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(13, 23, 34, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
}

.lightbox-stage {
  overflow: hidden;
  border-radius: 24px;
  background: #07111d;
  aspect-ratio: 16 / 9;
}

.lightbox-copy {
  display: grid;
  gap: 8px;
}

.lightbox-copy strong {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  line-height: 1.1;
}

.lightbox-copy p {
  color: var(--ink-soft);
}

@media (max-width: 1080px) {
  .media-hub,
  .media-library-grid,
  .story-grid-large,
  .story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .media-hub,
  .channel-spotlight,
  .media-video-card,
  .story-copy,
  .video-story-copy {
    padding: 24px;
  }

  .video-story-grid,
  .filter-bar {
    gap: 16px;
  }

  .story-media img {
    height: 240px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-shell {
    padding: 16px;
    border-radius: 24px;
  }
}
