.hero-video {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 380ms ease;
}

.hero-bg-img.is-fading {
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.scroll-top-btn {
  position: fixed;
  right: 18px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

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

.scroll-top-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.scroll-top-btn svg {
  animation: floaty 1.6s ease-in-out infinite;
}

.override-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 86px;
  z-index: 130;
}

.override-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(243, 201, 77, 0.35);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}

.override-banner-text {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 650;
}

.override-banner-btn {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 750;
  font-size: 12px;
  white-space: nowrap;
}

.override-banner-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-title-bold {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
}

.hero-title-en {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
}

.hero-theme-bold {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--gold);
  margin: 0;
}

.hero-lead-bold {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.hero-actions-center {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 800;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head-center {
  text-align: center;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-bold {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.section-lead-center {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

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

@media (min-width: 920px) {
  .grid-2-large {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card-bold {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
}

.info-title-large {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
}

.info-sub-large {
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 24px;
}

.info-list-large {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.story-grid {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 920px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.story-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 16px;
}

.story-text {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-bold {
  font-size: 14px;
  font-weight: 800;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-card-bold {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px;
}

.media-head-bold {
  text-align: center;
  margin-bottom: 32px;
}

.media-title-large {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 16px;
}

.media-link-bold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #1877F2;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.media-link-bold:hover {
  opacity: 0.9;
}

.live-box-bold {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.live-title-bold {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.live-text-large {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.schedule-list-large {
  font-size: 18px;
}

.schedule-list-large .list {
  display: grid;
  gap: 14px;
  max-width: 520px;
  margin: 0 auto;
}

.schedule-list-large .list-item {
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.schedule-list-large .list-title {
  font-weight: 850;
  margin-bottom: 8px;
}

.panel-bold {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 40px;
}

.panel-title-large {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 32px;
  text-align: center;
}

.form-large {
  display: grid;
  gap: 24px;
}

.field-large {
  display: grid;
  gap: 12px;
}

.field-large label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.input-large {
  font-size: 18px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-actions-large {
  margin-top: 16px;
  text-align: center;
}

/* Original styles below... */
:root {
  --bg: #0b0a12;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-2: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted-2: rgba(255, 255, 255, 0.56);
  --line: rgba(255, 255, 255, 0.14);

  --red: #d61b23;
  --purple: #5b2aa6;
  --gold: #f3c94d;
  --accent: linear-gradient(135deg, var(--red), var(--purple));

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  --container: 1120px;
}

html[data-theme="light"] {
  --bg: #f6f7fb;
  --text: rgba(15, 23, 42, 0.92);
  --muted: rgba(15, 23, 42, 0.72);
  --muted-2: rgba(15, 23, 42, 0.56);
  --line: rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 15% 10%, rgba(91, 42, 166, 0.42), transparent 55%),
    radial-gradient(700px 520px at 85% 12%, rgba(214, 27, 35, 0.35), transparent 55%),
    radial-gradient(650px 520px at 80% 75%, rgba(243, 201, 77, 0.22), transparent 55%),
    var(--bg);
  line-height: 1.6;
}

html[data-theme="light"] body {
  background: radial-gradient(900px 600px at 15% 10%, rgba(91, 42, 166, 0.12), transparent 60%),
    radial-gradient(700px 520px at 85% 12%, rgba(214, 27, 35, 0.10), transparent 60%),
    radial-gradient(650px 520px at 70% 75%, rgba(243, 201, 77, 0.16), transparent 60%),
    var(--bg);
}

.hero-video {
  color: rgba(255, 255, 255, 0.92);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.10);
}

.theme-toggle-icon {
  font-size: 16px;
  font-weight: 900;
}

html[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .site-header[data-elevate="true"] {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .nav-toggle {
  background: rgba(15, 23, 42, 0.04);
}

html[data-theme="light"] .nav-toggle-bar {
  background: rgba(15, 23, 42, 0.70);
}

html[data-theme="light"] .nav-link:hover,
html[data-theme="light"] .nav-link:focus-visible {
  background: rgba(15, 23, 42, 0.06);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .nav-cta {
  border: 1px solid rgba(243, 201, 77, 0.75);
  background: rgba(243, 201, 77, 0.35);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .badge-new-inline {
  border: 1px solid rgba(214, 27, 35, 0.55);
  background: linear-gradient(135deg, rgba(214, 27, 35, 0.34), rgba(245, 158, 11, 0.32));
  color: rgba(15, 23, 42, 0.92);
  text-shadow: none;
}

html[data-theme="light"] .info-card-bold,
html[data-theme="light"] .media-card-bold,
html[data-theme="light"] .panel-bold {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.10);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .info-card,
html[data-theme="light"] .panel,
html[data-theme="light"] .media-card,
html[data-theme="light"] .event-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .section-alt {
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

html[data-theme="light"] .section-lead-center,
html[data-theme="light"] .info-list-large,
html[data-theme="light"] .story-text,
html[data-theme="light"] .info-sub,
html[data-theme="light"] .info-list,
html[data-theme="light"] .panel-text,
html[data-theme="light"] .live-text-large {
  color: var(--muted);
}

html[data-theme="light"] .service-groups .list-title {
  color: #0f172a;
}

html[data-theme="light"] .service-groups .list-sub {
  color: rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .contact-k {
  color: var(--muted);
}

html[data-theme="light"] .contact-v {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

html[data-theme="light"] .contact-value {
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .kv-row {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.88);
}

html[data-theme="light"] .give-cheque-payee {
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: rgba(15, 23, 42, 0.90);
}

html[data-theme="light"] .copy-link:hover,
html[data-theme="light"] .copy-link:focus-visible {
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .month-chip {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.90);
}

html[data-theme="light"] .month-chip.is-active {
  border-color: rgba(243, 201, 77, 0.85);
  background: rgba(243, 201, 77, 0.22);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .groups-tab-btn {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.04);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .groups-tab-btn:hover {
  background: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .groups-tab-btn[aria-selected="true"] {
  border-color: rgba(243, 201, 77, 0.85);
  background: rgba(243, 201, 77, 0.22);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .give-cheque-head {
  color: rgba(214, 27, 35, 0.92);
}

html[data-theme="light"] .relax-spotlight-vision {
  color: rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .relax-emph {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .relax-emph-line {
  color: rgba(15, 23, 42, 0.82);
}

html[data-theme="light"] .relax-emph-line.is-strong {
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .reviews-feature-text {
  color: rgba(15, 23, 42, 0.76);
}

html[data-theme="light"] .tag-bold {
  background: rgba(15, 23, 42, 0.06);
}

html[data-theme="light"] .input-large {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.16);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .field-large label {
  color: rgba(15, 23, 42, 0.82);
}

html[data-theme="light"] .scroll-top-btn {
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .scroll-top-btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

html[data-theme="light"] .site-footer {
  background: rgba(255, 255, 255, 0.70);
  border-top: 1px solid rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .footer-sub {
  color: rgba(15, 23, 42, 0.58);
}

html[data-theme="light"] .footer-title {
  color: rgba(15, 23, 42, 0.92);
}

html[data-theme="light"] .footer-mark {
  opacity: 1;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.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 {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--line);
  transform: translateY(-140%);
  transition: transform 180ms ease;
  z-index: 40;
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(11, 10, 18, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header[data-elevate="true"] {
  background: rgba(11, 10, 18, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

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

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

.brand-title {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease;
}

.nav-link-pop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(243, 201, 77, 0.55);
  background: rgba(243, 201, 77, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  animation: popPulse 1.8s ease-in-out infinite;
}

.badge-new-inline {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 120, 120, 0.7);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.28), rgba(245, 158, 11, 0.22));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.98);
  font-weight: 950;
  animation: popPulse 1.25s ease-in-out infinite;
}

.badge-new-lg {
  padding: 6px 10px;
  font-size: 12px;
}

.badge-icon {
  color: rgba(243, 201, 77, 0.98);
  font-size: 12px;
  transform: translateY(-0.5px);
}

@keyframes popPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.05); }
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(243, 201, 77, 0.5);
  background: rgba(243, 201, 77, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.hero {
  padding: 54px 0 30px;
}

.hero-cover {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-cover-img {
  width: 100%;
  height: min(360px, 42vw);
  object-fit: cover;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: start;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 13px;
}

.hero-title {
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.15;
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
}

.hero-title-en {
  display: block;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-theme {
  display: inline-flex;
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(243, 201, 77, 0.45);
  background: rgba(243, 201, 77, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-lead {
  margin: 0 0 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(214, 27, 35, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.btn-link {
  background: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
}

.btn:hover,
.btn:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.meta-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 12px;
}

.meta-k {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.meta-v {
  font-size: 14px;
  font-weight: 650;
  margin-top: 6px;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
  font-weight: 750;
  letter-spacing: 0.01em;
}

.card-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(243, 201, 77, 0.16);
  border: 1px solid rgba(243, 201, 77, 0.45);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.card-list {
  padding: 10px 16px 4px;
}

.card-row {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-row:last-child {
  border-bottom: none;
}

.card-row-title {
  font-weight: 700;
}

.card-row-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 16px 16px;
}

.section {
  padding: 54px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#community .section-title-pop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.kicker-pop {
  display: inline-flex;
  justify-content: center;
  margin-top: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(243, 201, 77, 0.95);
}

#community.section {
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(243, 201, 77, 0.14), transparent 60%),
    radial-gradient(900px 420px at 15% 40%, rgba(91, 42, 166, 0.16), transparent 60%),
    rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#community .relax-logo {
  width: 78px;
  height: 78px;
}

#community .panel-title {
  font-size: 22px;
  font-weight: 900;
}

#community .relax-subtitle {
  color: rgba(243, 201, 77, 0.95);
  font-weight: 900;
}

.section-lead-center:empty {
  display: none;
}

.poster-btn {
  width: 100%;
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: zoom-in;
}

.poster-btn:focus-visible {
  outline: 2px solid rgba(243, 201, 77, 0.7);
  outline-offset: 4px;
  border-radius: 16px;
}

.panel-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.carousel-actions {
  display: inline-flex;
  gap: 8px;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

.carousel {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.carousel-item {
  flex: 0 0 calc(100% / 3);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  scroll-snap-align: start;
}

.carousel-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.carousel-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}

@media (max-width: 720px) {
  .carousel-item {
    flex-basis: 78%;
  }
  .carousel-img {
    height: 190px;
  }
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head-with-icon {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.section-icon {
  color: rgba(243, 201, 77, 0.85);
  flex-shrink: 0;
  margin-top: 4px;
}

.section-title {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 75ch;
}

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

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

.info-card,
.panel,
.media-card,
.event-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 18px;
}

.info-title {
  margin: 0;
  font-size: 18px;
}

.info-sub {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.info-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.cta-panel {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(214, 27, 35, 0.18), rgba(91, 42, 166, 0.18));
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-groups {
  margin-top: 14px;
}

.groups-tabs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.groups-tabs::-webkit-scrollbar {
  height: 6px;
}

.groups-tabs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.groups-tab-btn {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: all 140ms ease;
}

.groups-tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.groups-tab-btn[aria-selected="true"] {
  background: rgba(243, 201, 77, 0.15);
  border-color: rgba(243, 201, 77, 0.4);
  color: rgba(243, 201, 77, 0.95);
}

.groups-content {
  margin-top: 16px;
}

.relax-spotlight {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.relax-spotlight-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .relax-spotlight-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }
}

.relax-spotlight-poster {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.relax-spotlight-poster:focus-visible {
  outline: 2px solid rgba(243, 201, 77, 0.7);
  outline-offset: 4px;
}

.relax-spotlight-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.relax-spotlight-zoom {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  font-size: 12px;
}

.relax-spotlight-copy {
  display: grid;
  gap: 12px;
}

.relax-spotlight-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.relax-spotlight-title {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.relax-spotlight-kicker {
  margin-top: 6px;
  color: rgba(243, 201, 77, 0.95);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.relax-spotlight-vision {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.relax-emph {
  display: grid;
  gap: 8px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.relax-emph-line {
  font-weight: 800;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.86);
}

.relax-emph-line.is-strong {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.95);
}

.relax-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.relax-panel {
  margin-top: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.relax-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.relax-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.1);
}

.relax-body {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .relax-body {
    grid-template-columns: 1fr 1fr;
  }
}

.relax-subtitle {
  font-weight: 700;
  color: rgba(243, 201, 77, 0.9);
  font-size: 15px;
}

.relax-purpose .info-list {
  padding-left: 20px;
}

.relax-hours .info-list {
  padding-left: 20px;
}

.cta-title {
  margin: 0;
  font-size: 18px;
}

.cta-lead {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 72ch;
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.panel-title {
  margin: 0;
  font-size: 18px;
}

.panel-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.checklist {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.media-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.media-title {
  margin: 0;
  font-size: 18px;
}

.media-link {
  color: rgba(243, 201, 77, 0.95);
  font-weight: 650;
}

.live-box {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  padding: 14px 14px;
}

.live-title {
  font-weight: 750;
}

.live-text {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.embed {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  min-height: 240px;
  display: grid;
  place-items: center;
}

.embed-placeholder {
  padding: 18px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  transition: background 140ms ease, border-color 140ms ease;
}

.list-item:hover,
.list-item:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.list-title {
  font-weight: 750;
}

.list-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.event-date {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.event-title {
  margin: 12px 0 0;
  font-size: 18px;
}

.event-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.event-link {
  margin-top: 14px;
  display: inline-flex;
  color: rgba(243, 201, 77, 0.95);
  font-weight: 700;
}

.kv {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.kv-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-line {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
}

.contact-k {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-v {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.contact-value {
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
}

.copy-link {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: rgba(243, 201, 77, 0.95);
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.copy-link:hover,
.copy-link:focus-visible {
  outline: none;
  color: rgba(255, 255, 255, 0.95);
}

.copy-btn {
  text-align: left;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  white-space: pre-line;
}

.about-grid {
  grid-template-columns: 1fr;
}

.reviews-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 14px;
}

.reviews-select {
  appearance: none;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 12px;
}

.reviews-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-chip {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
}

.tag-chip.is-active {
  border-color: rgba(243, 201, 77, 0.5);
  background: rgba(243, 201, 77, 0.12);
}

.month-tabs,
.news-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.review-year-list + .month-tabs {
  margin-top: 12px;
  margin-bottom: 0;
}

.review-year-list + .month-tabs .month-chip {
  padding: 8px 12px;
  font-size: 11px;
}

.month-chip {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  font-size: 12px;
  cursor: pointer;
}

.month-chip.is-active {
  border-color: rgba(243, 201, 77, 0.55);
  background: rgba(243, 201, 77, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

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

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.news-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.news-card-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 14px 14px 16px;
}

.news-card-title {
  font-weight: 900;
  font-size: 15px;
}

.news-card-desc {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

.review-year-list {
  max-width: 1100px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .year-photo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.year-photo-btn {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.year-photo-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
}

.year-photo-desc {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  min-height: 1.45em;
}

.year-photo-btn:focus-visible {
  outline: 2px solid rgba(243, 201, 77, 0.7);
  outline-offset: 4px;
  border-radius: 16px;
}

.review-event {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  padding: 14px;
}

.review-event-line {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-event-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (min-width: 768px) {
  .review-event-photos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.review-thumb-btn {
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.review-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.review-thumb-btn:focus-visible {
  outline: 2px solid rgba(243, 201, 77, 0.7);
  outline-offset: 3px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox-dialog {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox-img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.25);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.review-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 920px) {
  .review-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.review-tile {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

@media (min-width: 920px) {
  .review-tile.is-featured {
    grid-column: 1 / -1;
  }
}

.review-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.review-caption {
  padding: 14px 14px 16px;
}

.review-cap-title {
  font-weight: 900;
  font-size: 16px;
}

.review-cap-desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.6;
}

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

.events-accordion {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .events-accordion {
    grid-template-columns: repeat(3, 1fr);
  }
}

#events .events-accordion {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

#events .event-promo {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

#events .event-poster {
  border-radius: 18px 18px 0 0;
  height: 190px;
}

#events .event-tabs {
  padding: 10px 12px 0;
}

#events .event-tab-panels {
  padding: 8px 12px 14px;
}

.reviews-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 920px) {
  .reviews-feature {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: stretch;
  }
}

.reviews-feature-image {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  min-height: 320px;
}

.reviews-feature-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.reviews-feature-panel {
  display: grid;
  gap: 16px;
  align-content: center;
}

.reviews-feature-text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.reviews-feature-btn {
  justify-content: center;
}

#contact.section,
#give.section {
  padding: 38px 0;
}

#contact .grid-2-large {
  gap: 16px;
}

#contact .panel-bold {
  padding: 24px;
  border-radius: 18px;
}

#contact .panel-title-large {
  margin: 0 0 18px;
}

#contact .form-large {
  gap: 14px;
}

#contact .field-large {
  gap: 10px;
}

#contact textarea.input-large {
  min-height: 150px;
  resize: vertical;
}

#give .give-grid {
  align-items: start;
}

#give .give-media {
  padding: 0;
  overflow: hidden;
}

#give .give-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

#give .give-copy {
  display: grid;
  gap: 14px;
}

#give .section-lead-center {
  white-space: pre-line;
  font-size: 13px;
  line-height: 1.9;
}

.give-cheque {
  display: grid;
  gap: 10px;
  padding: 4px 2px;
}

.give-cheque-head {
  font-weight: 950;
  color: rgba(243, 201, 77, 0.95);
  letter-spacing: 0.02em;
}

.give-cheque-payee {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.give-cta {
  width: 100%;
}

.event-month-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-month-header {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 750;
  font-size: 18px;
  color: rgba(243, 201, 77, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-month-events {
  padding: 12px;
  display: grid;
  gap: 12px;
}

.event-promo {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.event-poster {
  position: relative;
  height: 220px;
  background: radial-gradient(700px 280px at 25% 30%, rgba(91, 42, 166, 0.55), transparent 60%),
    radial-gradient(700px 280px at 75% 30%, rgba(214, 27, 35, 0.45), transparent 60%),
    rgba(0, 0, 0, 0.35);
  background-size: cover;
  background-position: center;
}

.event-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72));
}

.event-poster-title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.45);
}

.event-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 12px 12px 0;
}

.event-tab-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  font-size: 12px;
  cursor: pointer;
}

.event-tab-btn[aria-selected="true"] {
  border-color: rgba(243, 201, 77, 0.55);
  background: rgba(243, 201, 77, 0.14);
  color: rgba(255, 255, 255, 0.95);
}

.event-tab-panels {
  padding: 10px 12px 14px;
}

.event-tab-panel {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.6;
}

.review-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.review-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.review-img-placeholder {
  background: radial-gradient(600px 260px at 30% 20%, rgba(91, 42, 166, 0.5), transparent 58%),
    radial-gradient(600px 260px at 85% 30%, rgba(214, 27, 35, 0.45), transparent 55%),
    rgba(0, 0, 0, 0.25);
}

.review-body {
  padding: 14px 14px 16px;
}

.review-date {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.review-title {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.review-desc {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.reviews-tags-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag-mini {
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 700;
}

.reviews-empty {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

input,
textarea {
  font: inherit;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 10px 12px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(243, 201, 77, 0.6);
  box-shadow: 0 0 0 4px rgba(243, 201, 77, 0.14);
}

.form-actions {
  display: grid;
  gap: 10px;
  align-items: center;
}

.form-hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  background: rgba(0, 0, 0, 0.22);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 30px;
  height: 30px;
  opacity: 0.9;
}

.footer-title {
  font-weight: 750;
  font-size: 13px;
}

.footer-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  margin-top: 2px;
}

.footer-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
}

.footer-slogan {
  font-weight: 900;
  color: rgba(243, 201, 77, 0.92);
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(243, 201, 77, 0.28);
  background: rgba(0, 0, 0, 0.25);
}

.footer-right a {
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 140ms ease;
}

.footer-right a:hover,
.footer-right a:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .site-nav {
    position: fixed;
    right: 16px;
    left: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 10, 18, 0.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  html[data-theme="light"] .site-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
  }

  html[data-theme="light"] .site-nav .nav-link:hover,
  html[data-theme="light"] .site-nav .nav-link:focus-visible {
    color: rgba(255, 255, 255, 0.98);
  }

  html[data-theme="light"] .site-nav .nav-cta {
    border: 1px solid rgba(243, 201, 77, 0.55);
    background: rgba(243, 201, 77, 0.14);
    color: rgba(255, 255, 255, 0.96);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .nav-link {
    padding: 12px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.admin-top-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-grid {
  display: grid;
  gap: 14px;
}

.admin-form {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-hint {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.admin-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.admin-toolbar {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-file {
  position: relative;
  overflow: hidden;
}

.admin-file input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-status {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  min-height: 22px;
}

.admin-status[data-tone="ok"] {
  border-color: rgba(243, 201, 77, 0.45);
  background: rgba(243, 201, 77, 0.12);
}

.admin-status[data-tone="error"] {
  border-color: rgba(214, 27, 35, 0.45);
  background: rgba(214, 27, 35, 0.12);
}

.admin-subpanel {
  padding: 16px 16px;
}

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

.admin-reviews {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.admin-review-row {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.admin-thumb {
  width: 86px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  display: block;
}

.admin-thumb-placeholder {
  background: rgba(0, 0, 0, 0.28);
}

.admin-review-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
}

.admin-review-title {
  font-weight: 800;
}

.admin-review-date {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.admin-review-desc {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.admin-review-tags {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.admin-review-actions {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 920px) {
  .admin-rows-2 {
    grid-template-columns: 1fr;
  }

  .admin-review-row {
    grid-template-columns: 1fr;
  }
}
