*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: #1a1a1a;
  background: linear-gradient(180deg, var(--page-bg-start) 0%, var(--page-bg-mid) 42%, var(--page-bg-end) 100%);
  background-attachment: fixed;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

.ml {
  font-family: var(--font-regional);
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  border-radius: var(--radius-sm);
  z-index: 10000;
}

.skip-link:focus {
  left: 0.5rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--page-bg-mid) 82%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  /* Let clicks pass through the bar so content scrolling underneath (profile, etc.) stays usable */
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 70%, white));
  display: grid;
  place-items: center;
  color: var(--color-text-on-dark);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-sub {
  font-size: 0.72rem;
  color: rgba(0, 0, 0, 0.55);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a,
.nav-desktop button {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.88rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  transition: background 0.2s ease, color 0.2s ease;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible,
.nav-desktop button:hover,
.nav-desktop button:focus-visible {
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  outline: none;
}

.nav-desktop a.is-active,
.nav-desktop button.is-active {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
}

.icon-btn {
  border: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.55);
  color: #222;
  transition: transform 0.15s ease, background 0.2s ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  background: white;
}

.icon-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-lines span {
  width: 20px;
  height: 2px;
  background: #222;
  border-radius: 2px;
}

/* —— Layout —— */
.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1rem 4rem;
}

/* —— Home: suggestion CTA (after profile hero, before upcoming events) —— */
.home-suggestion-cta-wrap {
  margin: 0.5rem 0 1.15rem;
}

/* Full-screen overlays: same CTA at top of scroll (panels except suggestions form) */
.overlay-suggestion-cta-wrap {
  margin: 0 0 1rem;
}

.overlay-suggestion-cta-btn {
  width: 100%;
  max-width: none;
  border-radius: 999px;
  box-sizing: border-box;
  min-height: 3.6rem;
  padding: 0.72rem 0.85rem 0.72rem 0.72rem;
  gap: 0.65rem;
}

.overlay-suggestion-cta-btn .floating-suggestion-cta__sheen {
  border-radius: 999px;
}

.overlay-suggestion-cta-btn .floating-suggestion-cta__icon {
  width: 2.55rem;
  height: 2.55rem;
}

.overlay-suggestion-cta-btn .floating-suggestion-cta__title {
  font-size: 0.9rem;
}

.overlay-suggestion-cta-btn .floating-suggestion-cta__sub {
  font-size: 0.72rem;
  line-height: 1.28;
}

.overlay-suggestion-cta-btn .floating-suggestion-cta__chev {
  font-size: 1.45rem;
}

.overlay-suggestion-cta-btn.floating-suggestion-cta:focus-visible {
  border-radius: 999px;
}

@media (min-width: 768px) {
  .overlay-suggestion-cta-btn .floating-suggestion-cta__title {
    font-size: 0.95rem;
  }

  .overlay-suggestion-cta-btn .floating-suggestion-cta__sub {
    font-size: 0.78rem;
  }
}

.home-suggestion-cta-btn {
  width: 100%;
  max-width: none;
  border-radius: 999px;
  box-sizing: border-box;
}

.home-suggestion-cta-btn .floating-suggestion-cta__sheen {
  border-radius: 999px;
}

.floating-suggestion-cta {
  position: relative;
  pointer-events: auto;
  width: min(100%, 520px);
  border: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem 0.95rem 0.85rem;
  border-radius: 22px;
  background: linear-gradient(90deg, #b71c1c 0%, #d84315 42%, #f4511e 100%);
  color: #fff;
  overflow: hidden;
  min-height: 4.25rem;
  filter: drop-shadow(0 14px 28px rgba(183, 28, 28, 0.35));
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-suggestion-cta:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 18px 36px rgba(183, 28, 28, 0.42));
}

.floating-suggestion-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.85), 0 0 0 6px var(--color-primary);
  border-radius: 22px;
}

.home-suggestion-cta-btn.floating-suggestion-cta:focus-visible {
  border-radius: 999px;
}

.floating-suggestion-cta__sheen {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.42) 48%,
    rgba(255, 255, 255, 0.18) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 220% 100%;
  animation: floating-cta-sheen 3.2s ease-in-out infinite;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .floating-suggestion-cta__sheen {
    animation: none;
    opacity: 0.28;
  }

  .floating-suggestion-cta {
    transition: none;
  }

  .floating-suggestion-cta:hover {
    transform: none;
  }
}

