.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(6, 29, 73, 0.82), rgba(6, 29, 73, 0));
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(6, 29, 73, 0.94);
  box-shadow: 0 10px 30px rgba(3, 19, 49, 0.18);
  backdrop-filter: blur(16px);
}

.header-layout {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark,
.footer-mark {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-600);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark img,
.footer-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy,
.footer-brand > span:last-child {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.brand-copy strong {
  overflow: hidden;
  max-width: 310px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color var(--transition), background-color var(--transition);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform var(--transition), color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

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

.button:active {
  transform: translateY(0);
}

.button-light {
  color: var(--blue-800);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(1, 18, 47, 0.22);
}

.button-light:hover {
  color: var(--blue-600);
  background: #f7faff;
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 36px rgba(1, 18, 47, 0.16);
  backdrop-filter: blur(10px);
}

.button-outline-light:hover {
  color: var(--blue-800);
  border-color: var(--white);
  background: var(--white);
}



.button-full {
  width: 100%;
}

.carousel-arrows {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.carousel-arrow,
.modal-navigation,
.modal-close {
  display: grid;
  place-items: center;
  color: var(--blue-800);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), color var(--transition), background-color var(--transition), opacity var(--transition);
}

.carousel-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.carousel-arrow:hover:not(:disabled) {
  color: var(--white);
  background: var(--blue-600);
  transform: translateY(-2px);
}

.carousel-arrow:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.activity-carousel {
  position: relative;
}

.carousel-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar {
  display: none;
}

.carousel-track {
  display: flex;
  margin-inline: -10px;
}

.activity-slide {
  min-width: 100%;
  padding-inline: 10px;
  scroll-snap-align: start;
}

.activity-card {
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(9, 43, 103, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.poster-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: var(--surface-strong);
  cursor: zoom-in;
}

.poster-frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #edf2f8;
}

.poster-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.poster-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(5, 30, 73, 0.2);
  transition: transform var(--transition), background-color var(--transition);
}

.poster-button:hover .poster-zoom {
  background: var(--white);
  transform: scale(1.06);
}

.activity-meta {
  padding: 18px 20px 21px;
}

.activity-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.activity-meta h3 {
  margin-bottom: 0;
  color: var(--blue-800);
  font-size: 1rem;
  line-height: 1.3;
}

.carousel-footer {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: #b9c8dd;
  cursor: pointer;
  transition: width var(--transition), background-color var(--transition);
}

.carousel-dot[aria-current="true"] {
  width: 30px;
  background: var(--blue-600);
}


.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  max-width: 1240px;
  margin-inline: auto;
}

.social-card {
  position: relative;
  display: grid;
  flex: 1 1 200px;
  width: 100%;
  max-width: 224px;
  min-height: 184px;
  align-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.social-card:not(.social-card-disabled):hover {
  border-color: rgba(23, 99, 198, 0.38);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.social-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  font-size: 1.35rem;
}

.social-icon.facebook,
.social-icon.email {
  background: var(--blue-600);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #7048c8, #d93a73 55%, #e7a43d);
}



.social-icon.youtube {
  background: #d82525;
}

.social-icon.tiktok {
  background: #111318;
}

.social-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.social-copy strong {
  color: var(--blue-800);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.social-copy small {
  overflow-wrap: anywhere;
  color: var(--text-soft);
  font-size: 0.79rem;
}

.social-arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #91a0b6;
  font-size: 0.78rem;
}

.social-card-disabled {
  color: #8290a4;
  background: #f3f5f8;
  box-shadow: none;
}

.coming-badge {
  position: absolute;
  top: 22px;
  right: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.1);
}

.contact-detail > div {
  display: grid;
}

.contact-detail span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-detail small {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #04152f;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 36px;
}

.footer-brand strong {
  color: var(--white);
  font-size: 0.82rem;
}

.footer-brand small {
  margin-top: 4px;
  color: var(--gold-400);
  font-weight: 700;
}

.footer-social {
  display: flex;
  gap: 9px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: color var(--transition), background-color var(--transition), transform var(--transition);
}

.footer-social a:hover {
  color: var(--blue-900);
  background: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}


.image-modal[hidden] {
  display: none;
}

.image-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 9, 24, 0.91);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(100%, 980px);
  max-height: calc(100vh - 44px);
  place-items: center;
}

.modal-figure {
  display: grid;
  width: 100%;
  max-height: calc(100vh - 74px);
  place-items: center;
  margin: 0;
}

.modal-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
}

.modal-figure figcaption {
  margin-top: 12px;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: -2px;
  right: -2px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.modal-close:hover,
.modal-navigation:hover {
  color: var(--blue-900);
  background: var(--white);
}

.modal-navigation {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
  transform: translateY(-50%);
}

.modal-previous {
  left: -64px;
}

.modal-next {
  right: -64px;
}

.modal-help {
  position: static;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-align: center;
  white-space: nowrap;
}


.section-inline-link {
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 99, 198, 0.35);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.section-inline-link:hover,
.section-inline-link:focus-visible {
  color: var(--blue-600);
  text-decoration-color: currentColor;
}