.floating-suggestion-cta__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(120, 0, 0, 0.45);
  display: grid;
  place-items: center;
  color: #fff;
}

.floating-suggestion-cta__copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.floating-suggestion-cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.floating-suggestion-cta__sub {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.3;
}

.floating-suggestion-cta__chev {
  flex-shrink: 0;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0.95;
  padding-right: 0.15rem;
}

@media (min-width: 768px) {
  .floating-suggestion-cta__title {
    font-size: 1.05rem;
  }

  .floating-suggestion-cta__sub {
    font-size: 0.85rem;
  }
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  font-size: 1.15rem;
  color: rgba(0, 0, 0, 0.82);
}

/* —— Profile hero card —— */
.profile-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: var(--color-surface-glass);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .profile-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
}

.profile-media {
  display: flex;
  justify-content: center;
}

.profile-photo-wrap {
  width: min(220px, 100%);
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.profile-name {
  margin: 0;
  font-size: 1.55rem;
}

.profile-loc {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(0, 0, 0, 0.65);
  font-size: 0.92rem;
  margin: 0.35rem 0 0.75rem;
}

.pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-secondary) 35%, transparent);
}

.bio-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(0, 0, 0, 0.72);
  font-size: 0.92rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 0.75rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.action-round {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.15s ease;
}

.action-round:hover {
  transform: scale(1.04);
}

.action-round.phone {
  color: #111;
}

.action-round.wa {
  color: #25d366;
}

.action-round.social-round {
  display: grid;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.action-round.social-round svg {
  display: block;
  width: 22px;
  height: 22px;
}

.action-round.social-fb:hover,
.action-round.social-fb:focus-visible {
  background: #f0f7ff;
}

.action-round.social-ig:hover,
.action-round.social-ig:focus-visible {
  background: #fff5f8;
}

/* —— Carousels —— */
.swiper-slide {
  height: auto;
}

.event-card,
.gallery-card,
.video-card,
.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card .thumb,
.gallery-card .thumb,
.video-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.event-card .thumb img,
.gallery-card .thumb img,
.video-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-body,
.gallery-body,
.video-body {
  padding: 0.85rem 1rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.event-title {
  margin: 0;
  font-size: 1rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.68);
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.event-desc {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.62);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-cta {
  margin-top: auto;
  border: 0;
  background: transparent;
  padding: 0;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--color-primary);
  text-align: left;
}

/* —— News strip —— */
.news-grid {
  display: grid;
  gap: 1rem;
}

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

.news-card .thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* —— Drawer —— */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 950;
}

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

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(360px, 88vw);
  background: white;
  transform: translateX(-102%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 960;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.12);
}

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

.drawer-hero {
  position: relative;
  padding: 1.25rem 1rem 1.5rem;
  color: var(--color-text-on-dark);
  text-align: center;
}

.drawer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-secondary) 65%, var(--color-primary)));
  opacity: 0.95;
  z-index: 0;
}

.drawer-hero > * {
  position: relative;
  z-index: 1;
}

.drawer-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  margin: 0 auto 0.65rem;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-card);
}

.drawer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-hero p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.drawer-nav {
  flex: 1;
  overflow: auto;
  padding: 0.5rem 0 1rem;
}

.drawer-group-title {
  margin: 0.75rem 1rem 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
}

.drawer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.78);
  border: 0;
  width: 100%;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.drawer-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.drawer-item .ico {
  width: 2rem;
  height: 2rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-primary) 18%, white);
  color: var(--color-primary);
}

.drawer-item .chev {
  margin-left: auto;
  opacity: 0.35;
}

.drawer-suggestion-slot {
  padding: 0.35rem 1rem 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.drawer-suggestion-slot .overlay-suggestion-cta-wrap {
  margin: 0;
}

.drawer-suggestion-slot .overlay-suggestion-cta-btn {
  filter: drop-shadow(0 6px 14px rgba(183, 28, 28, 0.25));
}

.drawer-footer {
  padding: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.55);
}

.drawer-footer a {
  color: var(--color-primary);
  font-weight: 600;
}

/* —— Overlays (SPA panels) —— */
.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: auto;
  background: linear-gradient(180deg, var(--page-bg-start) 0%, var(--page-bg-mid) 45%, var(--page-bg-end) 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  visibility: hidden;
}

.page-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.overlay-topbar {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--page-bg-start) 35%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.overlay-topbar h1 {
  flex: 1;
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-on-dark);
}

.overlay-body {
  padding: 1rem 1rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Profile overlay */
.profile-hero {
  text-align: center;
  color: var(--color-text-on-dark);
  padding: 0.5rem 0 1rem;
}

.profile-hero .avatar-ring {
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}

.profile-hero .avatar-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.65);
}

.tabs {
  display: flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.tab-btn {
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  background: transparent;
  color: rgba(0, 0, 0, 0.65);
}

.tab-btn.is-active {
  background: var(--color-primary);
  color: var(--color-text-on-dark);
}

.tab-panel[hidden] {
  display: none !important;
}

.glass-panel {
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  background: var(--color-surface-glass-strong);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-text-on-dark);
  margin-bottom: 1rem;
}

a.biodata-download-link {
  color: var(--color-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a.biodata-download-link:hover,
a.biodata-download-link:focus-visible {
  color: #fff;
  outline: none;
}

.dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mini-card {
  border-radius: var(--radius-md);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  color: rgba(17, 24, 39, 0.92);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.mini-card h3 {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(17, 24, 39, 0.9);
}

.mini-actions {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.status-pill {
  display: block;
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  font-weight: 700;
  background: var(--color-secondary);
  color: #111;
  text-align: center;
  text-decoration: none;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.photo-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-card);
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
  color: var(--color-text-on-dark);
}

.photo-cap strong {
  display: block;
  font-size: 0.85rem;
}

.photo-cap span:not(.gallery-tile-cta) {
  font-size: 0.72rem;
  opacity: 0.9;
}

.gallery-tile,
.gallery-card--openable {
  cursor: pointer;
}

.gallery-tile:focus-visible,
.gallery-card--openable:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-card);
}

.gallery-tile-cta {
  display: block;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.82rem;
}

.gallery-body .gallery-tile-cta {
  margin-top: auto;
  padding-top: 0.35rem;
  color: var(--color-primary);
}

.photo-cap .gallery-tile-cta {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* Video grid */
.video-grid {
  display: grid;
  gap: 1rem;
}

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

.video-card video {
  width: 100%;
  border: 0;
  background: #000;
}

/* Event detail */
.event-hero {
  position: relative;
  height: min(38vh, 320px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: -2.5rem;
  box-shadow: var(--shadow-card);
}

.event-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-stack {
  position: relative;
  z-index: 1;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
  margin: 1rem 0;
}

.countdown-cell {
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.25rem;
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-text-on-dark);
}

.countdown-cell .num {
  font-weight: 800;
  font-size: 1.1rem;
}

.countdown-cell .lbl {
  font-size: 0.65rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.reminder-btn {
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1rem;
  background: white;
  color: var(--color-primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Forms */
.form-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: var(--color-surface-glass-strong);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--color-text-on-dark);
}

.form-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.form-card p {
  margin: 0 0 1rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  margin-bottom: 0.35rem;
  opacity: 0.9;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.65rem 0.75rem;
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-text-on-dark);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.attach-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.attach-help {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.attach-preview {
  margin: 0 0 0.85rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  max-width: 100%;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
}

.attach-preview img {
  display: block;
  width: auto;
  max-width: min(100%, 280px);
  height: auto;
  max-height: 220px;
  object-fit: contain;
}

.attach-remove-btn {
  font-size: 0.82rem;
}

.outline-btn {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: var(--color-text-on-dark);
  padding: 0.55rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.submit-bar {
  margin-top: 1rem;
}

.submit-primary {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0.95rem 1rem;
  background: white;
  color: var(--color-primary);
  font-weight: 800;
}

.form-status {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  line-height: 1.45;
  white-space: pre-wrap;
  color: rgba(255, 240, 220, 0.95);
}

/* Promo modal */
.promo-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.55);
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.promo-modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal {
  position: relative;
  width: min(420px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.promo-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 1.1rem;
  line-height: 1;
}

.promo-modal img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.promo-copy {
  padding: 1rem 1.1rem 1.15rem;
  text-align: center;
  background: linear-gradient(180deg, #fff8f0, white);
}

.promo-copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: var(--color-accent-text);
}

.promo-copy p {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.65);
}

.promo-copy button {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: var(--color-text-on-dark);
  font-weight: 700;
}

.site-footer-note {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(0, 0, 0, 0.5);
  padding: 2rem 1rem;
}

@media (min-width: 900px) {
  .nav-desktop {
    display: flex;
  }

  .icon-btn[aria-controls="nav-drawer"] {
    display: none;
  }

  .event-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* Swiper ensure visible */
.swiper {
  padding-bottom: 2rem;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
